/* ==========================================================================
   ARIME COMPANY — core stylesheet
   Palette : navy / stone / royal blue + leaf green, taken from the Arime logo
   Type    : Bodoni Moda (display) + Jost (body & UI)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette derived from the Arime logo: royal #476FC0 + leaf #3CB94F */
  --ink-deep: #101B33;
  --ink: #16264A;
  --ink-70: rgba(22, 38, 74, 0.7);
  --stone: #EDF0F6;
  --stone-warm: #E1E6F0;
  --chalk: #FFFFFF;
  --royal: #476FC0;
  --royal-deep: #2E4E9E;
  --leaf: #3CB94F;
  --leaf-soft: rgba(60, 185, 79, 0.26);

  /* House accents — one step each along the logo's blue-to-green range */
  --accent: #476FC0;
  --accent-ink: #101B33;
  --accent-soft: rgba(71, 111, 192, 0.14);

  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --sec-y: clamp(4rem, 9vw, 8rem);
  --radius: 3px;
  --line: rgba(22, 38, 74, 0.13);
  --line-dark: rgba(237, 240, 246, 0.16);
  --shadow: 0 24px 60px -32px rgba(16, 30, 60, 0.5);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 96px;
}

[data-house="furniture"] { --accent: #476FC0; --accent-soft: rgba(71, 111, 192, 0.14); }
[data-house="shoes"]     { --accent: #2E4E9E; --accent-soft: rgba(46, 78, 158, 0.14); }
[data-house="clothing"]  { --accent: #1F7F92; --accent-soft: rgba(31, 127, 146, 0.14); }
[data-house="beauty"]    { --accent: #3CB94F; --accent-soft: rgba(60, 185, 79, 0.14); }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, iframe, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 500; }

::selection { background: var(--leaf); color: var(--ink-deep); }

:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink-deep); color: var(--chalk);
  padding: 0.75rem 1.25rem; font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(2.75rem, 5vw, 4.5rem); }
.section--dark { background: var(--ink); color: var(--stone); }
.section--chalk { background: var(--chalk); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--chalk); }

.eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.35rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: currentColor; flex: none;
}
.section--dark .eyebrow { color: var(--leaf); }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; font-weight: 300; }
.muted { color: var(--ink-70); }
.section--dark .muted { color: rgba(237, 239, 236, 0.72); }

.head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.05rem 1.9rem; border: 1px solid transparent; border-radius: var(--radius);
  background: var(--ink-deep); color: var(--chalk); cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn .arw { transition: transform 0.35s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: var(--chalk); color: var(--ink-deep); border-color: var(--chalk); }
.btn--brand { background: var(--leaf); color: var(--ink-deep); }
.btn--brand:hover { background: var(--chalk); color: var(--ink-deep); }
.btn--royal { background: var(--royal); color: #fff; }
.btn--royal:hover { background: var(--royal-deep); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.tlink {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding-bottom: 0.35rem; border-bottom: 1px solid var(--accent); color: inherit;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.tlink:hover { gap: 1rem; color: var(--accent); }
.section--dark .tlink { border-color: var(--leaf); }
.section--dark .tlink:hover { color: var(--leaf); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: inset 0 -1px 0 var(--line);
  transition: height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-stuck {
  height: 74px;
  box-shadow: inset 0 -1px 0 var(--line), 0 10px 30px -22px rgba(16, 30, 60, 0.55);
}

.brand { display: flex; align-items: center; color: var(--ink); }
.brand img {
  height: 58px; width: auto; display: block;
  transition: height 0.4s var(--ease);
}
.site-header.is-stuck .brand img { height: 44px; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.nav a {
  position: relative; color: var(--ink-70);
  font-size: 0.76rem; font-weight: 400; letter-spacing: 0.11em; text-transform: uppercase;
  padding-block: 0.5rem; white-space: nowrap; transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--royal); transition: width 0.35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  color: var(--royal); font-size: 0.78rem; letter-spacing: 0.04em; white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem; font-weight: 400;
}
.header-phone:hover { color: var(--royal-deep); }
.header-cta .btn { padding: 0.8rem 1.35rem; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; padding: 0; border-radius: var(--radius);
}
.burger span {
  display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--chalk);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: calc(var(--header-h) + 0.75rem) var(--gutter) 2rem;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }

.drawer nav { display: flex; flex-direction: column; width: 100%; }
.drawer nav a {
  display: flex; align-items: center; width: 100%;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  padding: 0.72rem 0.15rem; border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.drawer nav a::before {
  content: ""; width: 3px; height: 12px; flex: none; margin-right: 0.8rem;
  background: transparent; border-radius: 2px; transition: background 0.25s var(--ease);
}
.drawer nav a::after {
  content: "→"; margin-left: auto; color: var(--royal); opacity: 0.35;
  font-size: 0.8rem; letter-spacing: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.drawer nav a:hover, .drawer nav a:active { color: var(--royal); }
.drawer nav a:hover::after, .drawer nav a:active::after { opacity: 1; transform: translateX(4px); }
.drawer nav a:hover::before, .drawer nav a:active::before { background: var(--royal); }
.drawer nav a[aria-current="page"] { color: var(--royal); }
.drawer nav a[aria-current="page"]::before { background: var(--leaf); }
.drawer nav a[aria-current="page"]::after { opacity: 0.9; }
.drawer nav a:last-of-type { border-bottom: 0; }

.drawer .drawer-meta { margin-top: 1.6rem; }
.drawer-meta-label {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--leaf); margin: 0 0 0.6rem;
}
.drawer .drawer-meta a {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--royal);
  padding: 0.3rem 0; border: 0;
}
.drawer .drawer-meta a em {
  font-style: normal; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-70);
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; background: var(--ink-deep); color: var(--stone);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -12%; top: -30%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(195, 155, 74, 0.12), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; min-width: 0; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 992px) {
  .hero .wrap { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); }
}
.hero h1 { color: var(--chalk); margin-bottom: 0.35em; }
.hero h1 em { font-style: italic; color: var(--leaf); }
.hero .hero-copy { min-width: 0; }
.hero-copy p { max-width: 46ch; color: rgba(237, 239, 236, 0.76); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line-dark);
}
.hero-stats div { min-width: 0; }
.hero-stats dt { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--leaf); margin-bottom: 0.4rem; }
.hero-stats dd { margin: 0; font-family: var(--font-display); font-size: 1.45rem; color: var(--chalk); }

