:root {
    --bg: #f4f1e9;
    --surface: #fffaf2;
    --surface-strong: #efe6d8;
    --ink: #1f2833;
    --ink-soft: #465465;
    --line: #d3c4ae;
    --navy: #1d2d44;
    --gold: #c4913d;
    --gold-deep: #9d6d28;
    --success: #22543d;
    --error: #7f1d1d;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-soft: 0 8px 28px rgba(29, 45, 68, 0.1);
    --shadow-strong: 0 18px 44px rgba(29, 45, 68, 0.18);
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito Sans', 'Segoe UI', Tahoma, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(196, 145, 61, 0.2), transparent 42%),
        radial-gradient(circle at 94% 8%, rgba(29, 45, 68, 0.12), transparent 40%),
        var(--bg);
    line-height: 1.65;
}

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

a {
    color: var(--navy);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
    color: var(--gold-deep);
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #111824;
}

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

h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.6rem);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.container {
    width: min(var(--max-width), 92vw);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: #ffffff;
    color: #000000;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 999;
}

.skip-link:focus {
    top: 12px;
}

.top-strip {
    background: #101a2a;
    color: #d8e0ee;
    font-size: 0.92rem;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.52rem 0;
}

.top-strip-text {
    margin: 0;
}

.top-strip-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-strip-links a {
    color: #f3f6fc;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255, 250, 242, 0.92);
    border-bottom: 1px solid rgba(157, 109, 40, 0.22);
}

.header-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.4rem;
    padding: 0.72rem 0;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    text-decoration: none;
}

.brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(196, 145, 61, 0.32);
    box-shadow: 0 8px 20px rgba(17, 24, 36, 0.18);
    background: #ffffff;
}

.brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 1.6vw, 1.6rem);
    color: #172133;
    line-height: 1.1;
    max-width: 420px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid rgba(29, 45, 68, 0.25);
    background: #ffffff;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font: inherit;
    color: #182338;
    cursor: pointer;
}

.site-nav {
    justify-self: end;
}

.site-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.4rem, 1vw, 1rem);
    white-space: nowrap;
    align-items: center;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #172133;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.45rem 0.62rem;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-active {
    background: rgba(29, 45, 68, 0.11);
    color: #10192a;
}

main {
    min-height: 62vh;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 70vh;
    display: grid;
    align-items: end;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(15, 24, 40, 0.86), rgba(15, 24, 40, 0.22)),
        linear-gradient(to right, rgba(157, 109, 40, 0.25), transparent 42%);
    z-index: -1;
}

.hero-content {
    color: #fbf5ec;
    padding-block: clamp(3rem, 9vh, 6.5rem);
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    max-width: 14ch;
}

