/* ==========================================================================
   Laras Atelier — Toko Pakaian / Butik Fashion
   PAGE_ARCHETYPE: Editorial Scrollytelling Premium
   Palette "Clay Noir": clay terracotta + deep noir + warm alabaster + brass
   Typography: Bodoni Moda (display serif, didone) + Manrope (sans, body/UI)
   Vanilla CSS only, no build step, no framework.
   ========================================================================== */

:root {
  --font-display: 'Bodoni Moda', 'Georgia', serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --clay: #b5623f;
  --clay-deep: #8a4429;
  --noir: #171412;
  --noir-soft: #24201d;
  --alabaster: #f4ede4;
  --alabaster-deep: #e9dfd1;
  --brass: #a9884f;

  --color-primary: var(--clay);
  --color-secondary: var(--noir);
  --color-accent: var(--brass);
  --color-bg: var(--alabaster);
  --color-surface: #ffffff;
  --color-border: #ddd0bd;
  --color-text: #201b16;
  --color-text-muted: #6c6156;
  --color-success: #4c7a4f;
  --color-warning: #b6862c;
  --color-danger: #a7412b;
  --color-info: #3f6f83;

  --shadow-sm: 0 2px 10px rgba(23, 20, 18, 0.06);
  --shadow-md: 0 10px 30px rgba(23, 20, 18, 0.10);
  --shadow-lg: 0 24px 60px rgba(23, 20, 18, 0.16);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(.22,.61,.36,1);
}

:root[data-theme="dark"] {
  --color-bg: var(--noir);
  --color-surface: var(--noir-soft);
  --color-border: #3a332c;
  --color-text: #f2ece2;
  --color-text-muted: #b9ac9c;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: var(--noir);
    --color-surface: var(--noir-soft);
    --color-border: #3a332c;
    --color-text: #f2ece2;
    --color-text-muted: #b9ac9c;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; font-size: .72rem;
  color: var(--clay); margin-bottom: .9rem;
}
.section-title {
  font-family: var(--font-display); font-weight: 600; font-style: normal;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.15; margin: 0 0 1rem;
}
.section-lede { color: var(--color-text-muted); max-width: 640px; font-size: 1.05rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--noir); color: #fff;
  padding: .8rem 1.2rem; z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .04em; padding: .85rem 1.7rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--clay-deep); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }
.btn-ghost { background: transparent; color: var(--clay); text-decoration: underline; text-underline-offset: 4px; padding: .4rem .2rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .78rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Navigation — Fullscreen Overlay Menu (fresh treatment for this archetype)
   ========================================================================== */
.topbar {
  background: var(--noir); color: #efe6d9; font-size: .74rem; letter-spacing: .05em;
  padding: .45rem 0; text-align: center; text-transform: uppercase;
}
.navbar {
  position: sticky; top: 0; z-index: 900; background: var(--color-bg);
  border-bottom: 1px solid transparent; transition: border-color var(--transition), background var(--transition);
}
.navbar.is-scrolled { border-color: var(--color-border); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1180px, 92%); margin: 0 auto; padding: 1.1rem 0;
}
.brand {
  font-family: var(--font-display); font-size: 1.55rem; letter-spacing: .04em;
  font-weight: 600; text-align: center; flex: 1;
}
.brand small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 700; }
.nav-side { display: flex; align-items: center; gap: .9rem; min-width: 110px; }
.nav-side.left { justify-content: flex-start; }
.nav-side.right { justify-content: flex-end; }
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--color-text);
  font-size: 1.05rem; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--transition);
}
.icon-btn:hover { background: var(--color-border); }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px; width: 26px; cursor: pointer;
  background: none; border: none; padding: 6px 0;
}
.menu-toggle span { height: 2px; width: 100%; background: var(--color-text); transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 1200; background: var(--noir);
  color: var(--alabaster); display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.nav-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-overlay-top { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 6%; }
.nav-overlay-close { background: none; border: 1px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.nav-overlay-body { flex: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; padding: 1rem 6% 3rem; overflow-y: auto; }
.nav-overlay-links { display: flex; flex-direction: column; gap: .3rem; justify-content: center; }
.nav-overlay-links a {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600;
  padding: .35rem 0; color: #efe6d9; opacity: .55; transition: opacity var(--transition), transform var(--transition), color var(--transition);
  position: relative; width: fit-content;
}
.nav-overlay-links a:hover, .nav-overlay-links a:focus-visible { opacity: 1; color: var(--brass); transform: translateX(14px); }
.nav-overlay-links .index { font-family: var(--font-body); font-size: .7rem; color: var(--brass); vertical-align: super; margin-right: .5rem; }
.nav-overlay-aside { align-self: center; display: flex; flex-direction: column; gap: 1.2rem; }
.nav-overlay-aside img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.nav-overlay-aside p { color: #cbbfae; font-size: .85rem; }
.nav-overlay-social { display: flex; gap: .8rem; }
.nav-overlay-social a { border: 1px solid rgba(255,255,255,.3); border-radius: 50%; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.nav-overlay-social a:hover { background: var(--brass); border-color: var(--brass); }
@media (max-width: 720px) {
  .nav-overlay-body { grid-template-columns: 1fr; }
  .nav-overlay-aside { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: clamp(3rem,9vw,7rem) 0 clamp(2.5rem,6vw,4.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero-eyebrow { letter-spacing: .3em; text-transform: uppercase; font-size: .72rem; font-weight: 700; color: var(--clay); }
.hero-title {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.02; margin: .6rem 0 1.2rem;
}
.hero-title em { font-style: italic; color: var(--clay); }
.hero-sub { max-width: 480px; color: var(--color-text-muted); font-size: 1.08rem; margin-bottom: 1.8rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-media img { width: 100%; }
.hero-media-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem; background: rgba(23,20,18,.72); backdrop-filter: blur(6px);
  color: #f4ede4; padding: .6rem 1rem; border-radius: 999px; font-size: .78rem; letter-spacing: .06em;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Marquee (materials strip) */
.marquee { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); overflow: hidden; padding: 1.1rem 0; background: var(--color-surface); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--color-text-muted); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Editorial split section ---------- */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,5vw,4rem); align-items: center; }
.editorial.reverse .editorial-media { order: 2; }
.editorial-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.editorial-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--color-border); line-height: 1; margin-bottom: .5rem; }
.pull-quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; line-height: 1.5;
  border-left: 3px solid var(--clay); padding-left: 1.2rem; margin: 1.5rem 0; color: var(--color-text);
}
@media (max-width: 800px) { .editorial, .editorial.reverse .editorial-media { grid-template-columns: 1fr; order: initial; } }

/* ---------- Koleksi / product grid ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip {
  border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text-muted);
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .82rem; cursor: pointer; transition: all var(--transition); font-weight: 600;
}
.chip.active, .chip:hover { background: var(--noir); color: var(--alabaster); border-color: var(--noir); }
:root[data-theme="dark"] .chip.active, :root[data-theme="dark"] .chip:hover { background: var(--brass); border-color: var(--brass); color: var(--noir); }

.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.product-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badge { position: absolute; top: .8rem; left: .8rem; background: var(--clay); color: #fff; font-size: .68rem; padding: .3rem .7rem; border-radius: 999px; font-weight: 700; letter-spacing: .04em; }
.product-body { padding: 1.1rem 1.2rem 1.3rem; }
.product-cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-text-muted); }
.product-name { font-family: var(--font-display); font-size: 1.15rem; margin: .3rem 0; }
.product-price { color: var(--clay); font-weight: 700; }
.product-price .old { color: var(--color-text-muted); text-decoration: line-through; font-weight: 400; font-size: .85rem; margin-right: .4rem; }
.skeleton { background: linear-gradient(90deg, var(--color-border) 25%, var(--color-bg) 37%, var(--color-border) 63%); background-size: 400% 100%; animation: skeleton 1.4s ease infinite; border-radius: var(--radius-md); }
@keyframes skeleton { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- Lookbook hotspot ---------- */
.lookbook-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.lookbook-frame img { width: 100%; }
.hotspot {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(244,237,228,.9); border: 2px solid var(--clay); cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--clay); font-weight: 800;
  box-shadow: 0 0 0 6px rgba(244,237,228,.35); animation: pulse-hot 2.4s ease infinite;
}
.hotspot:hover, .hotspot:focus-visible { background: var(--clay); color: #fff; }
@keyframes pulse-hot { 0%,100% { box-shadow: 0 0 0 6px rgba(181,98,63,.18); } 50% { box-shadow: 0 0 0 10px rgba(181,98,63,.05); } }
.hotspot-card {
  position: absolute; z-index: 30; width: 220px; background: var(--color-surface); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: .9rem; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.hotspot-card.open { opacity: 1; visibility: visible; transform: translateY(0); }
.hotspot-card img { border-radius: 6px; margin-bottom: .5rem; aspect-ratio: 1/1; object-fit: cover; }
.hotspot-card h4 { margin: 0 0 .2rem; font-family: var(--font-display); font-size: 1rem; }
.hotspot-card .price { color: var(--clay); font-weight: 700; font-size: .9rem; }

/* ---------- Craftsmanship / stats ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); color: var(--clay); font-weight: 600; }
.stat-label { color: var(--color-text-muted); font-size: .82rem; letter-spacing: .04em; }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Styling advisor / quiz ---------- */
.quiz-panel { background: var(--noir); color: var(--alabaster); border-radius: var(--radius-lg); padding: clamp(1.8rem,4vw,3rem); box-shadow: var(--shadow-lg); }
.quiz-panel .section-title, .quiz-panel .eyebrow { color: var(--alabaster); }
.quiz-panel .eyebrow { color: var(--brass); }
.quiz-steps { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.quiz-step-dot { flex: 1; height: 4px; background: rgba(255,255,255,.18); border-radius: 4px; overflow: hidden; }
.quiz-step-dot i { display: block; height: 100%; width: 0; background: var(--brass); transition: width var(--transition); }
.quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: .8rem; }
.quiz-option {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: var(--alabaster);
  padding: 1rem; border-radius: var(--radius-md); cursor: pointer; text-align: left; transition: all var(--transition); font-family: var(--font-body);
}
.quiz-option:hover, .quiz-option.selected { background: var(--brass); border-color: var(--brass); color: var(--noir); }
.quiz-result { display: none; }
.quiz-result.show { display: block; }
.quiz-result-card { display: flex; gap: 1.4rem; align-items: center; background: rgba(255,255,255,.06); padding: 1.2rem; border-radius: var(--radius-md); flex-wrap: wrap; }
.quiz-result-card img { width: 110px; height: 140px; object-fit: cover; border-radius: 8px; }

/* ---------- Testimoni ---------- */
.testi-rotator { max-width: 760px; margin: 0 auto; text-align: center; position: relative; min-height: 220px; }
.testi-item { display: none; }
.testi-item.active { display: block; animation: fadeIn .6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }
.testi-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem,2.4vw,1.7rem); margin-bottom: 1.2rem; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.testi-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 700; }
.testi-role { color: var(--color-text-muted); font-size: .84rem; }
.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border); border: none; cursor: pointer; }
.testi-dots button.active { background: var(--clay); width: 22px; border-radius: 5px; }