/* ---------- Signature: the four department cards ---------- */
.houses {
  display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%; max-width: 100%;
}
.house {
  position: relative; display: block; overflow: hidden; min-width: 0;
  border-radius: var(--radius); background: var(--ink);
  aspect-ratio: 4 / 3; border: 0; padding: 0; text-align: left; color: inherit;
}
.house img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}
.house::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.92) 6%, rgba(10, 20, 40, 0.55) 30%, rgba(10, 20, 40, 0) 62%);
  transition: background 0.5s var(--ease);
}
.house-inner { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.1rem 1.2rem; display: block; }
.house-tag {
  display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 0.3rem;
}
.house-name {
  display: block; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.1;
  color: var(--chalk); margin: 0;
}
.house-body { display: none; }
.house-rule {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; z-index: 3;
  background: var(--leaf); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.house:hover img, .house:focus-visible img { transform: scale(1.05); }
.house:hover .house-rule, .house:focus-visible .house-rule { transform: scaleX(1); }

@media (max-width: 640px) {
  .houses { grid-template-columns: 1fr; gap: 14px; }
  .house-name { font-size: 1.45rem; }
  .house-rule { transform: scaleX(1); }
}

/* ---------- Marquee strip ---------- */
.strip { background: var(--ink); border-block: 1px solid var(--line-dark); overflow: hidden; }
.strip-track {
  display: flex; gap: 3.5rem; padding: 1.05rem 0; width: max-content;
  animation: slide 38s linear infinite;
}
.strip span {
  color: rgba(237, 239, 236, 0.72); font-size: 0.74rem; letter-spacing: 0.24em;
  text-transform: uppercase; display: flex; align-items: center; gap: 3.5rem; white-space: nowrap;
}
.strip span::after { content: "◆"; color: var(--leaf); font-size: 0.55rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.25rem);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.97rem; }
.card-num {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 1rem; display: block;
}
.section--dark .card { background: rgba(237, 239, 236, 0.04); border-color: var(--line-dark); color: rgba(237, 239, 236, 0.82); }
.section--dark .card:hover { background: rgba(237, 239, 236, 0.07); }

/* Product / collection tile */
.tile { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--stone-warm); }
.tile-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile:hover .tile-media img { transform: scale(1.06); }
.tile-cap { padding: 1.05rem 0.15rem 0.2rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.tile-cap h3 { font-size: 1.12rem; margin: 0; }
.tile-cap span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.tile-flag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  background: var(--chalk); color: var(--ink-deep); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.4rem 0.65rem;
}

/* Split media + text */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.15fr 0.85fr; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media::before {
  content: ""; position: absolute; inset: auto auto 0 0; width: 46%; height: 4px; background: var(--accent); z-index: 2;
}

