/* ============================================================
   FABRIC TOWN — "Modern Boutique" direction
   Bright, clean, friendly, conversion-focused modern retail.
   AIR Studio concept.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette: bright white canvas, soft coral accent, calm ink */
  --ink:        #1d2434;   /* near-navy text */
  --ink-soft:   #5a6478;
  --ink-faint:  #8b93a4;
  --line:       #e9ebf1;
  --line-soft:  #f1f2f7;
  --bg:         #ffffff;
  --bg-soft:    #faf9f7;   /* warm off-white */
  --bg-tint:    #fff5f1;   /* blush wash */

  --accent:     #ff6a4d;   /* soft coral — the signature */
  --accent-ink: #e1492c;
  --accent-soft:#ffe5dd;
  --mint:       #1fab89;   /* secondary, for "free / reassurance" */
  --mint-soft:  #e3f6ef;
  --sun:        #ffb648;

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(29,36,52,.06), 0 2px 8px rgba(29,36,52,.05);
  --shadow:    0 6px 24px rgba(29,36,52,.08);
  --shadow-lg: 0 18px 50px rgba(29,36,52,.14);

  --maxw: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);

  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-text: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.4rem, 820px); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--bg-soft); }
.section--blush { background: var(--bg-tint); }
.skip-link {
  position: absolute; left: -999px; top: .6rem; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius-pill);
}
.skip-link:focus { left: .8rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -.015em; color: var(--ink); }
.h-display { font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 700; letter-spacing: -.03em; }
h2.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,106,77,.32); }
.btn--primary:hover { background: var(--accent-ink); box-shadow: 0 12px 26px rgba(255,106,77,.4); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2c3650; transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn .ico { width: 18px; height: 18px; }

.linkmore { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 600; color: var(--accent-ink); }
.linkmore .arrow { transition: transform .25s var(--ease); }
.linkmore:hover .arrow { transform: translateX(4px); }

/* ---------- Pills / badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--mint-soft); color: #0d7a5f;
  font-weight: 600; font-size: .82rem; padding: .35rem .85rem; border-radius: var(--radius-pill);
}
.badge--accent { background: var(--accent-soft); color: var(--accent-ink); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--ink); color: #fff;
  font-size: .82rem; text-align: center; padding: .5rem 1rem;
}
.topbar a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand img { height: 42px; width: auto; }
.brand .brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .brand-text span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  padding: .5rem .8rem; border-radius: var(--radius-pill); color: var(--ink-soft);
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--line-soft); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); background: var(--accent-soft); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle {
  display: none; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); width: 46px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: #fff; flex-direction: column; align-items: stretch; gap: .2rem;
    padding: 5.5rem 1.4rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .85rem 1rem; font-size: 1.08rem; border-radius: var(--radius-sm); }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(29,36,52,.45); opacity: 0; visibility: hidden;
    transition: opacity .3s; z-index: 99;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy .h-display { margin: 1rem 0 1.2rem; }
.hero-copy .lead { max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.8rem; }
.hero-trust .t { display: flex; gap: .6rem; align-items: center; font-size: .92rem; color: var(--ink-soft); }
.hero-trust .t b { color: var(--ink); font-family: var(--font-display); }
.hero-trust .ti { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center; color: var(--accent-ink); }
.hero-trust .ti svg { width: 20px; height: 20px; }

.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.hero-float--swatch { left: -1.2rem; bottom: 2rem; }
.hero-float--rating { right: -1rem; top: 1.6rem; }
.hero-float .chip { width: 44px; height: 44px; border-radius: 12px; flex: none; }
.hero-float small { display: block; color: var(--ink-faint); font-size: .72rem; }
.hero-float b { font-family: var(--font-display); font-size: .95rem; }
.hero-swatch-dots { display: flex; gap: 3px; }
.hero-swatch-dots i { width: 14px; height: 22px; border-radius: 4px; display: block; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero-copy .lead { max-width: none; }
  .hero-float--swatch { left: .4rem; }
  .hero-float--rating { right: .4rem; }
}

/* ---------- marquee strip ---------- */
.strip { background: var(--ink); color: #fff; overflow: hidden; padding: .9rem 0; }
.strip-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 30s linear infinite; }
.strip-track span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .02em; display: inline-flex; gap: 3rem; align-items: center; }
.strip-track span::after { content: "✦"; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; justify-content: center; flex-wrap: wrap; } }

