/* =========================================================
   Platinum Clean Co. — style.css
   Design language: fresh, airy, premium.
   Soft teal + deep pine + warm gold, pill shapes, large radii,
   generous whitespace. Themes via CSS variables on [data-theme].
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body { line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.18; overflow-wrap: break-word; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: inherit; }

/* ---------- Theme tokens ---------- */
:root {
  --teal: #0e9488;
  --teal-strong: #0b7a70;
  --pine: #083f39;
  --gold: #d9a441;
  --mint: #e3f5f1;
  --teal-soft: rgba(14, 148, 136, 0.1);

  --bg: #f7fcfb;
  --surface: #ffffff;
  --surface-2: #ecf6f3;
  --text: #17332f;
  --text-soft: #52706a;
  --border: #d9eae5;
  --heading: #0b3b34;
  --hero-blob-1: rgba(14, 148, 136, 0.14);
  --hero-blob-2: rgba(217, 164, 65, 0.14);
  --card-shadow: 0 10px 30px rgba(11, 76, 68, 0.07);
  --focus-ring: 3px solid #0e9488;
  --star-off: #cfe2dd;
  --success-bg: #e5f6ec;
  --success-text: #187a43;
  --error: #c44545;
  --cta-bg: linear-gradient(130deg, #0b4c44, #0e9488);
}

[data-theme="dark"] {
  --teal: #2cc0b0;
  --teal-strong: #43d6c6;
  --pine: #0d2926;
  --gold: #e3b25f;
  --mint: #12332e;
  --teal-soft: rgba(44, 192, 176, 0.14);

  --bg: #0c1a18;
  --surface: #122421;
  --surface-2: #183029;
  --text: #dff0ec;
  --text-soft: #93b3ac;
  --border: #23423c;
  --heading: #ecfaf7;
  --hero-blob-1: rgba(44, 192, 176, 0.12);
  --hero-blob-2: rgba(227, 178, 95, 0.1);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --star-off: #2e4d47;
  --success-bg: #10301f;
  --success-text: #7fd9a2;
  --error: #ff8484;
  --cta-bg: linear-gradient(130deg, #0d3a34, #14655c);
}

/* ---------- Base ---------- */
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  display: flex; flex-direction: column; min-height: 100vh;
}
h1, h2, h3, h4 { color: var(--heading); font-weight: 700; }
h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.08rem; }
p { color: var(--text-soft); }
strong { color: var(--text); }

:focus-visible { outline: var(--focus-ring); outline-offset: 2px; border-radius: 6px; }

.skip-link {
  position: absolute; inset-inline-start: -999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: 0.6rem 1rem; font-weight: 700;
  border-radius: 0 0 12px 12px; text-decoration: none;
}
.skip-link:focus { inset-inline-start: 8px; }

.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-head { max-width: 620px; margin-bottom: 2.4rem; }
.section-head p { margin-top: 0.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.7rem;
}
.lead { font-size: 1.12rem; }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(14, 148, 136, 0.35); }
.btn-primary:hover { background: var(--teal-strong); }
[data-theme="dark"] .btn-primary { color: #06211d; }
.btn-ghost { border-color: var(--border); color: var(--heading); background: var(--surface); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-light { background: #fff; color: #0b4c44; }
.btn-light:hover { background: #e8f8f4; }

.text-link { color: var(--teal); font-weight: 700; text-decoration: none; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }

/* ---------- Topbar ---------- */
.topbar { background: var(--mint); color: var(--heading); font-size: 0.85rem; padding: 0.45rem 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-promise { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.topbar-promise svg { width: 15px; height: 15px; color: var(--teal); }
.topbar a { font-weight: 700; text-decoration: none; display: inline-flex; gap: 0.4rem; align-items: center; color: var(--heading); }
.topbar a svg { width: 14px; height: 14px; color: var(--teal); }
.topbar a:hover { color: var(--teal); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--surface); }
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 70px; }

.logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-inline-end: auto; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--teal), #35c3b2);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 4px 12px rgba(14, 148, 136, 0.35);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { color: var(--heading); font-size: 1.12rem; letter-spacing: -0.01em; }
.logo-text span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

.site-nav ul { display: flex; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: 0.55rem 0.9rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; color: var(--text-soft);
}
.site-nav a:hover { color: var(--heading); background: var(--surface-2); }
.site-nav a[aria-current="page"] { color: var(--teal-strong); background: var(--teal-soft); }

.header-actions { display: flex; align-items: center; gap: 0.55rem; }

.lang-switch {
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text);
  border-radius: 999px; padding: 0.42rem 0.7rem; font-weight: 700; font-size: 0.85rem; cursor: pointer;
}
.theme-toggle {
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text);
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; padding: 0;
}
.theme-toggle:hover { border-color: var(--teal); color: var(--teal); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

.menu-toggle {
  display: none; border: 1.5px solid var(--border); background: var(--surface);
  width: 44px; height: 38px; border-radius: 999px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle .bar { width: 18px; height: 2px; border-radius: 2px; background: var(--text); transition: transform 0.2s, opacity 0.2s; }
.nav-open .menu-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle .bar:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (light, blobs) ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.hero::before { width: 480px; height: 480px; background: var(--hero-blob-1); top: -140px; inset-inline-end: -100px; }
.hero::after { width: 380px; height: 380px; background: var(--hero-blob-2); bottom: -160px; inset-inline-start: -120px; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 3rem; align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--teal-strong); padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 1.2rem;
  box-shadow: var(--card-shadow);
}
.hero-kicker svg { width: 15px; height: 15px; color: var(--gold); }
.hero .lead { margin-top: 1.1rem; max-width: 33rem; }
.hero-points { margin-top: 1.5rem; display: grid; gap: 0.6rem; }
.hero-points li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--text); font-weight: 600; }
.hero-points svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--teal); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