/* Feature list */
.flist { list-style: none; margin: 0; padding: 0; }
.flist li {
  display: grid; grid-template-columns: 26px 1fr; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line); margin: 0;
}
.section--dark .flist li { border-color: var(--line-dark); }
.flist li::before { content: "◆"; color: var(--accent); font-size: 0.6rem; line-height: 2.1; }
.section--dark .flist li::before { color: var(--leaf); }
.flist h4 { margin: 0 0 0.2rem; font-family: var(--font-body); font-weight: 500; font-size: 1rem; letter-spacing: 0.01em; }
.flist p { font-size: 0.95rem; margin: 0; color: var(--ink-70); }
.section--dark .flist p { color: rgba(237, 239, 236, 0.7); }

/* ---------- Page hero (inner pages) ---------- */
.phero {
  background: var(--ink-deep); color: var(--stone); position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.phero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--accent-soft), transparent 55%);
}
.phero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--accent);
}
.phero .wrap { position: relative; z-index: 1; }
.phero h1 { color: var(--chalk); max-width: 16ch; }
.phero p { max-width: 56ch; color: rgba(237, 239, 236, 0.78); }
.phero .eyebrow { color: var(--leaf); }

.phero-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .phero-grid { grid-template-columns: 1.02fr 0.98fr; } }
.phero-copy { min-width: 0; }
.phero-media { position: relative; overflow: hidden; border-radius: var(--radius); }
.phero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.phero-media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--accent);
}
@media (max-width: 899px) { .phero-media { display: none; } }

.crumbs { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(237, 239, 236, 0.55); margin-bottom: 1.5rem; }
.crumbs a { color: rgba(237, 239, 236, 0.75); }
.crumbs a:hover { color: var(--leaf); }
.crumbs span { margin-inline: 0.5rem; color: var(--leaf); }

/* ---------- Maps ---------- */
.map-frame {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--stone-warm); aspect-ratio: 16 / 10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.02); }
.branch { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .branch { grid-template-columns: 0.85fr 1.15fr; } .branch--flip .branch-info { order: 2; } }
.branch + .branch { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.branch-city { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 0.15em; }
.branch-meta { list-style: none; padding: 0; margin: 1.5rem 0 1.75rem; }
.branch-meta li { display: grid; grid-template-columns: 108px 1fr; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.97rem; margin: 0; }
.branch-meta dt, .branch-meta .k { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); padding-top: 0.22rem; }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-70); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1rem; width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-70); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-size: 1.08rem; font-weight: 400;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--accent); transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-a { padding: 0 2.5rem 1.5rem 0; color: var(--ink-70); font-size: 0.98rem; max-width: 74ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-deep); color: var(--stone); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 120%, var(--accent-soft), transparent 60%);
}
.cta-band .wrap { position: relative; z-index: 1; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .cta-band .wrap { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { color: var(--chalk); margin-bottom: 0.35em; }
.cta-band p { color: rgba(237, 239, 236, 0.75); margin: 0; max-width: 52ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(237, 239, 236, 0.72); font-size: 0.94rem; }
.footer-top { display: grid; gap: clamp(2rem, 4vw, 3rem); padding-block: clamp(3.25rem, 6vw, 5rem); }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.45fr 1fr 1fr 1.25fr; } }
.site-footer h4 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--leaf); margin-bottom: 1.15rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: rgba(237, 239, 236, 0.72); transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--leaf); }
.site-footer .muted { color: rgba(237, 240, 246, 0.45); }
.footer-logo { height: 54px; width: auto; margin-bottom: 0.35rem; }
.footer-tagline { font-size: 0.6rem; white-space: nowrap; letter-spacing: 0.22em; text-transform: uppercase; color: var(--leaf); }
.footer-brand p { margin-top: 1.15rem; max-width: 34ch; font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.83rem; color: rgba(237, 239, 236, 0.55);
}
.footer-bottom a { color: var(--leaf); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.09s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.27s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .header-phone { display: none; }
}
@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: block; }
  :root { --header-h: 82px; }
  .brand img { height: 46px; }
  .site-header.is-stuck .brand img { height: 40px; }
}
@media (max-width: 420px) {
  .brand img { height: 40px; }
}
@media (max-width: 560px) {
  .branch-meta li { grid-template-columns: 1fr; gap: 0.15rem; }
  .hero-stats { gap: 1.5rem 2rem; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { gap: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .drawer, .cta-band, .strip { display: none; }
  body { background: #fff; color: #000; }
}