/* ============================================================
   CARDS — collections / occasions / colours
   ============================================================ */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.collection-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm); display: block;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.collection-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(20,24,36,.72)); }
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collection-card:hover img { transform: scale(1.06); }
.collection-card .cc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem; color: #fff; z-index: 2; }
.collection-card .cc-body h3 { color: #fff; font-size: 1.3rem; }
.collection-card .cc-body p { font-size: .88rem; opacity: .9; margin-top: .25rem; }
.collection-card .cc-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; }

/* occasion chips */
.occasions { display: flex; flex-wrap: wrap; gap: .7rem; }
.occasion {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: .7rem 1.2rem; font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s;
}
.occasion:hover { transform: translateY(-3px); border-color: var(--accent); }
.occasion .oe { font-size: 1.15rem; }

/* colour-row (featured swatches) */
.swatch-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(140px, 1fr);
  gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.swatch-rail::-webkit-scrollbar { height: 8px; }
.swatch-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.mini-swatch { scroll-snap-align: start; }
.mini-swatch img { aspect-ratio: 1; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.mini-swatch:hover img { transform: scale(1.04); }
.mini-swatch .ms-label { font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-top: .55rem; }
.mini-swatch .ms-sub { font-size: .78rem; color: var(--ink-faint); }

/* ---------- USP swatch-service band ---------- */
.usp {
  background: linear-gradient(135deg, #fff7f4 0%, #fff 60%);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem);
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: center;
}
.usp-icon {
  width: 78px; height: 78px; border-radius: 22px; flex: none;
  background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 24px rgba(255,106,77,.35);
}
.usp-icon svg { width: 40px; height: 40px; }
.usp h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.usp p { color: var(--ink-soft); margin-top: .5rem; max-width: 52ch; }
@media (max-width: 820px) { .usp { grid-template-columns: 1fr; text-align: center; } .usp-icon { margin-inline: auto; } .usp p { margin-inline: auto; } }

/* ============================================================
   STORY / split feature
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--rev .split-media { order: 0; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy p + p { margin-top: 1rem; }

.stat-row { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.8rem; }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--accent-ink); display: block; line-height: 1; }
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* feature list */
.featlist { display: grid; gap: 1rem; }
.featlist li { display: flex; gap: .9rem; align-items: flex-start; }
.featlist .fi { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--bg-tint); color: var(--accent-ink); display: grid; place-items: center; }
.featlist .fi svg { width: 22px; height: 22px; }
.featlist h4 { font-size: 1.05rem; }
.featlist p { font-size: .92rem; color: var(--ink-soft); }

/* ============================================================
   CATALOGUE
   ============================================================ */
.cat-hero { background: var(--bg-soft); padding: clamp(2.2rem,5vw,3.4rem) 0 clamp(1.4rem,3vw,2rem); }
.catbar {
  position: sticky; top: 70px; z-index: 60;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: .7rem 0;
}
.catbar-inner { display: flex; gap: 1rem; align-items: center; }
.cat-filters { display: flex; gap: .4rem; overflow-x: auto; flex: 1; scrollbar-width: none; padding: .15rem 0; }
.cat-filters::-webkit-scrollbar { display: none; }
.chip-filter {
  font-family: var(--font-display); font-weight: 500; font-size: .9rem;
  padding: .5rem 1rem; border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: #fff; color: var(--ink-soft); white-space: nowrap; transition: all .18s;
}
.chip-filter:hover { border-color: var(--ink); color: var(--ink); }
.chip-filter[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-search { position: relative; flex: none; }
.cat-search input {
  font: inherit; font-size: .92rem; padding: .55rem 1rem .55rem 2.2rem; width: min(220px, 40vw);
  border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--bg-soft);
}
.cat-search svg { position: absolute; left: .8rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-faint); }