.hero-copy {
    max-width: 62ch;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.eyebrow {
    margin-bottom: 0.68rem;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-content .eyebrow {
    color: #f1cd8d;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.68rem 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(16, 25, 42, 0.2);
}

.btn-solid {
    background: linear-gradient(140deg, var(--gold), #dbb26e);
    color: #121c2d;
    border-color: rgba(157, 109, 40, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #162033;
    border-color: rgba(16, 25, 42, 0.2);
}

.text-link {
    font-weight: 700;
}

.section-shell {
    padding-block: clamp(3rem, 7vw, 5.8rem);
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.8), rgba(239, 230, 216, 0.95));
    border-top: 1px solid rgba(157, 109, 40, 0.2);
    border-bottom: 1px solid rgba(157, 109, 40, 0.2);
}

.section-head {
    max-width: 70ch;
    margin-bottom: 1.3rem;
}

.grid-two,
.grid-three {
    display: grid;
    gap: 1.15rem;
}

.grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: linear-gradient(160deg, #fffefb, #f9f1e5);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.card h3,
.card h2 {
    margin-bottom: 0.45rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: clamp(1rem, 2.4vw, 2.4rem);
    align-items: center;
}

.split-layout-reverse {
    grid-template-columns: 0.97fr 1.03fr;
}

.split-layout-reverse .split-copy {
    order: 2;
}

.split-layout-reverse .split-media {
    order: 1;
}

.split-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(157, 109, 40, 0.32);
    box-shadow: var(--shadow-strong);
    object-fit: cover;
    max-height: 640px;
}

.quick-facts p {
    margin-bottom: 0.45rem;
}

.quick-facts strong {
    color: #111a29;
}

.cta-band {
    margin-block: clamp(2.2rem, 5vw, 4.5rem) 0;
    background:
        linear-gradient(130deg, rgba(29, 45, 68, 0.96), rgba(14, 20, 33, 0.95)),
        radial-gradient(circle at 85% 20%, rgba(196, 145, 61, 0.22), transparent 38%);
    color: #f7f7f7;
}

.cta-band-inner {
    padding-block: clamp(2rem, 5vw, 3.4rem);
    display: grid;
    gap: 0.7rem;
    justify-items: start;
}

.cta-band h2 {
    color: #ffffff;
    margin-bottom: 0;
}

.cta-band p {
    margin-bottom: 0.3rem;
    color: #dae4f6;
}

.page-hero {
    padding-block: clamp(2.4rem, 6vw, 4.3rem) clamp(1.4rem, 4vw, 2.3rem);
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(244, 241, 233, 0.94)),
        radial-gradient(circle at right top, rgba(196, 145, 61, 0.18), transparent 34%);
    border-bottom: 1px solid rgba(157, 109, 40, 0.25);
}

.facts-panel {
    background: #fffefa;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
}

.facts-list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.facts-list dt {
    font-weight: 700;
    color: #19243a;
}

.facts-list dd {
    margin: 0.28rem 0 0;
    color: #28364a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f0ece4;
}

.gallery-card figcaption {
    font-size: 0.92rem;
    padding: 0.8rem;
    color: #2a3a4f;
}

.info-panel {
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
}

.contact-form {
    background: #fffefb;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.field {
    margin-bottom: 0.8rem;
}

.field label {
    display: block;
    margin-bottom: 0.36rem;
    font-weight: 700;
    color: #111a29;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #c4b59c;
    border-radius: 12px;
    padding: 0.62rem 0.72rem;
    font: inherit;
    color: #132035;
    background: #fff;
}

.field input:focus,
.field textarea:focus {
    outline: 2px solid rgba(196, 145, 61, 0.35);
    border-color: #a8752e;
}

.field-honeypot {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.alert {
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
}

.alert p {
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.alert ul {
    margin: 0;
    padding-left: 1.05rem;
}

.alert-error {
    background: #fff0f0;
    border: 1px solid #ebb3b3;
    color: var(--error);
}

.prose {
    background: #fffefb;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.3rem;
}

.prose h2 {
    margin-top: 1.4rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.thank-you-wrap {
    min-height: 58vh;
    display: grid;
    align-items: center;
}

.thank-you-card {
    background:
        linear-gradient(145deg, rgba(29, 45, 68, 0.93), rgba(16, 25, 42, 0.93)),
        radial-gradient(circle at 100% 0%, rgba(196, 145, 61, 0.22), transparent 35%);
    color: #ecf0f8;
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 4vw, 2.7rem);
    box-shadow: var(--shadow-strong);
}

.thank-you-card h1 {
    color: #ffffff;
}

.thank-you-card .eyebrow {
    color: #efcc95;
}

.site-footer {
    background:
        linear-gradient(165deg, #121b2c, #0d1524 58%),
        radial-gradient(circle at 90% 10%, rgba(196, 145, 61, 0.15), transparent 36%);
    color: #e4eaf5;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 1.4rem;
    padding-block: clamp(2rem, 5vw, 3.2rem);
}

.footer-logo-wrap {
    display: inline-flex;
    gap: 0.72rem;
    align-items: center;
    text-decoration: none;
}

.footer-logo-wrap img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 2px solid rgba(196, 145, 61, 0.38);
    background: #ffffff;
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    color: #f2f6ff;
    max-width: 24ch;
    line-height: 1.12;
}

.footer-tagline {
    margin-top: 0.85rem;
    margin-bottom: 0.45rem;
    color: #dae2ef;
}

.footer-note {
    color: #b5bfd0;
    max-width: 48ch;
    font-size: 0.92rem;
}

.footer-heading {
    color: #f5f8fe;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.42rem;
}

.footer-links a,
.contact-block a {
    color: #d4e4ff;
}

.contact-block {
    font-style: normal;
}

.contact-block p {
    margin-bottom: 0.35rem;
}

.registry {
    color: #bcc8da;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(183, 196, 215, 0.2);
    background: rgba(8, 12, 19, 0.3);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.85rem 0 1rem;
    color: #b8c2d3;
    font-size: 0.9rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1170px) {
    .brand-text {
        max-width: 335px;
        font-size: 1.25rem;
    }

    .site-nav-link {
        padding-inline: 0.44rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.6rem 0;
    }

    .header-main {
        grid-template-columns: 1fr auto;
        gap: 0.8rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 260ms ease;
    }

    .site-nav.is-open {
        max-height: 380px;
    }

    .site-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding-top: 0.35rem;
    }

    .site-nav-link {
        width: 100%;
        white-space: normal;
        border-radius: 10px;
    }

    .grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 58vh;
    }

    .split-layout,
    .split-layout-reverse,
    .grid-two,
    .grid-three,
    .facts-list,
    .footer-grid,
    .form-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .split-layout-reverse .split-copy,
    .split-layout-reverse .split-media {
        order: initial;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .brand-text {
        max-width: 27ch;
        font-size: 1.06rem;
    }

    .section-shell {
        padding-block: 2.6rem;
    }
}

