:root {
    --bg-deep: #071a29;
    --bg-mid: #0e3042;
    --sea-glass: #2f7b87;
    --sand: #d7c9b4;
    --pearl: #f3f1eb;
    --slate: #2d3e4b;
    --bronze: #9f7a55;
    --ink: #112332;
    --text-soft: #d9e4ea;
    --white: #ffffff;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("{{ 'assets/fonts/inter-400.ttf'|theme }}") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("{{ 'assets/fonts/inter-500.ttf'|theme }}") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("{{ 'assets/fonts/inter-600.ttf'|theme }}") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("{{ 'assets/fonts/inter-700.ttf'|theme }}") format("truetype");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("{{ 'assets/fonts/cormorant-garamond-400.ttf'|theme }}") format("truetype");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("{{ 'assets/fonts/cormorant-garamond-600.ttf'|theme }}") format("truetype");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("{{ 'assets/fonts/cormorant-garamond-700.ttf'|theme }}") format("truetype");
}

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

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--pearl);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.15;
    margin-top: 0;
    color: var(--ink);
}

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

img {
    width: 100%;
    display: block;
    border-radius: 1.1rem;
}

.container {
    width: min(1160px, 90%);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(7, 26, 41, 0.86);
    border-color: rgba(237, 228, 214, 0.15);
    backdrop-filter: blur(9px);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.main-nav a {
    color: var(--white);
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    opacity: 0.92;
    transition: opacity 0.25s ease;
}

.main-nav a:hover {
    opacity: 1;
}

.main-nav .nav-cta {
    border: 1px solid rgba(215, 201, 180, 0.55);
    padding: 0.65rem 1rem;
    border-radius: 100px;
    color: var(--sand);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.site-main {
    overflow: hidden;
}

.hero {
    min-height: 94vh;
    padding-top: 130px;
    padding-bottom: 70px;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.9fr;
    gap: 2.5rem;
    align-items: end;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.73rem;
    color: rgba(245, 243, 235, 0.85);
    margin-bottom: 0.8rem;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.8vw, 4.7rem);
    max-width: 12ch;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 55ch;
    color: rgba(243, 241, 235, 0.9);
    font-size: 1.04rem;
}

.hero-card {
    background: rgba(10, 35, 49, 0.62);
    border: 1px solid rgba(231, 219, 201, 0.28);
    border-radius: 1rem;
    padding: 1.4rem 1.3rem;
}

.hero-card h3 {
    color: var(--sand);
    font-size: 1.6rem;
}

.hero-card p,
.hero-card li {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.72rem 1.3rem;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-light {
    background: var(--sand);
    color: var(--bg-deep);
}

.button-ghost {
    border-color: rgba(244, 239, 226, 0.45);
    color: var(--white);
}

.button-dark {
    background: var(--bg-deep);
    color: var(--white);
}

.section {
    padding: 5.2rem 0;
}

.section-intro {
    background: #ece8df;
}

.split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: center;
}

.panel-content h2,
.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    max-width: 14ch;
}

.panel-content p {
    color: #2c3f4e;
}

.section-deck {
    background: var(--white);
}

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

.experience-card {
    border: 1px solid #d7d4cb;
    border-radius: 0.8rem;
    padding: 1.4rem 1.2rem;
    background: #fbf9f4;
}

.experience-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.section-credibility {
    background: #112f43;
    color: var(--text-soft);
}

.section-credibility h2,
.section-credibility .eyebrow {
    color: var(--white);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr;
    gap: 2.1rem;
    align-items: start;
}

.badge-list {
    display: grid;
    gap: 0.8rem;
}

.badge-list span {
    display: block;
    border: 1px solid rgba(235, 226, 211, 0.35);
    border-radius: 100px;
    padding: 0.65rem 0.95rem;
    color: #f1e6d8;
}

.section-programs {
    background: #f4f1ea;
}

.program-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.program-card {
    background: #ffffff;
    border-radius: 0.85rem;
    padding: 1.3rem;
    border: 1px solid #ddd8cd;
}

.program-card strong {
    color: var(--bronze);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.4rem;
}

.section-testimonials {
    background: var(--bg-deep);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

blockquote {
    margin: 0;
    padding: 1.4rem;
    border: 1px solid rgba(219, 206, 187, 0.3);
    border-radius: 0.85rem;
    color: var(--text-soft);
    font-size: 1rem;
}

blockquote cite {
    display: block;
    margin-top: 0.8rem;
    color: #f0dfc6;
    font-style: normal;
}

.section-cta-band {
    background: #e7e0d3;
}

.section-gallery-band {
    background: #f7f4ee;
    padding-top: 2.2rem;
}

.gallery-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-band img {
    min-height: 300px;
    object-fit: cover;
}

.single-photo-wrap img {
    max-height: 460px;
    object-fit: cover;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    max-width: 18ch;
}

.page-hero {
    min-height: 50vh;
    padding: 160px 0 70px;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 4.2vw, 3.8rem);
    max-width: 14ch;
}

.policy-hero {
    background: linear-gradient(120deg, #0f3144, #143f53);
    min-height: 38vh;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.pricing-card {
    background: #fbf8f1;
    border: 1px solid #d9d2c5;
    border-radius: 0.9rem;
    padding: 1.35rem;
}

.pricing-card h2 {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.pricing-card strong {
    color: var(--bronze);
    font-size: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.2rem;
}

.contact-card,
.contact-form-wrap {
    background: #f9f5ee;
    border: 1px solid #dbd5c8;
    border-radius: 0.9rem;
    padding: 1.2rem;
}

.field {
    margin-bottom: 0.9rem;
}

.field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #c9c0b2;
    border-radius: 0.55rem;
    padding: 0.7rem 0.8rem;
    font: inherit;
    background: #fffefb;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.site-footer {
    background: #0a2435;
    color: #d7e0e6;
    padding-top: 3.2rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    gap: 1.1rem;
    padding-bottom: 1.8rem;
}

.site-footer h3,
.site-footer h4 {
    color: #f3e9d9;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.35rem;
}

.footer-base {
    border-top: 1px solid rgba(219, 210, 196, 0.18);
    padding: 0.9rem 0 1.4rem;
    color: #c8d2da;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-panel,
    .credibility-grid,
    .narrative-grid,
    .pricing-grid,
    .contact-grid,
    .footer-grid,
    .program-row,
    .testimonials-grid,
    .experience-deck,
    .gallery-band {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        position: fixed;
        top: 84px;
        right: 5%;
        width: min(320px, 90vw);
        background: rgba(9, 32, 48, 0.97);
        border: 1px solid rgba(234, 224, 205, 0.18);
        border-radius: 0.85rem;
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-block;
    }
}
