:root {
  --brand: #a85f6d;
  --brand-deep: #6c3540;
  --accent: #d1a18a;
  --page-bg: #f7f1eb;
  --surface: #fffdfb;
  --text: #211a19;
  --muted: #716562;
  --line: #ded1ca;
  --dark: #211a19;
  --white: #fffaf7;
  --radius: 18px;
  --section-y: 112px;
  --shadow-soft: 0 26px 70px rgba(52, 35, 31, .10);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-button: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 18px;
  --font-size-small: 14px;
  --font-size-h1: 96px;
  --font-size-h2: 62px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; overflow-x: hidden; background: var(--page-bg); color: var(--text); font-family: var(--font-body); font-size: var(--font-size-base); line-height: 1.7; text-rendering: optimizeLegibility; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--brand); color: var(--white); }

h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--text); font-family: var(--font-heading); font-weight: 500; letter-spacing: -.045em; text-wrap: balance; }
h1 { font-size: clamp(3.65rem, 8.2vw, var(--font-size-h1)); line-height: .94; }
h2 { font-size: clamp(2.55rem, 5.2vw, var(--font-size-h2)); line-height: 1.02; }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); line-height: 1.14; }
h4 { font-size: 1.28rem; line-height: 1.2; }
h5 { font-size: 1.12rem; line-height: 1.25; }
h6 { font-size: 1rem; line-height: 1.3; }
p { margin: 0; color: var(--muted); font-size: var(--font-size-base); }
address { color: var(--muted); font-style: normal; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: var(--section-y) 0; }
.section-kicker { margin: 0 0 18px; color: var(--brand-deep); font-family: var(--font-button); font-size: .76rem; font-weight: 800; letter-spacing: .2em; line-height: 1.4; text-transform: uppercase; }
.section-heading { margin-bottom: clamp(42px, 6vw, 72px); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(36px, 8vw, 100px); align-items: end; }
.split-heading > p { max-width: 530px; padding-bottom: 8px; }
.centered-heading { max-width: 850px; margin-inline: auto; text-align: center; }
.centered-heading p:last-child { max-width: 680px; margin: 24px auto 0; }

.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 12px 18px; transform: translateY(-160%); background: var(--dark); color: var(--white); text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 72%, white); outline-offset: 4px; }

