/* ==========================================================================
   Dressing Table — dressingtable.it.com
   Brand: Brown Bark (primary) + Toffee Brown (secondary)
   Mobile-first stylesheet. No external fonts, libraries or resources.
   ========================================================================== */

:root {
  /* Brand */
  --bark: #4A3024;          /* Brown Bark — primary */
  --bark-deep: #2E1E16;     /* Dark Brown */
  --toffee: #8A5A36;        /* Toffee Brown — secondary (AA with white text) */
  --toffee-soft: #C8915F;   /* Decorative toffee accent (not for small text) */
  --toffee-tint: #F1E3D1;

  /* Neutrals */
  --warm-white: #FBF8F3;
  --cream: #F5EDE2;
  --beige: #E7D9C6;
  --line: #DDCDB8;
  --ink: #2B1C14;
  --ink-soft: #5E5047;
  --white: #FFFFFF;

  /* Type */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "URW Palladio L", Georgia, "Times New Roman", serif;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: 20px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(46, 30, 22, .06), 0 2px 8px rgba(46, 30, 22, .05);
  --shadow: 0 2px 6px rgba(46, 30, 22, .06), 0 14px 34px rgba(46, 30, 22, .09);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 72px;
}

@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1080px) { :root { --gutter: 40px; --header-h: 84px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--toffee); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--bark); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--bark-deep); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.35rem, 6.2vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
em.accent, .accent { font-style: italic; color: var(--toffee); }
::selection { background: var(--toffee); color: var(--white); }
:focus-visible { outline: 2px solid var(--toffee); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--bark); color: var(--white); padding: 10px 16px; border-radius: var(--radius-sm); text-decoration: none; }
.skip-link:focus { top: 12px; color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--toffee); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 58ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--bark); --btn-fg: var(--white); --btn-bd: var(--bark);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bd);
  border-radius: 999px; font: 600 .92rem/1 var(--font-sans); letter-spacing: .03em;
  text-decoration: none; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { --btn-bg: var(--toffee); --btn-bd: var(--toffee); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(74, 48, 36, .18); }
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--toffee { --btn-bg: var(--toffee); --btn-bd: var(--toffee); }
.btn--toffee:hover { --btn-bg: var(--bark); --btn-bd: var(--bark); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--bark); --btn-bd: var(--bark); }
.btn--ghost:hover { --btn-bg: var(--bark); --btn-bd: var(--bark); }
.btn--light { --btn-bg: var(--warm-white); --btn-fg: var(--bark); --btn-bd: var(--warm-white); }
.btn--light:hover { --btn-bg: var(--bark); --btn-bd: var(--bark); }
.btn--sm { min-height: 40px; padding: 9px 18px; font-size: .85rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--bark); text-decoration: none; border-bottom: 1px solid var(--toffee-soft); padding-bottom: 2px; }
.text-link:hover { color: var(--toffee); border-color: var(--toffee); }

/* ---------- Top bar ---------- */
.topbar { background: var(--bark); color: #EADBC8; font-size: .8rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 38px; }
.topbar__note { display: none; margin: 0; letter-spacing: .04em; }
.topbar__contact { display: flex; align-items: center; gap: 22px; }
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { color: var(--toffee-soft); }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--toffee-soft); }
.topbar__address { display: none; }
@media (min-width: 768px) {
  .topbar__inner { justify-content: space-between; }
  .topbar__note { display: block; }
  .topbar__address { display: inline-flex; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .94);
  -webkit-backdrop-filter: saturate(1.2) blur(10px); backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(46, 30, 22, .06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--bark-deep); flex: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-serif); font-size: 1.32rem; font-weight: 600; letter-spacing: .005em; }
.brand__tag { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--toffee); margin-top: 5px; font-weight: 600; }
.brand:hover { color: var(--bark); }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 8px 16px 8px 14px;
  background: var(--bark); color: var(--white); border: 0; border-radius: 999px;
  font: 600 .85rem/1 var(--font-sans); letter-spacing: .06em; cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars::before, .nav-toggle__bars::after, .nav-toggle__bars span {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5.25px; }
