/* ============================================
   LIGHTHOUSE — Stylesheet
   Architectural Luxury · Light Mode · Precise
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette — Light mode */
    --charcoal: #1A1A1A;
    --warm-gray: #6B6B6B;
    --white: #FFFFFF;
    --off-white: #F7F7F5;
    --cream: #F0EDE8;
    --accent: #3D5A73;
    --accent-hover: #2C4358;
    --accent-light: rgba(61, 90, 115, 0.08);
    --border: #E5E5E3;
    --border-strong: #D4D4D2;

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: 140px;
    --section-pad-mobile: 72px;
    --max-width: 1120px;
    --content-width: 640px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    transition: color 0.4s var(--ease);
}

.nav__logo-dot {
    color: var(--accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--warm-gray);
    transition: color 0.3s var(--ease);
}

.nav__link:hover {
    color: var(--charcoal);
}

.nav__btn {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
    background: var(--accent);
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}

.nav__btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 110;
}

.nav__mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav__mobile-toggle.active span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav__mobile-toggle.active span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--charcoal);
    transition: color 0.3s var(--ease);
}

.mobile-menu__link:hover {
    color: var(--accent);
}

.mobile-menu__btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    background: var(--accent);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 2px;
    margin-top: 16px;
}

/* --- Hero — Light, airy, architectural --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--off-white);
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 60%;
    opacity: 0.06;
    filter: grayscale(40%);
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 70% 40%, rgba(61, 90, 115, 0.04) 0%, transparent 70%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    padding: 0 40px;
    width: 100%;
    opacity: 0;
    animation: heroFadeIn 1.2s var(--ease-out) 0.3s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.hero__title-line {
    display: block;
}

.hero__title-line:nth-child(2) {
    opacity: 0;
    animation: lineReveal 0.8s var(--ease-out) 0.8s forwards;
}

@keyframes lineReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 560px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.hero__booking {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--accent);
    opacity: 0;
    animation: heroFadeIn 0.8s var(--ease-out) 1.4s forwards;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: heroFadeIn 0.8s var(--ease-out) 1.8s forwards;
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
}

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

.btn--ghost {
    background: transparent;
    color: var(--warm-gray);
    border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.btn--secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    margin-top: 16px;
}

.btn--secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn--large {
    font-size: 15px;
    padding: 18px 40px;
}

.btn__arrow {
    transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow {
    transform: translateY(3px);
}

/* --- Sections --- */
.section {
    padding: var(--section-pad) 40px;
}

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

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

.section--dark {
    background: var(--cream);
}

.section--quote {
    background: var(--white);
    padding: 100px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section--cta {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(61, 90, 115, 0.12) 0%, transparent 60%);
}

.section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.section__label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 40px;
}

.section__label--light {
    color: var(--warm-gray);
}

.section__content {
    max-width: var(--content-width);
}

.section__content--narrow {
    max-width: 580px;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.section__title--centered {
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section__title--light {
    color: var(--charcoal);
}

.section__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.section__text:last-child {
    margin-bottom: 0;
}

.section__text--accent {
    color: var(--accent);
    font-weight: 500;
}

.section__text--strong {
    color: var(--charcoal);
    font-weight: 500;
}

.section__text--subtle {
    font-size: 15px;
    font-style: italic;
    color: var(--warm-gray);
    opacity: 0.8;
}

/* --- Steps --- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.step {
    opacity: 0;
    transform: translateY(20px);
}

.step.visible {
    animation: fadeUp 0.6s var(--ease-out) forwards;
}

.step:nth-child(2).visible { animation-delay: 0.1s; }
.step:nth-child(3).visible { animation-delay: 0.2s; }
.step:nth-child(4).visible { animation-delay: 0.3s; }

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

.step__number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent);
    opacity: 0.5;
    display: block;
    margin-bottom: 20px;
}

.step__divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.step__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.step__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* --- Services (now on cream bg) --- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    margin-top: 64px;
}

.service {
    opacity: 0;
    transform: translateY(20px);
}

.service.visible {
    animation: fadeUp 0.6s var(--ease-out) forwards;
}

.service:nth-child(2).visible { animation-delay: 0.08s; }
.service:nth-child(3).visible { animation-delay: 0.16s; }
.service:nth-child(4).visible { animation-delay: 0.24s; }
.service:nth-child(5).visible { animation-delay: 0.32s; }
.service:nth-child(6).visible { animation-delay: 0.4s; }

.service__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* --- Pull Quote --- */
.pullquote {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.pullquote__mark {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--accent);
    opacity: 0.2;
    line-height: 0.5;
    display: block;
    margin-bottom: 16px;
}

.pullquote__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.4;
    color: var(--charcoal);
}

/* --- City --- */
.city {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.city__image-wrap {
    position: relative;
    overflow: hidden;
}

.city__image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) contrast(1.02);
}