/* ---------- Cards / articles / FAQ ---------- */
.card { background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.3rem 1.4rem; }
.card-tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--clay); font-weight: 700; }
.card-title { font-family: var(--font-display); font-size: 1.2rem; margin: .4rem 0; }
.card-meta { font-size: .8rem; color: var(--color-text-muted); }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; cursor: pointer; font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.faq-q i { transition: transform var(--transition); color: var(--clay); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition), padding var(--transition); color: var(--color-text-muted); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.2rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .4rem; }
input, select, textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
  background: var(--color-surface); color: var(--color-text); font-family: var(--font-body); font-size: .95rem;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--clay); outline-offset: 1px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--noir); color: #d8ccbb; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.footer h4 { color: #fff; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a:hover { color: var(--brass); }
.footer li { margin-bottom: .6rem; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.4rem; font-size: .82rem; color: #a99a86; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Floating helpers ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366;
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: var(--shadow-md); z-index: 500; transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.back-to-top {
  position: fixed; bottom: 24px; right: 92px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--noir); color: #fff; border: none; display: none; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md); z-index: 500; font-size: 1rem;
}
.back-to-top.show { display: flex; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(23,20,18,.6); z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); padding: 1.2rem;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--color-surface); border-radius: var(--radius-lg); max-width: 460px; width: 100%; padding: 2rem; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform var(--transition); }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-icon { width: 62px; height: 62px; border-radius: 50%; background: var(--clay); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 1.1rem; }
.modal-close-btn { margin-top: 1.4rem; }

/* Toast */
.toast-wrap { position: fixed; bottom: 24px; left: 24px; z-index: 2100; display: flex; flex-direction: column; gap: .6rem; }
.toast { background: var(--noir); color: #fff; padding: .9rem 1.2rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); font-size: .88rem; display: flex; gap: .6rem; align-items: center; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

/* Sizing helpers */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.page-header { padding: clamp(3rem,7vw,5rem) 0 2.5rem; text-align: center; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.breadcrumb { font-size: .82rem; color: var(--color-text-muted); margin-bottom: .8rem; }
.breadcrumb a:hover { color: var(--clay); }
.service-list li { padding-left: 1.4rem; position: relative; margin-bottom: .6rem; }
.service-list li::before { content: "—"; position: absolute; left: 0; color: var(--clay); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,9,8,.92); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff; border-radius: 50%; width: 46px; height: 46px; cursor: pointer; font-size: 1.1rem; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 20px; top: 50%; transform: translateY(-50%); }
.gallery-grid { columns: 3 240px; gap: 1rem; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 1rem; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery-grid figure img { transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