.nav-toggle__bars::after { top: 10.5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 5.25px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 5.25px; transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }

/* Mobile navigation panel */
.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.no-js .primary-nav { display: block; width: 100%; }
.no-js .nav-toggle { display: none; }
.no-js .header__inner { flex-wrap: wrap; padding-block: 12px; }

.js .primary-nav.is-open {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--warm-white);
  border-top: 1px solid var(--line); border-bottom: 3px solid var(--toffee);
  box-shadow: 0 24px 40px rgba(46, 30, 22, .14);
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  padding: 10px var(--gutter) 28px;
  animation: navIn .28s var(--ease);
}
@keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.primary-nav li { counter-increment: nav; }
.primary-nav a.nav-link {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 2px; border-bottom: 1px solid var(--line);
  font-family: var(--font-serif); font-size: 1.35rem; color: var(--bark-deep); text-decoration: none;
}
.primary-nav a.nav-link::before { content: "0" counter(nav); font: 600 .72rem/1 var(--font-sans); letter-spacing: .12em; color: var(--toffee); min-width: 22px; }
.primary-nav a.nav-link[aria-current="page"] { color: var(--toffee); }
.primary-nav a.nav-link[aria-current="page"]::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--toffee); margin-left: auto; align-self: center; }
.nav-cta { margin-top: 22px; width: 100%; }

@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .primary-nav, .js .primary-nav, .no-js .primary-nav { display: flex; align-items: center; gap: 26px; position: static; width: auto; }
  .primary-nav ul { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
  .primary-nav a.nav-link {
    position: relative; display: block; padding: 10px 0; border: 0;
    font: 500 .88rem/1.2 var(--font-sans); letter-spacing: .02em; color: var(--ink-soft); white-space: nowrap;
  }
  .primary-nav a.nav-link::before { content: none; }
  .primary-nav a.nav-link::after {
    content: ""; position: absolute; left: 50%; bottom: 2px; width: 0; height: 2px; margin: 0;
    background: var(--toffee); border-radius: 2px; transform: translateX(-50%);
    transition: width .3s var(--ease);
  }
  .primary-nav a.nav-link:hover { color: var(--bark-deep); }
  .primary-nav a.nav-link:hover::after { width: 100%; }
  .primary-nav a.nav-link[aria-current="page"] { color: var(--bark-deep); font-weight: 600; }
  .primary-nav a.nav-link[aria-current="page"]::after { width: 100%; height: 2px; border-radius: 2px; background: var(--toffee); margin: 0; align-self: auto; }
  .nav-cta { margin: 0; width: auto; min-height: 44px; padding: 10px 20px; }
}
@media (min-width: 1080px) and (max-width: 1200px) {
  .brand__tag { display: none; }
  .primary-nav { gap: 18px; }
  .primary-nav a.nav-link { font-size: .84rem; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--bark { background: var(--bark); color: #EADBC8; }
.section--bark h2, .section--bark h3 { color: var(--white); }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { margin: 0; }
.section-head p { margin: 0; color: var(--ink-soft); max-width: 56ch; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 48px; }
  .section-head--split .section-head__aside { justify-self: end; text-align: left; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(40px, 6vw, 84px) clamp(64px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto auto; width: min(52vw, 640px); height: 100%;
  background: var(--cream); border-bottom-left-radius: 320px 280px; z-index: -1;
}
.hero__grid { display: grid; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 22px; max-width: 14ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 34px; }
.hero__styles { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.hero__styles-label { width: 100%; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; font-weight: 600; }
.chip {
  display: inline-flex; align-items: center; min-height: 36px; padding: 6px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--white);
  color: var(--bark); font-size: .84rem; font-weight: 500; text-decoration: none;
  transition: border-color .2s, background-color .2s, color .2s;
}
.chip:hover { border-color: var(--toffee); color: var(--toffee); }

.hero__visual { position: relative; max-width: 560px; margin-inline: auto; width: 100%; padding: 0 0 40px 0; }
.arch-frame {
  position: relative; border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden;
  background: var(--beige); box-shadow: var(--shadow);
  outline: 1px solid rgba(138, 90, 54, .25); outline-offset: 10px;
}
.arch-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero__visual .arch-frame { width: 82%; margin-left: auto; }
.hero__inset {
  position: absolute; left: 0; bottom: 0; width: 46%;
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  border: 6px solid var(--warm-white); box-shadow: var(--shadow);
}
.hero__inset img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.hero__tag {
  position: absolute; right: 0; top: 18%;
  background: var(--bark); color: var(--white); padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .78rem; letter-spacing: .06em; box-shadow: var(--shadow-sm); max-width: 190px; line-height: 1.4;
}
.hero__tag strong { display: block; font-family: var(--font-serif); font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--toffee-soft); }
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .hero__visual { margin: 0; }
}

/* ---------- Category tiles ---------- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; margin: 0; padding: 0; }
.category-tile {
  position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  min-height: 150px; padding: 20px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); text-decoration: none; color: var(--bark-deep);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s;
}
.category-tile__num { font-size: .72rem; font-weight: 600; letter-spacing: .16em; color: var(--toffee); }
.category-tile__name { font-family: var(--font-serif); font-size: 1.22rem; line-height: 1.2; }
.category-tile__arrow { position: absolute; right: 18px; top: 18px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--bark); transition: background-color .25s, color .25s, transform .25s var(--ease); }
.category-tile__arrow svg { width: 14px; height: 14px; }
.category-tile:hover { border-color: var(--toffee); transform: translateY(-3px); box-shadow: var(--shadow-sm); color: var(--bark-deep); }
.category-tile:hover .category-tile__arrow { background: var(--toffee); color: var(--white); transform: rotate(-45deg); }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .category-grid { grid-template-columns: repeat(6, 1fr); } .category-tile { min-height: 190px; } }

/* ---------- Product cards ---------- */
.product-grid { display: grid; gap: 28px 20px; grid-template-columns: 1fr; list-style: none; margin: 0; padding: 0; }
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; } }
@media (min-width: 1000px) { .product-grid--four { grid-template-columns: repeat(4, 1fr); gap: 28px 22px; } }

