:root {
    --green-950: #102d28;
    --green-900: #183a34;
    --green-800: #244d45;
    --green-600: #4e766d;
    --cream-50: #fdfaf5;
    --cream-100: #f6f0e6;
    --cream-200: #eadfce;
    --terracotta: #c86f4b;
    --terracotta-dark: #a65235;
    --gold: #d5a64b;
    --ink: #22312e;
    --muted: #66736f;
    --white: #ffffff;
    --line: rgba(24, 58, 52, .15);
    --shadow: 0 24px 70px rgba(21, 48, 43, .15);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-50);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

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

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

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

h1, h2, h3, p { margin-top: 0; }

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.035em;
}

h1 em,
h2 em {
    color: var(--terracotta);
    font-style: italic;
    font-weight: 400;
}

h1 { font-size: clamp(3.25rem, 7vw, 6.8rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.55rem, 5vw, 4.7rem); margin-bottom: 24px; }
h3 { line-height: 1.2; }

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

.section { padding: 112px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream-100); }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-950);
    transform: translateY(-150%);
    transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
    background: rgba(253, 250, 245, .94);
    border-color: var(--line);
    box-shadow: 0 10px 35px rgba(24, 58, 52, .08);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--green-900);
    line-height: 1;
}
.brand-mark { width: 50px; height: 45px; flex: 0 0 auto; }
.brand strong,
.brand small { display: block; }
.brand strong { font-size: 1.12rem; text-transform: uppercase; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--terracotta); font-family: Georgia, serif; font-size: 1rem; font-style: italic; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a {
    font-size: .92rem;
    font-weight: 700;
    transition: color .2s;
}
.main-nav > a:hover { color: var(--terracotta); }
.main-nav .nav-cta {
    padding: 13px 20px;
    color: var(--white);
    background: var(--green-900);
    border-radius: 999px;
}
.main-nav .nav-cta:hover { color: var(--white); background: var(--terracotta); }

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 0;
    color: var(--green-900);
    background: transparent;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
    transition: transform .25s, opacity .25s;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 165px 0 0;
    background:
        radial-gradient(circle at 13% 16%, rgba(213, 166, 75, .18), transparent 22%),
        linear-gradient(135deg, var(--cream-50), var(--cream-100));
}
.hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: 0;
    width: 58%;
    height: 24%;
    opacity: .11;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300'%3E%3Cpath d='M0 300 210 90l95 90L480 0l210 220 110-115 250 195z' fill='%23183a34'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}
.hero-shape-one {
    width: 380px;
    height: 380px;
    right: -170px;
    top: 100px;
    border: 70px solid rgba(200, 111, 75, .12);
}
.hero-shape-two {
    width: 110px;
    height: 110px;
    left: 45%;
    top: 120px;
    background: rgba(213, 166, 75, .13);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 78px;
    padding-bottom: 84px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    color: var(--green-800);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow span {
    width: 38px;
    height: 2px;
    background: var(--terracotta);
}
.eyebrow-light { color: rgba(255,255,255,.8); }

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: var(--white);
    background: var(--terracotta);
    box-shadow: 0 13px 30px rgba(200, 111, 75, .25);
}
.button-primary:hover { background: var(--terracotta-dark); }
.button-dark { color: var(--white); background: var(--green-900); }
.button-dark:hover { background: var(--green-800); }
.button-ghost {
    color: var(--green-900);
    border-color: rgba(24,58,52,.35);
    background: rgba(255,255,255,.25);
}
.button-ghost:hover { background: var(--white); }

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--green-800);
    font-size: .9rem;
    font-weight: 700;
}
.hero-points span { color: var(--terracotta); }

.hero-image-wrap {
    position: relative;
    padding: 18px;
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 48% 48% 32px 32px;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
}
.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: -18px 70px auto -20px;
    height: 130px;
    border: 2px solid rgba(200,111,75,.35);
    border-bottom: 0;
    border-radius: 180px 180px 0 0;
    pointer-events: none;
}
.hero-image-wrap > img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 44% 44% 21px 21px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: 240px;
    padding: 13px 17px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(24,58,52,.1);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(22,45,40,.15);
    transform: rotate(-1.2deg);
}
.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-size: .9rem; }
.floating-card small { color: var(--muted); font-size: .72rem; }
.floating-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--terracotta);
    border-radius: 50%;
}
.floating-card-top { top: 94px; left: -55px; }
.floating-card-bottom { right: -45px; bottom: 72px; }
.floating-card-bottom .floating-icon { background: var(--green-800); }

