:root {
  --ink: #171615;
  --ink-soft: #2c2a28;
  --paper: #f7f3ed;
  --paper-deep: #e8e0d6;
  --gold: #b8945a;
  --gold-light: #dfc391;
  --emerald: #007a5a;
  --muted: #746c65;
  --line: #d8cfc4;
  --serif: "Playfair Display", Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.announcement { padding: 8px 18px; background: var(--ink); color: var(--gold-light); text-align: center; font: 10px var(--mono); text-transform: uppercase; }
.site-header { min-height: 95px; padding: 8px clamp(20px, 5vw, 76px); display: grid; grid-template-columns: 272px 1fr auto; gap: 29px; align-items: center; background: rgba(247,243,237,.97); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.logo img { width: 255px; height: 77px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.site-nav a, .header-action { text-decoration: none; text-transform: uppercase; font-size: 10px; font-weight: 600; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--emerald); }
.header-action { border-bottom: 1px solid var(--gold); padding-bottom: 5px; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; font-size: 21px; cursor: pointer; }

.hero { min-height: min(78vh, 765px); position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,15,14,.58) 0%, rgba(16,15,14,.38) 38%, rgba(16,15,14,.08) 72%), linear-gradient(0deg, rgba(16,15,14,.78) 0%, transparent 68%); }
.hero-copy { position: relative; z-index: 1; width: min(765px, 88%); padding: 0 clamp(24px, 6.8vw, 102px) clamp(44px, 6.8vw, 94px); color: white; }
.eyebrow { margin: 0 0 15px; color: var(--gold); font: 10px var(--mono); text-transform: uppercase; }
.hero h1, .page-hero h1, .section-title h2 { margin: 0; font: 500 clamp(44px, 6vw, 85px)/.98 var(--serif); letter-spacing: 0; }
.hero h1 { text-shadow: 0 2px 22px rgba(0,0,0,.26); }
.hero h1 em, .page-hero h1 em, .section-title h2 em { color: var(--gold-light); font-weight: 400; }
.hero-copy > p:not(.eyebrow) { max-width: 500px; font-size: 14px; line-height: 1.65; }
.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; padding: 12px 17px; background: var(--gold); color: var(--ink); border: 0; text-decoration: none; text-transform: uppercase; font-size: 10px; font-weight: 700; cursor: pointer; }
.button:hover { background: var(--gold-light); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: var(--paper); color: var(--ink); }

.section { padding: clamp(60px, 7.5vw, 110px) clamp(24px, 6.8vw, 102px); }
.hero + .section { padding-top: clamp(30px, 4vw, 56px); padding-bottom: clamp(42px, 5vw, 72px); }
.section-title { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; padding-bottom: 29px; border-bottom: 1px solid var(--line); }
.section-title h2 { font-size: clamp(38px, 4.7vw, 66px); }
.section-title > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.8; }
.category-links { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-right: 0; margin-top: 36px; }
.category-links a { min-height: 60px; padding: 10px 14px; border-right: 1px solid var(--line); text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; }
.category-links a:hover { background: var(--paper-deep); }
.category-links small { color: var(--gold); font: 10px var(--mono); }
.category-links strong { font: 500 21px var(--serif); }