/* Hero visual — layered "sparkling room" abstract (IMAGE SLOT: replace with a real photo) */
.hero-visual { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero-scene {
  aspect-ratio: 4 / 4.4; border-radius: 28px; position: relative; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.55), transparent 45%),
    linear-gradient(15deg, rgba(217,164,65,0.2), transparent 45%),
    linear-gradient(135deg, #bfeee6, #0e9488 90%);
  box-shadow: var(--card-shadow);
}
[data-theme="dark"] .hero-scene {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), transparent 45%),
    linear-gradient(15deg, rgba(227,178,95,0.18), transparent 45%),
    linear-gradient(135deg, #14544c, #0a2925 90%);
}
.hero-scene.has-image img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.hero-scene .shine {
  position: absolute; width: 34px; height: 34px; color: rgba(255, 255, 255, 0.9);
  animation: twinkle 2.6s ease-in-out infinite;
}
.hero-scene .shine svg { width: 100%; height: 100%; }
.hero-scene .shine:nth-child(1) { top: 14%; inset-inline-start: 18%; }
.hero-scene .shine:nth-child(2) { top: 38%; inset-inline-end: 14%; width: 22px; height: 22px; animation-delay: 0.9s; }
.hero-scene .shine:nth-child(3) { bottom: 22%; inset-inline-start: 30%; width: 26px; height: 26px; animation-delay: 1.7s; }
@keyframes twinkle { 0%, 100% { opacity: 0.25; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.1); } }

.hero-float {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 0.7rem 1rem; box-shadow: var(--card-shadow);
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 700; color: var(--heading);
}
.hero-float svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.hero-float.f1 { top: 8%; inset-inline-end: -4%; }
.hero-float.f2 { bottom: 10%; inset-inline-start: -6%; }
.hero-float small { display: block; font-weight: 500; color: var(--text-soft); }

/* ---------- Trust badges ---------- */
.badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }
.badge-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 1.5rem; box-shadow: var(--card-shadow);
}
.badge-item .icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1rem;
  background: var(--teal-soft); color: var(--teal); display: grid; place-items: center;
}
.badge-item .icon svg { width: 24px; height: 24px; }
.badge-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.badge-item p { font-size: 0.9rem; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 1.7rem; box-shadow: var(--card-shadow);
}

/* Package cards */
.package-card { display: flex; flex-direction: column; gap: 0.7rem; position: relative; transition: transform 0.2s ease; }
.package-card:hover { transform: translateY(-5px); }
.package-card.popular { border: 2px solid var(--teal); }
.popular-tag {
  position: absolute; top: -13px; inset-inline-start: 1.6rem;
  background: var(--gold); color: #3a2a08; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 999px;
}
.package-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--teal-soft); color: var(--teal); display: grid; place-items: center;
}
.package-icon svg { width: 26px; height: 26px; }
.package-price { font-size: 0.9rem; color: var(--text-soft); }
.package-price strong { font-size: 1.5rem; color: var(--heading); letter-spacing: -0.02em; }
.package-card > p:not(.package-price) { font-size: 0.93rem; }
.feature-list { display: grid; gap: 0.5rem; margin-block: 0.5rem 0.8rem; flex: 1; }
.feature-list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.feature-list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--teal); }
.feature-list.big li { font-size: 1rem; font-weight: 600; }
.feature-list.big svg { width: 19px; height: 19px; }
.package-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 1.1rem; }