.trust-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.trust-strip > div { padding: 27px 22px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong,
.trust-strip span { display: block; }
.trust-strip strong { color: var(--green-900); font-size: .98rem; }
.trust-strip span { color: var(--muted); font-size: .84rem; }

.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.benefit-card {
    position: relative;
    min-height: 330px;
    padding: 30px 27px;
    overflow: hidden;
    background: var(--cream-50);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200,111,75,.35);
    box-shadow: 0 25px 50px rgba(28,60,53,.1);
}
.benefit-number {
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(24,58,52,.07);
    font-family: Georgia, serif;
    font-size: 4.7rem;
    line-height: 1;
}
.benefit-icon {
    display: grid;
    width: 60px;
    height: 60px;
    margin-bottom: 62px;
    place-items: center;
    color: var(--white);
    background: var(--green-900);
    border-radius: 19px;
    font-size: 1.8rem;
}
.benefit-card:nth-child(even) .benefit-icon { background: var(--terracotta); }
.benefit-card h3 { margin-bottom: 13px; font-size: 1.25rem; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.process-section {
    color: var(--white);
    background:
        radial-gradient(circle at 90% 12%, rgba(213,166,75,.16), transparent 24%),
        var(--green-950);
}
.process-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}
.process-copy { position: sticky; top: 130px; }
.process-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.process-image {
    width: 100%;
    height: 310px;
    margin-top: 38px;
    object-fit: cover;
    border-radius: var(--radius-md);
    opacity: .88;
}
.process-list { padding: 0; margin: 0; list-style: none; }
.process-list li {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 24px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.process-list li:first-child { padding-top: 0; }
.process-list li > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--green-950);
    background: var(--cream-100);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 1.35rem;
}
.process-list li:nth-child(even) > span { color: var(--white); background: var(--terracotta); }
.process-list h3 { margin-bottom: 9px; font-size: 1.35rem; }
.process-list p { margin-bottom: 0; color: rgba(255,255,255,.65); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(26,55,49,.05);
}
.price-card.is-featured {
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
    box-shadow: 0 25px 55px rgba(24,58,52,.22);
    transform: translateY(-14px);
}
.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 12px;
    color: var(--green-950);
    background: var(--gold);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.price-tagline {
    margin-bottom: 10px;
    color: var(--terracotta);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.is-featured .price-tagline { color: var(--gold); }
.price-card h3 { margin-bottom: 25px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.price { margin-bottom: 25px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.is-featured .price { border-color: rgba(255,255,255,.16); }
.price span,
.price strong { display: block; }
.price span { color: var(--muted); font-size: .82rem; }
.is-featured .price span { color: rgba(255,255,255,.55); }
.price strong { margin-top: 4px; font-family: Georgia, serif; font-size: 2.65rem; font-weight: 500; }
.price-card ul { flex: 1; padding: 0; margin: 0 0 30px; list-style: none; }
.price-card li { display: flex; gap: 11px; padding: 8px 0; color: var(--muted); font-size: .91rem; }
.is-featured li { color: rgba(255,255,255,.78); }
.price-card li span { color: var(--terracotta); font-weight: 900; }
.is-featured li span { color: var(--gold); }
.price-card .button { width: 100%; }
.is-featured .button-primary { background: var(--terracotta); }
.pricing-note { margin: 25px 0 0; color: var(--muted); text-align: center; font-size: .88rem; }

.occasions { background: var(--white); }
.occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.occasion-card {
    padding: 30px;
    background: linear-gradient(145deg, var(--cream-50), var(--cream-100));
    border-radius: 20px;
}
.occasion-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 45px;
    place-items: center;
    color: var(--terracotta);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.5rem;
}
.occasion-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.occasion-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.gallery-section { color: var(--white); background: var(--green-900); }
.gallery-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}
.gallery-heading p:last-child { color: rgba(255,255,255,.65); font-size: 1.04rem; }
.gallery-grid {
    display: grid;
    grid-auto-rows: 230px;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}
.gallery-item {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    cursor: zoom-in;
    background: #102d28;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4),
.gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s, filter .45s;
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(13,35,31,.78));
}
.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 15px;
    color: var(--white);
    font-size: .84rem;
    font-weight: 800;
}
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.06); }

.local-section { overflow: hidden; background: var(--cream-100); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; }
.mountain-card {
    position: relative;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
}
.mountain-card svg { width: 100%; background: #f1e8d9; border-radius: 26px; }
.mountain-label {
    position: absolute;
    right: -25px;
    bottom: 35px;
    padding: 17px 22px;
    color: var(--white);
    background: var(--green-900);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(24,58,52,.2);
}
.mountain-label strong,
.mountain-label span { display: block; }
.mountain-label span { color: rgba(255,255,255,.62); font-size: .8rem; }
.local-copy > p:not(.eyebrow) { color: var(--muted); }
.local-list { display: grid; gap: 15px; margin-top: 35px; }
.local-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 15px; align-items: start; }
.local-list > div > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--white);
    background: var(--terracotta);
    border-radius: 15px;
    font-size: 1.3rem;
}
.local-list p { margin: 0; color: var(--muted); font-size: .91rem; }
.local-list strong { display: block; color: var(--ink); font-size: 1rem; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 130px; margin: 0; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
    border: 0;
    color: var(--green-950);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 800;
}
.accordion-item button span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--green-900);
    border-radius: 50%;
    transition: transform .25s, background .25s;
}
.accordion-item button[aria-expanded="true"] span { transform: rotate(45deg); background: var(--terracotta); }
.accordion-panel { padding: 0 55px 24px 0; }
.accordion-panel p { margin: 0; color: var(--muted); }

