/* =========================================================================
   67 MASSAGE — Premium Outcall Massage
   Design System / Global Stylesheet
   Aesthetic: warm candlelit charcoal · champagne gold · editorial serif
   ========================================================================= */

:root {
  --ink:        #16120e;   /* deep warm charcoal      */
  --ink-2:      #1f1a14;   /* raised surface          */
  --ink-3:      #2a231a;   /* card / border base      */
  --paper:      #f6f1e8;   /* warm off-white          */
  --paper-dim:  #cfc6b6;   /* muted text on dark      */
  --paper-soft: #9c9382;   /* faint captions          */
  --gold:       #c9a86a;   /* champagne gold accent   */
  --gold-hi:    #e6cf9c;   /* gold highlight          */
  --gold-deep:  #8f7237;   /* deep gold for borders   */
  --line:       rgba(201,168,106,.22);
  --shadow:     0 30px 80px -30px rgba(0,0,0,.7);
  --r:          18px;
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --font-display: "Gowun Batang", "Nanum Myeongjo", serif;
  --font-body:    "Pretendard", "Noto Sans KR", -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.7;
  letter-spacing: -.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* warm grain / vignette atmosphere */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,168,106,.10), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(143,114,55,.08), transparent 60%);
  mix-blend-mode: screen;
}

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body); font-size: .74rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-deep); }
.section { position: relative; z-index: 2; padding: clamp(72px, 11vw, 140px) 0; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.25; margin: 18px 0 0;
  letter-spacing: -.02em;
}
.lead { color: var(--paper-dim); max-width: 60ch; margin-top: 18px; font-size: 1.02rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: #2a2008; box-shadow: 0 14px 34px -14px rgba(201,168,106,.8);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(201,168,106,.9); }
.btn-ghost { border: 1px solid var(--line); color: var(--paper); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,106,.08); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(18,14,10,.86); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand .mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  color: var(--gold-hi); letter-spacing: .02em; line-height: 1;
}
.brand .mark b { color: var(--paper); font-weight: 700; }
.brand .sub { font-size: .66rem; letter-spacing: .28em; color: var(--paper-soft); text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 6px; padding: 14px 18px;
  font-size: .92rem; font-weight: 500; color: var(--paper-dim);
  transition: color .25s; position: relative;
}
.menu > li > a:hover { color: var(--paper); }
.menu > li > a .caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .3s; }
.menu > li:hover > a .caret { transform: rotate(225deg) translateY(-1px); }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 230px; background: rgba(28,22,16,.97); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 16px; padding: 12px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown.wide { min-width: 460px; }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 10px; font-size: .9rem;
  color: var(--paper-dim); transition: background .2s, color .2s;
}
.dropdown a:hover { background: rgba(201,168,106,.12); color: var(--gold-hi); }
.dropdown a span { display: block; font-size: .74rem; color: var(--paper-soft); margin-top: 2px; }
.dropdown.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-cta { margin-left: 14px; }

/* hamburger */
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--paper); transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 99;
  background: linear-gradient(180deg, #1c160f, #120d09);
  border-left: 1px solid var(--line); padding: 100px 26px 40px;
  transform: translateX(100%); transition: transform .45s var(--ease);
  overflow-y: auto;
}
body.menu-open .drawer { transform: translateX(0); }
.drawer .scrim-label { font-size: .7rem; letter-spacing: .25em; color: var(--gold); text-transform: uppercase; margin: 24px 0 8px; }
.drawer > a, .drawer details > summary {
  display: block; padding: 14px 4px; font-size: 1.05rem; color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.06); font-family: var(--font-display);
}
.drawer details > summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.drawer details > summary::-webkit-details-marker { display: none; }
.drawer details[open] > summary { color: var(--gold-hi); }
.drawer details .sub-links a { display: block; padding: 10px 16px; font-size: .92rem; color: var(--paper-dim); font-family: var(--font-body); border: none; }
.drawer details .sub-links a:hover { color: var(--gold-hi); }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); z-index: 98; opacity: 0; visibility: hidden; transition: .4s; }
body.menu-open .scrim { opacity: 1; visibility: visible; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 78px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 120% at 80% 20%, rgba(201,168,106,.16), transparent 50%),
    radial-gradient(90% 90% at 10% 90%, rgba(60,42,18,.5), transparent 60%),
    linear-gradient(180deg, #100c08, #1a140d 60%, #120d09);
}
/* drifting candle-light orbs */
.hero .orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; }
.hero .orb.a { width: 420px; height: 420px; background: radial-gradient(circle, rgba(201,168,106,.5), transparent 70%); top: -80px; right: -60px; animation: drift 18s ease-in-out infinite; }
.hero .orb.b { width: 360px; height: 360px; background: radial-gradient(circle, rgba(143,114,55,.45), transparent 70%); bottom: -100px; left: -40px; animation: drift 22s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,40px) scale(1.12); } }

