:root {
  --paper: #f5f1ea;
  --paper-deep: #ece5da;
  --ink: #171816;
  --ink-soft: #4f514a;
  --muted: #87877d;
  --line: rgba(23, 24, 22, .14);
  --line-light: rgba(255, 255, 255, .17);
  --lime: #d8ef5b;
  --lime-soft: #e5f8a0;
  --orange: #f47b45;
  --white: #fffdf9;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow: 0 18px 50px rgba(20, 22, 18, .1);
  --shadow-small: 0 8px 22px rgba(20, 22, 18, .08);
  --max-width: 1280px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
::selection { color: var(--ink); background: var(--lime); }

.container { width: min(calc(100% - 64px), var(--max-width)); margin: 0 auto; }
.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; }

.announcement-bar { background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: .04em; }
.announcement-inner { min-height: 34px; display: flex; align-items: center; gap: 12px; }
.announcement-inner p { margin: 0; }
.announcement-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(216, 239, 91, .12); }
.announcement-divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); }
.announcement-muted { color: #85877d; margin: 0 5px; }
.announcement-link { margin-left: auto; color: var(--lime); transition: opacity .2s ease; }
.announcement-link:hover { opacity: .7; }

.site-header { position: relative; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(245,241,234,.92); backdrop-filter: blur(16px); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-symbol { width: 29px; height: 29px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 5px 4px; background: var(--lime); border-radius: 50% 50% 50% 9px; transform: rotate(-7deg); }
.brand-symbol span { display: block; width: 4px; border-radius: 3px; background: var(--ink); transform: rotate(7deg); }
.brand-symbol span:nth-child(1) { height: 10px; }
.brand-symbol span:nth-child(2) { height: 15px; }
.brand-symbol span:nth-child(3) { height: 7px; }
.brand-wordmark { font-size: 17px; font-weight: 700; letter-spacing: -.06em; white-space: nowrap; }
.brand-wordmark span { font-weight: 400; color: #7e8075; }
.site-nav { display: flex; align-items: center; gap: 27px; margin: 0 auto; }
.nav-link { position: relative; color: var(--ink-soft); font-size: 12px; font-weight: 700; letter-spacing: .01em; transition: color .2s ease; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--ink); transition: right .25s var(--ease); }
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.icon-button { width: 38px; height: 38px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.icon-button:hover { background: var(--white); border-color: var(--ink); transform: translateY(-2px); }
.icon-button svg, .search-field svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wishlist-trigger svg { width: 16px; height: 16px; }
.header-count { position: absolute; top: -4px; right: -3px; min-width: 15px; height: 15px; padding: 0 3px; display: grid; place-items: center; border-radius: 20px; background: var(--orange); color: var(--white); font-size: 8px; font-weight: 700; }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 42px; padding: 0 18px; border: 1px solid transparent; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .02em; transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease; }
.header-cta { min-height: 38px; margin-left: 4px; background: var(--ink); color: var(--paper); }
.header-cta:hover, .button:hover { transform: translateY(-3px); box-shadow: 0 9px 18px rgba(20,22,18,.15); }
.header-cta span, .button span, .outline-button span { font-size: 17px; line-height: 1; }
.mobile-menu-button { display: none; width: 38px; height: 38px; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.mobile-menu-button > span:not(.sr-only) { width: 22px; height: 1px; display: block; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; padding: 78px 0 96px; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 480px; height: 480px; left: -250px; top: 20px; border: 1px solid rgba(23,24,22,.1); border-radius: 50%; }
.hero::after { content: ""; position: absolute; z-index: -1; width: 280px; height: 280px; right: -125px; bottom: -90px; border: 1px solid rgba(23,24,22,.1); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(50px, 8vw, 124px); }
.hero-copy { padding-left: clamp(0px, 3vw, 44px); }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 17px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .15em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-line { width: 24px; height: 1px; display: inline-block; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.06em; }
h1 { max-width: 570px; margin-bottom: 24px; font-size: clamp(56px, 7.2vw, 99px); line-height: .91; }
h1 em, h2 em, h3 em { color: var(--orange); font-style: italic; }
.hero-description { max-width: 420px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; margin-top: 31px; }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: var(--paper); color: var(--ink); }
.text-button { display: inline-flex; align-items: center; gap: 11px; padding: 5px 0; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; transition: color .2s ease, gap .2s ease; }
.text-button:hover { color: var(--orange); gap: 16px; }
.text-button span { font-size: 16px; line-height: 1; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 52px; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.hero-proof strong { color: var(--ink); font-size: 11px; }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack span { width: 28px; height: 28px; display: grid; place-items: center; margin-left: -6px; border: 2px solid var(--paper); border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 8px; font-weight: 700; }
.avatar-stack span:first-child { margin-left: 0; background: var(--orange); color: var(--white); }
.avatar-stack span:nth-child(2) { background: var(--ink); color: var(--lime); font-size: 14px; }
.avatar-stack span:nth-child(3) { background: var(--white); color: var(--ink); font-size: 13px; }
.hero-visual { position: relative; min-height: clamp(390px, 40vw, 545px); }
.hero-frame { position: absolute; inset: 30px 0 0 34px; border: 1px solid var(--ink); border-radius: 50% 50% 50% 3px; transform: rotate(-7deg); }
.hero-image-wrap { position: absolute; z-index: 1; inset: 0 19px 19px 0; margin: 0; overflow: hidden; border-radius: 50% 50% 3px 50%; background: var(--paper-deep); box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(23,24,22,.1), transparent 45%, rgba(216,239,91,.12)); mix-blend-mode: multiply; pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-small); }
.hero-sticker-top { top: 5px; right: -5px; width: 102px; height: 102px; justify-content: center; flex-direction: column; background: var(--lime); border-radius: 50%; transform: rotate(10deg); }
.hero-sticker-top span { font-size: 9px; font-weight: 700; }
.hero-sticker-top strong, .hero-sticker-bottom strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; letter-spacing: -.06em; line-height: .95; text-align: center; }
.hero-sticker-bottom { left: -24px; bottom: 30px; width: 135px; height: 53px; padding: 0 13px; background: var(--ink); color: var(--paper); transform: rotate(-9deg); }
.hero-sticker-bottom .star { color: var(--lime); font-size: 21px; }
.hero-caption { position: absolute; z-index: 3; right: 29px; bottom: -3px; left: 49px; display: flex; justify-content: space-between; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .16em; }

