/* ============================================================
   Ancient Resin — Design System
   "Nature Preserved. Stories Timeless."
   Parchment / Amber Gold / Deep Brown · Cinzel (Trajan-style) + Lato
   Built to Brand Guide/Catalogue.png. Engine: sb-tools/adas-calibration lineage.
   ============================================================ */

:root {
  --ar-deep-brown: #3B2A1A;
  --ar-dark-resin: #6B3F14;
  --ar-amber-gold: #F0A325;
  --ar-warm-sand: #E8D9B5;
  --ar-parchment: #FAF3E5;
  --ar-parchment-light: #FFF8EA;
  --ar-muted-taupe: #8B7D6B;
  --ar-card: #FBF1DD;
  --ar-border: rgba(107, 63, 20, .22);
  --ar-border-strong: rgba(107, 63, 20, .32);
  --ar-shadow: 0 8px 24px rgba(59, 42, 26, .13);
  --ar-soft-shadow: 0 3px 10px rgba(59, 42, 26, .12);
  --ar-heading: 'Trajan Pro', 'Cinzel', 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
  --ar-body: 'Lato', 'Source Sans 3', Arial, sans-serif;
  --ar-container: 1120px;
  --ar-radius: 8px;
}

/* Lesson C2: clip, not hidden (keeps position:sticky working). */
html { overflow-x: clip; scroll-behavior: smooth; }
body { overflow-x: clip; }

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 163, 37, .07), transparent 24rem),
    radial-gradient(circle at 82% 38%, rgba(107, 63, 20, .045), transparent 22rem),
    var(--ar-parchment);
  color: var(--ar-deep-brown);
  font-family: var(--ar-body);
  font-size: 16px;
  line-height: 1.5;
}
/* Subtle paper grain (brand element). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .12;
  background-image:
    linear-gradient(45deg, rgba(59,42,26,.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(59,42,26,.018) 25%, transparent 25%);
  background-size: 8px 8px;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ar-dark-resin); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--ar-heading); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(240, 163, 37, .82);
  outline-offset: 3px;
}
::selection { background: rgba(240, 163, 37, .34); color: var(--ar-deep-brown); }

.screen-reader-text {
  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:focus {
  position: fixed !important;
  top: 8px; left: 8px;
  width: auto; height: auto; clip: auto;
  z-index: 10000;
  padding: .65rem .9rem;
  background: var(--ar-amber-gold);
  color: var(--ar-deep-brown);
}

.ar-container { width: min(calc(100% - 2.5rem), var(--ar-container)); margin-inline: auto; }

/* ---------- Announcement bar ---------- */
.ar-topbar {
  background: #2b1d10;
  color: #f6e5c2;
  font-size: .84rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(240,163,37,.35);
}
.ar-topbar__inner {
  min-height: 34px;
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; flex-wrap: wrap;
  text-transform: uppercase;
}
.ar-topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.ar-topbar__mark { width: 18px; height: 18px; object-fit: contain; border-radius: 50%; }
.ar-topbar__separator { color: var(--ar-amber-gold); }