.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: 1.08; letter-spacing: -.03em;
  margin: 26px 0 0;
}
.hero h1 .gold { color: var(--gold-hi); }
.hero p.sub { color: var(--paper-dim); font-size: clamp(1rem, 2.4vw, 1.22rem); max-width: 52ch; margin-top: 26px; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap; }
.hero-meta .m b { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-hi); display: block; }
.hero-meta .m span { font-size: .82rem; color: var(--paper-soft); letter-spacing: .05em; }

/* =========================================================================
   REVEAL animation
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =========================================================================
   SERVICE CARDS
   ========================================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.card {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px;
  position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-deep); }
.card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .5s var(--ease); transform-origin: left; }
.card:hover::after { transform: scaleX(1); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,168,106,.12); border: 1px solid var(--line); margin-bottom: 22px; font-size: 1.4rem; }
.card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--paper-dim); font-size: .94rem; }
.card .price { margin-top: 18px; font-family: var(--font-display); color: var(--gold-hi); font-size: 1.1rem; }
.card .price small { color: var(--paper-soft); font-family: var(--font-body); font-size: .78rem; }

/* =========================================================================
   PRICE TABLE
   ========================================================================= */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px 24px;
  transition: transform .4s var(--ease), border-color .4s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); }
.price-card .tier { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.price-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 10px 0 12px; }
.price-card .desc { color: var(--paper-dim); font-size: .92rem; }
.price-card .best {
  position: absolute; top: 24px; right: 24px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-deep)); color: #2a2008;
  font-size: .66rem; font-weight: 700; letter-spacing: .14em; padding: 5px 12px; border-radius: 100px;
}
.price-rows { margin-top: 18px; border-top: 1px solid var(--line); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 2px; border-bottom: 1px dotted var(--line); }
.price-row .t { color: var(--paper-soft); font-size: .92rem; }
.price-row .v { font-family: var(--font-display); font-weight: 700; color: var(--paper); font-size: 1.06rem; }
.price-note { margin-top: 28px; color: var(--paper-soft); font-size: .86rem; text-align: center; }

/* =========================================================================
   AREAS
   ========================================================================= */
.areas-band { background: linear-gradient(180deg, #120d09, #19130c); border-block: 1px solid var(--line); }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.area-chips a {
  padding: 11px 20px; border-radius: 100px; border: 1px solid var(--line);
  font-size: .92rem; color: var(--paper-dim); transition: .3s var(--ease);
  background: rgba(255,255,255,.02);
}
.area-chips a:hover { color: #2a2008; background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

/* =========================================================================
   WHY / E-E-A-T trust
   ========================================================================= */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.trust-list { margin-top: 36px; display: grid; gap: 20px; }
.trust-list li { display: flex; gap: 16px; }
.trust-list .n { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; flex: none; width: 34px; height: 34px; border: 1px solid var(--gold-deep); border-radius: 50%; display: grid; place-items: center; }
.trust-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.trust-list p { color: var(--paper-dim); font-size: .92rem; }
.frame { border: 1px solid var(--line); border-radius: var(--r); padding: 40px; background: linear-gradient(160deg, var(--ink-2), var(--ink)); box-shadow: var(--shadow); }
.frame .quote { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.6; }
.frame .by { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.frame .by .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-hi), var(--gold-deep)); display: grid; place-items: center; font-family: var(--font-display); color: #2a2008; font-weight: 700; }
.frame .by b { display: block; } .frame .by span { color: var(--paper-soft); font-size: .82rem; }

/* =========================================================================
   PROCESS
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 54px; counter-reset: s; }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.step::before { counter-increment: s; content: "0" counter(s); font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-deep); position: absolute; top: 14px; right: 0; opacity: .5; }
.step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--paper-dim); font-size: .9rem; }

/* =========================================================================
   MAGAZINE preview
   ========================================================================= */
.mag-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.mag-card { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--ink-2); transition: transform .4s var(--ease), border-color .4s; display: flex; flex-direction: column; }
.mag-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); }
.mag-card .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, #2a2014, #16110b); position: relative; overflow: hidden; }
.mag-card .thumb span { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 2.6rem; color: rgba(201,168,106,.35); }
.mag-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.mag-card .cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.mag-card h3 { font-family: var(--font-display); font-size: 1.18rem; margin: 10px 0 8px; line-height: 1.4; }
.mag-card p { color: var(--paper-dim); font-size: .9rem; flex: 1; }
.mag-card .meta { margin-top: 18px; font-size: .8rem; color: var(--paper-soft); }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { text-align: center; background: radial-gradient(80% 140% at 50% 0%, rgba(201,168,106,.16), transparent 60%); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); line-height: 1.2; }
.cta-band .phone { font-family: var(--font-display); font-size: clamp(2.2rem,6vw,3.6rem); color: var(--gold-hi); margin-top: 22px; letter-spacing: .02em; display: inline-block; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #0e0a06; border-top: 1px solid var(--line); padding: 70px 0 130px; position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand .mark { font-size: 1.4rem; }
.footer p.desc { color: var(--paper-soft); font-size: .9rem; margin-top: 18px; max-width: 36ch; }
.footer h5 { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer .fl a, .footer .fl li { display: block; color: var(--paper-dim); font-size: .9rem; padding: 6px 0; }
.footer .fl a:hover { color: var(--gold-hi); }
.footer .biz { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.07); color: var(--paper-soft); font-size: .8rem; line-height: 1.9; }
.footer .biz b { color: var(--paper-dim); font-weight: 500; }

/* =========================================================================
   REVIEWS  (실제 후기만 — assets/js/reviews.js 데이터로 렌더)
   ========================================================================= */
.review-list { display: grid; gap: 16px; margin-top: 26px; }
.review-card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px;
}
.review-card .stars { color: var(--gold-hi); letter-spacing: 3px; font-size: .95rem; }
.review-card blockquote {
  font-family: var(--font-display); font-size: 1.08rem; line-height: 1.75;
  margin: 10px 0 14px; color: var(--paper);
}
.review-card .meta { color: var(--paper-soft); font-size: .85rem; }
.review-empty {
  margin-top: 24px; background: var(--ink-2); border: 1px dashed var(--line);
  border-radius: 14px; padding: 26px 24px; color: var(--paper-soft);
}
.review-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================================
   FLOATING CALL BUTTON  (mobile, bottom-right, animated, high visibility)
   ========================================================================= */