.product-card { display: flex; flex-direction: column; height: 100%; background: transparent; }
.product-card[hidden] { display: none; }
.product-card__media {
  position: relative; overflow: hidden; border-radius: var(--radius); background: var(--beige);
  aspect-ratio: 4 / 5;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute; left: 12px; top: 12px;
  background: rgba(251, 248, 243, .94); color: var(--bark); padding: 6px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 4px 0; }
.product-card__cat { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--toffee); margin: 0 0 8px; }
.product-card__title { font-size: 1.36rem; margin: 0 0 10px; }
.product-card__desc { color: var(--ink-soft); font-size: .95rem; margin: 0 0 20px; }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-card__note { font-size: .8rem; color: var(--ink-soft); }
.product-card .btn { flex: none; }

/* ---------- Filters ---------- */
.filters { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 12px; margin: 0 0 28px; scrollbar-width: thin; }
.filter-btn {
  flex: none; min-height: 42px; padding: 8px 18px; border-radius: 999px;
  background: var(--white); color: var(--bark); border: 1px solid var(--line);
  font: 500 .88rem/1 var(--font-sans); cursor: pointer; transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--toffee); color: var(--toffee); }
.filter-btn[aria-pressed="true"] { background: var(--bark); color: var(--white); border-color: var(--bark); }
.filter-btn .count { opacity: .7; margin-left: 6px; font-size: .78rem; }
.results-note { font-size: .9rem; color: var(--ink-soft); margin: -12px 0 28px; }

