:root {
    --ink: #1f1b18;
    --muted: #756b60;
    --paper: #fbf7f0;
    --cream: #f3eadb;
    --stone: #d8c9b5;
    --gold: #b3874b;
    --gold-dark: #7f5c2d;
    --sage: #536a5e;
    --sage-dark: #26362f;
    --blush: #d7a092;
    --charcoal: #14110f;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(31, 27, 24, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--paper) 0%, #f8f3eb 48%, #eef1ed 100%);
    overflow-x: hidden;
}

body::selection {
    background: var(--gold);
    color: var(--white);
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: var(--sage-dark);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(20, 17, 15, 0.22);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: transform 220ms ease, background 220ms ease, opacity 220ms ease;
}

body.has-scrolled .floating-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: translateY(-3px);
    background: var(--gold-dark);
}

.site-hero {
    position: relative;
    min-height: 96vh;
    display: grid;
    align-items: center;
    padding: 120px 0 34px;
    color: var(--white);
    overflow: hidden;
    background: var(--charcoal);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 17, 15, 0.88) 0%, rgba(20, 17, 15, 0.52) 48%, rgba(20, 17, 15, 0.22) 100%),
        url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&q=85&w=2200") center/cover no-repeat;
    transform: scale(1.04);
    animation: slowZoom 18s ease-out forwards;
}