.site-header { position: sticky; z-index: 1000; top: 0; width: 100%; border-bottom: 1px solid rgba(222, 209, 202, .8); background: var(--surface); transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: transparent; box-shadow: 0 14px 34px rgba(45, 31, 27, .09); }
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; min-width: max-content; align-items: center; gap: 13px; color: var(--text); text-decoration: none; }
.brand-logo { width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; }
.brand-name { font-family: var(--font-heading); font-size: 1.48rem; font-weight: 600; letter-spacing: -.035em; }
.nav-panel { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-menu { display: flex; margin: 0; padding: 0; align-items: center; gap: 28px; list-style: none; }
.main-menu a { position: relative; display: inline-flex; padding: 12px 0; color: var(--text); font-size: .91rem; font-weight: 700; letter-spacing: .02em; text-decoration: none; }
.main-menu a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; content: ""; transform: scaleX(0); transform-origin: right; background: var(--brand); transition: transform .25s ease; }
.main-menu a:hover::after, .main-menu a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-call { min-height: 48px; display: inline-flex; padding: 12px 17px; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--text); border-radius: 5px; color: var(--text); font-family: var(--font-button); font-size: .88rem; font-weight: 800; text-decoration: none; transition: background .25s ease, color .25s ease, transform .25s ease; }
.header-call:hover { transform: translateY(-2px); background: var(--dark); color: var(--white); }
.menu-toggle { display: none; width: 48px; height: 48px; margin-left: auto; padding: 12px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 6px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.button { min-height: 54px; display: inline-flex; padding: 15px 22px; align-items: center; justify-content: center; gap: 11px; border: 1px solid transparent; border-radius: 5px; font-family: var(--font-button); font-size: .92rem; font-weight: 800; letter-spacing: .01em; line-height: 1.1; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--brand); color: var(--white); box-shadow: 0 16px 34px rgba(108, 53, 64, .2); }
.button-primary:hover { background: var(--brand-deep); box-shadow: 0 20px 42px rgba(108, 53, 64, .26); }
.button-dark { background: var(--dark); color: var(--white); box-shadow: 0 16px 34px rgba(33, 26, 25, .18); }
.button-dark:hover { background: var(--brand-deep); }
.button-outline { border-color: var(--line); background: transparent; color: var(--text); }
.button-outline:hover { border-color: var(--text); background: var(--surface); }
.button-ghost-light { border-color: rgba(255, 255, 255, .65); background: rgba(0, 0, 0, .12); color: #fff; }
.button-ghost-light:hover { background: #fff; color: var(--dark); }
.text-link { display: inline-flex; width: max-content; margin-top: 20px; align-items: center; gap: 9px; border-bottom: 1px solid currentColor; color: var(--brand-deep); font-size: .92rem; font-weight: 800; line-height: 1.5; text-decoration: none; }
.text-link svg { transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(5px); }

.hero-home { position: relative; min-height: max(680px, calc(100svh - 92px)); display: grid; overflow: hidden; place-items: center; isolation: isolate; }
.hero-home-image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; animation: heroZoom 16s ease-out both; }
.hero-home-overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(180deg, rgba(25, 18, 18, .4), rgba(25, 18, 18, .68)), linear-gradient(90deg, rgba(37, 25, 23, .28), transparent 70%); }
.hero-home-content { max-width: 960px; padding: 110px 24px 130px; text-align: center; }
.hero-home h1 { color: #fffaf7; text-shadow: 0 14px 42px rgba(0, 0, 0, .3); }
.hero-kicker { color: #f3c9c4; }
.hero-lead { max-width: 720px; margin: 30px auto 0; color: rgba(255, 250, 247, .9); font-size: clamp(1.08rem, 1.8vw, 1.34rem); line-height: 1.6; }
.hero-actions { display: flex; margin-top: 38px; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; width: 32px; height: 50px; transform: translateX(-50%); border: 1px solid rgba(255, 255, 255, .55); border-radius: 18px; }
.hero-scroll span { position: absolute; top: 10px; left: 50%; width: 5px; height: 5px; transform: translateX(-50%); border-radius: 50%; background: #fff; animation: scrollDot 1.7s ease-in-out infinite; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes scrollDot { 0%,100% { opacity: .35; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 18px); } }

.editorial-intro { background: var(--surface); }
.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: start; }
.editorial-heading { z-index: 2; grid-column: 1 / 8; grid-row: 1; padding: 16px 0 0; }
.editorial-copy { grid-column: 9 / 13; grid-row: 1; padding: 70px 0 0 24px; }
.editorial-copy p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.editorial-photo { grid-column: 3 / 11; grid-row: 2; height: 590px; margin: 76px 0 0; overflow: hidden; }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial-note { z-index: 2; grid-column: 1 / 5; grid-row: 2; margin-top: 390px; padding: 30px 34px; background: var(--brand-deep); color: var(--white); box-shadow: var(--shadow-soft); }
.editorial-note span { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.editorial-note p { margin-top: 6px; color: var(--white); font-family: var(--font-heading); font-size: 2rem; }

.categories-section { background: var(--page-bg); }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.category-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.category-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .35s ease, box-shadow .35s ease; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.category-image { overflow: hidden; aspect-ratio: 4 / 4.4; background: #eadfd8; }
.category-grid-four .category-image { aspect-ratio: 16 / 10; }
.category-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.category-card:hover .category-image img { transform: scale(1.045); }
.category-copy { padding: clamp(26px, 3.5vw, 38px); }
.category-copy h3 { margin-top: 8px; }
.category-copy p { margin-top: 16px; }
.category-number { display: block; color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }

.looks-section, .offer-gallery { background: var(--dark); }
.looks-section h2, .looks-section h3, .offer-gallery h2, .offer-gallery h3 { color: var(--white); }
.looks-section .section-kicker, .offer-gallery .section-kicker { color: #e2ab9b; }
.looks-section p, .offer-gallery p { color: rgba(255, 250, 247, .68); }
.look-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 18px; }
.look-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.look-card { min-width: 0; }
.look-image { position: relative; width: 100%; display: block; padding: 0; overflow: hidden; border: 0; background: #2f2523; cursor: zoom-in; }
.look-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(24, 17, 17, .28)); opacity: 0; transition: opacity .3s ease; }
.look-image img { width: 100%; aspect-ratio: 3 / 4.4; object-fit: cover; object-position: center 14%; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.look-card:hover .look-image img { transform: scale(1.04); }
.look-card:hover .look-image::after { opacity: 1; }
.look-zoom { position: absolute; z-index: 2; right: 16px; bottom: 16px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(20, 15, 14, .52); color: #fff; font-size: 1.35rem; line-height: 1; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.look-card:hover .look-zoom, .look-image:focus-visible .look-zoom { opacity: 1; transform: translateY(0); }
.look-copy { padding: 22px 4px 0; }
.look-copy p { margin-top: 8px; font-size: .95rem; }
.about-gallery-section .look-copy h3, .about-gallery-section .look-copy p { color: var(--text); }
.about-gallery-section .look-copy p { color: var(--muted); }
.about-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 22px; }
.about-photo-grid .look-image img { aspect-ratio: 16 / 10; object-position: center; }

.visit-section { background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); align-items: stretch; }
.visit-image { min-height: 680px; margin: 0; overflow: hidden; }
.visit-image img { width: 100%; height: 100%; object-fit: cover; }
.visit-copy { display: flex; padding: clamp(48px, 7vw, 92px); flex-direction: column; align-items: flex-start; justify-content: center; background: #eadfd7; }
.visit-copy p:not(.section-kicker) { margin-top: 26px; }
.visit-details { width: 100%; display: grid; margin: 32px 0; gap: 12px; }
.visit-details div { display: flex; padding: 14px 0; align-items: center; gap: 13px; border-bottom: 1px solid rgba(33, 26, 25, .16); color: var(--text); font-weight: 700; }
.visit-details svg { color: var(--brand-deep); }

.page-hero { position: relative; overflow: hidden; }
.offer-hero { padding: clamp(72px, 9vw, 128px) 0 clamp(90px, 12vw, 160px); background: var(--surface); }
.offer-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); gap: 48px; align-items: center; }
.offer-hero-copy { position: relative; z-index: 2; padding: 28px 0; }
.offer-hero-copy p:not(.section-kicker) { max-width: 650px; margin-top: 28px; font-size: 1.12rem; }
.offer-hero-copy .button { margin-top: 34px; }
.offer-collage { position: relative; min-height: 650px; }
.offer-photo { position: absolute; object-fit: cover; box-shadow: var(--shadow-soft); }
.offer-photo-a { top: 0; left: 10%; width: 49%; height: 74%; object-position: center 15%; }
.offer-photo-b { right: 0; bottom: 0; width: 46%; height: 60%; object-position: center 12%; }
.offer-photo-c { bottom: 4%; left: 0; width: 32%; height: 43%; object-position: center; border: 10px solid var(--surface); }

.offer-categories { background: var(--page-bg); }
.principles-section { background: var(--surface); }
.principles-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 120px); align-items: start; }
.principles-intro { position: sticky; top: 132px; }
.principles-intro p:last-child { margin-top: 24px; }
.value-grid { display: grid; gap: 0; }
.value-card { padding: 38px 34px; border-top: 1px solid var(--line); }
.value-card:last-of-type { border-bottom: 1px solid var(--line); }
.value-number { display: block; margin-bottom: 24px; color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.value-card p { margin-top: 14px; }
.about-values-section .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-values-section .value-card { min-height: 310px; padding: 44px 34px; border-top: 0; border-right: 1px solid var(--line); border-bottom: 0; }
.about-values-section .value-card:last-of-type { border-right: 0; }

.compact-cta { background: var(--brand-deep); }
.compact-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .65fr); gap: 70px; align-items: end; }
.compact-cta h2 { color: var(--white); }
.compact-cta .section-kicker { color: #edb9ad; }
.compact-cta p { color: rgba(255, 250, 247, .75); }
.compact-cta .button { margin-top: 26px; }

.about-hero { padding: clamp(70px, 9vw, 120px) 0 0; background: var(--page-bg); }
.about-hero-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: end; }
.about-hero-copy { z-index: 2; grid-column: 1 / 8; grid-row: 1; padding: 20px 0 90px; }
.about-hero-copy p:last-child { max-width: 640px; margin-top: 28px; }
.about-hero-image { grid-column: 5 / 13; grid-row: 2; height: 620px; margin: 0; overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.story-section { background: var(--surface); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr); gap: clamp(50px, 9vw, 120px); }
.story-copy { padding-top: 58px; }
.story-copy p + p { margin-top: 26px; }
.about-values-section { background: var(--page-bg); }
.about-gallery-section { background: var(--surface); }
.local-section { padding-top: 0; background: var(--surface); }
.local-card { display: grid; padding: clamp(42px, 7vw, 78px); grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr); gap: 70px; align-items: end; background: #eadfd7; }
.local-card p:not(.section-kicker) { margin-bottom: 28px; }