/* grouped nav chips */
.catnav-group { display: inline-flex; align-items: center; gap: .4rem; flex: none; }
.catnav-group + .catnav-group { margin-left: .4rem; padding-left: .8rem; border-left: 1px solid var(--line); }
.catnav-label {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-ink); white-space: nowrap; padding-right: .2rem;
}
.chip-filter[aria-pressed="true"] { background: var(--accent); color: #fff; border-color: var(--accent); }

.cat-group { padding-top: clamp(2.2rem, 5vw, 3.4rem); }
.cat-group-head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .4rem; }
.cat-group-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.cat-group-head .count { color: var(--ink-faint); font-size: .9rem; font-family: var(--font-display); }
.cat-group > .gdesc { color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 60ch; }

.cat-block { margin-top: 2.4rem; scroll-margin-top: 130px; }
.cat-block-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.cat-block-head h3 { font-size: 1.3rem; display: flex; align-items: center; gap: .6rem; }
.cat-block-head h3 .n { color: var(--ink-faint); font-size: .85rem; font-weight: 500; }

/* product card */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: clamp(.9rem, 2vw, 1.4rem); }
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.product-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-soft); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product-img img { transform: scale(1.06); }
.product .free-tag {
  position: absolute; top: .65rem; left: .65rem; z-index: 2;
  background: var(--mint); color: #fff; font-size: .68rem; font-weight: 700;
  padding: .3rem .6rem; border-radius: var(--radius-pill); letter-spacing: .02em;
  font-family: var(--font-display); box-shadow: 0 3px 8px rgba(31,171,137,.4);
}
.product-body { padding: .9rem .95rem 1rem; display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.product-body .pname { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.product-body .pref { font-size: .8rem; color: var(--ink-faint); margin-bottom: .7rem; }
.product-body .btn { margin-top: auto; }

.cat-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-soft); }

/* ============================================================
   SWATCH-SERVICE PAGE
   ============================================================ */
