/* ============================================================
   AJWA MADINAH — Design System
   Premium · Elegant · Warm · Editorial
   Palette: deep date brown / warm cream / muted gold / soft beige
   Type: Fraunces (serif display) + Manrope (sans body)
   ============================================================ */

:root {
  /* Colour */
  --brown-950: #1c0f07;
  --brown-900: #2a160b;
  --brown-800: #3d2314;
  --brown-700: #54331d;
  --brown-600: #6b452a;
  --gold:      #b8894a;
  --gold-soft: #cbb086;
  --gold-deep: #9a6c33;
  --cream:     #faf4e8;
  --cream-2:   #f3e8d3;
  --beige:     #e9dcc3;
  --beige-2:   #ddcdae;
  --ink:       #241610;
  --muted:     #6f5b48;
  --line:      #e3d4ba;
  --white:     #fffdf9;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -24px rgba(42, 22, 11, .28);
  --shadow-sm: 0 10px 30px -14px rgba(42, 22, 11, .22);
  --transition: .35s cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

::selection { background: var(--gold); color: var(--brown-950); }

/* ---------- Typography ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--brown-900);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--muted); }
p + p { margin-top: 1rem; }
strong { color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.eyebrow--center::after { content: ""; width: 34px; height: 2px; background: var(--gold); }

.lead { font-size: 1.12rem; color: #5c4a38; }

/* ---------- Layout helpers ---------- */
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section--cream2 { background: var(--cream-2); }
.section--brown { background: var(--brown-900); color: var(--cream); }
.section--brown h2, .section--brown h3 { color: var(--cream); }
.section--brown p { color: #d9c8ae; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

.skip-link {
  position: absolute; left: -9999px; top: .5rem; z-index: 300;
  background: var(--brown-900); color: var(--cream);
  padding: .7rem 1.2rem; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { left: .5rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn--primary { background: var(--brown-800); color: var(--cream); box-shadow: 0 14px 30px -14px rgba(42,22,11,.55); }
.btn--primary:hover { background: var(--brown-950); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--brown-950); }
.btn--gold:hover { background: var(--gold-deep); color: var(--cream); transform: translateY(-2px); }
.btn--ghost { border-color: var(--brown-800); color: var(--brown-800); background: transparent; }
.btn--ghost:hover { background: var(--brown-800); color: var(--cream); transform: translateY(-2px); }
.btn--ghostCream { border-color: rgba(250,244,232,.5); color: var(--cream); }
.btn--ghostCream:hover { background: var(--cream); color: var(--brown-900); }
.btn--sm { padding: .6rem 1.25rem; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(250,244,232,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 40px -22px rgba(42,22,11,.35); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--serif); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brown-800);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-size: 1.12rem; font-weight: 600; color: var(--brown-900); line-height: 1.1; }
.brand__tag { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }

.nav-main { display: flex; align-items: center; gap: .25rem; }
.nav-main a {
  padding: .5rem .8rem; border-radius: 999px;
  font-size: .92rem; font-weight: 600; color: #4d3a29;
  transition: var(--transition);
}
.nav-main a:hover { color: var(--brown-950); background: var(--beige); }
.nav-main a[aria-current="page"] { color: var(--brown-950); background: var(--beige-2); }
.header-cta { display: inline-flex; align-items: center; gap: .75rem; }

.nav-close { display: none; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  align-items: center; justify-content: center;
  border: 1.5px solid var(--line); background: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav-main {
    position: fixed; inset: 0; z-index: 200;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: .4rem;
    background: var(--cream);
    padding: 5.5rem 1.6rem 2rem;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    visibility: hidden;
  }
  .nav-main.is-open { transform: none; visibility: visible; }
  .nav-main a { font-size: 1.25rem; font-family: var(--serif); padding: .9rem 1rem; border-radius: 14px; }
  .nav-main .btn { font-family: var(--sans); font-size: 1rem; margin-top: 1.2rem; }
  .nav-close {
    display: inline-flex; position: absolute; top: 1.1rem; right: 1.25rem;
    width: 46px; height: 46px; border-radius: 12px;
    border: 1.5px solid var(--line); background: var(--white);
    align-items: center; justify-content: center;
  }
  .nav-close svg { width: 22px; height: 22px; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(184,137,74,.20), transparent 62%),
    var(--cream);
}
.hero::after {
  content: ""; position: absolute; z-index: -1;
  width: 560px; height: 560px; right: -160px; top: 4rem;
  background: var(--beige);
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  opacity: .5;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  color: var(--gold-deep);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero h1 .accent { color: var(--gold-deep); font-style: italic; font-weight: 620; }
.hero__copy .lead { max-width: 32rem; margin: 1.4rem 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__note { display: flex; align-items: center; gap: .55rem; margin-top: 1.6rem; font-size: .85rem; color: var(--muted); }
.hero__note .icon { width: 16px; height: 16px; color: var(--gold-deep); flex: 0 0 auto; }

.hero__art { position: relative; }
.arch {
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--beige);
}
.hero__art .arch { aspect-ratio: 4 / 4.7; }
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame {
  position: absolute; inset: -14px; z-index: -1;
  border: 1.5px solid var(--gold-soft);
  border-radius: 999px 999px calc(var(--radius-lg) + 8px) calc(var(--radius-lg) + 8px);
  transform: translate(14px, 10px);
}
.hero__chip {
  position: absolute; left: -1.2rem; bottom: 2.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .7rem;
  max-width: 250px;
}
.hero__chip .icon { width: 26px; height: 26px; color: var(--gold-deep); flex: 0 0 auto; }
.hero__chip b { font-size: .86rem; color: var(--brown-900); display: block; line-height: 1.3; }
.hero__chip span { font-size: .76rem; color: var(--muted); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero::after { width: 380px; height: 380px; right: -120px; top: 1rem; }
  .hero__chip { left: .6rem; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--brown-900); color: var(--cream); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(250,244,232,.14);
}
.trust__item { background: var(--brown-900); padding: 1.6rem 1.4rem; display: flex; gap: .9rem; align-items: flex-start; }
.trust__item .icon { width: 24px; height: 24px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.trust__item b { display: block; font-size: .95rem; color: var(--cream); }
.trust__item span { font-size: .82rem; color: #cdbb9d; }
@media (max-width: 900px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust__grid { grid-template-columns: 1fr; } .trust__item { padding: 1.2rem 1.4rem; } }

/* ---------- Section headers ---------- */
.sec-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .lead { margin-top: 1rem; }

/* ---------- About preview (split) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip > .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--flip > .split__media { order: 0; } }

.split__media { position: relative; }
.split__media .frame { position: absolute; inset: -12px -12px auto auto; width: 100%; height: 100%; border: 1.5px solid var(--gold-soft); border-radius: var(--radius-lg); z-index: -1; transform: translate(12px, 12px); }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__media--arch img { border-radius: 999px 999px var(--radius-lg) var(--radius-lg); aspect-ratio: 4/4.6; }

.ticks { display: grid; gap: .9rem; margin: 1.6rem 0 2rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; color: #4d3a29; }
.ticks .icon { width: 20px; height: 20px; color: var(--gold-deep); flex: 0 0 auto; margin-top: 3px; }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 960px) { .prod-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.prod-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prod-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--beige); }
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.prod-card:hover .prod-card__media img { transform: scale(1.05); }
.prod-card__tag {
  position: absolute; top: .9rem; left: .9rem;
  background: rgba(28,15,7,.72); color: var(--cream);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.prod-card__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.prod-card__body h3 { margin-bottom: .45rem; }
.prod-card__body p { font-size: .92rem; margin-bottom: 1.1rem; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.2rem; }
.price { font-family: var(--serif); font-size: 1.6rem; font-weight: 620; color: var(--brown-900); }
.price-note { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); background: var(--cream-2); border: 1px dashed var(--gold-soft); padding: .25rem .6rem; border-radius: 999px; }
.prod-card__actions { display: flex; gap: .6rem; }
.prod-card__actions .btn { flex: 1; }

/* ---------- Why choose (feature grid) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 1020px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.why-card .icon {
  width: 46px; height: 46px; padding: 11px;
  background: var(--cream-2); color: var(--gold-deep);
  border-radius: 14px; margin-bottom: 1.1rem;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.why-card p { font-size: .88rem; }

/* ---------- Sourcing / quality ---------- */
.quality-steps { display: grid; gap: 1.1rem; counter-reset: q; margin-top: 1.8rem; }
.quality-steps li {
  counter-increment: q;
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  padding: 1.1rem 1.2rem; border-radius: var(--radius);
}
.quality-steps li::before {
  content: counter(q, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 620; color: var(--gold);
  line-height: 1; margin-top: 2px; flex: 0 0 auto;
}
.quality-steps b { display: block; color: var(--brown-900); font-size: .98rem; }
.quality-steps span { font-size: .88rem; }

/* ---------- Lifestyle band ---------- */
.lifestyle { position: relative; overflow: hidden; color: var(--cream); }
.lifestyle__bg { position: absolute; inset: 0; }
.lifestyle__bg img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(102deg, rgba(28,15,7,.92) 8%, rgba(28,15,7,.55) 55%, rgba(28,15,7,.25)); }
.lifestyle__in { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; max-width: 600px; }
.lifestyle .eyebrow { color: var(--gold-soft); }
.lifestyle h2 { color: var(--cream); }
.lifestyle blockquote {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.8rem); font-weight: 500; font-style: italic;
  line-height: 1.5; color: var(--cream); margin: 1.6rem 0 1rem;
}
.lifestyle cite { display: block; font-style: normal; font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.lifestyle p { color: #e2d3b8; }
.lifestyle__in .btn { margin-top: 1.8rem; }

/* ---------- How to order ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem 1.7rem; }
.step::before {
  content: counter(step); counter-increment: step;
  position: absolute; top: -22px; left: 1.7rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--brown-950);
  font-family: var(--serif); font-weight: 640; font-size: 1.25rem;
  display: grid; place-items: center;
  box-shadow: 0 10px 22px -10px rgba(154,108,51,.8);
}
.step h3 { margin: .4rem 0 .5rem; font-size: 1.15rem; }
.step p { font-size: .92rem; }
.steps-note { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: .85rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.35rem; text-align: left;
  font-weight: 700; font-size: .98rem; color: var(--brown-900);
}
.faq-icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; transition: var(--transition); }
.faq-icon .icon { width: 14px; height: 14px; color: var(--gold-deep); transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon .icon { color: var(--brown-950); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.2,.7,.2,1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner { overflow: hidden; }
.faq-a__inner p { padding: 0 1.35rem 1.25rem; font-size: .92rem; }

/* ---------- Article cards ---------- */
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 960px) { .art-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.art-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.art-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.art-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--beige); }
.art-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.art-card:hover .art-card__media img { transform: scale(1.06); }
.art-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.art-card__meta { display: flex; align-items: center; gap: .7rem; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: .7rem; }
.art-card__body h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.art-card__body h3 a:hover { color: var(--gold-deep); }
.art-card__body p { font-size: .9rem; flex: 1; margin-bottom: 1rem; }
.read-more { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .88rem; color: var(--gold-deep); }
.read-more .icon { width: 15px; height: 15px; transition: var(--transition); }
.read-more:hover .icon { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--brown-900); border-radius: var(--radius-lg); }
.cta-band__in { position: relative; padding: clamp(3rem, 6vw, 5rem); text-align: center; max-width: 620px; margin-inline: auto; }
.cta-band::before {
  content: ""; position: absolute; width: 420px; height: 420px;
  border: 1.5px solid rgba(184,137,74,.35); border-radius: 50%;
  top: -260px; right: -120px;
}
.cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px;
  border: 1.5px solid rgba(184,137,74,.25); border-radius: 50%;
  bottom: -280px; left: -140px;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: #d9c8ae; margin: 1rem auto 2rem; max-width: 30rem; }
.cta-band .btn .icon { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-950); color: #cbbba1; padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 2.6rem; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand__name { color: var(--cream); }
.site-footer p { font-size: .88rem; color: #a9946f; margin-top: 1rem; max-width: 21rem; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 700; }
.footer-col ul { display: grid; gap: .6rem; font-size: .9rem; }
.footer-col a { color: #cbbba1; transition: var(--transition); }
.footer-col a:hover { color: var(--cream); }
.footer-wa { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.2rem; color: var(--cream) !important; font-weight: 700; }
.footer-wa .icon { width: 18px; height: 18px; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(250,244,232,.1); padding: 1.4rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .8rem; color: #8f7a5c; }
.footer-demo {
  background: rgba(184,137,74,.12);
  border: 1px solid rgba(184,137,74,.3);
  color: #d5bfa0; font-size: .78rem;
  border-radius: 12px; padding: .75rem 1rem;
  margin-top: 1.4rem; max-width: 21rem; line-height: 1.5;
}

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 1.2rem 0 0; font-size: .82rem; color: var(--muted); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.crumbs li::after { content: "›"; margin-left: .45rem; color: var(--beige-2); }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: var(--gold-deep); font-weight: 600; }
.crumbs [aria-current] { color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(2.6rem, 5vw, 4.2rem) 0 clamp(2.2rem, 4vw, 3.2rem); position: relative; }
.page-hero::after {
  content: ""; position: absolute; right: -140px; top: -160px; width: 380px; height: 380px;
  background: var(--beige); border-radius: 50%; opacity: .55; z-index: -1;
}
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.page-hero .lead { margin-top: 1.1rem; max-width: 40rem; }

/* ---------- Product detail (products page) ---------- */
.pd {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(2rem, 4vw, 3.4rem) 0;
}
.pd + .pd { border-top: 1px solid var(--line); }
.pd--flip .pd__media { order: 2; }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; } .pd--flip .pd__media { order: 0; } }
.pd__media { position: relative; }
.pd__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.pd__price { display: flex; align-items: baseline; gap: .8rem; margin: 1.2rem 0 1.4rem; }
.pd__price .price { font-size: 2.1rem; }
.spec-list { display: grid; gap: .75rem; margin: 1.2rem 0 1.6rem; }
.spec-list li { display: grid; grid-template-columns: 150px 1fr; gap: .8rem; font-size: .92rem; padding-bottom: .75rem; border-bottom: 1px dashed var(--line); }
.spec-list b { color: var(--brown-900); font-weight: 700; }
.spec-list p, .spec-list span { color: var(--muted); }
.pd__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
@media (max-width: 560px) { .spec-list li { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Info note ---------- */
.note {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--cream-2); border: 1px dashed var(--gold-soft);
  padding: 1.1rem 1.3rem; border-radius: var(--radius);
  font-size: .88rem; color: #5c4a38;
}
.note .icon { width: 20px; height: 20px; color: var(--gold-deep); flex: 0 0 auto; margin-top: 2px; }

/* ---------- Blog index ---------- */
.blog-feature { display: grid; grid-template-columns: 1.1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); margin-bottom: 2.4rem; transition: var(--transition); }
.blog-feature:hover { box-shadow: var(--shadow); }
.blog-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature__body { padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.blog-feature__body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: .4rem 0 .8rem; }
.blog-feature__body p { font-size: .95rem; margin-bottom: 1.4rem; }
@media (max-width: 860px) { .blog-feature { grid-template-columns: 1fr; } .blog-feature__media { aspect-ratio: 16/9; } }

/* ---------- Article template ---------- */
.article-hero { padding: clamp(2.4rem, 5vw, 4rem) 0 0; }
.article-hero h1 { max-width: 21ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: .9rem 1.4rem; align-items: center; margin: 1.3rem 0 2rem; font-size: .84rem; color: var(--muted); }
.article-meta .dot { display: inline-flex; align-items: center; gap: .5rem; }
.article-meta .icon { width: 16px; height: 16px; color: var(--gold-deep); }
.article-cover img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 700px) { .article-cover img { aspect-ratio: 16/9; } }

.prose { max-width: 740px; margin-inline: auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-top: 2.6rem; }
.prose h3 { font-size: 1.2rem; margin-top: 2rem; }
.prose ul, .prose ol { display: grid; gap: .55rem; padding-left: 1.2rem; color: var(--muted); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li::marker { color: var(--gold-deep); }
.prose a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--brown-800); }
.prose img { border-radius: var(--radius); }
.callout {
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #5c4a38; font-size: .95rem;
}

.article-body { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.article-aside { margin-top: 3rem; }
.byline { display: flex; gap: 1rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.byline__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--brown-800); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--serif); font-weight: 620; font-size: 1.1rem; flex: 0 0 auto; }
.byline b { color: var(--brown-900); display: block; font-size: .95rem; }
.byline span { font-size: .84rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; align-items: stretch; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); display: flex; flex-direction: column; }
.contact-card .icon-lg { width: 54px; height: 54px; padding: 13px; border-radius: 16px; background: var(--cream-2); color: var(--gold-deep); margin-bottom: 1.2rem; }
.contact-card h2 { font-size: 1.5rem; margin-bottom: .6rem; }
.contact-card p { font-size: .95rem; flex: 1; margin-bottom: 1.6rem; }
.contact-list { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; gap: .8rem; font-size: .92rem; color: #4d3a29; align-items: flex-start; }
.contact-list .icon { width: 19px; height: 19px; color: var(--gold-deep); flex: 0 0 auto; margin-top: 3px; }
.contact-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; }
.contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(28,15,7,.75)); }
.contact-media__cap { position: absolute; z-index: 1; bottom: 0; padding: 1.6rem; color: var(--cream); }
.contact-media__cap b { font-family: var(--serif); font-size: 1.2rem; }
.contact-media__cap span { display: block; font-size: .85rem; color: #d9c8ae; }

/* ---------- Legal ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 1rem; }
.legal h3 { font-size: 1.08rem; margin: 1.8rem 0 .8rem; }
.legal p, .legal li { font-size: .95rem; }
.legal ul { display: grid; gap: .55rem; padding-left: 1.2rem; margin-top: .8rem; }
.legal ul li { list-style: disc; color: var(--muted); }
.legal ul li::marker { color: var(--gold-deep); }
.legal-updated { font-size: .82rem; color: var(--muted); margin-top: .8rem; }

/* ---------- 404 ---------- */
.error-page { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 4rem 0 5rem; }
.error-page__code { font-family: var(--serif); font-size: clamp(5rem, 16vw, 9rem); font-weight: 300; color: var(--beige-2); line-height: 1; }
.error-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: .6rem; }
.error-page p { max-width: 26rem; margin: 1rem auto 2rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: .9rem; right: .9rem; bottom: .9rem; z-index: 110;
  display: none;
  background: var(--brown-900);
  border: 1px solid rgba(184,137,74,.4);
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(28,15,7,.7);
  padding: .55rem .55rem .55rem 1.2rem;
  align-items: center; justify-content: space-between; gap: .8rem;
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta span { font-size: .82rem; color: var(--cream); font-weight: 600; }
@media (max-width: 860px) { .sticky-cta { display: flex; } }

/* ---------- Utilities ---------- */
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 2.8rem; }
.hide-sm { display: initial; }
@media (max-width: 560px) { .hide-sm { display: none; } }