/* ---------- Considerations (features) ---------- */
.feature-list { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: 6px 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.feature__icon { grid-row: span 2; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--toffee); border: 1px solid var(--line); }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { margin: 4px 0 2px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
@media (min-width: 800px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); column-gap: 56px; border-top: 0; }
  .feature { border-top: 1px solid var(--line); border-bottom: 0; }
}
@media (min-width: 1100px) { .feature-list { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Guide ---------- */
.guide { display: grid; gap: 48px; align-items: start; }
.guide__media { position: relative; }
.guide__media .arch-frame img { aspect-ratio: 3 / 4; }
.guide__caption { margin-top: 18px; font-size: .86rem; color: var(--ink-soft); }
.guide-steps { list-style: none; margin: 28px 0 0; padding: 0; counter-reset: step; }
.guide-step { position: relative; padding: 22px 0 22px 64px; border-top: 1px solid var(--line); counter-increment: step; }
.guide-step:last-child { border-bottom: 1px solid var(--line); }
.guide-step::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 22px;
  font-family: var(--font-serif); font-size: 1.6rem; line-height: 1; color: var(--toffee);
}
.guide-step h3 { margin: 0 0 6px; }
.guide-step p { margin: 0; color: var(--ink-soft); }
@media (min-width: 960px) {
  .guide { grid-template-columns: .85fr 1.15fr; gap: 80px; }
  .guide__media { position: sticky; top: calc(var(--header-h) + 32px); }
}

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); list-style: none; margin: 0; padding: 0; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--beige); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  background: rgba(46, 30, 22, .78); color: var(--white); padding: 8px 12px; border-radius: 8px;
  font-size: .78rem; line-height: 1.35;
}
.gallery__item figcaption span { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--toffee-soft); font-weight: 600; margin-bottom: 2px; }
@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--tall img { aspect-ratio: auto; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide img { aspect-ratio: 8 / 5; }
}

.media-block { margin-top: clamp(48px, 6vw, 80px); }
.media-block__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 12px; margin-bottom: 22px; }
.media-block__head h3 { margin: 0; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.media-block__head p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.video-grid { display: grid; gap: 18px; }
@media (min-width: 900px) { .video-grid { grid-template-columns: 1.6fr 1fr; } }
.video-card { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--bark-deep); box-shadow: var(--shadow-sm); }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--bark-deep); }
.video-card figcaption { padding: 14px 18px; color: #EADBC8; font-size: .9rem; }
.video-card figcaption strong { color: var(--white); font-weight: 600; display: block; }

/* Placeholder media slot (replace with real media when available) */
.media-slot {
  display: grid; place-items: center; text-align: center; gap: 10px;
  min-height: 220px; padding: 28px; border-radius: var(--radius);
  border: 1.5px dashed var(--toffee-soft); background: repeating-linear-gradient(135deg, var(--cream) 0 14px, #F0E5D6 14px 28px);
  color: var(--ink-soft);
}
.media-slot__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--toffee); }
.media-slot__icon svg { width: 22px; height: 22px; }
.media-slot strong { display: block; color: var(--bark-deep); font-family: var(--font-serif); font-weight: 500; font-size: 1.15rem; }
.media-slot p { margin: 0; font-size: .86rem; max-width: 32ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--bark); color: #EADBC8; padding: clamp(36px, 6vw, 72px); display: grid; gap: 28px; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(200, 145, 95, .35); box-shadow: 0 0 0 28px rgba(200, 145, 95, .06), 0 0 0 56px rgba(200, 145, 95, .04); pointer-events: none; }
.cta-band h2 { color: var(--white); margin: 0 0 10px; }
.cta-band p { margin: 0; max-width: 52ch; }
.cta-band .eyebrow { color: var(--toffee-soft); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; position: relative; z-index: 1; }
.cta-band__email { color: var(--white); font-weight: 600; }
.cta-band__email:hover { color: var(--toffee-soft); }
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.3fr 1fr; align-items: center; } .cta-band__actions { justify-content: flex-end; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 96px) clamp(36px, 5vw, 64px); background: var(--cream); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -60px; bottom: -160px; width: 360px; height: 360px; border-radius: 999px 999px 0 0; border: 1px solid rgba(138, 90, 54, .2); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--toffee-soft); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--toffee); }
.meta-line { margin-top: 20px; font-size: .86rem; color: var(--ink-soft); }