.contact-section {
    color: var(--white);
    background:
        linear-gradient(rgba(16,45,40,.96), rgba(16,45,40,.96)),
        url("../images/props-table.jpg") center / cover;
}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow):not(.contact-reassurance) { color: rgba(255,255,255,.67); }
.contact-details { display: grid; gap: 12px; margin-top: 38px; }
.contact-details > a,
.contact-details > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
}
.contact-details > a > span,
.contact-details > div > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--green-950);
    background: var(--cream-100);
    border-radius: 50%;
}
.contact-details small,
.contact-details strong { display: block; }
.contact-details small { color: rgba(255,255,255,.5); }
.contact-details strong { font-size: .96rem; }
.contact-reassurance { margin: 28px 0 0; color: var(--gold); font-size: .85rem; font-weight: 800; }

.contact-form {
    padding: 35px;
    color: var(--ink);
    background: var(--cream-50);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 70px rgba(0,0,0,.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label {
    display: block;
    margin-bottom: 16px;
    color: var(--green-900);
    font-size: .82rem;
    font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(24,58,52,.2);
    border-radius: 11px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(200,111,75,.12);
}
.checkbox { display: flex !important; gap: 10px; align-items: flex-start; color: var(--muted) !important; font-weight: 500 !important; }
.checkbox input { width: 18px; height: 18px; flex: 0 0 auto; margin: 2px 0 0; }
.form-submit { width: 100%; justify-content: space-between; border: 0; }
.form-submit[disabled] { opacity: .65; cursor: wait; }
.form-status { min-height: 25px; margin: 14px 0 0; font-size: .88rem; }
.form-status.is-success { color: #247545; }
.form-status.is-error { color: #a23e30; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.site-footer { padding: 75px 0 25px; color: rgba(255,255,255,.7); background: #0b2420; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; }
.brand-footer { color: var(--white); }
.footer-grid > div:first-child > p { max-width: 340px; margin-top: 22px; }
.footer-grid h2 { margin-bottom: 20px; color: var(--white); font-family: inherit; font-size: .86rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a,
.footer-grid span { display: block; width: fit-content; margin: 9px 0; font-size: .88rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .78rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }

.lightbox {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    padding: 60px 20px 25px;
    place-items: center;
    background: rgba(5,20,17,.92);
}
.lightbox[hidden] { display: none; }
.lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { padding: 145px 0 90px; background: var(--cream-50); }
.legal-content { max-width: 850px; }
.legal-content h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal-content h2 { margin-top: 45px; font-family: inherit; font-size: 1.35rem; font-weight: 800; letter-spacing: 0; }
.legal-content p,
.legal-content li { color: var(--muted); }
.legal-alert { padding: 18px 22px; border-left: 4px solid var(--terracotta); background: var(--cream-100); }

@media (max-width: 1020px) {
    .main-nav { gap: 20px; }
    .hero-grid { gap: 38px; }
    .hero-image-wrap > img { height: 500px; }
    .floating-card-top { left: -20px; }
    .floating-card-bottom { right: -18px; }
    .benefit-grid,
    .occasion-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { gap: 14px; }
    .price-card { padding: 29px 24px; }
    .process-grid,
    .contact-grid { gap: 55px; }
    .gallery-grid { grid-auto-rows: 190px; }
}

@media (max-width: 820px) {
    .section { padding: 82px 0; }
    .nav-wrap { min-height: 78px; }
    .nav-toggle { display: block; z-index: 3; }
    .main-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 7px;
        padding: 100px 30px 35px;
        color: var(--white);
        background: var(--green-950);
        transform: translateX(100%);
        transition: transform .28s;
    }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav > a { padding: 12px 10px; font-size: 1.16rem; }
    .main-nav .nav-cta { margin-top: 12px; text-align: center; background: var(--terracotta); }
    .menu-open .nav-toggle { color: var(--white); }
    .menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero { padding-top: 125px; }
    .hero-grid,
    .process-grid,
    .local-grid,
    .faq-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 55px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow,
    .hero-actions,
    .hero-points { justify-content: center; }
    .hero-image-wrap { max-width: 620px; margin-inline: auto; }
    .process-copy,
    .faq-grid .section-heading,
    .contact-copy { position: static; }
    .process-image { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
    .price-card.is-featured { transform: none; }
    .gallery-heading { grid-template-columns: 1fr; gap: 15px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(9) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 590px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
    h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-points { gap: 10px 16px; }
    .hero-image-wrap > img { height: 430px; }
    .floating-card { max-width: 205px; padding: 10px 12px; }
    .floating-card-top { top: 75px; left: -6px; }
    .floating-card-bottom { right: -5px; bottom: 30px; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-strip > div { border-bottom: 1px solid var(--line); }
    .trust-strip > div:nth-child(2) { border-right: 0; }
    .benefit-grid,
    .occasion-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: auto; }
    .benefit-icon { margin-bottom: 38px; }
    .process-list li { grid-template-columns: 48px 1fr; gap: 15px; }
    .process-list li > span { width: 45px; height: 45px; }
    .gallery-grid { grid-auto-rows: 180px; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .mountain-label { right: -8px; bottom: 15px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 25px 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
    .footer-grid > div:first-child,
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

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