:root {
    --red: #ea5254;
    --red-dark: #ae393b;
    --green: #ea5254;
    --yellow: #ea5254;
    --ink: #3c3f50;
    --muted: #70737f;
    --paper: #ffffff;
    --soft: #f7f7f7;
    --line: #ececec;
    --shadow: 0 30px 80px rgba(41, 43, 53, .13);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 15%, rgba(234, 82, 84, .18), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(234, 82, 84, .14), transparent 32%),
        var(--soft);
    font: 400 14px/1.8 "Nunito Sans", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2 {
    margin: 0;
}

.holding-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 28px;
}

.panel {
    display: grid;
    grid-template-columns: 1fr;
    width: min(1040px, 100%);
    min-height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
    position: relative;
}

.panel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 6vw, 72px);
}

.brand {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    line-height: 1;
}

.brand--overlay {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    padding: 10px 14px 10px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(41, 43, 53, 0.14);
}

.brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
}

.brand__mark svg {
    width: 23px;
    height: 45px;
    fill: var(--paper);
}

.brand__text {
    font-size: 16px;
}

.brand__text small {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.eyebrow {
    color: var(--red);
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

h1 {
    max-width: 650px;
    margin: 10px 0 18px;
    color: #292b35;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.lead {
    max-width: 570px;
    color: var(--muted);
    font-size: 18px;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

.quick-card {
    min-height: 188px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.quick-card span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quick-card strong {
    display: block;
    margin: 5px 0 10px;
    color: #292b35;
    font-size: 22px;
    line-height: 1.2;
}

.quick-card p {
    margin-top: 16px;
    color: var(--muted);
}

.mail-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--ink);
    font-weight: 700;
}

.quick-card--care {
    border-top: 5px solid var(--green);
}

.quick-card--care > span {
    color: var(--green);
}

.quick-card--jobs {
    border-top: 5px solid var(--yellow);
}

.quick-card--jobs > span {
    color: var(--red);
}

.quick-card--contact-general {
    border-top: 5px solid var(--red);
}

.quick-card--contact-general > span {
    color: var(--red);
}

.quick-card--contact-general .phone-link {
    color: var(--red);
}

.quick-card--contact-general .mail-link {
    color: var(--red-dark);
}

.phone-link {
    display: inline-block;
    color: var(--red);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 46px;
    padding: 11px 22px;
    border-radius: 50px;
    color: var(--paper);
    background: var(--red);
    font-weight: 800;
    transition: background .25s ease, transform .25s ease;
}

.button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.panel__image {
    order: -1;
    position: relative;
    min-height: clamp(220px, 28vw, 320px);
    max-height: 500px;
    background: #d9dccf;
}

.panel__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(41, 43, 53, .18));
}

.panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.contact-section {
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--soft);
}

.contact-section h2 {
    color: #292b35;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-name {
    margin-top: 6px;
    color: var(--red-dark);
    font-size: 15px;
    font-weight: 800;
}

.contact-meta {
    margin-top: 2px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
}

.contact-section a {
    display: block;
    width: fit-content;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .holding-page {
        display: block;
        padding: 18px;
    }

    .panel__image {
        min-height: 280px;
        max-height: 400px;
    }

    .brand {
        gap: 10px;
    }

    .brand--overlay {
        top: 16px;
        left: 16px;
        padding: 8px 12px 8px 8px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .contact-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .holding-page {
        padding: 0;
    }

    .panel {
        min-height: 100vh;
        border-radius: 0;
    }

    .panel__content {
        padding: 30px 22px 38px;
    }

    .panel__image {
        min-height: 240px;
    }

    .panel__image img {
        object-position: center top;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .brand__text {
        font-size: 15px;
    }

    .quick-card {
        padding: 20px;
    }

    .button {
        width: 100%;
    }
}