.featured-grid, .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px 14px; margin-top: 36px; }
.product-card { min-width: 0; }
.product-card__image { aspect-ratio: 1; overflow: hidden; background: #ddd5ca; }
.featured-grid .product-card__image,
.product-grid .product-card__image { aspect-ratio: 1.25; }
.product-card__image img, .product-card__image video { width: 100%; height: 100%; object-fit: cover; }
.product-card__image img { transition: transform .35s ease; }
.product-card__image video { display: block; background: #ddd5ca; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-hover { width: 100%; height: 100%; position: relative; }
.product-hover img { position: absolute; inset: 0; }
.product-hover__primary { opacity: 1; }
.product-hover__secondary { opacity: 0; }
.product-hover .product-hover__primary, .product-hover .product-hover__secondary { transition: opacity .4s ease, transform .4s ease; }
.product-card:hover .product-hover__primary, .product-card:focus-within .product-hover__primary { opacity: 0; }
.product-card:hover .product-hover__secondary, .product-card:focus-within .product-hover__secondary { opacity: 1; }
.product-gallery { width: 100%; height: 100%; position: relative; }
.product-gallery__slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease; }
.product-gallery__slide.is-active { opacity: 1; pointer-events: auto; }
.product-gallery__arrow { width: 34px; height: 34px; position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: rgba(247,243,237,.9); color: var(--ink); font: 25px/1 var(--serif); cursor: pointer; transform: translateY(-50%); }
.product-gallery__arrow--prev { left: 12px; }
.product-gallery__arrow--next { right: 12px; }
.product-gallery__dots { position: absolute; z-index: 2; left: 50%; bottom: 14px; display: flex; gap: 8px; transform: translateX(-50%); }
.product-gallery__dots button { width: 8px; height: 8px; padding: 0; border: 1px solid white; border-radius: 50%; background: rgba(23,22,21,.35); cursor: pointer; }
.product-gallery__dots button.is-active { background: white; }
.product-gallery__slide[data-image-zoom] { cursor: zoom-in; }
.image-zoom { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: 24px; background: rgba(12,11,10,.92); }
.image-zoom.is-open { display: grid; }
.image-zoom img { width: auto; height: auto; max-width: min(92vw, 1200px); max-height: 90vh; object-fit: contain; cursor: zoom-out; }
.image-zoom button { width: 42px; height: 42px; position: absolute; top: 18px; right: 18px; z-index: 1; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(0,0,0,.35); color: white; font: 30px/1 var(--sans); cursor: pointer; }
body.has-image-zoom { overflow: hidden; }
.product-card__body { padding: 13px 2px 0; }
.product-card__meta { margin: 0 0 7px; color: var(--emerald); font: 10px var(--mono); text-transform: uppercase; }
.product-card h3 { margin: 0; font: 500 clamp(20px, 1.9vw, 27px)/1.1 var(--serif); }
.product-card p { color: var(--muted); line-height: 1.55; font-size: 12px; }
.product-card a { font-size: 10px; font-weight: 700; text-transform: uppercase; text-decoration-color: var(--gold); text-underline-offset: 5px; }

.brand-band { background: var(--ink-soft); color: var(--paper); display: grid; grid-template-columns: .9fr 1.1fr; }
.brand-band__image { min-height: 440px; max-height: 480px; }
.brand-band__image img { width: 100%; height: 100%; object-fit: cover; }
.brand-band__copy { padding: 36px clamp(40px, 6vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.brand-band h2 { margin: 0; font: 500 clamp(38px, 4.3vw, 63px)/.98 var(--serif); }
.brand-band h2 em { color: var(--gold-light); }
.brand-band p { max-width: 500px; color: #d6cec3; line-height: 1.85; }

.page-hero { min-height: 365px; padding: 76px clamp(24px, 6.8vw, 102px); display: flex; flex-direction: column; justify-content: flex-end; background: var(--ink-soft); color: var(--paper); }
.page-hero p:last-child { max-width: 640px; line-height: 1.75; color: #d7d0c7; }
.catalog-toolbar { padding: 22px clamp(24px, 6.8vw, 102px); display: flex; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--line); position: sticky; top: 95px; z-index: 10; background: rgba(247,243,237,.97); }
.filter-button { min-height: 34px; padding: 7px 13px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 10px; text-transform: uppercase; }
.filter-button:hover, .filter-button.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.catalog-section { padding-top: 46px; }
.catalog-summary { color: var(--muted); font-size: 13px; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6.8vw, 102px); align-items: center; }
.story-grid img { width: 100%; aspect-ratio: .86; object-fit: cover; }
.story-grid h2 { font: 500 clamp(36px, 4.3vw, 60px)/1 var(--serif); margin: 0; }
.story-grid p { color: var(--muted); line-height: 1.9; }
.story-grid + .values-section { padding-top: clamp(24px, 3vw, 42px); }
.values-section { padding-bottom: clamp(38px, 4.5vw, 64px); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { min-height: 230px; padding: 26px 30px; background: var(--paper); }
.value span { color: var(--gold); font: 11px var(--mono); }
.value h3 { margin: 28px 0 16px; font: 500 24px var(--serif); }
.value p { margin: 0; color: var(--muted); line-height: 1.65; }

.contact-layout { height: 620px; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 0; }
.contact-copy { padding: 40px clamp(40px, 6vw, 82px); background: var(--ink-soft); color: var(--paper); }
.contact-copy h1 { font: 500 clamp(41px, 5.1vw, 70px)/.98 var(--serif); margin: 0; }
.contact-copy p { color: #d6cec3; line-height: 1.8; }
.contact-list { margin-top: 32px; display: grid; gap: 15px; }
.contact-list a { width: fit-content; display: inline-flex; align-items: center; gap: 12px; text-decoration-color: var(--gold); text-underline-offset: 6px; }
.contact-list img { width: 18px; height: 18px; flex: 0 0 18px; }
.contact-image { min-height: 0; overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.policy { max-width: 860px; margin: auto; }
.policy h2 { margin-top: 39px; font: 500 27px var(--serif); }
.policy p, .policy li { color: var(--muted); line-height: 1.8; }

.site-footer { padding: 48px clamp(24px, 6.8vw, 102px) 24px; background: #0f0f0e; color: #d6d0c7; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.site-footer img { width: 70px; height: 70px; }
.footer-socials { display: flex; justify-content: center; align-items: center; gap: 22px; }
.footer-socials a { width: 24px; height: 24px; display: grid; place-items: center; opacity: .9; transition: opacity .2s ease, transform .2s ease; }
.footer-socials a:hover { opacity: 1; transform: translateY(-1px); }
.footer-socials img { width: 18px; height: 18px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; align-items: center; }
.footer-links a { font-size: 11px; text-decoration: none; }
.site-footer small { grid-column: 1/-1; border-top: 1px solid #393735; padding-top: 18px; color: #918b84; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 84px; }
  .logo img { width: min(210px, 62vw); height: 66px; }
  .menu-button { display: block; }
  .site-nav { display: none; grid-column: 1/-1; flex-direction: column; align-items: flex-start; padding: 18px 0 8px; }
  .site-nav.is-open { display: flex; }
  .header-action { display: none; }
  .catalog-toolbar { top: 84px; }
  .category-links { grid-template-columns: 1fr 1fr; }
  .category-links a:last-child { grid-column: 1/-1; }
  .featured-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .brand-band, .story-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-layout { height: auto; }
  .brand-band__image { min-height: 350px; max-height: 390px; }
  .contact-image { height: 340px; }
  .values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { min-height: 68vh; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 43px; }
  .section-title { grid-template-columns: 1fr; gap: 22px; }
  .category-links, .featured-grid, .product-grid { grid-template-columns: 1fr; }
  .category-links a:last-child { grid-column: auto; }
  .catalog-toolbar { position: static; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-socials { justify-content: flex-start; }
  .footer-links { justify-content: flex-start; }
}