/* ---------- Header ---------- */
.ar-site-header {
  background: linear-gradient(180deg, #fff7e8 0%, #fbefda 100%);
  border-bottom: 1px solid rgba(107,63,20,.18);
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow .2s ease;
}
.ar-site-header.is-stuck { box-shadow: 0 6px 20px rgba(59,42,26,.14); }
.admin-bar .ar-site-header { top: 32px; }
.ar-site-header__inner {
  min-height: 116px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem;
}
.ar-logo { flex: 0 0 auto; }
.ar-logo > a, .ar-logo .custom-logo-link { display: block; line-height: 0; }
.ar-logo img, .custom-logo { width: 216px; max-height: 108px; object-fit: contain; }

.ar-primary-nav { flex: 1 1 auto; }
.ar-primary-nav__list {
  display: flex; justify-content: center; align-items: center;
  gap: 2.15rem;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--ar-heading);
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
}
.ar-primary-nav__list a { padding: .35rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.ar-primary-nav__list a:hover,
.ar-primary-nav__list .current-menu-item > a,
.ar-primary-nav__list a.is-active {
  color: var(--ar-dark-resin);
  border-bottom-color: var(--ar-amber-gold);
}
.ar-primary-nav__list .menu-item-has-children { position: relative; }
.ar-primary-nav__list .sub-menu {
  position: absolute; top: calc(100% + .55rem); left: 50%; z-index: 80;
  min-width: 210px; margin: 0; padding: .55rem; list-style: none;
  border: 1px solid var(--ar-border); border-radius: 6px;
  background: var(--ar-parchment-light); box-shadow: var(--ar-shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, .35rem);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.ar-primary-nav__list .sub-menu a { display: block; padding: .58rem .7rem; border: 0; font-family: var(--ar-body); font-size: .82rem; }
.ar-primary-nav__list .menu-item-has-children:hover > .sub-menu,
.ar-primary-nav__list .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.ar-header-actions { display: flex; align-items: center; gap: 1.1rem; min-width: 150px; justify-content: flex-end; }
.ar-header-actions a { position: relative; color: #281a0e; display: inline-flex; }
.ar-header-actions svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ar-cart-count {
  position: absolute; top: -8px; right: -10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ar-amber-gold); color: var(--ar-deep-brown);
  font-size: .68rem; font-weight: 900;
  display: grid; place-items: center; font-family: var(--ar-body);
}
.ar-menu-toggle {
  display: none;
  border: 1px solid var(--ar-border); background: transparent; color: var(--ar-deep-brown);
  padding: .45rem .7rem; border-radius: 999px;
  text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .08em;
}
.ar-mobile-nav {
  display: none; padding: .75rem 1.25rem 1rem;
  border-top: 1px solid var(--ar-border); background: var(--ar-parchment-light);
}
.ar-mobile-nav a { display: block; padding: .8rem 0; border-bottom: 1px solid rgba(107,63,20,.12); font-family: var(--ar-heading); font-size: .95rem; }
.ar-mobile-nav.is-open { display: block; }

/* ---------- Section scaffolding ---------- */
.ar-main { background: transparent; }
.ar-section { padding-block: clamp(2.1rem, 4.5vw, 3.4rem); }
.ar-section--tight { padding-block: clamp(1.5rem, 3vw, 2.2rem); }
.ar-sec-head { text-align: center; margin-bottom: 1.5rem; }
.ar-sec-head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  text-transform: uppercase; letter-spacing: .16em;
  color: #4a2b13; font-weight: 600;
}
.ar-sec-head p { margin: .35rem auto 0; max-width: 560px; color: var(--ar-muted-taupe); font-size: .88rem; }
.ar-ornament { color: var(--ar-dark-resin); width: 200px; max-width: 60%; margin: .4rem auto .1rem; }
.ar-ornament svg { width: 100%; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.ar-sec-more { display: block; text-align: center; margin-top: 1.3rem; color: var(--ar-dark-resin); text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }

/* ---------- Hero ---------- */
.ar-hero {
  position: relative; overflow: hidden;
  min-height: 430px; border-bottom: 1px solid var(--ar-border);
  background:
    linear-gradient(90deg, rgba(250,243,229,1) 0%, rgba(250,243,229,.95) 34%, rgba(250,243,229,.5) 52%, rgba(250,243,229,0) 74%),
    #ead5b5;
}
.ar-hero__media { position: absolute; inset: 0 0 0 auto; width: 60%; z-index: 0; }
.ar-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,243,229,.72), rgba(250,243,229,.08) 32%, rgba(59,42,26,.06)); }
.ar-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ar-hero__inner { position: relative; z-index: 1; min-height: 430px; display: flex; align-items: center; }
.ar-hero__copy { width: min(500px, 100%); padding: 2rem 0; }
.ar-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 3.85rem);
  line-height: .98; letter-spacing: -.03em; color: #281a0e; font-weight: 700;
}
.ar-hero h1 span { color: var(--ar-amber-gold); }
.ar-hero__copy .ar-ornament { margin: .55rem 0 .6rem; }
.ar-hero p { max-width: 430px; margin: 0 0 1.3rem; font-size: 1.02rem; line-height: 1.4; color: #332113; }
.ar-hero__actions { display: flex; gap: .95rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.ar-hero__chips { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.ar-chip { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ar-heading); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ar-dark-resin); }
.ar-chip span.ar-chip__ic {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--ar-border-strong); display: grid; place-items: center; color: var(--ar-dark-resin);
}
.ar-chip__ic svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Buttons ---------- */
.ar-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: .74rem 1.5rem;
  border: 1px solid var(--ar-dark-resin);
  font-size: .78rem; font-weight: 900; line-height: 1; letter-spacing: .055em; text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.ar-button:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(59,42,26,.18); }