/* ---------- Info strip ---------- */
.info-strip { display: grid; gap: 16px; }
@media (min-width: 800px) { .info-strip { grid-template-columns: repeat(3, 1fr); } }
.info-card { padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.info-card h3 { margin: 0 0 8px; }
.info-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Product dialog ---------- */
.product-dialog { width: min(980px, calc(100% - 24px)); max-height: calc(100vh - 24px); padding: 0; border: 0; border-radius: var(--radius-lg); background: var(--warm-white); color: var(--ink); box-shadow: 0 40px 80px rgba(46, 30, 22, .35); }
.product-dialog::backdrop { background: rgba(46, 30, 22, .6); }
.product-dialog[open] { animation: dialogIn .3s var(--ease); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.dialog__grid { display: grid; }
.dialog__media { background: var(--beige); }
.dialog__media img { width: 100%; height: 100%; max-height: 46vh; object-fit: cover; }
.dialog__body { padding: 28px 24px 30px; }
.dialog__body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.dialog__body h3 { font-family: var(--font-sans); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--bark); margin: 24px 0 10px; }
.dialog__features { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dialog__features li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: .95rem; }
.dialog__features li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--toffee-soft); }
.dialog__notice { margin: 22px 0 24px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--toffee-tint); color: var(--bark); font-size: .88rem; }
.dialog__close { position: absolute; right: 12px; top: 12px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--warm-white); color: var(--bark); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 2; }
.dialog__close:hover { background: var(--bark); color: var(--white); }
.dialog__close svg { width: 18px; height: 18px; }
@media (min-width: 820px) {
  .dialog__grid { grid-template-columns: 1fr 1.05fr; }
  .dialog__media img { max-height: none; min-height: 100%; aspect-ratio: 4 / 5; }
  .dialog__body { padding: 44px 40px; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; } }
.contact-card { background: var(--bark); color: #EADBC8; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); }
.contact-card h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.contact-detail { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(234, 219, 200, .2); }
.contact-detail__icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(200, 145, 95, .18); color: var(--toffee-soft); }
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--toffee-soft); font-weight: 600; margin: 0 0 4px; }
.contact-detail a, .contact-detail address { color: var(--white); font-style: normal; font-size: 1.05rem; word-break: break-word; }
.contact-detail a:hover { color: var(--toffee-soft); }
.contact-tips { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(234, 219, 200, .2); }
.contact-tips h3 { color: var(--white); font-size: 1.1rem; }
.contact-tips ul { margin: 0; padding-left: 1.1em; font-size: .94rem; }
.contact-tips li { margin-bottom: 6px; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 8px; }
.form-card > p { color: var(--ink-soft); }
.form-grid { display: grid; gap: 18px; margin-top: 26px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--bark-deep); }
.field .optional { font-weight: 400; color: var(--ink-soft); }
.field .req { color: var(--toffee); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font: 400 1rem/1.4 var(--font-sans); color: var(--ink);
  background: var(--warm-white); border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 42px; background-image: linear-gradient(45deg, transparent 50%, var(--toffee) 50%), linear-gradient(135deg, var(--toffee) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--toffee); background-color: var(--white); box-shadow: 0 0 0 3px rgba(138, 90, 54, .18); }