.service-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-item { min-height: 92px; display: flex; align-items: center; gap: 14px; padding: 0 20px; border-right: 1px solid var(--line); }
.service-item:first-child { padding-left: 0; }
.service-item:last-child { padding-right: 0; border-right: 0; }
.service-icon { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 14px; }
.service-item strong, .service-item span:not(.service-icon) { display: block; }
.service-item strong { margin-bottom: 2px; font-size: 11px; }
.service-item div span { color: var(--muted); font-size: 10px; }

.section { padding: 122px 0; }
.section-heading { margin-bottom: 43px; }
.section-heading-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-heading h2, .newsletter-section h2 { margin: 0; font-size: clamp(47px, 5vw, 70px); line-height: .9; }
.section-intro { max-width: 330px; margin: 0 4px 4px 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.outline-button { display: inline-flex; align-items: center; gap: 15px; min-height: 40px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 700; transition: border .2s ease, background .2s ease, transform .2s ease; }
.outline-button:hover { border-color: var(--ink); background: var(--white); transform: translateY(-2px); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { position: relative; min-height: 235px; display: flex; align-items: flex-end; overflow: hidden; border-radius: var(--radius-md); color: var(--white); background: var(--ink); isolation: isolate; }
.category-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,0) 70%); }
.category-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .6s var(--ease), filter .6s ease; }
.category-card:hover img { transform: scale(1.06); filter: saturate(1.05); }
.category-card:nth-child(2) { margin-top: 32px; }
.category-card:nth-child(4) { margin-top: 32px; }
.category-card:nth-child(5) { margin-top: -32px; }
.category-card:nth-child(7) { margin-top: -32px; }
.category-card-content { width: 100%; padding: 21px 19px 19px; }
.category-index { display: block; margin-bottom: 9px; color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.category-card h3 { margin-bottom: 5px; font-size: 26px; line-height: .95; letter-spacing: -.05em; }
.category-card p { max-width: 180px; margin: 0; color: rgba(255,255,255,.73); font-size: 10px; line-height: 1.4; }
.category-arrow { position: absolute; right: 16px; top: 17px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 15px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.category-card:hover .category-arrow { color: var(--ink); background: var(--lime); border-color: var(--lime); transform: rotate(45deg); }

.featured-section { padding-top: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 14px; }
.product-card { min-width: 0; position: relative; }
.product-media { position: relative; aspect-ratio: .94; overflow: hidden; border-radius: var(--radius-md); background: var(--paper-deep); }
.product-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.16)); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.product-card:hover .product-media::after { opacity: 1; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-tag { position: absolute; z-index: 1; left: 11px; top: 11px; padding: 5px 8px; border-radius: 999px; background: rgba(255,253,249,.85); backdrop-filter: blur(5px); color: var(--ink); font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.wishlist-button { position: absolute; z-index: 2; right: 11px; top: 11px; width: 30px; height: 30px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,253,249,.85); backdrop-filter: blur(5px); cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.wishlist-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wishlist-button:hover { transform: scale(1.1); background: var(--lime); }
.wishlist-button.is-saved { background: var(--orange); color: var(--white); }
.wishlist-button.is-saved svg { fill: currentColor; }
.product-info { padding: 14px 3px 0; }
.product-category { margin: 0 0 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.product-name { min-height: 40px; margin: 0 0 13px; font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: -.02em; line-height: 1.35; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { margin: 0; font-size: 14px; font-weight: 700; }
.product-link { display: inline-flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 700; transition: color .2s ease, gap .2s ease; }
.product-link:hover { gap: 11px; color: var(--orange); border-color: var(--orange); }
.product-link span { font-size: 14px; line-height: 1; }

.editorial-band { padding: 90px 0; color: var(--paper); background: var(--ink); overflow: hidden; }
.editorial-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 9vw, 130px); }
.eyebrow-light { color: #a8aaa0; }
.editorial-copy h2 { margin: 0 0 23px; font-size: clamp(49px, 5.6vw, 78px); line-height: .9; }
.editorial-copy h2 em { color: var(--lime); }
.editorial-copy > p:not(.eyebrow) { max-width: 365px; margin-bottom: 31px; color: #b7b8af; font-size: 14px; line-height: 1.7; }
.editorial-image-wrap { position: relative; aspect-ratio: 1.42; overflow: hidden; border-radius: 50% 14px 50% 14px; }
.editorial-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(12,13,12,.2), transparent 50%); pointer-events: none; }
.editorial-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.editorial-image-wrap:hover img { transform: scale(1.05); }
.editorial-label { position: absolute; z-index: 2; right: 20px; bottom: 18px; width: 120px; height: 120px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; color: var(--ink); background: var(--lime); border-radius: 50%; transform: rotate(9deg); box-shadow: var(--shadow-small); }
.editorial-label span { font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.editorial-label strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; letter-spacing: -.08em; line-height: .83; }

.catalog-section { padding-bottom: 118px; }
.catalog-heading { margin-bottom: 30px; }
.catalog-controls { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filter-chips { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.filter-chip { min-height: 29px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; color: var(--ink-soft); font-size: 9px; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.filter-chip:hover, .filter-chip.is-active { color: var(--ink); border-color: var(--ink); background: var(--lime); }
.catalog-tools { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.search-field { min-width: 215px; display: flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; background: transparent; }
.search-field:focus-within { border-color: var(--ink); background: var(--white); }
.search-field input { width: 100%; height: 34px; padding: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 10px; }
.search-field input::placeholder { color: var(--muted); }
.search-field svg { width: 14px; height: 14px; color: var(--muted); flex-shrink: 0; }
.sort-field select { height: 36px; padding: 0 28px 0 11px; border: 1px solid var(--line); border-radius: 999px; outline: 0; color: var(--ink-soft); background: transparent; font-size: 9px; cursor: pointer; }
.sort-field select:focus { border-color: var(--ink); }
.catalog-meta { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.catalog-meta p { margin: 0; color: var(--muted); font-size: 10px; }
.clear-filter { padding: 0; border: 0; background: none; color: var(--ink-soft); cursor: pointer; font-size: 10px; opacity: .7; transition: opacity .2s ease, color .2s ease; }
.clear-filter:hover { color: var(--orange); opacity: 1; }
.empty-state { padding: 80px 20px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-md); }
.empty-icon { display: block; margin-bottom: 12px; color: var(--orange); font-family: Georgia, serif; font-size: 40px; line-height: 1; }
.empty-state h3 { margin-bottom: 6px; font-size: 28px; }
.empty-state p { margin-bottom: 24px; color: var(--muted); font-size: 12px; }

.split-promo-section { padding: 0 0 122px; }
.split-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.promo-card { position: relative; min-height: 305px; display: flex; align-items: flex-end; overflow: hidden; border-radius: var(--radius-lg); isolation: isolate; }
.promo-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(15,15,14,.9), transparent 72%); }
.promo-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .66; transition: transform .6s var(--ease), opacity .4s ease; }
.promo-card:hover img { transform: scale(1.05); opacity: .8; }
.promo-card-lime { color: var(--ink); background: var(--lime); }
.promo-card-lime::after { background: linear-gradient(0deg, rgba(216,239,91,.94), rgba(216,239,91,.18) 75%); }
.promo-card-lime img { mix-blend-mode: multiply; opacity: .58; }
.promo-content { position: relative; z-index: 1; padding: 28px; }
.promo-kicker { display: block; margin-bottom: 14px; color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.promo-card-lime .promo-kicker { color: rgba(23,24,22,.65); }
.promo-content h3 { margin: 0 0 18px; font-size: clamp(33px, 4.2vw, 55px); line-height: .91; }
.promo-card-dark .promo-content h3 em { color: var(--lime); }
.promo-card-lime .promo-content h3 em { color: var(--orange); }
.promo-link { display: inline-flex; align-items: center; gap: 11px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; transition: gap .2s ease; }
.promo-link span { font-size: 16px; }
.promo-card:hover .promo-link { gap: 16px; }

.story-section { padding-top: 40px; padding-bottom: 124px; }
.story-grid { display: grid; grid-template-columns: .72fr 1.08fr .5fr; align-items: center; gap: clamp(45px, 8vw, 115px); }
.story-mark { position: relative; width: 180px; height: 180px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; transform: rotate(-11deg); }
.story-mark::before, .story-mark::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.story-mark::before { inset: -17px 11px 13px -12px; }
.story-mark::after { inset: 17px -15px -10px 13px; }
.story-mark span { font-family: Georgia, "Times New Roman", serif; font-size: 62px; letter-spacing: -.13em; transform: rotate(11deg); }
.story-mark i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.story-mark i:nth-of-type(1) { top: 2px; right: 28px; }
.story-mark i:nth-of-type(2) { bottom: 16px; left: 17px; background: var(--lime); }
.story-mark i:nth-of-type(3) { top: 47%; right: -25px; background: var(--ink); }
.story-copy h2 { margin-bottom: 23px; font-size: clamp(49px, 5vw, 70px); line-height: .9; }
.story-copy > p:not(.eyebrow) { max-width: 495px; margin-bottom: 15px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.text-button-dark { margin-top: 16px; }
.story-stat-card { min-height: 215px; padding: 25px 22px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-md); color: var(--ink); background: var(--lime); transform: rotate(5deg); }
.stat-number { font-family: Georgia, "Times New Roman", serif; font-size: 69px; letter-spacing: -.11em; line-height: .8; }
.stat-label { font-size: 11px; font-weight: 700; line-height: 1.25; }
.stat-arrow { align-self: flex-end; font-size: 25px; line-height: 1; }

.newsletter-section { padding: 95px 0 105px; color: var(--paper); background: var(--ink); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(50px, 9vw, 145px); }
.newsletter-section h2 { margin-bottom: 20px; color: var(--paper); }
.newsletter-section h2 em { color: var(--lime); }
.newsletter-copy { max-width: 400px; margin: 0; color: #adafa5; font-size: 13px; line-height: 1.7; }
.newsletter-form { padding-bottom: 3px; }
.newsletter-form > label { display: block; margin-bottom: 12px; color: #b8baaf; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-input-wrap { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.7); }
.newsletter-input-wrap input { width: 100%; height: 54px; padding: 0; border: 0; outline: 0; color: var(--paper); background: transparent; font-size: 17px; }
.newsletter-input-wrap input::placeholder { color: #6f7169; }
.newsletter-input-wrap button { width: 45px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: var(--lime); cursor: pointer; font-size: 20px; transition: transform .2s ease, background .2s ease; }
.newsletter-input-wrap button:hover { transform: rotate(-8deg) scale(1.08); background: var(--orange); color: var(--white); }
.form-note { margin: 12px 0 0; color: #71736a; font-size: 9px; }
.form-success { margin: 12px 0 0; color: var(--lime); font-size: 11px; font-weight: 700; }

.site-footer { color: var(--paper); background: #0d0e0d; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1fr; gap: 40px; padding-top: 74px; padding-bottom: 63px; }
.brand-footer .brand-symbol { background: var(--lime); }
.brand-footer .brand-wordmark { color: var(--paper); }
.brand-footer .brand-wordmark span { color: #7f8279; }
.footer-brand-block > p { margin: 22px 0 0; color: #7f8279; font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: .98; letter-spacing: -.06em; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin: 1px 0 13px; color: var(--lime); font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a, .footer-column p { margin: 0; color: #aaa99e; font-size: 11px; line-height: 1.45; transition: color .2s ease; }
.footer-column a:hover { color: var(--lime); }
.footer-contact p { margin-top: 3px; color: #6d7067; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #6d7067; font-size: 9px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { color: #999b91; }
.footer-bottom p span { color: var(--orange); font-size: 13px; vertical-align: -1px; }
.footer-bottom a { color: var(--lime); font-size: 9px; font-weight: 700; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 22px; background: rgba(13,14,13,.72); backdrop-filter: blur(10px); }
.modal-backdrop[hidden] { display: none; }
.product-modal { position: relative; width: min(810px, 100%); display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 25px 90px rgba(0,0,0,.32); animation: modal-in .35s var(--ease) both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; z-index: 2; right: 16px; top: 14px; width: 32px; height: 32px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: rgba(255,253,249,.83); font-size: 24px; line-height: 1; cursor: pointer; }
.modal-image-wrap { min-height: 420px; background: var(--paper-deep); }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 52px 42px 42px; display: flex; flex-direction: column; justify-content: center; }
.modal-category { margin: 0 0 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.modal-content h2 { margin: 0 0 13px; font-size: clamp(35px, 4.3vw, 54px); line-height: .95; }
.modal-price { margin: 0 0 24px; color: var(--orange); font-size: 19px; font-weight: 700; }
.modal-copy { max-width: 320px; margin: 0 0 25px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.modal-request { align-self: flex-start; }
.toast { position: fixed; z-index: 120; right: 24px; bottom: 24px; max-width: 290px; padding: 13px 17px; border-radius: 10px; color: var(--ink); background: var(--lime); box-shadow: var(--shadow); font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .container { width: min(calc(100% - 42px), var(--max-width)); }
  .header-inner { gap: 22px; }
  .site-nav { gap: 17px; }
  .header-cta { padding: 0 14px; }
  .hero-grid { gap: 54px; }
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .category-card { min-height: 205px; }
  .product-grid { gap: 16px 11px; }
  .story-grid { gap: 42px; }
}

@media (max-width: 800px) {
  .announcement-inner { min-height: 32px; gap: 8px; font-size: 9px; }
  .announcement-inner p:nth-of-type(2), .announcement-divider { display: none; }
  .announcement-link { margin-left: auto; }
  .header-inner { min-height: 72px; justify-content: space-between; }
  .mobile-menu-button { display: block; order: 3; }
  .site-nav { position: absolute; z-index: 3; top: 100%; right: 21px; left: 21px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow-small); }
  .site-nav.is-open { display: flex; }
  .nav-link { padding: 13px 14px; border-radius: 8px; }
  .nav-link:hover, .nav-link.is-active { background: var(--lime); }
  .nav-link::after { display: none; }
  .header-actions { margin-left: auto; }
  .header-cta { display: none; }
  .hero { padding: 58px 0 76px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { padding-left: 0; }
  h1 { max-width: 630px; font-size: clamp(57px, 13vw, 90px); }
  .hero-description { max-width: 500px; }
  .hero-visual { min-height: min(72vw, 510px); width: min(100%, 640px); margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { min-height: 80px; border-bottom: 1px solid var(--line); }
  .service-item:nth-child(2) { border-right: 0; }
  .service-item:nth-child(3), .service-item:nth-child(4) { border-bottom: 0; }
  .service-item:nth-child(3) { padding-left: 0; }
  .service-item:nth-child(4) { padding-right: 0; }
  .section { padding: 88px 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { min-height: 245px; }
  .category-card:nth-child(2), .category-card:nth-child(4), .category-card:nth-child(5), .category-card:nth-child(7) { margin-top: 0; }
  .category-card:nth-child(even) { margin-top: 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .product-grid-featured .product-card:nth-child(n+5) { display: none; }
  .editorial-band { padding: 75px 0; }
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-copy { max-width: 540px; }
  .editorial-image-wrap { width: min(100%, 640px); }
  .catalog-controls { align-items: stretch; flex-direction: column; }
  .catalog-tools { width: 100%; }
  .search-field { flex: 1; }
  .split-promo-section { padding-bottom: 88px; }
  .story-section { padding-bottom: 88px; }
  .story-grid { grid-template-columns: 1fr 1.25fr; gap: 38px; }
  .story-mark { width: 135px; height: 135px; }
  .story-mark span { font-size: 49px; }
  .story-stat-card { grid-column: 1 / -1; width: 190px; min-height: 150px; justify-self: end; margin-top: -8px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; gap: 42px 25px; }
  .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 30px), var(--max-width)); }
  .announcement-inner p:first-of-type { max-width: 130px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-wordmark { font-size: 15px; }
  .brand-symbol { width: 26px; height: 26px; }
  .header-actions { gap: 5px; }
  .icon-button { width: 34px; height: 34px; }
  .hero { padding-top: 49px; }
  h1 { font-size: clamp(52px, 16vw, 77px); }
  .hero-description { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-proof { margin-top: 38px; }
  .hero-visual { min-height: 75vw; }
  .hero-sticker-top { width: 76px; height: 76px; right: -3px; }
  .hero-sticker-top strong { font-size: 14px; }
  .hero-sticker-bottom { left: -7px; bottom: 20px; width: 122px; height: 47px; }
  .hero-sticker-bottom strong { font-size: 15px; }
  .hero-caption { right: 10px; left: 24px; bottom: -2px; font-size: 6px; }
  .service-item { min-height: 92px; gap: 9px; padding: 12px 9px; }
  .service-item strong { font-size: 10px; }
  .service-item div span { font-size: 9px; }
  .service-icon { width: 25px; height: 25px; flex-shrink: 0; font-size: 12px; }
  .section { padding: 72px 0; }
  .section-heading-split, .section-heading-row { align-items: flex-start; flex-direction: column; gap: 22px; }
  .section-heading h2, .newsletter-section h2 { font-size: 52px; }
  .section-intro { max-width: 290px; margin: 0; }
  .category-grid { gap: 8px; }
  .category-card { min-height: 190px; border-radius: 13px; }
  .category-card:nth-child(even) { margin-top: 18px; }
  .category-card-content { padding: 15px 12px 13px; }
  .category-card h3 { font-size: 21px; }
  .category-card p { font-size: 8px; }
  .category-index { margin-bottom: 6px; font-size: 7px; }
  .category-arrow { top: 10px; right: 9px; width: 25px; height: 25px; font-size: 12px; }
  .outline-button { align-self: flex-start; }
  .product-grid { gap: 26px 10px; }
  .product-media { border-radius: 12px; }
  .product-tag { left: 7px; top: 7px; max-width: calc(100% - 43px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 7px; }
  .wishlist-button { right: 7px; top: 7px; width: 26px; height: 26px; }
  .wishlist-button svg { width: 13px; height: 13px; }
  .product-info { padding-top: 10px; }
  .product-name { min-height: 50px; font-size: 12px; }
  .product-price { font-size: 12px; }
  .product-link { font-size: 8px; gap: 4px; }
  .product-link span { font-size: 12px; }
  .editorial-copy h2 { font-size: 55px; }
  .editorial-image-wrap { aspect-ratio: 1.1; border-radius: 35% 10px 35% 10px; }
  .editorial-label { width: 97px; height: 97px; right: 12px; bottom: 10px; padding: 13px; }
  .editorial-label strong { font-size: 16px; }
  .catalog-heading { margin-bottom: 26px; }
  .filter-chips { flex-wrap: nowrap; max-width: 100%; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .filter-chips::-webkit-scrollbar { display: none; }
  .filter-chip { flex-shrink: 0; }
  .catalog-tools { flex-direction: column; align-items: stretch; }
  .search-field { min-width: 0; }
  .sort-field select { width: 100%; }
  .catalog-meta { min-height: 57px; }
  .split-promo-grid { grid-template-columns: 1fr; }
  .promo-card { min-height: 260px; }
  .promo-content { padding: 22px; }
  .story-grid { grid-template-columns: 1fr; gap: 38px; }
  .story-mark { margin-left: 20px; }
  .story-copy h2 { font-size: 53px; }
  .story-stat-card { grid-column: auto; width: 175px; justify-self: end; margin-top: 0; }
  .newsletter-section { padding: 72px 0 78px; }
  .newsletter-form { width: 100%; }
  .newsletter-input-wrap input { font-size: 14px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 43px 20px; padding-top: 58px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { min-height: 95px; align-items: flex-start; flex-wrap: wrap; padding: 18px 0; gap: 8px 20px; }
  .footer-bottom p:nth-child(2) { order: 3; width: 100%; }
  .footer-bottom a { margin-left: auto; }
  .product-modal { grid-template-columns: 1fr; max-height: calc(100vh - 44px); overflow-y: auto; }
  .modal-image-wrap { min-height: 230px; max-height: 38vh; }
  .modal-content { padding: 30px 25px 28px; }
  .modal-content h2 { font-size: 42px; }
  .toast { right: 15px; bottom: 15px; left: 15px; max-width: none; }
}

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

/* Inner pages — shared visual language for the complete site */
.inner-page { background: var(--paper); }
.inner-page .site-header { position: relative; }
.inner-page .site-nav .nav-link { color: var(--ink-soft); }
.inner-page .site-nav .nav-link:hover,
.inner-page .site-nav .nav-link.is-active { color: var(--ink); }
.inner-page .inner-hero { position: relative; padding: 75px 0 82px; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.inner-page .inner-hero::after { content: ""; position: absolute; width: 410px; height: 410px; right: -175px; top: -185px; border: 1px solid rgba(23,24,22,.13); border-radius: 50%; pointer-events: none; }
.inner-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0 0 49px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.inner-breadcrumb a { transition: color .2s ease; }
.inner-breadcrumb a:hover { color: var(--orange); }
.inner-breadcrumb .slash { color: #b1b0a6; }
.inner-breadcrumb span:last-child { color: var(--ink); }
.inner-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); align-items: center; gap: clamp(45px, 9vw, 130px); }
.inner-hero-copy h1 { max-width: 680px; margin: 0 0 22px; font-size: clamp(58px, 8vw, 108px); line-height: .88; }
.inner-hero-copy h1 em { color: var(--orange); }
.inner-hero-copy > p:not(.eyebrow) { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.inner-hero-copy .button { margin-top: 29px; }
.inner-hero-art { position: relative; min-height: 315px; display: flex; align-items: center; justify-content: center; }
.inner-hero-art::before { content: ""; position: absolute; inset: 18px 0 0 28px; border: 1px solid var(--ink); border-radius: 50% 50% 8px 50%; transform: rotate(7deg); }
.inner-hero-art img { position: relative; z-index: 1; width: 88%; height: 305px; object-fit: cover; border-radius: 50% 16px 50% 16px; box-shadow: var(--shadow); }
.inner-hero-art .hero-sticker { z-index: 3; }
.inner-page .inner-hero-art .hero-sticker-top { right: -2px; top: 0; }
.inner-page .inner-hero-art .hero-sticker-bottom { left: -11px; bottom: 9px; }
.inner-page .inner-hero-art .hero-caption { z-index: 4; bottom: -9px; left: 35px; right: 17px; }
.inner-page .category-products-section { padding-top: 90px; }
.category-products-head { margin-bottom: 35px; }
.category-products-head h2 { font-size: clamp(47px, 5.5vw, 74px); line-height: .9; }
.category-products-head .section-intro { max-width: 390px; }
.inner-category-rail { display: flex; align-items: center; gap: 9px; margin-bottom: 34px; padding-bottom: 17px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.inner-category-rail::-webkit-scrollbar { display: none; }
.inner-category-rail a { flex: 0 0 auto; min-height: 31px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 9px; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.inner-category-rail a:hover, .inner-category-rail a.is-current { color: var(--ink); border-color: var(--ink); background: var(--lime); }
.inner-category-rail a:first-child { margin-left: 1px; }
.inner-product-grid { padding-bottom: 5px; }
.inner-product-grid .product-link { border: 0; border-bottom: 1px solid var(--ink); background: none; padding: 0; color: var(--ink); cursor: pointer; }
.inner-product-grid .product-link:hover { color: var(--orange); border-color: var(--orange); }
.inner-page .empty-state { margin-top: 20px; }
.inner-page .inner-collection-note { margin-top: 83px; padding: 35px 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: var(--radius-lg); color: var(--paper); background: var(--ink); }
.inner-collection-note p { max-width: 460px; margin: 0; color: #b2b4a9; font-size: 13px; line-height: 1.65; }
.inner-collection-note h3 { margin: 0 0 9px; color: var(--paper); font-size: 32px; line-height: .95; }
.inner-collection-note h3 em { color: var(--lime); }

.shop-landing .inner-hero { background: var(--ink); color: var(--paper); }
.shop-landing .inner-hero::after { border-color: rgba(255,255,255,.13); }
.shop-landing .inner-breadcrumb, .shop-landing .inner-hero-copy > p:not(.eyebrow) { color: #aeb0a5; }
.shop-landing .inner-breadcrumb span:last-child { color: var(--lime); }
.shop-landing .inner-hero-copy h1 { color: var(--paper); }
.shop-landing .inner-hero-copy h1 em { color: var(--lime); }
.shop-landing .inner-hero-art::before { border-color: var(--lime); }
.shop-landing .inner-hero-art img { border-radius: 16px 50% 16px 50%; }
.shop-landing .inner-hero-art .hero-sticker-bottom { background: var(--lime); color: var(--ink); }
.shop-landing .inner-hero-art .hero-sticker-bottom .star { color: var(--orange); }
.shop-landing .shop-intro-stat { position: absolute; z-index: 2; right: 24px; bottom: -22px; display: flex; flex-direction: column; justify-content: space-between; width: 92px; height: 92px; padding: 12px; border-radius: 50%; color: var(--ink); background: var(--lime); transform: rotate(10deg); }
.shop-intro-stat strong { font-family: Georgia, "Times New Roman", serif; font-size: 31px; letter-spacing: -.1em; line-height: .8; }
.shop-intro-stat span { font-size: 8px; font-weight: 700; line-height: 1.1; }
.shop-landing .shop-categories-section { padding-top: 104px; }
.shop-landing .shop-categories-section h2 { margin-bottom: 38px; font-size: clamp(48px, 5.2vw, 70px); line-height: .9; }
.shop-landing .category-grid { margin-bottom: 90px; }
.shop-all-heading { margin-top: 0; }

.info-hero { padding: 86px 0 78px; border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.info-hero .inner-breadcrumb { margin-bottom: 31px; }
.info-hero h1 { max-width: 800px; margin: 0; font-size: clamp(58px, 8vw, 104px); line-height: .88; }
.info-hero h1 em { color: var(--orange); }
.info-hero p.lead { max-width: 620px; margin: 27px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.info-content-section { padding: 88px 0 122px; }
.info-content-grid { display: grid; grid-template-columns: minmax(175px, .55fr) minmax(0, 1.45fr); gap: clamp(45px, 9vw, 135px); align-items: start; }
.info-aside { position: sticky; top: 25px; }
.info-aside p { margin: 0 0 16px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; line-height: 1.6; text-transform: uppercase; }
.info-aside .aside-number { display: block; margin-bottom: 7px; color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-size: 61px; letter-spacing: -.13em; line-height: .8; }
.info-aside a { display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 700; }
.info-aside a:hover { color: var(--orange); border-color: var(--orange); }
.info-rich-text { max-width: 750px; }
.info-rich-text > p { color: var(--ink-soft); font-size: 14px; line-height: 1.78; }
.info-rich-text > p:first-child { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 23px; letter-spacing: -.045em; line-height: 1.26; }
.info-rich-text h2 { margin: 49px 0 17px; font-size: 35px; line-height: .95; }
.info-rich-text h3 { margin: 31px 0 10px; font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.info-rich-text ul { margin: 0 0 24px; padding-left: 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.78; }
.info-rich-text li { margin: 7px 0; padding-left: 5px; }
.info-rich-text strong { color: var(--ink); }
.info-rich-text a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.about-image { width: 100%; max-height: 410px; margin: 0 0 35px; object-fit: cover; border-radius: 50% 16px 50% 16px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 46px; }
.value-card { min-height: 154px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.value-card:nth-child(2) { background: var(--lime); border-color: var(--lime); }
.value-card:nth-child(3) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.value-card:nth-child(4) { background: var(--orange); color: var(--white); border-color: var(--orange); }
.value-card:nth-child(5) { background: var(--paper-deep); }
.value-card:nth-child(6) { background: var(--white); }
.value-card span { display: block; margin-bottom: 20px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.value-card:nth-child(2) span, .value-card:nth-child(3) span, .value-card:nth-child(4) span { color: inherit; opacity: .7; }
.value-card h3 { margin: 0 0 7px; font-size: 25px; line-height: .9; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.45; }
.value-card:nth-child(3) p, .value-card:nth-child(4) p { color: rgba(255,255,255,.75); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s var(--ease), box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-small); }
.blog-card-image { aspect-ratio: 1.28; overflow: hidden; background: var(--paper-deep); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { display: flex; flex: 1; flex-direction: column; padding: 22px 20px 20px; }
.blog-meta { margin: 0 0 12px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h2 { margin: 0 0 12px; font-size: 28px; line-height: .96; }
.blog-card p { margin: 0 0 23px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.blog-card .text-button { margin-top: auto; align-self: flex-start; }
.article-page .info-content-section { padding-top: 78px; }
.article-image { width: 100%; max-height: 470px; margin: 0 0 34px; object-fit: cover; border-radius: 18px 50% 18px 50%; }
.article-meta { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.article-meta::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.article-page .info-rich-text > p:first-of-type { font-size: 26px; }
.article-callout { margin-top: 43px; padding: 25px 28px; border-left: 3px solid var(--lime); background: var(--paper-deep); color: var(--ink-soft); font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.3; }

.contact-section { padding: 92px 0 120px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 9vw, 140px); align-items: start; }
.contact-details h2 { margin: 0 0 20px; font-size: clamp(48px, 5vw, 70px); line-height: .9; }
.contact-details h2 em { color: var(--orange); }
.contact-details > p { max-width: 330px; margin: 0 0 32px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.contact-list { display: flex; flex-direction: column; gap: 14px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-list div {  grid-template-columns: 30px 1fr; gap: 10px; align-items: start; }
.contact-list span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 12px; }
.contact-list strong, .contact-list a { display: block; font-size: 14px; line-height: 1.45; }
.contact-list a:hover { color: var(--orange); }
.contact-list small { display: block; margin-top: 1px; color: var(--muted); font-size: 14px; }
.contact-form-card { padding: 37px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-small); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 19px; }
.form-field label { color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; padding: 7px 0 11px; color: var(--ink); background: transparent; font-size: 13px; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); }
.form-field select { cursor: pointer; }
.contact-form-card .button { margin-top: 5px; }
.form-feedback { margin: 18px 0 0; color: #578048; font-size: 11px; font-weight: 700; }

.center-form-section { padding: 86px 0 121px; }
.center-form-card { width: min(570px, 100%); margin: 0 auto; padding: 45px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-small); }
.center-form-card .eyebrow { margin-bottom: 25px; }
.center-form-card h2 { margin: 0 0 14px; font-size: 50px; line-height: .9; }
.center-form-card > p { margin: 0 0 30px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.check-field { display: flex; align-items: flex-start; gap: 9px; margin: 17px 0 23px; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.check-field input { accent-color: var(--orange); margin-top: 2px; }
.success-panel { margin-top: 20px; padding: 18px; border-radius: 12px; color: #4d7041; background: #e4f1d7; font-size: 11px; line-height: 1.55; }
.success-panel strong { display: block; margin-bottom: 3px; font-size: 13px; }

@media (max-width: 800px) {
  .inner-page .inner-hero { padding: 58px 0 66px; }
  .inner-breadcrumb { margin-bottom: 37px; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .inner-hero-copy h1 { max-width: 630px; font-size: clamp(57px, 13vw, 90px); }
  .inner-hero-art { width: min(100%, 630px); min-height: min(67vw, 390px); margin: 0 auto; }
  .inner-hero-art img { height: min(56vw, 320px); }
  .inner-page .category-products-section { padding-top: 72px; }
  .inner-page .inner-collection-note { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .info-content-grid { grid-template-columns: 1fr; gap: 38px; }
  .info-aside { position: static; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .info-aside p { margin: 0; }
  .info-aside .aside-number { margin: 0; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 7px); }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 520px) {
  .inner-page .inner-hero { padding: 48px 0 58px; }
  .inner-breadcrumb { margin-bottom: 29px; font-size: 9px; }
  .inner-hero-copy h1, .info-hero h1 { font-size: clamp(52px, 16vw, 78px); }
  .inner-hero-art { min-height: 72vw; }
  .inner-hero-art img { height: 60vw; }
  .inner-page .inner-hero-art .hero-sticker-top { width: 76px; height: 76px; top: -3px; right: -1px; }
  .inner-page .inner-hero-art .hero-sticker-bottom { left: -2px; bottom: 2px; }
  .inner-page .inner-hero-art .hero-caption { left: 15px; right: 7px; bottom: -9px; font-size: 6px; }
  .shop-landing .shop-intro-stat { right: 6px; bottom: -20px; width: 75px; height: 75px; padding: 10px; }
  .shop-intro-stat strong { font-size: 26px; }
  .shop-intro-stat span { font-size: 7px; }
  .shop-landing .shop-categories-section { padding-top: 72px; }
  .inner-category-rail { margin-bottom: 27px; }
  .info-hero { padding: 57px 0 61px; }
  .info-hero .inner-breadcrumb { margin-bottom: 25px; }
  .info-hero p.lead { font-size: 13px; }
  .info-content-section, .contact-section, .center-form-section { padding: 70px 0 88px; }
  .info-rich-text > p:first-child { font-size: 20px; }
  .info-rich-text h2 { font-size: 31px; }
  .value-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .value-card { min-height: 143px; padding: 14px; }
  .value-card h3 { font-size: 21px; }
  .value-card p { font-size: 9px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: auto; max-width: none; }
  .blog-card h2 { font-size: 26px; }
  .article-callout { padding: 20px; font-size: 17px; }
  .contact-form-card, .center-form-card { padding: 27px 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .center-form-card h2 { font-size: 43px; }
}
