:root {
  --ink: #252525;
  --blue: #5a5a5a;
  --blue-deep: #3f3f3f;
  --cream: #e7e7e4;
  --paper: #f8f8f6;
  --red: #777773;
  --lime: #d2d2cf;
  --muted: #70706d;
  --line: rgba(17, 24, 39, .16);
  --line-light: rgba(255,255,255,.22);
  --shell: min(1180px, calc(100% - 80px));
  --display: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--display); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
main { padding-top: 82px; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.section-light { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-dark { color: #fff; background: var(--ink); }
.section-blue { color: #fff; background: var(--blue); }
.section-kicker { display: flex; align-items: center; gap: 12px; color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.section-kicker i { display: block; width: 28px; height: 1px; background: currentColor; }
.section-kicker-light { color: var(--lime); }
.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; }
.reveal { opacity: 1; transform: translateY(0); }

.site-header { position: fixed; top: 0; left: 0; z-index: 20; width: 100%; height: 82px; min-height: 82px; color: var(--ink); background: rgba(251,250,246,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); overflow: visible; transition: none; }
body.is-scrolled .site-header { top: 0; }
.header-inner { height: 100%; min-height: 0; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-tile { display: grid; place-items: center; width: 38px; height: 38px; overflow: hidden; border: 1px solid var(--ink); background: #c9c9c9; }
.brand-tile img { height: 100%; object-fit: cover; }
.brand-type { display: grid; gap: 2px; line-height: 1; }
.brand-type strong { font-size: 15px; letter-spacing: .13em; font-weight: 800; }
.brand-type small { color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: 27px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a { display: inline-flex; align-items: center; gap: 7px; padding: 7px 0; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.main-nav a > span:first-child { color: var(--red); font-size: 9px; }
.main-nav a:hover { color: var(--blue); border-color: var(--blue); }
.main-nav .nav-contact { gap: 16px; padding: 8px 9px 8px 16px; color: #fff; background: var(--red); border: 0; }
.main-nav .nav-contact .nav-icon { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(255,255,255,.78); border-radius: 50%; color: #fff; font-family: var(--display); font-size: 17px; line-height: 1; }
.main-nav .nav-contact:hover .nav-icon { border-color: #fff; background: rgba(255,255,255,.15); }
.main-nav .nav-contact:hover { color: #fff; background: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 9px 0 9px 9px; cursor: pointer; }
.menu-toggle span { display: block; width: 27px; height: 1.5px; margin: 6px 0; background: var(--ink); }

.hero { position: relative; overflow: hidden; color: var(--ink); background: var(--cream); }
.hero-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; min-height: 710px; padding-top: 76px; padding-bottom: 86px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .section-kicker { margin-bottom: 25px; }
h1, h2, h3 { margin: 0; font-family: var(--display); letter-spacing: -.075em; line-height: .98; font-weight: 800; }
h1 { font-size: clamp(63px, 8vw, 116px); }
h1 em, h2 em, h3 em { color: var(--blue); font-style: normal; }
h2 { font-size: clamp(48px, 6vw, 84px); }
.hero-lead { max-width: 415px; margin: 31px 0 34px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 49px; padding: 13px 18px; border: 1px solid transparent; cursor: pointer; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button span { font-size: 18px; line-height: 0; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--blue); }
.button-light { color: var(--ink); background: #fff; }
.button-light:hover { color: #fff; background: var(--ink); }
.button-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button-outline:hover { color: #fff; border-color: var(--ink); background: var(--ink); }
.under-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.under-link span { color: var(--red); font-size: 12px; transition: transform .2s ease; }
.under-link:hover span { transform: translateX(4px); }
.hero-footnote { display: flex; align-items: center; gap: 10px; margin-top: 72px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 11px; }
.rating-stars { color: var(--red); letter-spacing: 2px; font-size: 12px; }
.hero-footnote strong { font-size: 22px; letter-spacing: -.06em; }
.hero-footnote > span:last-child { color: var(--muted); font-family: var(--mono); font-size: 9px; line-height: 1.35; }
.hero-visual { position: relative; min-height: 585px; }
.hero-photo { height: 585px; margin: 0; overflow: hidden; background: #c4b9ad; }
.hero-photo img { height: 100%; object-fit: cover; }
.hero-tag { position: absolute; top: 21px; left: -35px; display: flex; align-items: center; justify-content: space-between; width: 142px; padding: 12px 13px; color: #fff; background: var(--red); font-family: var(--mono); font-size: 9px; line-height: 1.3; }
.hero-tag strong { font-size: 19px; font-weight: 400; }
.hero-stamp { position: absolute; right: -25px; bottom: 37px; display: grid; gap: 8px; width: 145px; padding: 20px 17px 16px; color: var(--ink); background: var(--lime); }
.hero-stamp span, .hero-stamp small { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.hero-stamp strong { font-size: 29px; letter-spacing: -.08em; line-height: .9; }
.hero-stamp em { color: var(--red); font-style: normal; }
.hero-side-label { position: absolute; right: -45px; top: 50%; color: var(--ink); font-family: var(--mono); font-size: 9px; line-height: 1.3; letter-spacing: .13em; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-marquee { overflow: hidden; color: var(--lime); background: var(--blue); font-family: var(--mono); font-size: 10px; letter-spacing: .17em; white-space: nowrap; text-transform: uppercase; }
.hero-marquee div { padding: 13px 0; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-30%); } }

.intro { padding: 128px 0 135px; }
.intro-grid { display: grid; grid-template-columns: .5fr 1.15fr .6fr; align-items: start; gap: 50px; }
.intro-main h2 { margin-bottom: 30px; }
.intro-main p { max-width: 530px; margin: 0 0 32px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.intro-note { justify-self: end; max-width: 175px; padding-top: 46px; border-top: 1px solid var(--ink); }
.note-mark { display: block; margin-bottom: 15px; color: var(--red); font-family: var(--mono); font-size: 33px; line-height: .6; }
.intro-note p { margin: 0; font-family: var(--mono); font-size: 11px; line-height: 1.5; }
.intro-note strong { color: var(--blue); }

.collection { padding: 113px 0 123px; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.section-header .section-kicker { margin-bottom: 24px; }
.section-header h2 { color: #fff; }
.section-header h2 em { color: var(--lime); }
.section-header > p { max-width: 300px; margin: 0 0 6px; color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.7; }
.collection-grid { display: grid; grid-template-columns: 1fr 1fr .72fr; gap: 22px; align-items: start; }
.collection-card { background: #353533; transition: transform .25s ease, box-shadow .25s ease; }
.collection-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.collection-image { position: relative; height: 330px; overflow: hidden; background: #887e78; }
.collection-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.collection-card:hover img { transform: scale(1.04); }
.image-badge { position: absolute; left: 15px; bottom: 13px; padding: 6px 8px; color: #fff; background: rgba(17,24,39,.73); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.collection-meta { padding: 23px 23px 25px; }
.collection-meta > span, .list-title { color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; }
.collection-meta h3 { margin: 18px 0 10px; color: #fff; font-size: 34px; }
.collection-meta h3 em { color: var(--lime); }
.collection-meta p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; }
.card-men { margin-top: 58px; background: #595956; }
.card-men .collection-meta > span { color: #fff; }
.collection-list { align-self: stretch; padding: 23px 0 0 25px; border-left: 1px solid var(--line-light); }
.collection-list ul { margin: 25px 0 37px; padding: 0; list-style: none; }
.collection-list li { display: flex; justify-content: space-between; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.86); font-size: 12px; }
.collection-list li b { color: var(--lime); font-family: var(--mono); font-size: 9px; font-weight: 400; }
.arrow-link { display: inline-flex; align-items: center; gap: 13px; color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.arrow-link span { font-size: 17px; }

.editorial { padding: 125px 0 136px; }
.editorial-grid { display: grid; grid-template-columns: .74fr 1.26fr; align-items: center; gap: 10%; }
.editorial-copy .section-kicker { margin-bottom: 23px; }
.editorial-copy h2 { margin-bottom: 29px; }
.editorial-copy h2 em { color: var(--red); }
.editorial-copy > p { max-width: 400px; margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.editorial-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 35px; }
.editorial-tags span { padding: 7px 9px; border: 1px solid var(--line); color: var(--blue); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.editorial-mosaic { position: relative; display: grid; grid-template-columns: 1.1fr .75fr; gap: 17px; align-items: end; min-height: 580px; }
.editorial-mosaic figure { position: relative; margin: 0; overflow: hidden; background: #c4b9ad; }
.editorial-mosaic figure img { height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); }
.mosaic-tall { height: 580px; }
.mosaic-square { height: 310px; }
.editorial-mosaic figcaption { position: absolute; right: 11px; bottom: 10px; color: #fff; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-shadow: 0 1px 3px rgba(0,0,0,.3); }
.mosaic-number { position: absolute; top: 20px; right: -35px; display: flex; gap: 8px; align-items: baseline; color: var(--blue); font-family: var(--mono); font-size: 13px; writing-mode: vertical-rl; }
.mosaic-number span { color: var(--red); }

.store { padding: 124px 0 134px; }
.store-grid { display: grid; grid-template-columns: .65fr 1fr .58fr; gap: 22px; align-items: start; }
.store-intro { padding-top: 15px; }
.store-intro .section-kicker { margin-bottom: 24px; }
.store-intro h2 { margin-bottom: 28px; }
.store-intro h2 em { color: var(--blue); }
.store-intro p { max-width: 290px; margin: 0 0 31px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.store-feature { position: relative; height: 575px; overflow: hidden; background: #c6bcb4; }
.store-feature img { height: 100%; object-fit: cover; }
.photo-caption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; gap: 10px; padding: 12px 15px; color: #fff; background: rgba(17,24,39,.75); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.photo-caption strong { color: var(--lime); font-weight: 400; }
.store-side { display: grid; gap: 16px; padding-top: 74px; }
.store-side img { height: 320px; object-fit: cover; filter: grayscale(1) contrast(1.03); }
.store-side > div { padding-top: 16px; border-top: 1px solid var(--line); }
.store-side span { color: var(--red); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.store-side p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }

.visit { padding: 121px 0 121px; }
.visit-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 15%; align-items: center; }
.visit-copy .section-kicker { margin-bottom: 24px; }
.visit-copy h2 { margin-bottom: 28px; }
.visit-copy h2 em { color: var(--lime); }
.visit-copy > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.8; }
.visit-address { display: flex; gap: 14px; align-items: flex-start; margin: 35px 0 30px; }
.address-marker { display: grid; place-items: center; width: 35px; height: 35px; color: var(--blue); background: var(--lime); font-size: 25px; line-height: 1; }
.visit-address strong, .visit-address span { display: block; }
.visit-address strong { font-size: 15px; }
.visit-address span { margin-top: 4px; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.45; }
.hours-panel { color: var(--ink); background: var(--cream); }
.hours-heading { display: flex; justify-content: space-between; gap: 15px; padding: 20px 23px 18px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 9px; letter-spacing: .11em; }
.open-status { color: #318957; font-size: 9px; letter-spacing: 0; }
.open-status.is-closed { color: var(--red); }
.open-status i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: currentColor; vertical-align: middle; }
.hours-list { padding: 8px 23px; }
.hours-list > div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.hours-list strong { font-weight: 600; }
.hours-list .closed { color: #8c9095; }
.hours-list .closed strong { font-weight: 400; }
.hours-phone { display: flex; justify-content: space-between; padding: 16px 23px; color: #fff; background: var(--red); font-family: var(--mono); font-size: 11px; letter-spacing: .07em; }
.hours-phone span { font-size: 17px; }

.map-section { background: #c9c6bd; }
.map-frame { position: relative; height: 365px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.93) sepia(.1); }
.map-card { position: absolute; top: 50%; left: 50%; display: grid; gap: 5px; width: 225px; padding: 18px 20px; color: #fff; background: var(--ink); box-shadow: 0 12px 35px rgba(0,0,0,.24); transform: translate(-50%, -50%); }
.map-card span { color: var(--lime); font-size: 24px; line-height: .8; }
.map-card strong { font-size: 13px; }
.map-card small { color: rgba(255,255,255,.62); font-family: var(--mono); font-size: 9px; }

.contact { padding: 126px 0 130px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12%; align-items: start; }
.contact-copy .section-kicker { margin-bottom: 24px; }
.contact-copy h2 { margin-bottom: 28px; font-size: clamp(45px, 5vw, 74px); }
.contact-copy h2 em { color: var(--red); }
.contact-copy > p { max-width: 385px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-direct { display: grid; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-direct a { display: grid; gap: 4px; }
.contact-direct span { color: var(--red); font-family: var(--mono); font-size: 9px; letter-spacing: .13em; }
.contact-direct strong { font-size: 15px; }
.contact-form { padding: 29px 32px 32px; background: var(--cream); }
.form-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 33px; color: var(--red); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.form-top span:last-child { color: var(--muted); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 22px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
input, select, textarea { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid rgba(17,24,39,.3); outline: none; border-radius: 0; color: var(--ink); background: transparent; font-family: var(--display); font-size: 13px; letter-spacing: 0; text-transform: none; resize: vertical; }
input::placeholder, textarea::placeholder { color: #a2a4a4; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
select { appearance: none; background: linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 7px) 50% / 5px 5px no-repeat, linear-gradient(135deg, var(--ink) 50%, transparent 50%) 100% 50% / 5px 5px no-repeat; }
.check-label { display: flex !important; align-items: flex-start; gap: 9px !important; color: var(--muted); font-family: var(--display) !important; font-size: 10px !important; letter-spacing: 0 !important; line-height: 1.45; text-transform: none !important; }
.check-label input { flex: 0 0 auto; width: 14px; height: 14px; margin-top: 1px; accent-color: var(--red); }
.check-label a { color: var(--red); text-decoration: underline; }
.form-feedback { min-height: 18px; margin: 12px 0 0; color: #318957; font-size: 10px; }

.newsletter { padding: 85px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr .8fr; gap: 15%; align-items: center; }
.newsletter .section-kicker { margin-bottom: 22px; }
.newsletter h2 { color: #fff; font-size: clamp(44px, 5vw, 72px); }
.newsletter h2 em { color: var(--lime); }
.newsletter-inner > div:last-child > p { margin: 0 0 27px; color: rgba(255,255,255,.7); font-size: 14px; }
.newsletter-form { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.65); }
.newsletter-form input { color: #fff; border: 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.65); }
.newsletter-form button { display: grid; place-items: center; width: 42px; height: 42px; border: 0; color: var(--ink); background: var(--lime); font-size: 19px; cursor: pointer; }
.newsletter small { display: block; margin-top: 10px; color: rgba(255,255,255,.53); font-family: var(--mono); font-size: 8px; }

.site-footer { color: #fff; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 25px; min-height: 184px; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5; }
.brand-footer .brand-tile { border-color: rgba(255,255,255,.65); }
.brand-footer .brand-type strong { color: #fff; }
.footer-social { display: grid; justify-items: end; gap: 7px; color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 9px; }
.footer-bottom > div { display: flex; gap: 19px; }
.footer-bottom button { padding: 0; border: 0; color: inherit; background: none; cursor: pointer; font: inherit; }
.footer-bottom a:hover, .footer-bottom button:hover, .footer-social a:hover { color: #fff; }

.legal { display: grid; grid-template-columns: 1fr; gap: 0; padding-top: 95px; padding-bottom: 105px; }
.legal-accordion { border-top: 1px solid var(--line); }
.legal-accordion:last-child { border-bottom: 1px solid var(--line); }
.legal-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; }
.legal-accordion summary::-webkit-details-marker { display: none; }
.legal-accordion summary > span:first-child { display: grid; gap: 15px; }
.legal-accordion summary strong { font-family: var(--display); font-size: clamp(31px, 4vw, 53px); letter-spacing: -.07em; line-height: .98; }
.legal-toggle { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; color: #fff; background: var(--ink); font-size: 25px; font-weight: 300; line-height: 1; transition: transform .2s ease, background .2s ease; }
.legal-accordion[open] .legal-toggle { transform: rotate(45deg); background: var(--red); }
.legal-content { max-width: 680px; padding: 0 75px 30px 0; }
.legal-content p { margin: 0 0 16px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--red); }
.legal-note { padding: 13px 16px; border-left: 2px solid var(--red); background: var(--cream); }

.cookie-banner { position: fixed; z-index: 50; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 650px; padding: 17px 19px; color: var(--ink); background: #fff; box-shadow: 0 12px 38px rgba(0,0,0,.21); transition: opacity .25s ease, transform .25s ease; }
.cookie-banner.is-hidden { opacity: 0; pointer-events: none; transform: translateY(15px); }
.cookie-banner strong { font-size: 11px; }
.cookie-banner p { max-width: 340px; margin: 3px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions .button { min-height: 36px; padding: 8px 11px; gap: 10px; font-size: 9px; }
.cookie-actions .button-ghost { border: 1px solid var(--line); }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 48px, 900px); }
  .hero-layout { gap: 42px; }
  .hero-side-label { right: -28px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-list { grid-column: 1 / -1; padding: 28px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .collection-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
  .store-grid { grid-template-columns: .8fr 1fr; }
  .store-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 25px; padding-top: 0; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 38px); }
  main { padding-top: 72px; }
  .site-header, body.is-scrolled .site-header { top: 0 !important; height: 72px !important; min-height: 72px !important; max-height: 72px !important; transition: none; }
  .header-inner { height: 100%; min-height: 0; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 19px 18px; background: rgba(251,250,246,.98); box-shadow: 0 12px 25px rgba(0,0,0,.12); }
  .main-nav.is-open { display: flex; }
  .main-nav a { justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-contact { margin-top: 12px; padding: 13px; border: 0; }
  .hero-layout { display: block; min-height: 0; padding-top: 59px; padding-bottom: 61px; }
  h1 { font-size: clamp(62px, 17vw, 88px); }
  .hero-lead { margin: 25px 0 30px; font-size: 15px; }
  .hero-footnote { margin-top: 49px; }
  .hero-visual { min-height: 470px; margin-top: 48px; }
  .hero-photo { height: 445px; }
  .hero-tag { left: -8px; }
  .hero-stamp { right: -8px; bottom: 19px; }
  .hero-side-label { right: 3px; top: 13%; }
  .intro { padding: 78px 0 85px; }
  .intro-grid, .editorial-grid, .visit-grid, .contact-grid, .newsletter-inner, .legal { grid-template-columns: 1fr; gap: 37px; }
  .intro-main h2 { margin-top: 8px; }
  .intro-note { justify-self: start; max-width: 220px; padding-top: 16px; }
  .collection, .editorial, .store, .contact { padding: 79px 0 87px; }
  .section-header { display: block; margin-bottom: 39px; }
  .section-header > p { margin-top: 25px; }
  .collection-grid { display: block; }
  .collection-card, .card-men { margin: 0 0 18px; }
  .collection-image { height: 310px; }
  .collection-list { margin-top: 32px; padding-top: 25px; }
  .collection-list ul { display: block; margin-bottom: 28px; }
  .editorial-grid { gap: 48px; }
  .editorial-copy h2 { margin-top: 8px; }
  .editorial-mosaic { min-height: 0; grid-template-columns: 1fr 1fr; gap: 10px; }
  .mosaic-tall { height: 440px; }
  .mosaic-square { height: 240px; }
  .mosaic-number { right: -23px; top: 7px; font-size: 10px; }
  .store-grid { display: block; }
  .store-intro { margin-bottom: 38px; }
  .store-feature { height: 440px; }
  .store-side { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }
  .store-side img { height: 205px; }
  .store-side > div { grid-column: 1 / -1; }
  .visit { padding: 79px 0 87px; }
  .visit-grid { gap: 45px; }
  .hours-panel { width: 100%; }
  .map-frame { height: 300px; }
  .map-card { width: 194px; }
  .contact-form { padding: 24px 20px 25px; }
  .form-top { display: block; line-height: 1.8; }
  .form-top span { display: block; }
  .newsletter { padding: 66px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding-top: 58px; padding-bottom: 38px; }
  .footer-social { justify-items: start; }
  .footer-bottom { display: block; line-height: 2; }
  .footer-bottom > div { flex-wrap: wrap; gap: 4px 17px; }
  .legal { gap: 0; padding-top: 65px; padding-bottom: 75px; }
  .legal-content { padding-right: 0; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; display: block; padding: 15px; }
  .cookie-banner p { max-width: none; }
  .cookie-actions { margin-top: 13px; }
}

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