.fab-call {
  position: fixed; right: 18px; bottom: 20px; z-index: 120;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #2fbf6b, #18a558);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(24,165,88,.7);
  animation: fab-bob 1.8s ease-in-out infinite;
}
.fab-call svg { width: 28px; height: 28px; fill: #fff; }
.fab-call::before, .fab-call::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(47,191,107,.6); animation: fab-ring 2s ease-out infinite;
}
.fab-call::after { animation-delay: 1s; }
@keyframes fab-ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(2.1); opacity: 0; } }
@keyframes fab-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.fab-label {
  position: fixed; right: 88px; bottom: 34px; z-index: 120;
  background: var(--ink-2); border: 1px solid var(--line); color: var(--gold-hi);
  padding: 8px 14px; border-radius: 100px; font-size: .82rem; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow); animation: fab-bob 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .fab-call, .fab-label { animation: none; }
  .fab-call::before, .fab-call::after { animation: none; opacity: 0; }
}

/* =========================================================================
   ARTICLE (magazine post) typography
   ========================================================================= */
.post-hero { padding: 130px 0 50px; position: relative; z-index: 2; }
.post-hero .cat { color: var(--gold); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; }
.post-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); line-height: 1.25; margin: 18px 0; max-width: 22ch; }
.byline { display: flex; align-items: center; gap: 14px; color: var(--paper-soft); font-size: .88rem; flex-wrap: wrap; }
.byline .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-hi), var(--gold-deep)); display: grid; place-items: center; color: #2a2008; font-family: var(--font-display); font-weight: 700; }
.byline b { color: var(--paper); }
.article { position: relative; z-index: 2; padding-bottom: 90px; }
.article .body { max-width: 720px; margin-inline: auto; font-size: 1.06rem; }
.article .body > * + * { margin-top: 1.4em; }
.article .body h2 { font-family: var(--font-display); font-size: 1.7rem; margin-top: 2em; padding-top: .4em; }
.article .body h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-hi); }
.article .body p { color: #e8e1d3; }
.article .body ul, .article .body ol { padding-left: 1.3em; color: #e8e1d3; }
.article .body li { margin-top: .5em; list-style: disc; }
.article .body ol li { list-style: decimal; }
.article .body blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; color: var(--gold-hi); font-family: var(--font-display); font-size: 1.2rem; }
.article .body .callout { background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.article .body .callout strong { color: var(--gold-hi); }
.article .body table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.article .body th, .article .body td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.article .body th { background: rgba(201,168,106,.1); color: var(--gold-hi); }
.faq dt { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-hi); margin-top: 1.4em; }
.faq dd { color: #e8e1d3; margin-top: .4em; }

/* breadcrumb */
.crumb { font-size: .8rem; color: var(--paper-soft); }
.crumb a:hover { color: var(--gold-hi); }
.crumb span { margin: 0 8px; opacity: .5; }

/* page hero (generic inner pages) */
.page-hero { padding: 140px 0 40px; position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,6vw,3.6rem); margin-top: 16px; }

/* category filter pills */
.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.cat-pills a { padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line); font-size: .86rem; color: var(--paper-dim); transition: .25s; }
.cat-pills a:hover, .cat-pills a[aria-current="true"] { background: var(--gold); color: #2a2008; border-color: var(--gold); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .grid-3, .mag-grid, .steps, .price-grid { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu, .nav-cta { display: none; }
  .burger { display: block; }
  .hero-meta { gap: 22px; }
  .grid-3, .mag-grid, .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .article .body { font-size: 1.02rem; }
}
@media (min-width: 761px) {
  .fab-call, .fab-label { /* keep on desktop too but smaller emphasis */ }
}
