:root {
    --navy: #0F4761;
    --steel: #2F6F8F;
    --seafoam: #8FC9B6;
    --silver: #C0C6CC;
    --gold: #D8B873;
    --white: #ffffff;
    --dark-overlay: rgba(8, 25, 40, 0.82);
    --card-bg: rgba(15, 71, 97, 0.88);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--white);
    background: #060f18;
    overflow-x: hidden;
}

/* ── ARCH BACKGROUND ── */
.arch-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(to bottom, rgba(8, 25, 40, 0.85) 0%, rgba(15, 71, 97, 0.75) 40%, rgba(8, 25, 40, 0.90) 100%),
        url("images/sara-kozak-XnPkxlPd0wY-unsplash.jpg") center center / cover no-repeat;
    filter: brightness(0.85);
}

.arch-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(47, 111, 143, 0.25) 0%, transparent 70%);
}

/* ── LAYOUT ── */
.page {
    position: relative;
    z-index: 1;
}

/* ── TOP BAR ── */
.topbar {
    background: rgba(216, 184, 115, 0.15);
    border-bottom: 1px solid rgba(216, 184, 115, 0.3);
    padding: 8px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.topbar a {
    color: var(--gold);
    text-decoration: none;
}

.topbar span {
    opacity: 0.5;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 25, 40, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(216, 184, 115, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    opacity: 0.95;
}

.nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.nav-name span {
    display: block;
    font-size: 11px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-book-nav {
    background: var(--gold);
    color: #060f18 !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    transition: background 0.2s, transform 0.15s !important;
}

.btn-book-nav:hover {
    background: #e8cc88 !important;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 40px 100px;
    position: relative;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

/* ── BUMPED: was 13px ── */
.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--seafoam);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s ease forwards;
}

.hero-trust {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    opacity: 0;
    animation: fadeUp 0.9s 1.3s ease forwards;
}

.trust-sep {
    color: var(--gold);
    opacity: 0.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.9s 1.1s ease forwards;
}

.btn-primary {
    background: var(--gold);
    color: #060f18;
    padding: 16px 36px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-primary:hover {
    background: #e8cc88;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 36px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: rgba(15, 71, 97, 0.6);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(216, 184, 115, 0.25);
    border-bottom: 1px solid rgba(216, 184, 115, 0.25);
    padding: 22px 60px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-full {
    padding: 100px 60px;
    position: relative;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--seafoam);
}

.section-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 184, 115, 0.18);
    padding: 48px 36px;
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 184, 115, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* ── BUMPED: was 13px ── */
.service-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.service-list {
    margin-top: 20px;
    list-style: none;
}

.service-list li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-photo-wrap {
    position: relative;
    overflow: hidden;
}

.about-photo-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 184, 115, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-photo-placeholder span {
    font-size: 40px;
}

.about-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(216, 184, 115, 0.2);
    pointer-events: none;
    z-index: -1;
}

.about-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(216, 184, 115, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ── HOW IT WORKS ── */
.how-bg {
    background: rgba(15, 71, 97, 0.45);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(143, 201, 182, 0.15);
    border-bottom: 1px solid rgba(143, 201, 182, 0.15);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.step-card {
    padding: 48px 36px;
    text-align: center;
    background: rgba(8, 25, 40, 0.5);
    backdrop-filter: blur(8px);
    position: relative;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: rgba(216, 184, 115, 0.15);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 30px;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

/* ── BUMPED: was 13px ── */
.step-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    position: relative;
}

/* ── WHY CHOOSE ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(216, 184, 115, 0.12);
    transition: border-color 0.2s;
}

.why-item:hover {
    border-color: rgba(216, 184, 115, 0.35);
}

.why-check {
    width: 24px;
    height: 24px;
    background: rgba(216, 184, 115, 0.15);
    border: 1px solid rgba(216, 184, 115, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 12px;
    margin-top: 2px;
}

/* ── BUMPED: was 13px ── */
.why-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.why-text strong {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

/* ── CREDENTIAL BADGES ── */
.credentials-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(216, 184, 115, 0.15);
    flex-wrap: wrap;
}

.credential-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.credential-badge:hover {
    opacity: 1;
}

.credential-badge img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.7);
}

.credential-badge span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* ── FAQ ── */
.faq-list {
    margin-top: 50px;
    border-top: 1px solid rgba(216, 184, 115, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(216, 184, 115, 0.15);
}

.faq-question {
    padding: 22px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    font-size: 20px;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-answer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

/* ── CTA SECTION ── */
.cta-section {
    text-align: center;
    padding: 120px 60px;
    background: rgba(15, 71, 97, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(216, 184, 115, 0.2);
    border-bottom: 1px solid rgba(216, 184, 115, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(216, 184, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-sub {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background: rgba(4, 12, 22, 0.96);
    border-top: 1px solid rgba(216, 184, 115, 0.15);
    padding: 60px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    line-height: 1.5;
    font-weight: 300;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
    margin-bottom: 24px;
}

.footer-legal h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-legal p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    max-width: 900px;
}

.footer-legal p strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 16px;
    line-height: 1.6;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .section,
    .section-full {
        padding: 70px 30px;
    }

    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .topbar {
        display: none;
    }

    .trust-strip {
        gap: 20px;
        padding: 20px;
    }

    .credentials-row {
        gap: 24px;
    }

    .credential-badge img {
        width: 70px;
        height: 70px;
    }
}