.steps { counter-reset: s; display: grid; gap: 1.2rem; grid-template-columns: repeat(3,1fr); }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem; position: relative; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: s; content: counter(s);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 620px){ .compare { grid-template-columns: 1fr; } }
.compare-card { border-radius: var(--radius-lg); padding: 1.6rem; }
.compare-card h4 { font-size: 1.05rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; }
.compare-card.bad { background: #fdf2f1; border: 1px solid #f6d7d3; }
.compare-card.good { background: var(--mint-soft); border: 1px solid #bfe9da; }
.compare-card li { display: flex; gap: .6rem; align-items: flex-start; padding: .35rem 0; font-size: .95rem; color: var(--ink-soft); }
.compare-card .mk { font-weight: 700; flex: none; }
.compare-card.bad .mk { color: #c8493b; }
.compare-card.good .mk { color: #0d7a5f; }

/* ============================================================
   GUIDES
   ============================================================ */
.guide-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card .gimg { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.guide-card .gimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.guide-card:hover .gimg img { transform: scale(1.05); }
.guide-card .gbody { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.guide-card .gcat { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); }
.guide-card h3 { font-size: 1.18rem; margin: .5rem 0; }
.guide-card p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.guide-card .gmeta { margin-top: 1rem; font-size: .82rem; color: var(--ink-faint); display: flex; gap: .8rem; align-items: center; }

.guide-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--ink); color: #fff;
}
@media (max-width: 760px){ .guide-feature { grid-template-columns: 1fr; } }
.guide-feature .gf-media { min-height: 280px; }
.guide-feature .gf-media img { width: 100%; height: 100%; object-fit: cover; }
.guide-feature .gf-copy { padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.guide-feature .gf-copy h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.guide-feature .gf-copy p { color: rgba(255,255,255,.82); margin: 1rem 0 1.6rem; }
.guide-feature .gcat { color: var(--sun); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-tint); color: var(--accent-ink); display: grid; place-items: center; transition: transform .3s var(--ease); font-size: 1.2rem; }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq-item .faq-a a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   VISIT / contact
   ============================================================ */
.store-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.store-card .sc-top { background: var(--ink); color: #fff; padding: 1.4rem 1.6rem; }
.store-card .sc-top h3 { color: #fff; font-size: 1.4rem; }
.store-card .sc-top .area { color: rgba(255,255,255,.7); font-size: .9rem; }
.store-card .sc-body { padding: 1.5rem 1.6rem; display: grid; gap: 1rem; }
.store-card .sline { display: flex; gap: .8rem; align-items: flex-start; }
.store-card .sline .si { width: 38px; height: 38px; flex: none; border-radius: 11px; background: var(--bg-tint); color: var(--accent-ink); display: grid; place-items: center; }
.store-card .sline .si svg { width: 19px; height: 19px; }
.store-card .sline small { color: var(--ink-faint); display: block; font-size: .76rem; }
.store-card .sline a, .store-card .sline span { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.store-card .sc-actions { margin-top: auto; padding: 0 1.6rem 1.6rem; display: flex; gap: .6rem; flex-wrap: wrap; }

.contact-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
@media (max-width: 760px){ .contact-methods { grid-template-columns: 1fr; } }
.cm {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
  text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cm:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cm .cmi { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-tint); color: var(--accent-ink); display: grid; place-items: center; margin: 0 auto 1rem; }
.cm .cmi svg { width: 28px; height: 28px; }
.cm h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.cm p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1rem; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { background: var(--bg-soft); padding: clamp(2.6rem, 6vw, 4.4rem) 0; border-bottom: 1px solid var(--line); }
.page-hero .crumbs { font-size: .85rem; color: var(--ink-faint); margin-bottom: 1rem; }
.page-hero .crumbs a:hover { color: var(--accent-ink); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 18ch; }
.page-hero p { color: var(--ink-soft); max-width: 56ch; margin-top: 1rem; font-size: clamp(1.02rem, 2vw, 1.18rem); }

/* prose */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose h2 { margin: 2.4rem 0 1rem; font-size: 1.6rem; }
.prose h3 { margin: 1.8rem 0 .6rem; font-size: 1.2rem; }
.prose ul { display: grid; gap: .5rem; margin: 1rem 0; }
.prose ul li { padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--accent); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--accent) 0%, #ff8a5b 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.4rem, 6vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.13); }
.cta-band::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.cta-band::after { width: 220px; height: 220px; bottom: -120px; left: -60px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.92); max-width: 50ch; margin: 1rem auto 1.8rem; }
.cta-band .btn--primary { background: #fff; color: var(--accent-ink); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: var(--ink); color: #fff; }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); box-shadow: none; }
.cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #cdd2dd; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 460px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .fbrand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.site-footer .fbrand img { height: 40px; background: #fff; border-radius: 10px; padding: 4px; }
.site-footer .fbrand b { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.site-footer .fbrand b span { color: var(--accent); }
.site-footer .fabout { font-size: .92rem; max-width: 34ch; color: #aeb5c4; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: .6rem; }
.site-footer ul a { font-size: .95rem; color: #cdd2dd; transition: color .18s; }
.site-footer ul a:hover { color: var(--accent); }
.fsocial { display: flex; gap: .6rem; margin-top: 1.2rem; }
.fsocial a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.fsocial a:hover { background: var(--accent); transform: translateY(-3px); }
.fsocial svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8b93a4; }
.footer-bottom .demo { color: var(--accent); font-weight: 600; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: #fff; padding: .9rem 1.4rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg); z-index: 300; font-size: .92rem; font-weight: 500;
  transition: transform .4s var(--ease); max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- modal (swatch request) ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(29,36,52,.55); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 1.2rem; z-index: 250;
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 460px; width: 100%;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(18px); transition: transform .3s var(--ease);
}
.modal-backdrop.open .modal { transform: none; }
.modal-top { display: flex; gap: 1rem; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); align-items: center; }
.modal-top img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; flex: none; }
.modal-top h3 { font-size: 1.2rem; }
.modal-top .pref { color: var(--ink-faint); font-size: .85rem; }
.modal-close { margin-left: auto; align-self: flex-start; background: var(--bg-soft); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; color: var(--ink-soft); display: grid; place-items: center; }
.modal-body { padding: 1.5rem; }
.modal-body p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.2rem; }
.modal-actions { display: grid; gap: .7rem; }
.modal-actions .btn { width: 100%; }
.req-ig { background: linear-gradient(45deg,#f09433,#e6683c 30%,#dc2743 55%,#cc2366 80%,#bc1888); color:#fff; }
.req-ig:hover { filter: brightness(1.06); transform: translateY(-2px); }