.field [aria-invalid="true"] { border-color: #A3392B; }
.field__error { font-size: .82rem; color: #A3392B; min-height: 1em; margin: 0; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; }
.form-foot small { color: var(--ink-soft); max-width: 44ch; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 10px; background: var(--toffee-tint); color: var(--bark); font-size: .92rem; }
.form-status[hidden] { display: none; }

/* ---------- Legal pages ---------- */
.legal-layout { display: grid; gap: 40px; }
@media (min-width: 1000px) { .legal-layout { grid-template-columns: 260px 1fr; gap: 72px; align-items: start; } }
.legal-toc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
@media (min-width: 1000px) { .legal-toc { position: sticky; top: calc(var(--header-h) + 28px); } }
.legal-toc h2 { font-family: var(--font-sans); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--toffee); margin: 0 0 12px; }
.legal-toc ol { margin: 0; padding-left: 1.2em; font-size: .9rem; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { color: var(--ink-soft); text-decoration: none; }
.legal-toc a:hover { color: var(--toffee); text-decoration: underline; }
.legal-body { max-width: 760px; }
.legal-body section { padding-bottom: 12px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-body section:last-child { border-bottom: 0; }
.legal-body h2 { font-size: clamp(1.45rem, 2.4vw, 1.8rem); margin-bottom: 14px; }
.legal-body h3 { font-size: 1.14rem; margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: #43362E; }
.legal-body li { margin-bottom: 6px; }
.summary-box { padding: 24px 26px; border-radius: var(--radius); background: var(--toffee-tint); border-left: 4px solid var(--toffee); margin-bottom: 40px; }
.summary-box h2 { font-size: 1.3rem; margin-bottom: 12px; }
.summary-box ul { margin: 0; }
.data-table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: .92rem; }
.data-table caption { text-align: left; font-weight: 600; color: var(--bark); margin-bottom: 8px; }
.data-table th, .data-table td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.data-table th { background: var(--cream); color: var(--bark-deep); font-weight: 600; }
.table-scroll { overflow-x: auto; }
.clause-list { list-style: none; padding: 0; margin: 0; counter-reset: clause; }
.clause { counter-increment: clause; position: relative; padding: 0 0 26px 56px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.clause:last-child { border-bottom: 0; }
.clause::before { content: counter(clause); position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--bark); color: var(--white); font: 600 .9rem/1 var(--font-sans); }
.clause h2 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); margin-bottom: 10px; }
.qa { padding: 26px 28px; margin-bottom: 18px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.qa h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 10px; }
.qa > :last-child { margin-bottom: 0; }
.status-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; }
.status-pill--off { background: var(--cream); color: var(--ink-soft); border: 1px solid var(--line); }
.status-pill--on { background: var(--bark); color: var(--white); }

/* ---------- 404 ---------- */
.not-found { text-align: center; padding-block: clamp(72px, 12vw, 150px); }
.not-found__mark { font-family: var(--font-serif); font-size: clamp(5rem, 16vw, 9rem); line-height: 1; color: var(--toffee); margin-bottom: 10px; }
.not-found .lede { margin-inline: auto; }
.not-found__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--toffee); color: #F6EBDD; margin-top: 0; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--bark-deep); text-decoration: underline; }
.footer__lead { display: grid; gap: 22px; padding-block: clamp(44px, 6vw, 72px) clamp(32px, 4vw, 48px); border-bottom: 1px solid rgba(255, 255, 255, .22); }
.footer__lead h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0; max-width: 20ch; }
.footer__lead .btn--light:hover { color: var(--white); text-decoration: none; }
@media (min-width: 900px) { .footer__lead { grid-template-columns: 1fr auto; align-items: end; } }
.footer__grid { display: grid; gap: 36px; padding-block: 44px; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; } }
.footer__brand .brand { color: var(--white); }
.footer__brand .brand__tag { color: #F3DDC4; }
.footer__brand p { margin: 18px 0 0; font-size: .94rem; max-width: 38ch; }
.footer__col h3 { font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #F3DDC4; margin: 0 0 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col address { font-style: normal; line-height: 1.6; }
.footer__contact { display: grid; gap: 16px; }
.footer__contact p { margin: 0; }
.footer__label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #F3DDC4; margin-bottom: 2px; }
.footer__bottom { background: var(--bark); color: #D9C6B1; font-size: .84rem; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px; min-height: 60px; padding-block: 14px; }
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--white); }
.footer__bottom a:hover { color: var(--toffee-soft); }
.to-top { display: inline-flex; align-items: center; gap: 8px; }
.to-top svg { width: 14px; height: 14px; }

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

/* ---------- Refinements ---------- */
.text-link svg { width: 16px; height: 16px; flex: none; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(3px); }
.site-footer .btn--light { color: var(--bark); text-decoration: none; }
.site-footer .btn--light:hover { color: var(--white); text-decoration: none; }
.cta-band .btn--light { color: var(--bark); }
.cta-band .btn--light:hover { color: var(--white); }
.gallery__item { min-height: 100%; }
@media (min-width: 900px) {
  .gallery { grid-auto-rows: minmax(200px, auto); }
  .gallery__item--tall img { height: 100%; position: absolute; inset: 0; }
  .gallery__item--tall { min-height: 520px; }
}
@media (min-width: 900px) { .filters { flex-wrap: wrap; overflow: visible; } }