.ar-button--primary { background: var(--ar-amber-gold); color: var(--ar-deep-brown); border-color: #c57c10; box-shadow: inset 0 -1px 0 rgba(59,42,26,.18); }
.ar-button--primary:hover { color: var(--ar-deep-brown); }
.ar-button--secondary { background: rgba(250,243,229,.82); color: #321f10; }
.ar-button--small { min-height: 32px; padding: .58rem 1.1rem; font-size: .7rem; }

/* ---------- Collections / cards shared ---------- */
.ar-collection-grid, .ar-ways-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.ar-collection-card, .ar-way-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--ar-border); border-radius: var(--ar-radius); overflow: hidden;
  background: var(--ar-parchment-light); box-shadow: var(--ar-soft-shadow);
  text-align: center; transition: transform .18s ease, box-shadow .18s ease;
}
.ar-collection-card:hover, .ar-way-card:hover { transform: translateY(-3px); box-shadow: var(--ar-shadow); }
.ar-collection-card img, .ar-way-card img { width: 100%; height: 158px; object-fit: cover; }
.ar-card__title { display: block; margin: .7rem .5rem .1rem; font-family: var(--ar-heading); font-weight: 600; font-size: 1.02rem; color: #3a2615; }
.ar-card__desc { display: block; margin: .1rem .8rem .55rem; font-size: .78rem; line-height: 1.35; color: #5a4531; flex: 1 1 auto; }
.ar-card__link { display: block; margin: 0 0 .85rem; color: var(--ar-dark-resin); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

/* Orphan centering (lesson): a lone 4th-col card in a wrapped row centers. */
.ar-collection-card:last-child:nth-child(4n-1),
.ar-way-card:last-child:nth-child(4n-1) { /* placeholder to keep specificity; real handling in media queries */ }

/* ---------- Signature Pieces (products) ---------- */
.ar-product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ar-product-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--ar-border); border-radius: var(--ar-radius); overflow: hidden;
  background: rgba(255,248,234,.82); box-shadow: var(--ar-soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ar-product-card:hover { transform: translateY(-2px); box-shadow: var(--ar-shadow); }
.ar-product-card__image { display: block; height: 150px; background: #f5e5c8; overflow: hidden; }
.ar-product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.ar-heart {
  position: absolute; top: 8px; right: 9px; z-index: 2;
  border: 0; background: rgba(255,248,234,.75); border-radius: 50%; width: 28px; height: 28px;
  color: #4a2c16; font-size: 1.05rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.ar-product-card__body { padding: .6rem .75rem .75rem; display: flex; flex-direction: column; gap: .12rem; }
.ar-product-card h3 { margin: 0; min-height: 2.3em; font-family: var(--ar-body); font-size: .8rem; line-height: 1.2; font-weight: 700; color: #44301f; }
.ar-price { margin: .15rem 0 0; color: var(--ar-dark-resin); font-size: .9rem; font-weight: 900; }
.ar-stars { margin: 0; color: #d08a12; letter-spacing: .05em; font-size: .8rem; font-weight: 900; }
.ar-stars span { color: var(--ar-muted-taupe); font-weight: 400; letter-spacing: 0; }
.ar-rating { min-height: 1rem; color: #d08a12; font-size: .78rem; }
.ar-rating .star-rating { float: none; margin: .15rem 0 0; color: #d08a12; font-size: .82rem; }

/* ---------- Left/right section head (Featured Products) ---------- */
.ar-sec-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.ar-sec-row h2 { margin: 0; text-transform: uppercase; font-size: 1rem; letter-spacing: .09em; color: #4a2b13; font-weight: 600; }
.ar-sec-row a { color: var(--ar-dark-resin); text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .06em; white-space: nowrap; }

/* ---------- The Ancient Resin Story (split) ---------- */
.ar-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 300px; border-block: 1px solid var(--ar-border); background: linear-gradient(90deg, #e9dbc1 0%, #faf3e5 52%, #faf3e5 100%); }
.ar-story__image img { width: 100%; height: 100%; object-fit: cover; }
.ar-story__copy { padding: clamp(1.6rem, 3.5vw, 2.6rem) max(1.25rem, calc((100vw - var(--ar-container))/2)) clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.5rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.ar-story h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.05rem); color: #321f10; line-height: 1.1; }
.ar-story .ar-ornament { margin: .5rem 0; width: 170px; }
.ar-story p { max-width: 470px; margin: 0; font-size: .95rem; line-height: 1.5; color: #4a3524; }
.ar-mini-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.1rem; color: var(--ar-dark-resin); font-family: var(--ar-heading); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Trust strip (4 across) ---------- */
.ar-trust-strip { background: rgba(255,248,234,.7); border-bottom: 1px solid var(--ar-border); }
.ar-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ar-trust-item { display: grid; grid-template-columns: 44px 1fr; gap: .7rem; align-items: center; min-height: 96px; padding: 1rem; border-right: 1px solid var(--ar-border); }
.ar-trust-item:last-child { border-right: 0; }
.ar-trust-item svg { width: 38px; height: 38px; fill: none; stroke: var(--ar-dark-resin); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.ar-trust-item h3 { margin: 0 0 .18rem; font-size: .9rem; line-height: 1.1; color: #3a2413; }
.ar-trust-item p { margin: 0; font-size: .75rem; line-height: 1.3; color: #55402c; }
.ar-trust-item img.ar-ico { width: 42px; height: 42px; object-fit: contain; }
.ar-pdp-trust img.ar-ico { width: 30px; height: 30px; object-fit: contain; }

@media (max-width: 760px) {
  .ar-story { grid-template-columns: 1fr; }
  .ar-story__image { height: 210px; }
  .ar-story__copy { padding: 1.5rem 1.25rem; }
  .ar-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ar-trust-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 460px) {
  .ar-trust-grid { grid-template-columns: 1fr; }
  .ar-trust-item { border-right: 0; border-bottom: 1px solid var(--ar-border); }
}

/* ---------- Our Story & Craftsmanship ---------- */
.ar-craft { background: linear-gradient(90deg, #eaddc3 0%, #f7efe0 46%, #faf3e5 100%); border-block: 1px solid var(--ar-border); }
.ar-craft__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2rem, 4vw, 3rem); }
.ar-craft__story h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); color: #321f10; line-height: 1.1; }
.ar-craft__story .ar-ornament { margin: .5rem 0; }
.ar-craft__story p { max-width: 460px; margin: 0 0 1rem; font-size: .95rem; line-height: 1.5; color: #4a3524; }
.ar-craft__marks { display: flex; gap: 1.4rem; flex-wrap: wrap; color: var(--ar-dark-resin); font-family: var(--ar-heading); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.ar-craft__marks span { display: inline-flex; align-items: center; gap: .4rem; }
.ar-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.ar-value { display: grid; grid-template-columns: 46px 1fr; gap: .7rem; align-items: start; }
.ar-value svg { width: 40px; height: 40px; fill: none; stroke: var(--ar-dark-resin); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.ar-value img.ar-ico { width: 40px; height: 40px; object-fit: contain; }
.ar-value h3 { margin: 0 0 .18rem; font-size: .92rem; line-height: 1.1; color: #3a2413; }
.ar-value p { margin: 0; font-size: .78rem; line-height: 1.3; color: #55402c; }

/* ---------- Best Sellers + Editor's Highlight ---------- */
.ar-bestsell__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.ar-panel-label { font-family: var(--ar-heading); text-transform: uppercase; letter-spacing: .16em; font-size: .82rem; color: #4a2b13; margin: 0 0 1rem; }
.ar-bs-list { display: flex; flex-direction: column; gap: .7rem; }
.ar-bs-row { display: grid; grid-template-columns: 66px 1fr auto; gap: .9rem; align-items: center; padding: .55rem .7rem; border: 1px solid var(--ar-border); border-radius: 6px; background: rgba(255,248,234,.7); transition: box-shadow .16s ease; }
.ar-bs-row:hover { box-shadow: var(--ar-soft-shadow); }
.ar-bs-row img { width: 66px; height: 66px; object-fit: cover; border-radius: 5px; }
.ar-bs-row h3 { margin: 0; font-family: var(--ar-body); font-size: .84rem; font-weight: 700; color: #44301f; }
.ar-bs-row .ar-stars { font-size: .72rem; }
.ar-bs-row .ar-price { margin: 0; font-size: .92rem; }
.ar-editor { position: relative; border: 1px solid var(--ar-border-strong); border-radius: var(--ar-radius); background: linear-gradient(160deg, #f4e6c8, var(--ar-warm-sand)); box-shadow: var(--ar-soft-shadow); overflow: hidden; display: grid; grid-template-columns: 44% 1fr; }
.ar-editor__media { position: relative; }
.ar-editor__media img { width: 100%; height: 100%; object-fit: cover; }
.ar-editor__tag { position: absolute; top: 10px; left: 10px; background: var(--ar-deep-brown); color: var(--ar-parchment); font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; padding: .3rem .55rem; border-radius: 3px; }
.ar-editor__body { padding: 1.1rem 1.2rem; display: flex; flex-direction: column; justify-content: center; }
.ar-editor__eyebrow { font-family: var(--ar-heading); text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; color: var(--ar-dark-resin); }
.ar-editor__body h3 { margin: .2rem 0 .1rem; font-size: 1.35rem; line-height: 1.1; color: #321f10; }
.ar-editor__body .ar-price { font-size: 1.05rem; margin: 0 0 .4rem; }
.ar-editor__body p { margin: 0 0 .9rem; font-size: .82rem; line-height: 1.4; color: #4f3928; }
.ar-editor__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---------- Why Amber Captivates ---------- */
.ar-captivates {
  position: relative; overflow: hidden; min-height: 220px;
  border-bottom: 1px solid var(--ar-border);
  background: linear-gradient(90deg, var(--ar-parchment) 0%, var(--ar-parchment) 42%, rgba(250,243,229,.55) 58%, transparent 100%);
}
.ar-captivates > img { position: absolute; inset: 0 0 0 auto; width: 56%; height: 100%; object-fit: cover; z-index: 0; }
.ar-captivates::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ar-parchment) 0%, rgba(250,243,229,.9) 38%, rgba(250,243,229,.34) 60%, rgba(250,243,229,0) 100%); z-index: 1; }
.ar-captivates__inner { position: relative; z-index: 2; min-height: 220px; display: flex; align-items: center; }
.ar-captivates__copy { width: 430px; max-width: 100%; padding: 1.4rem 0; }
.ar-captivates h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 1.9rem); color: #321f10; line-height: 1.1; }
.ar-captivates .ar-ornament { margin: .45rem 0; width: 180px; }
.ar-captivates p { margin: 0 0 1rem; font-size: .92rem; line-height: 1.45; color: #3f2c1a; }

/* ---------- Testimonials ---------- */
.ar-testimonials { text-align: center; }
.ar-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: .4rem; }
.ar-testimonial-grid blockquote {
  margin: 0; padding: 1.1rem 1.15rem; min-height: 118px;
  border: 1px solid var(--ar-border); border-radius: 6px; background: rgba(255,248,234,.6);
  display: flex; flex-direction: column; gap: .35rem;
}
.ar-testimonial-grid .ar-stars { text-align: center; }
.ar-testimonial-grid p { margin: 0; font-size: .86rem; line-height: 1.4; font-style: italic; color: #3f2c1a; }
.ar-testimonial-grid cite { font-size: .76rem; font-style: normal; color: #6a4e33; font-weight: 700; }

/* ---------- Benefit strip ---------- */
.ar-benefits { border-block: 1px solid var(--ar-border); background: rgba(255,248,234,.7); }
.ar-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ar-benefit { display: flex; align-items: center; justify-content: center; gap: .6rem; min-height: 66px; padding: .8rem; border-right: 1px solid var(--ar-border); text-align: left; }
.ar-benefit:last-child { border-right: 0; }
.ar-benefit svg { width: 26px; height: 26px; fill: none; stroke: var(--ar-dark-resin); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.ar-benefit b { font-family: var(--ar-heading); font-size: .8rem; color: #3a2413; }
.ar-benefit small { display: block; font-size: .68rem; color: var(--ar-muted-taupe); }

/* ---------- Newsletter + Footer ---------- */
.ar-footer__newsletter {
  background:
    linear-gradient(90deg, rgba(43,29,16,.93), rgba(43,29,16,.86)),
    url('../img/newsletter-bg.png') center/cover no-repeat;
  color: var(--ar-parchment);
  border-top: 1px solid rgba(240,163,37,.35);
  border-bottom: 1px solid rgba(240,163,37,.35);
}
.ar-newsletter { min-height: 96px; display: grid; grid-template-columns: 1fr 460px; align-items: center; gap: 1.5rem; padding-block: 1.1rem; }
.ar-newsletter h2 { margin: 0; color: #f1c575; font-size: 1.4rem; }
.ar-newsletter p { margin: .1rem 0 0; font-size: .85rem; color: #f7edd9; }
.ar-newsletter-form { display: grid; grid-template-columns: 1fr 140px; }
.ar-newsletter-form input, .ar-newsletter-form button { height: 44px; border: 0; }
.ar-newsletter-form input { padding: 0 1rem; background: #fff7e8; color: var(--ar-deep-brown); }
.ar-newsletter-form button { background: var(--ar-amber-gold); color: var(--ar-deep-brown); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }

.ar-footer__main { background: #2b1d10; color: #f4e5c9; padding: 2.1rem 0 1.2rem; }
.ar-footer-grid { display: grid; grid-template-columns: 1.8fr repeat(5, 1fr); gap: 1.6rem; align-items: start; }
.ar-footer-brand__logo { display: inline-block; padding: .3rem .4rem; border: 1px solid rgba(240,163,37,.24); border-radius: 5px; background: var(--ar-parchment); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.ar-footer-brand img { width: 200px; }
.ar-footer-brand p { max-width: 240px; margin: .55rem 0 0; font-size: .72rem; line-height: 1.45; color: #e5d5bc; }
.ar-footer h3 { margin: 0 0 .5rem; color: #f1c575; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.ar-footer a { display: block; color: #f4e5c9; font-size: .76rem; line-height: 1.7; }
.ar-footer a:hover { color: var(--ar-amber-gold); }
.ar-footer-menu { list-style: none; margin: 0; padding: 0; }
.ar-socials { display: flex; gap: .5rem; margin: .1rem 0 .5rem; }
.ar-socials a { width: 30px; height: 30px; border-radius: 50%; background: #f4e5c9; color: #2b1d10; display: grid; place-items: center; transition: background .16s ease, color .16s ease; }
.ar-socials a:hover { background: var(--ar-amber-gold); color: #2b1d10; }
.ar-socials svg { width: 15px; height: 15px; }
.ar-footer-contact { margin: 0; font-size: .76rem; line-height: 1.6; color: #e5d5bc; }
.ar-footer-contact a { display: inline; color: #f4e5c9; }
.ar-copyright { margin-top: 1.4rem; padding-top: .8rem; border-top: 1px solid rgba(240,163,37,.22); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .72rem; color: #d8c4a5; }
.ar-payments { display: flex; gap: .4rem; flex-wrap: wrap; }
.ar-payments span { font-size: .58rem; font-weight: 900; letter-spacing: .05em; color: #2b1d10; background: #d8c4a5; border-radius: 3px; padding: .25rem .45rem; text-transform: uppercase; }

/* ---------- Shop / Catalogue page ---------- */
.ar-hero--compact { min-height: 300px; }
.ar-hero--compact .ar-hero__inner { min-height: 300px; }
.ar-hero--compact .ar-hero__media { width: 52%; }
.ar-hero--compact h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.ar-shop-breadcrumb { padding: .8rem 0 0; }
.ar-shop-breadcrumb .woocommerce-breadcrumb { color: var(--ar-muted-taupe); font-size: .78rem; }
.ar-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.ar-shop-toolbar .woocommerce-result-count { margin: 0; color: var(--ar-muted-taupe); font-size: .82rem; }
.ar-shop-toolbar .woocommerce-ordering { margin: 0; }
.woocommerce .woocommerce-ordering select { border: 1px solid var(--ar-border); background: var(--ar-parchment-light); color: var(--ar-deep-brown); padding: .45rem .7rem; border-radius: 5px; }
.ar-archive-header { text-align: center; padding-block: clamp(1.6rem, 4vw, 2.6rem); border-bottom: 1px solid var(--ar-border); background: linear-gradient(180deg, #fff7e8, var(--ar-parchment)); }
.ar-archive-header h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #321f10; }
.ar-archive-header .ar-ornament { margin: .5rem auto; }
.ar-archive-header .term-description { max-width: 620px; margin: .3rem auto 0; color: #55402c; font-size: .9rem; }

/* ---------- WooCommerce basics ---------- */
.woocommerce img, .woocommerce-page img { height: auto; }
.woocommerce div.product .product_title { font-family: var(--ar-heading); color: var(--ar-deep-brown); }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--ar-border); border-radius: var(--ar-radius);
  background: rgba(255,248,234,.82); box-shadow: var(--ar-soft-shadow);
  overflow: hidden; padding-bottom: 1rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .button { margin-left: .85rem; margin-right: .85rem; }
.woocommerce ul.products li.product .price { color: var(--ar-dark-resin); font-weight: 900; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  background: var(--ar-amber-gold) !important; color: var(--ar-deep-brown) !important;
  border-radius: 0 !important; text-transform: uppercase; letter-spacing: .05em; font-weight: 900;
}

/* ---------- Product detail (PDP) ---------- */
.ar-pdp-badge { display: inline-flex; align-items: center; gap: .4rem; margin: .2rem 0 .45rem; font-family: var(--ar-heading); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ar-dark-resin); }
.ar-pdp-badge svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.ar-pdp-stock { display: flex; align-items: center; gap: .4rem; margin: .2rem 0 .7rem; font-size: .85rem; font-weight: 700; }
.ar-pdp-stock.in { color: #3f7a2e; }
.ar-pdp-stock.out { color: var(--ar-muted-taupe); }
.ar-pdp-stock svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.ar-pdp-ooak { display: flex; align-items: center; gap: .45rem; margin: .8rem 0 0; font-size: .78rem; color: #55402c; }
.ar-pdp-ooak svg { width: 16px; height: 16px; fill: none; stroke: var(--ar-dark-resin); stroke-width: 1.6; }
.ar-pdp-trust { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1.2rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid var(--ar-border); }
.ar-pdp-trust__item { display: flex; align-items: center; gap: .55rem; font-size: .8rem; color: #4a3524; }
.ar-pdp-trust__item em { font-style: normal; }
.ar-pdp-trust svg { width: 22px; height: 22px; fill: none; stroke: var(--ar-dark-resin); stroke-width: 1.5; flex: 0 0 auto; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--ar-parchment-light); border-color: var(--ar-border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--ar-parchment); border-bottom-color: var(--ar-parchment); }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--ar-dark-resin); font-family: var(--ar-heading); }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-family: var(--ar-heading); color: var(--ar-deep-brown); }
.woocommerce #reviews #comments h2, .woocommerce div.product .up-sells h2, .woocommerce div.product .related h2 { font-family: var(--ar-heading); color: var(--ar-deep-brown); }

/* ---------- Inner page hero + prose + CTA ---------- */
.ar-page-hero { text-align: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); border-bottom: 1px solid var(--ar-border); background: linear-gradient(180deg, #fff7e8, var(--ar-parchment)); }
.ar-page-hero .ar-eyebrow { display: block; margin-bottom: .45rem; }
.ar-page-hero h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; color: #281a0e; }
.ar-page-hero .ar-ornament { margin: .6rem auto .1rem; }
.ar-page-hero__sub { max-width: 620px; margin: .35rem auto 0; color: #55402c; font-size: 1rem; }

.ar-prose { max-width: 760px; margin-inline: auto; }
.ar-prose > *:first-child { margin-top: 0; }
.ar-prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); color: #321f10; margin: 2rem 0 .6rem; }
.ar-prose h3 { font-size: 1.15rem; color: #3a2413; margin: 1.5rem 0 .4rem; }
.ar-prose p { margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.75; color: #3f2c1a; }
.ar-prose > p:first-of-type { font-size: 1.12rem; color: #33210f; }
.ar-prose ul, .ar-prose ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.ar-prose li { margin: .3rem 0; line-height: 1.65; }
.ar-prose blockquote { margin: 1.5rem 0; padding: .7rem 1.2rem; border-left: 3px solid var(--ar-amber-gold); background: rgba(255,248,234,.6); font-style: italic; color: #4a3524; }
.ar-prose a { color: var(--ar-dark-resin); text-decoration: underline; text-underline-offset: .16em; }

.ar-cta-band { background: linear-gradient(90deg, rgba(43,29,16,.96), rgba(59,42,26,.92)); color: var(--ar-parchment); text-align: center; padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.ar-cta-band h2 { margin: 0 0 .3rem; color: #f1c575; font-size: clamp(1.5rem, 3vw, 2rem); }
.ar-cta-band p { margin: 0 auto 1.15rem; max-width: 560px; color: #f4e5c9; font-size: .95rem; }

/* ---------- Contact ---------- */
.ar-contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.ar-form { display: grid; gap: .9rem; }
.ar-field { display: grid; gap: .3rem; }
.ar-field label { font-family: var(--ar-heading); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ar-dark-resin); }
.ar-field input, .ar-field textarea { border: 1px solid var(--ar-border); background: var(--ar-parchment-light); color: var(--ar-deep-brown); padding: .65rem .8rem; border-radius: 5px; width: 100%; }
.ar-field textarea { min-height: 150px; resize: vertical; }
.ar-form .ar-hp { position: absolute; left: -9999px; }
.ar-contact-details { border: 1px solid var(--ar-border); border-radius: var(--ar-radius); background: rgba(255,248,234,.7); padding: 1.2rem 1.3rem; }
.ar-contact-details h3 { margin: 0 0 .7rem; font-size: 1.05rem; color: #321f10; }
.ar-contact-details dl { margin: 0; display: grid; gap: .75rem; }
.ar-contact-details dt { font-family: var(--ar-heading); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ar-dark-resin); }
.ar-contact-details dd { margin: .12rem 0 0; font-size: .9rem; color: #3f2c1a; }
.ar-form__notice { padding: .75rem .95rem; border-radius: 5px; font-size: .88rem; margin-bottom: .3rem; }
.ar-form__notice.ok { background: #e7f3e0; color: #2f5d22; border: 1px solid #b6d6a6; }
.ar-form__notice.err { background: #f6e0d8; color: #7a2f1a; border: 1px solid #d9b3a6; }
@media (max-width: 760px) { .ar-contact-grid { grid-template-columns: 1fr; } }

/* ---------- Simple content pages ---------- */
.ar-content-page { padding: clamp(2.5rem, 6vw, 5rem) 0; min-height: 55vh; }
.ar-content-page--narrow { max-width: 820px; }
.ar-eyebrow { color: var(--ar-dark-resin); font-family: var(--ar-heading); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ar-entry__title { margin: 0 0 1.25rem; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.05; }
.ar-entry__content > * + * { margin-top: 1.15em; }
.ar-entry__content h2, .ar-entry__content h3, .ar-entry__content h4 { color: var(--ar-deep-brown); }
.ar-entry__content a { color: var(--ar-dark-resin); text-decoration: underline; text-underline-offset: .16em; }

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

@media (max-width: 1000px) {
  :root { --ar-container: 92vw; }
  .ar-primary-nav { display: none; }
  .ar-menu-toggle { display: inline-flex; }
  .ar-site-header__inner { min-height: 100px; }
  .ar-logo img, .custom-logo { width: 188px; max-height: 96px; }
  .ar-hero { min-height: 380px; }
  .ar-hero__inner { min-height: 380px; }
  .ar-hero__media { width: 66%; opacity: .8; }
  .ar-product-grid { grid-template-columns: repeat(3, 1fr); }
  .ar-craft__grid { grid-template-columns: 1fr; }
  .ar-bestsell__grid { grid-template-columns: 1fr; }
  .ar-editor { grid-template-columns: 40% 1fr; }
}

@media (max-width: 760px) {
  .ar-topbar__inner { font-size: .68rem; gap: .5rem; }
  .ar-header-actions { gap: .85rem; }
  .ar-header-actions a:not(.ar-cart-link) { display: none; }
  .ar-hero { min-height: auto; }
  .ar-hero__media { position: relative; width: 100%; height: 230px; opacity: 1; }
  .ar-hero__media::after { background: linear-gradient(180deg, rgba(250,243,229,0), var(--ar-parchment)); }
  .ar-hero__inner { min-height: auto; display: block; }
  .ar-hero__copy { padding: 1.2rem 0 1.6rem; width: 100%; }
  .ar-hero__chips { gap: 1rem; }
  /* 2-up phone grids (lesson) */
  .ar-collection-grid, .ar-ways-grid, .ar-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ar-values { grid-template-columns: 1fr 1fr; }
  .ar-captivates { min-height: auto; }
  .ar-captivates > img { position: relative; width: 100%; height: 180px; }
  .ar-captivates::after { display: none; }
  .ar-captivates__inner { min-height: auto; display: block; }
  .ar-captivates__copy { width: 100%; padding: 1.2rem 0; }
  .ar-testimonial-grid { grid-template-columns: 1fr; }
  .ar-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .ar-benefit:nth-child(2) { border-right: 0; }
  .ar-editor { grid-template-columns: 1fr; }
  .ar-editor__media { height: 200px; }
  .ar-newsletter { grid-template-columns: 1fr; }
  .ar-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .ar-footer-brand { grid-column: span 3; }
  /* Orphan centering: lone last card in a 2-up row centers. */
  .ar-collection-grid > :last-child:nth-child(odd),
  .ar-ways-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}

@media (max-width: 460px) {
  .ar-collection-grid, .ar-ways-grid, .ar-product-grid, .ar-values, .ar-benefits__grid, .ar-footer-grid { grid-template-columns: 1fr; }
  .ar-benefit { border-right: 0; border-bottom: 1px solid var(--ar-border); }
  .ar-footer-brand { grid-column: auto; }
  .ar-hero__actions { flex-direction: column; align-items: stretch; }
  .ar-collection-grid > :last-child:nth-child(odd),
  .ar-ways-grid > :last-child:nth-child(odd) { max-width: 100%; }
}

@media screen and (max-width: 782px) { .admin-bar .ar-site-header { top: 46px; } }