.site-nav {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    width: min(1180px, calc(100% - 40px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 1px;
}

.brand span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    font-weight: 700;
}

.brand strong {
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.nav-links a {
    text-decoration: none;
    opacity: 0.82;
    transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
    opacity: 1;
    color: #f4d9ac;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 118px;
    transform: translateX(-18%);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 0.98;
}

h1 {
    max-width: 790px;
    font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    font-size: clamp(58px, 9vw, 112px);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(42px, 5vw, 68px);
}

h3 {
    font-size: 32px;
}

.hero-copy {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 700px;
    margin-top: 26px;
}

.hero-proof span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(20, 17, 15, 0.28);
    color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn.full {
    width: 100%;
}

.hero-strip {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 24px;
    z-index: 3;
    width: min(1180px, calc(100% - 40px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 17, 15, 0.62);
    backdrop-filter: blur(16px);
}

.hero-strip span {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-strip span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

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

section {
    padding: 110px 0;
}

.intro-grid,
.contact-grid,
.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.intro-copy,
.contact-copy p,
.step p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.section-heading.centered {
    text-align: center;
    margin-bottom: 56px;
}

.section-lead {
    max-width: 660px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.promise-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.promise-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(83, 106, 94, 0.2);
}

.promise-card span,
.story-item strong {
    color: var(--sage);
}

.promise-card span {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.promise-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.promise-card p,
.story-item p,
.faq-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.portfolio {
    background: var(--paper);
}

.gallery-stack {
    display: grid;
    gap: 42px;
}

.video-gallery {
    padding: 34px;
    border: 1px solid rgba(83, 106, 94, 0.16);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 14px 48px rgba(31, 27, 24, 0.07);
}

.gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.gallery-head .eyebrow {
    margin-bottom: 0;
}

.gallery-head h3 {
    max-width: 720px;
    text-align: right;
    font-size: clamp(30px, 4vw, 48px);
}

.gallery-empty {
    padding: 28px;
    border: 1px dashed rgba(83, 106, 94, 0.28);
    background: rgba(238, 241, 237, 0.55);
}

.gallery-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.video-card {
    background: var(--white);
    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050505;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card h3 {
    padding: 24px 24px 4px;
    font-size: 28px;
}

.video-card p {
    margin: 0;
    padding: 0 24px 26px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.addon-heading {
    max-width: 640px;
    margin: 70px auto 28px;
    text-align: center;
}

.addon-heading h3 {
    font-size: clamp(30px, 4vw, 46px);
}

.addon-grid {
    margin-top: 0;
}

.special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin: 0 auto;
}

.price-card.special-card {
    min-height: 540px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 241, 237, 0.74));
    border-color: rgba(83, 106, 94, 0.28);
}

.service-notes {
    display: grid;
    gap: 10px;
    max-width: 920px;
    margin: 34px auto 0;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(83, 106, 94, 0.18);
}

.service-notes p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.service-notes strong {
    color: var(--sage-dark);
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--stone);
    box-shadow: 0 14px 48px rgba(31, 27, 24, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.price-card.featured {
    background: linear-gradient(145deg, var(--charcoal), var(--sage-dark));
    color: var(--white);
    border-color: var(--gold);
}

.price-card.addon-card {
    min-height: 500px;
    background: rgba(255, 255, 255, 0.48);
}

.service-tag {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured .service-tag {
    color: #f2d39f;
}

.price-card h3 {
    margin-top: 18px;
    min-height: 80px;
}

.addon-card h3 {
    min-height: 112px;
}

.package-copy {
    min-height: 78px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.featured .package-copy {
    color: rgba(255, 255, 255, 0.72);
}

.price {
    margin-top: 22px;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 52px;
    font-weight: 700;
}

.price-card ul {
    display: grid;
    gap: 13px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
    color: var(--muted);
    line-height: 1.55;
}

.featured ul {
    color: rgba(255, 255, 255, 0.72);
}

.price-card li {
    position: relative;
    padding-left: 22px;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.price-card .btn {
    margin-top: auto;
}

.process {
    background: var(--paper);
}

.story-band {
    background:
        linear-gradient(90deg, rgba(20, 17, 15, 0.76), rgba(38, 54, 47, 0.48)),
        url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&q=85&w=1800") center/cover no-repeat;
    color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.story-panel .eyebrow {
    color: #f2d39f;
}

.story-panel h2 {
    max-width: 560px;
}

.story-list {
    display: grid;
    gap: 18px;
}

.story-item {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.story-item strong {
    display: block;
    color: #f2d39f;
    font-size: 19px;
    margin-bottom: 10px;
}

.story-item p {
    color: rgba(255, 255, 255, 0.76);
}

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

.step {
    padding-top: 20px;
    border-top: 1px solid var(--stone);
}

.step span {
    display: block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
}

.step strong {
    display: block;
    margin: 18px 0 10px;
    font-size: 18px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(83, 106, 94, 0.18);
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.4;
}

.faq-list p {
    margin-top: 14px;
}

.contact-copy h2 {
    margin-bottom: 28px;
}

.contact-bullets {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-bullets span {
    position: relative;
    padding-left: 22px;
    color: var(--sage-dark);
    font-weight: 700;
}

.contact-bullets span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 9px;
    height: 9px;
    background: var(--blush);
    transform: rotate(45deg);
}

.contact-line {
    display: grid;
    gap: 6px;
    margin-top: 24px;
}

.contact-line span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-line a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.booking-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--sage);
}

.booking-form label {
    display: grid;
    gap: 8px;
}

.booking-form > label > span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.addon-picker {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 18px;
    border: 1px solid #ded2c2;
    background: #fffdf9;
}

.addon-picker legend {
    padding: 0 8px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.check-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    color: var(--ink);
    line-height: 1.45;
}

.check-row input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--sage);
}

.check-row span {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.check-row strong {
    color: var(--gold-dark);
    white-space: nowrap;
}

.form-note {
    padding: 15px 16px;
    background: rgba(83, 106, 94, 0.08);
    border: 1px solid rgba(83, 106, 94, 0.14);
    color: var(--sage-dark);
    font-size: 13px;
    line-height: 1.65;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ded2c2;
    background: #fffdf9;
    color: var(--ink);
    font: inherit;
    padding: 15px 14px;
    border-radius: 0;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(179, 135, 75, 0.13);
}

.selected-plan-notice {
    margin: 0;
    padding: 14px 16px;
    background: #eef1ed;
    border-left: 3px solid var(--sage);
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.form-status {
    display: none;
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid var(--sage);
    background: rgba(83, 106, 94, 0.08);
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-error {
    border-left-color: #a45545;
    background: rgba(164, 85, 69, 0.08);
    color: #6f2f26;
}

.site-footer {
    padding: 44px 0;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid strong {
    color: var(--white);
    font-size: 20px;
}

.footer-grid p {
    margin: 8px 0 0;
}

.footer-grid a {
    color: #f2d39f;
    text-decoration: none;
    font-weight: 700;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.js .hero-strip.reveal {
    transform: translateX(-50%) translateY(26px);
}

.js .hero-strip.reveal.is-visible {
    transform: translateX(-50%) translateY(0);
}

@keyframes slowZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 980px) {
    .hero-content {
        transform: none;
        padding-bottom: 90px;
    }

    .video-grid,
    .pricing-grid,
    .special-grid,
    .steps,
    .intro-grid,
    .contact-grid,
    .process-grid,
    .promise-grid,
    .story-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: auto;
    }

    .price-card h3 {
        min-height: auto;
    }

    .package-copy {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .site-hero {
        display: block;
        min-height: auto;
        padding: 110px 0 28px;
    }

    .site-nav {
        align-items: flex-start;
    }

    .nav-links {
        gap: 12px;
        font-size: 11px;
    }

    .nav-links a:nth-child(2) {
        display: none;
    }

    h1 {
        font-size: 46px;
        line-height: 1.03;
    }

    h2 {
        font-size: 42px;
    }

    section {
        padding: 78px 0;
    }

    .hero-strip {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        margin: 44px auto 0;
        transform: none;
    }

    .js .hero-strip.reveal {
        transform: translateY(26px);
    }

    .js .hero-strip.reveal.is-visible {
        transform: translateY(0);
    }

    .hero-strip span {
        min-height: 46px;
    }

    .hero-strip span + span {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-proof {
        display: grid;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .btn {
        width: 100%;
    }

    .booking-form {
        padding: 24px;
    }

    .floating-cta {
        display: none;
    }

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

    .video-gallery {
        padding: 22px;
    }

    .gallery-head {
        display: grid;
        gap: 12px;
    }

    .gallery-head h3 {
        text-align: left;
    }
}
