:root {
    --ink: #2e2313;
    --muted: #5f5344;
    --gold: #d7a52f;
    --deep-gold: #8f6315;
    --line: rgba(123, 91, 25, 0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    padding: clamp(16px, 3vw, 32px);
    display: grid;
    place-items: center;
    overflow-x: hidden;
    color: var(--ink);
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 234, 172, 0.95), transparent 32%),
        radial-gradient(circle at 85% 18%, rgba(245, 195, 73, 0.34), transparent 16%),
        linear-gradient(135deg, #fffdf7 0%, #f4e5bc 44%, #dfb954 100%);
}

img {
    display: block;
    max-width: 100%;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 239, 190, 0.3) 60%, transparent 72%);
}

body::after {
    width: 260px;
    height: 260px;
    right: -60px;
    top: -40px;
    background: radial-gradient(circle, rgba(255, 230, 150, 0.9) 0%, rgba(255, 214, 102, 0.18) 65%, transparent 78%);
}

.hero {
    width: min(1120px, 100%);
    position: relative;
    z-index: 1;
}

.brand-panel {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(28px, 4vw, 56px);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 225, 0.68));
    border: 1px solid var(--line);
    box-shadow: 0 28px 70px rgba(86, 59, 11, 0.16);
    backdrop-filter: blur(20px);
}

.logo-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(240px, 32vw, 360px);
    padding: clamp(22px, 4vw, 32px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 212, 0.78));
    border: 1px solid rgba(183, 140, 42, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.logo-shell::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    background: radial-gradient(circle at center, rgba(255, 219, 105, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
}

.logo {
    position: relative;
    width: min(100%, 300px);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(150, 101, 11, 0.22));
}

.content-panel {
    width: min(100%, 640px);
}

.title-block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(157, 115, 19, 0.18);
    background: rgba(255, 252, 245, 0.92);
    color: var(--deep-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin-top: 22px;
    color: var(--ink);
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 4.75rem);
    line-height: 1;
    max-width: none;
    text-align: center;
}

.brand-line,
.brand-core,
.brand-suffix {
    display: block;
}

.brand-line,
.brand-core {
    white-space: nowrap;
}

.brand-core {
    margin-top: 0.02em;
}

.brand-suffix {
    margin-top: 0.16em;
    color: var(--deep-gold);
    font-size: 0.56em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tagline {
    display: block;
    margin-top: 24px;
    padding: 14px 0;
    color: #6f4d12;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-top: 2px solid rgba(111, 77, 18, 0.22);
    border-bottom: 2px solid rgba(111, 77, 18, 0.22);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
    width: 100%;
    max-width: 100%;
    text-align: center;
    text-wrap: balance;
}

.content-panel > p:not(.eyebrow):not(.tagline) {
    max-width: 42ch;
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.actions {
    margin-top: 32px;
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(260px, 1fr);
    gap: 16px;
    align-items: stretch;
}

.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 12px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #9e6b14 0%, #d49f22 55%, #f0cc69 100%);
    color: #fffdf8;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(144, 97, 16, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(144, 97, 16, 0.28);
}

.contact-card {
    display: grid;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(123, 91, 25, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-label {
    color: #8a6525;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card a {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-card a:hover {
    color: var(--deep-gold);
}

@media only screen and (max-width: 1024px) {
    .brand-panel {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 28px;
    }

    h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
    }
}

@media only screen and (max-width: 900px) {
    .brand-panel {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .logo-shell {
        width: min(100%, 420px);
        min-height: 280px;
    }

    .content-panel {
        width: min(100%, 680px);
    }

    .content-panel > p:not(.eyebrow):not(.tagline) {
        margin-left: auto;
        margin-right: auto;
    }

    .actions {
        width: min(100%, 560px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 680px) {
    .actions {
        grid-template-columns: 1fr;
    }

    .primary-link,
    .contact-card {
        width: 100%;
    }
}

@media only screen and (max-width: 560px) {
    h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1;
    }

    .tagline {
        padding: 10px 0;
        font-size: 0.98rem;
        letter-spacing: 0.08em;
    }

    .content-panel > p:not(.eyebrow):not(.tagline) {
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .brand-panel {
        padding: 22px 18px;
        border-radius: 26px;
        gap: 22px;
    }

    .eyebrow {
        padding: 9px 12px;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .logo-shell {
        min-height: 220px;
        padding: 18px;
    }

    .logo-shell::before {
        inset: 12px;
    }

    .primary-link {
        padding: 11px 18px;
    }

    .contact-card {
        padding: 14px 16px;
        border-radius: 18px;
    }
}

@media only screen and (max-width: 380px) {
    body {
        padding: 12px;
    }

    .brand-panel {
        padding: 18px 14px;
        border-radius: 22px;
    }

    .eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    h1 {
        font-size: 1.7rem;
    }

    .brand-suffix {
        font-size: 0.6em;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 0.88rem;
        letter-spacing: 0.05em;
    }

    .logo-shell {
        min-height: 190px;
    }

    .contact-card a,
    .primary-link {
        font-size: 0.94rem;
    }
}