/* Residential / commercial split */
.split-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split-card { border-radius: 24px; padding: 2.2rem; position: relative; overflow: hidden; }
.split-card.res { background: linear-gradient(140deg, var(--mint), var(--surface) 70%); border: 1px solid var(--border); }
.split-card.com { background: linear-gradient(140deg, rgba(217, 164, 65, 0.14), var(--surface) 70%); border: 1px solid var(--border); }
.split-card .icon { width: 52px; height: 52px; border-radius: 16px; background: var(--surface); box-shadow: var(--card-shadow); color: var(--teal); display: grid; place-items: center; margin-bottom: 1.1rem; }
.split-card.com .icon { color: var(--gold); }
.split-card .icon svg { width: 26px; height: 26px; }
.split-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.split-card .btn { margin-top: 1.3rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  flex: none; width: 44px; height: 44px; border-radius: 14px;
  background: var(--teal); color: #fff; font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(14, 148, 136, 0.35);
}
[data-theme="dark"] .step-num { color: #06211d; }
.step h3 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.step p { font-size: 0.9rem; }
.steps-vertical { grid-template-columns: 1fr; margin-top: 1rem; }

/* ---------- Before / After gallery ---------- */
.ba-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ba-item { display: flex; flex-direction: column; gap: 0.8rem; }
.ba-frame {
  position: relative; aspect-ratio: 16 / 10; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
}
.ba-before, .ba-after { position: absolute; inset-block: 0; inset-inline-start: 0; width: 100%; }
/* IMAGE SLOT: replace these gradient scenes with real before/after photos */
.scene-kitchen .ba-before { background: linear-gradient(150deg, #8a7a5c, #5d5142 60%, #4a4136); }
.scene-kitchen .ba-after { background: linear-gradient(150deg, #fdf4dd, #f4e0b2 60%, #e8cf9e); }
.scene-bathroom .ba-before { background: linear-gradient(150deg, #6f7f83, #4c5a60 60%, #3c474d); }
.scene-bathroom .ba-after { background: linear-gradient(150deg, #e7f7fb, #c3e8f2 60%, #a5d8e8); }
.scene-office .ba-before { background: linear-gradient(150deg, #75736c, #55534d 60%, #454440); }
.scene-office .ba-after { background: linear-gradient(150deg, #f2f3f5, #dce1e7 60%, #c8d2dc); }
.scene-livingroom .ba-before { background: linear-gradient(150deg, #85705f, #5f5044 60%, #4c4138); }
.scene-livingroom .ba-after { background: linear-gradient(150deg, #f9efe3, #ecd9c3 60%, #ddc3a5); }
.ba-after { border-inline-end: 3px solid #fff; }
.ba-tag {
  position: absolute; top: 12px; inset-inline-start: 12px;
  background: rgba(0, 0, 0, 0.55); color: #fff; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.7rem; border-radius: 999px;
}
.ba-after .ba-tag { background: var(--teal); }
.ba-divider {
  position: absolute; inset-block: 0; width: 3px; background: #fff; pointer-events: none;
}
.ba-divider::after {
  content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--pine);
  display: grid; place-items: center; font-weight: 700; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.ba-range { width: 100%; accent-color: var(--teal); cursor: ew-resize; }
.ba-item figcaption { display: flex; flex-direction: column; gap: 0.15rem; }
.ba-item figcaption strong { color: var(--heading); font-size: 0.98rem; }
.ba-item figcaption span { font-size: 0.88rem; color: var(--text-soft); }

/* ---------- Reviews ---------- */
.review-card blockquote { margin: 0.8rem 0 1.1rem; color: var(--text); font-size: 0.98rem; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; }
.star { color: var(--star-off); }
.star.on { color: var(--gold); }
.review-meta { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.review-meta .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--teal), #35c3b2); color: #fff; font-weight: 800; display: grid; place-items: center;
}
.review-meta div { display: flex; flex-direction: column; line-height: 1.25; }
.review-meta strong { font-size: 0.93rem; }
.review-meta div span { font-size: 0.8rem; color: var(--text-soft); }
.verified {
  margin-inline-start: auto; display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 700; color: var(--success-text);
  background: var(--success-bg); padding: 0.25rem 0.7rem; border-radius: 999px;
}
.verified svg { width: 12px; height: 12px; }

.review-summary {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 1rem 1.8rem; margin-bottom: 2.2rem; box-shadow: var(--card-shadow);
}
.review-summary .stars svg { width: 22px; height: 22px; }
.review-summary strong { font-size: 1.15rem; color: var(--heading); }

/* ---------- Stats ---------- */
.stats-band { background: var(--cta-bg); color: #fff; border-radius: 28px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; padding: 2.6rem 2rem; text-align: center; }
.stat b { display: block; font-size: clamp(1.7rem, 3.5vw, 2.3rem); color: #ffe9c2; letter-spacing: -0.02em; }
.stat span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.8); }

/* ---------- Plans band ---------- */
.plans-band {
  background: var(--mint); border-radius: 28px; padding: 2.6rem 2.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap;
}
.plans-band h2 { font-size: 1.5rem; }
.plans-band p { max-width: 42rem; margin-top: 0.4rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--cta-bg); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: 3.2rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin-top: 0.4rem; max-width: 36rem; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.page-hero::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  filter: blur(60px); background: var(--hero-blob-1); top: -160px; inset-inline-end: -80px; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { margin-top: 0.9rem; max-width: 44rem; }
.page-hero .price-tag { margin-top: 1.1rem; color: var(--text-soft); font-size: 1rem; }
.page-hero .price-tag strong { color: var(--heading); font-size: 1.3rem; }
.page-hero .hero-actions { margin-top: 1.6rem; }

/* ---------- Detail page ---------- */
.detail-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.2fr 1fr; align-items: start; }
.detail-grid h2 { margin-bottom: 1.1rem; }
.detail-grid .feature-list.big { margin-bottom: 2.2rem; }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 0.8rem; }
.acc-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.acc-item.open { border-color: var(--teal); }
.acc-heading { margin: 0; font-size: 1rem; }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; text-align: start; cursor: pointer;
  padding: 1.05rem 1.3rem; font-weight: 700; color: var(--heading); font-size: 1rem;
}
.acc-btn:hover { color: var(--teal); }
.acc-chevron { flex: none; width: 10px; height: 10px; border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor; transform: rotate(45deg); transition: transform 0.2s; margin-top: -4px; }
.acc-item.open .acc-chevron { transform: rotate(225deg); margin-top: 4px; }
.acc-panel { padding: 0 1.3rem 1.15rem; }
.acc-panel p { font-size: 0.95rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: var(--card-shadow); }
.form-grid { display: grid; gap: 1.15rem; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.9rem; color: var(--heading); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 0.72rem 1rem; color: var(--text); width: 100%;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft);
}
.form-field [aria-invalid="true"] { border-color: var(--error); }
.field-error { color: var(--error); font-size: 0.82rem; font-weight: 600; }
.form-note { font-size: 0.82rem; margin-top: 1rem; color: var(--text-soft); }
.form-actions { margin-top: 1.5rem; }
.form-actions .btn { width: 100%; }

.form-success { background: var(--success-bg); border: 1.5px solid var(--success-text); border-radius: 24px; padding: 2.2rem; text-align: center; }
.form-success h2 { color: var(--success-text); margin-bottom: 0.6rem; }
.form-success p { color: var(--text); }
.form-success .ref { display: inline-block; margin-top: 0.7rem; background: var(--surface); border: 1px dashed var(--success-text); padding: 0.4rem 1.1rem; border-radius: 999px; font-weight: 800; letter-spacing: 0.06em; color: var(--heading); }
.form-success .btn { margin-top: 1.4rem; }

/* Booking layout + summary */
.booking-layout { display: grid; gap: 2rem; grid-template-columns: 1.55fr 1fr; align-items: start; }
.summary-card { position: sticky; top: 96px; }
.summary-card h2 { font-size: 1.15rem; margin-bottom: 1rem; }
#booking-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.45rem 1rem; margin-bottom: 1.1rem; }
#booking-summary dt { font-size: 0.83rem; font-weight: 700; color: var(--text-soft); }
#booking-summary dd { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--heading); text-align: end; }
.summary-empty { font-size: 0.92rem; }
.summary-price {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  background: var(--mint); border-radius: 14px; padding: 0.9rem 1.1rem;
}
.summary-price span { font-size: 0.85rem; font-weight: 700; color: var(--heading); }
.summary-price strong { font-size: 1.25rem; color: var(--teal-strong); }
.summary-price small { font-size: 0.75rem; font-weight: 600; color: var(--text-soft); }
.summary-note { font-size: 0.78rem; margin-top: 0.8rem; }

/* ---------- About ---------- */
.values-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.value-card .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; margin-bottom: 0.9rem; }
.value-card .icon svg { width: 24px; height: 24px; }
.value-card h3 { margin-bottom: 0.3rem; }
.value-card p { font-size: 0.92rem; }

.team-card { text-align: center; }
.team-photo {
  /* IMAGE SLOT: replace with <img src="assets/images/team-<name>.jpg" alt="..."> */
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--teal), #7ad6c9);
  color: #fff; font-weight: 800; font-size: 1.5rem;
  display: grid; place-items: center;
}
.team-card h3 { font-size: 1.02rem; }
.team-card p { font-size: 0.87rem; margin: 0.25rem 0 0.7rem; }
.tag { display: inline-block; background: var(--teal-soft); color: var(--teal-strong); font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.8rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }

.promise-card { border: 2px solid var(--gold); background: linear-gradient(140deg, rgba(217, 164, 65, 0.08), var(--surface) 60%); }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.about-stats .stat b { color: var(--teal); font-size: 1.9rem; display: block; }
.about-stats .stat span { color: var(--text-soft); font-size: 0.85rem; }

.story-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.1fr 1fr; align-items: center; }
.story-visual {
  /* IMAGE SLOT: replace with a real team photo */
  aspect-ratio: 4 / 3; border-radius: 28px; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.5), transparent 45%),
    linear-gradient(140deg, #bfeee6, #0e9488);
}
[data-theme="dark"] .story-visual {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.12), transparent 45%),
    linear-gradient(140deg, #14544c, #0a2925);
}
.story-visual.has-image img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.story-visual .img-label {
  position: absolute; bottom: 12px; inset-inline-start: 12px;
  color: #fff; font-size: 0.75rem; font-weight: 700;
  background: rgba(0,0,0,0.35); padding: 0.3rem 0.7rem; border-radius: 999px;
}

/* ---------- Areas / contact ---------- */
.areas-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 999px;
  padding: 0.5rem 1.1rem; font-weight: 700; color: var(--heading); font-size: 0.92rem;
}
.area-chip svg { width: 16px; height: 16px; color: var(--teal); }

.contact-layout { display: grid; gap: 2rem; grid-template-columns: 1fr 1.4fr; align-items: start; }
.info-list { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.info-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-list .icon { flex: none; width: 42px; height: 42px; border-radius: 14px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; }
.info-list .icon svg { width: 20px; height: 20px; }
.info-list b { display: block; color: var(--heading); font-size: 0.9rem; }
.info-list span, .info-list a { font-size: 0.95rem; color: var(--text-soft); text-decoration: none; }
.info-list a:hover { color: var(--teal); }
.hours-list { margin-top: 0.7rem; display: grid; gap: 0.3rem; font-size: 0.92rem; color: var(--text-soft); }

.notice { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 1rem 1.3rem; margin-bottom: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine); color: #bcd8d2; margin-top: auto; }
[data-theme="dark"] .site-footer { background: #081815; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; padding-block: 3rem; }
.site-footer h3 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer p { color: #9dbfb8; font-size: 0.92rem; }
.footer-links { display: grid; gap: 0.5rem; }
.footer-links a { color: #bcd8d2; text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: #ffe9c2; }
.footer-contact { display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer-contact li { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--gold); }
.footer-contact a { color: #bcd8d2; text-decoration: none; }
.footer-contact a:hover { color: #ffe9c2; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 1.2rem; font-size: 0.82rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #85a8a1; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 1rem; color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer-logo .logo-mark { width: 34px; height: 34px; box-shadow: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scene .shine { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 901px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; }
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid, .booking-layout, .contact-layout, .story-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .site-nav {
    position: absolute; top: 100%; inset-inline: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(8, 63, 57, 0.15);
    display: none; padding: 0.8rem 1.2rem 1.2rem;
  }
  .nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0.15rem; }
  .site-nav a { padding: 0.8rem 1rem; font-size: 1.02rem; border-radius: 12px; }
  .hero-float.f1 { inset-inline-end: 2%; }
  .hero-float.f2 { inset-inline-start: 2%; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
  .cta-band-inner, .plans-band { flex-direction: column; align-items: flex-start; }
}

/* ---------- RTL refinements ---------- */
[dir="rtl"] .topbar a[href^="tel"], [dir="rtl"] .footer-contact a[href^="tel"] { direction: ltr; unicode-bidi: isolate; }