.contact-hero { padding: clamp(100px, 13vw, 180px) 0; background: var(--dark); }
.contact-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 50% 15%, rgba(168, 95, 109, .32), transparent 42%); }
.contact-hero-inner { position: relative; max-width: 900px; text-align: center; }
.contact-hero h1 { color: var(--white); }
.contact-hero .section-kicker { color: #e8b4a6; }
.contact-hero p:last-child { max-width: 720px; margin: 30px auto 0; color: rgba(255, 250, 247, .72); font-size: 1.14rem; }
.contact-details { background: var(--page-bg); }
.contact-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-card { min-height: 310px; display: flex; padding: clamp(32px, 5vw, 54px); flex-direction: column; align-items: flex-start; border: 1px solid var(--line); background: var(--surface); }
.contact-card > svg { width: 34px; height: 34px; margin-bottom: auto; color: var(--brand); }
.contact-label { margin: 30px 0 10px; color: var(--brand-deep); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.contact-card h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.contact-card h2 a { text-decoration: none; }
.contact-card > a:last-child { display: inline-flex; margin-top: 24px; align-items: center; gap: 9px; color: var(--brand-deep); font-size: .9rem; font-weight: 800; text-decoration: none; }
.contact-card > p:last-child { margin-top: 18px; }
.route-section { background: var(--surface); }
.route-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: stretch; }
.route-image { min-height: 650px; margin: 0; overflow: hidden; }
.route-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.route-copy { display: flex; padding: clamp(48px, 7vw, 86px); flex-direction: column; align-items: flex-start; justify-content: center; background: #eadfd7; }
.route-copy p:not(.section-kicker) { margin-top: 26px; }
.route-actions { display: flex; margin-top: 34px; gap: 12px; flex-wrap: wrap; }

.site-footer { padding: 82px 0 28px; background: var(--dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .9fr .75fr .75fr; gap: clamp(34px, 6vw, 74px); }
.footer-logo { color: var(--white); font-family: var(--font-heading); font-size: 2rem; text-decoration: none; }
.footer-brand p { max-width: 340px; margin-top: 18px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h2 { margin-bottom: 10px; color: var(--white); font-family: var(--font-body); font-size: .76rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a, .footer-column address, .footer-column p, .footer-brand p { color: rgba(255, 250, 247, .67); font-size: .94rem; text-decoration: none; }
.footer-column a:hover { color: var(--white); }
.footer-label { color: rgba(255, 250, 247, .88); font-weight: 700; }
.privacy-settings { padding: 0; border: 0; background: none; color: rgba(255, 250, 247, .67); cursor: pointer; font-size: .94rem; text-align: left; }
.privacy-settings:hover { color: var(--white); }
.footer-bottom { display: flex; margin-top: 62px; padding-top: 24px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-bottom p, .footer-bottom a { color: rgba(255, 250, 247, .52); font-size: .78rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

.lightbox { position: fixed; z-index: 4000; inset: 0; display: grid; padding: 72px 28px 28px; place-items: center; background: rgba(16, 12, 12, .96); }
.lightbox[hidden] { display: none; }
.lightbox figure { width: min(880px, 100%); max-height: calc(100vh - 110px); margin: 0; display: grid; place-items: center; }
.lightbox img { width: auto; max-width: 100%; max-height: calc(100vh - 170px); object-fit: contain; }
.lightbox figcaption { margin-top: 14px; color: rgba(255,255,255,.78); font-size: .92rem; text-align: center; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: transparent; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }

.privacy-banner { position: fixed; z-index: 3500; right: 18px; bottom: 18px; width: min(560px, calc(100% - 36px)); padding: 26px; border: 1px solid var(--line); background: var(--surface); box-shadow: 0 24px 80px rgba(33, 26, 25, .22); }
.privacy-banner h2 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 900; letter-spacing: -.02em; }
.privacy-banner p { margin-top: 10px; font-size: .9rem; line-height: 1.55; }
.privacy-banner p a { color: var(--brand-deep); font-weight: 800; }
.privacy-banner-actions { display: flex; margin-top: 20px; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.privacy-banner .button { min-height: 46px; padding: 12px 16px; font-size: .82rem; }

.error-main { min-height: 70vh; display: grid; padding: 110px 0; place-items: center; }
.error-content { max-width: 850px; text-align: center; }
.error-content p:not(.section-kicker) { max-width: 560px; margin: 26px auto 0; }

.reveal-enabled [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal-enabled [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --section-y: 92px; }
  .header-inner { min-height: 82px; }
  .brand-logo { width: 52px; height: 52px; }
  .main-menu { gap: 20px; }
  .header-call { display: none; }
  .offer-hero-grid { grid-template-columns: .85fr 1.15fr; }
  .offer-collage { min-height: 560px; }
  .look-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-nav { grid-column: 2 / 4; }
}

@media (max-width: 880px) {
  html { scroll-padding-top: 82px; }
  .container { width: min(100% - 36px, 720px); }
  .site-header { position: sticky; top: 0; }
  .menu-toggle { display: block; flex: 0 0 48px; order: 3; }
  .site-header.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-panel { position: absolute; z-index: 20; top: 100%; left: 50%; width: 100vw; max-height: calc(100vh - 82px); margin: 0; padding: 24px 24px 34px; display: block; overflow-y: auto; transform: translate(-50%, -8px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, transform .22s ease, visibility .22s ease; }
  .site-header.is-menu-open .nav-panel { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-menu { width: 100%; display: grid; gap: 0; }
  .main-menu li { width: 100%; }
  .main-menu a { width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .main-menu a::after { display: none; }
  .nav-panel .header-call { width: 100%; display: inline-flex; margin-top: 24px; background: var(--dark); color: var(--white); }
  .split-heading, .compact-cta-inner, .local-card { grid-template-columns: 1fr; gap: 28px; }
  .split-heading > p { padding-bottom: 0; }
  .editorial-grid { display: block; }
  .editorial-copy { padding: 32px 0 0; }
  .editorial-photo { height: 480px; margin-top: 52px; }
  .editorial-note { width: min(320px, calc(100% - 34px)); margin: -110px 0 0 auto; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid-four { grid-template-columns: 1fr; }
  .category-grid-four .category-image { aspect-ratio: 16 / 10; }
  .look-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-grid, .route-grid { grid-template-columns: 1fr; }
  .visit-image, .route-image { min-height: 520px; }
  .offer-hero-grid { grid-template-columns: 1fr; }
  .offer-hero-copy { max-width: 700px; }
  .offer-collage { min-height: 650px; }
  .principles-layout { grid-template-columns: 1fr; }
  .principles-intro { position: static; }
  .about-values-section .value-grid { grid-template-columns: 1fr; }
  .about-values-section .value-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-values-section .value-card:last-of-type { border-bottom: 0; }
  .about-hero-grid { display: block; }
  .about-hero-copy { padding-bottom: 60px; }
  .about-hero-image { height: 520px; }
  .story-grid { grid-template-columns: 1fr; gap: 20px; }
  .story-copy { padding-top: 20px; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-nav { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --section-y: 74px; --font-size-base: 17px; --font-size-h1: 64px; --font-size-h2: 44px; }
  .container { width: min(100% - 28px, 560px); }
  .header-inner { min-height: 74px; gap: 12px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-name { font-size: 1.22rem; }
  .menu-toggle { width: 46px; height: 46px; padding: 10px; }
  .nav-panel { max-height: calc(100vh - 74px); padding-inline: 20px; }
  .hero-home { min-height: max(620px, calc(100svh - 74px)); }
  .hero-home-content { padding: 90px 12px 110px; }
  .hero-lead { margin-top: 24px; font-size: 1.02rem; }
  .hero-actions { width: 100%; margin-top: 30px; }
  .hero-actions .button { width: 100%; }
  .hero-scroll { display: none; }
  .section-kicker { margin-bottom: 13px; }
  .section-heading { margin-bottom: 38px; }
  .editorial-heading h2 { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .editorial-photo { height: 400px; }
  .editorial-note { padding: 22px 25px; }
  .category-copy { padding: 26px 22px 30px; }
  .look-grid, .look-grid-four, .about-photo-grid { grid-template-columns: 1fr; gap: 34px; }
  .look-image img { aspect-ratio: 4 / 5.2; }
  .visit-image, .route-image { min-height: 420px; }
  .visit-copy, .route-copy { padding: 42px 24px; }
  .offer-hero { padding-top: 64px; }
  .offer-collage { min-height: 480px; margin-top: 10px; }
  .offer-photo-a { left: 4%; width: 58%; height: 70%; }
  .offer-photo-b { width: 50%; height: 56%; }
  .offer-photo-c { width: 35%; height: 39%; border-width: 6px; }
  .value-card { padding: 30px 20px; }
  .about-hero { padding-top: 64px; }
  .about-hero-image { height: 390px; }
  .contact-hero { padding: 96px 0; }
  .contact-card { min-height: 280px; padding: 34px 26px; }
  .route-actions, .route-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .privacy-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 22px 18px; }
  .privacy-banner-actions, .privacy-banner-actions .button { width: 100%; }
}

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