.city__image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

/* --- Gallery --- */
.gallery-section {
    padding-top: 0;
    padding-bottom: 0;
}

.gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
}

.gallery__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) contrast(1.02);
    transition: transform 0.8s var(--ease-out);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.02);
}

.gallery__caption {
    position: absolute;
    bottom: 20px;
    left: 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* --- Venue Benefits --- */
.venue-benefits {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-benefit {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.venue-benefit__dash {
    color: var(--accent);
    font-weight: 300;
    flex-shrink: 0;
}

.venue-benefit p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--warm-gray);
}

/* --- FAQ --- */
.faq {
    max-width: 720px;
    margin: 64px auto 0;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    transition: color 0.3s var(--ease);
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--warm-gray);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 24px;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq__answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 580px;
}

/* --- CTA (only dark section) --- */
.cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.2;
    color: #F0F0EE;
    margin-bottom: 16px;
}

.cta__sub {
    font-size: 15px;
    color: #999999;
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    padding: 48px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #F0F0EE;
}

.footer__logo-dot {
    color: var(--accent);
}

.footer__contact a {
    font-size: 13px;
    color: #999999;
    transition: color 0.3s var(--ease);
}

.footer__contact a:hover {
    color: #F0F0EE;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s var(--ease);
}

.footer__links a:hover {
    color: #F0F0EE;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s var(--ease);
}

.footer__social a:hover {
    color: #F0F0EE;
}

/* --- Page sections (brief, for-venues, privacy) --- */
.page-section {
    padding: 140px 40px var(--section-pad);
    background: var(--white);
    min-height: 60vh;
}

.page-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* --- Form page --- */
.form-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-page__header {
    position: sticky;
    top: 120px;
}

.form-page__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.form-page__sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 440px;
}

/* --- Form --- */
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form__input,
.form__textarea {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--charcoal);
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 14px 16px;
    border-radius: 2px;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--accent);
    background: var(--white);
}

.form__textarea {
    resize: vertical;
    min-height: 160px;
}

.form__textarea::placeholder {
    color: var(--border-strong);
    font-weight: 300;
}

.form__submit {
    align-self: flex-start;
    margin-top: 8px;
}

/* --- Form Confirmation --- */
.form-confirmation {
    display: none;
}

.form-confirmation.active {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    grid-column: 1 / -1;
}

.form-confirmation__inner {
    text-align: center;
}

.form-confirmation__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 24px;
}

.form-confirmation__title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-confirmation__text {
    font-size: 16px;
    color: var(--warm-gray);
}

/* --- Venue page --- */
.venue-page__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    max-width: 560px;
}

.venue-page__sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 540px;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.venue-card {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.venue-card__number {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent);
    opacity: 0.5;
    display: block;
    margin-bottom: 20px;
}

.venue-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.venue-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
}

.venue-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.venue-benefit-item {
    padding-top: 24px;
}

.venue-benefit-item__line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 16px;
}

.venue-benefit-item__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.venue-benefit-item__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
}

.venue-cta {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.venue-cta__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.venue-cta__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

.venue-cta__email {
    font-size: 13px;
    color: var(--warm-gray);
    margin-top: 16px;
}

.venue-cta__email a {
    color: var(--accent);
    transition: color 0.3s var(--ease);
}

.venue-cta__email a:hover {
    color: var(--accent-hover);
}

/* --- Legal / Privacy --- */
.legal__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--charcoal);
    margin-bottom: 8px;
}

.legal__date {
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: 48px;
}

.legal__content {
    max-width: 640px;
}

.legal__content h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal);
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal__content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.legal__content a {
    color: var(--accent);
    transition: color 0.3s var(--ease);
}

.legal__content a:hover {
    color: var(--accent-hover);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* --- Responsive --- */
@media (max-width: 900px) {
    .nav {
        padding: 0 24px;
    }

    .nav__links {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .section {
        padding: var(--section-pad-mobile) 24px;
    }

    .section--quote {
        padding: 64px 24px;
    }

    .hero__content {
        padding: 0 24px;
    }

    .page-section {
        padding: 120px 24px var(--section-pad-mobile);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .city {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .city__visual {
        order: -1;
    }

    .city__image {
        aspect-ratio: 3/2;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gallery__img {
        height: 280px;
    }

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

    .form-page {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-page__header {
        position: static;
    }

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

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer__top,
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer {
        padding: 40px 24px;
    }

    .pullquote__mark {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__sub {
        font-size: 15px;
    }

    .section__title {
        font-size: 26px;
    }

    .cta__title {
        font-size: 26px;
    }
}
