/* =========================================================
   TALLI SOLAR — design system
   A rooftop-and-meter identity for a Rajasthan solar EPC.
   Palette: dusk indigo + Jaisalmer sandstone + amber sun.
   Type: Fraunces (display) / Inter (body) / Space Mono (data)
   ========================================================= */

:root {
  --ink: #17242b;
  --ink-soft: #4a5860;
  --paper: #f7f3e9;
  --paper-dim: #efe8d6;
  --card: #fffdf8;
  --indigo: #1f4b5e;
  --indigo-deep: #102b36;
  --indigo-dusk: #16303d;
  --sand: #c98a3d;
  --sand-deep: #a66f2b;
  --sun: #f0a63a;
  --sun-bright: #ffc65c;
  --leaf: #3f7d58;
  --leaf-deep: #2c5b40;
  --line: #ddd3ba;
  --line-dark: rgba(247, 243, 233, 0.16);
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --radius-s: 4px;
  --radius-m: 10px;
  --shadow-card: 0 1px 2px rgba(23, 36, 43, 0.06), 0 12px 28px -14px rgba(23, 36, 43, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

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

button { font-family: inherit; cursor: pointer; }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

@media (max-width: 767px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--sand-deep);
  display: inline-block;
}

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--indigo-deep);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-sun {
  background: var(--sun);
  color: var(--indigo-deep);
  box-shadow: 0 10px 24px -10px rgba(240, 166, 58, 0.6);
}
.btn-sun:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(240, 166, 58, 0.7); background: var(--sun-bright); }

.btn-outline {
  background: transparent;
  border-color: rgba(23, 36, 43, 0.25);
  color: var(--indigo-deep);
}
.btn-outline:hover { border-color: var(--indigo-deep); transform: translateY(-2px); }

.btn-outline.on-dark {
  border-color: rgba(247, 243, 233, 0.35);
  color: var(--paper);
}
.btn-outline.on-dark:hover { border-color: var(--paper); }

.btn-whatsapp {
  background: var(--leaf);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--leaf-deep); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 233, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: 0 6px 20px -12px rgba(23, 36, 43, 0.25); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--indigo-deep);
}

.brand .mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--sand-deep);
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-s);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--indigo-deep); background: var(--paper-dim); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--indigo-deep);
}
.nav-call svg { width: 16px; height: 16px; color: var(--sand-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--indigo-deep);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; width: 22px; }
.nav-toggle span::after { position: absolute; top: 7px; width: 22px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-call span.call-text { display: none; }
  .mobile-menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    gap: 2px;
  }
  .mobile-menu-open .nav-links a { padding: 12px 8px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, #142f3c 0%, #1f4b5e 55%, #3a6b6f 100%);
  overflow: hidden;
  padding-top: 64px;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 76px 0 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .eyebrow { color: var(--sun-bright); }
.hero-copy .eyebrow::before { background: var(--sun-bright); }

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--sun-bright);
}

.hero-copy p.lede {
  color: rgba(247, 243, 233, 0.82);
  font-size: 1.12rem;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 243, 233, 0.18);
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(247, 243, 233, 0.78);
}
.hero-trust svg { width: 16px; height: 16px; color: var(--sun-bright); flex-shrink: 0; }

/* Skyline illustration */
.skyline-wrap {
  position: relative;
}

.skyline-svg { width: 100%; height: auto; display: block; }

.sun-disc {
  transform-origin: center;
  animation: rise 7s var(--ease) both;
}
@keyframes rise {
  from { transform: translateY(26px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.sun-ray {
  transform-origin: 260px 120px;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Meter readout card */
.meter-card {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: min(92%, 420px);
  background: var(--indigo-deep);
  border: 1px solid rgba(247, 243, 233, 0.14);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 24px 48px -16px rgba(9, 20, 25, 0.55);
  z-index: 3;
}

.meter-stat { text-align: left; }
.meter-stat .digits {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sun-bright);
  letter-spacing: 0.02em;
}
.meter-stat .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 243, 233, 0.6);
  margin-top: 2px;
}

@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; text-align: left; }
  .hero-copy p.lede { max-width: 100%; }
  .meter-card { position: static; transform: none; width: 100%; margin-top: 28px; }
  .skyline-wrap { margin-top: 8px; padding-bottom: 0; }
}

@media (max-width: 560px) {
  .meter-card { flex-wrap: wrap; gap: 16px; }
  .meter-stat { width: 40%; }
}

.hero-spacer { height: 64px; }
@media (max-width: 991px) { .hero-spacer { height: 24px; } }

/* ---------- Lead form ---------- */

.survey {
  background: var(--paper);
}

.survey-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.survey-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--indigo-deep);
  margin-bottom: 14px;
  line-height: 1.2;
}
.survey-side p { color: var(--ink-soft); margin-bottom: 26px; }

.survey-points { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.survey-points li { display: flex; gap: 12px; font-size: 0.95rem; color: var(--ink); }
.survey-points svg { width: 20px; height: 20px; color: var(--leaf); flex-shrink: 0; margin-top: 1px; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(31, 75, 94, 0.12);
  outline: none;
}

@media (max-width: 767px) {
  .survey-grid { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
}

/* ---------- Calculator / bill card ---------- */

.calc { background: var(--indigo-dusk); color: var(--paper); position: relative; overflow: hidden; }
.calc::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(240,166,58,0.08), transparent 45%);
}
.calc .section-head h2 { color: var(--paper); }
.calc .section-head p { color: rgba(247,243,233,0.7); }
.calc .eyebrow { color: var(--sun-bright); }
.calc .eyebrow::before { background: var(--sun-bright); }

.bill-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius-m);
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(9,20,25,0.5);
}

.bill-card .slider-row { margin-bottom: 30px; }
.bill-card .slider-row label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bill-card .slider-row label span.val { font-family: var(--font-mono); color: var(--sand-deep); }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 4px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sun);
  border: 3px solid var(--indigo-deep);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sun);
  border: 3px solid var(--indigo-deep);
  cursor: pointer;
}

.bill-compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 26px;
}
.bill-compare .old, .bill-compare .new { text-align: center; flex: 1; }
.bill-compare .tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 6px; }
.bill-compare .old .amt {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--sand);
}
.bill-compare .new .amt { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 700; color: var(--leaf-deep); }
.bill-compare .arrow { color: var(--sand-deep); flex-shrink: 0; }
.bill-compare .arrow svg { width: 22px; height: 22px; }

.bill-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.bill-meta .item { text-align: center; padding: 14px 8px; background: var(--paper); border-radius: var(--radius-s); }
.bill-meta .item .n { font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: var(--indigo-deep); }
.bill-meta .item .l { font-size: 0.68rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }

@media (max-width: 560px) {
  .bill-card { padding: 26px 20px; }
  .bill-compare .amt { font-size: 1.2rem !important; }
  .bill-meta { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ---------- Subsidy (voucher style) ---------- */

.subsidy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.voucher {
  position: relative;
  background: var(--card);
  border: 1px dashed var(--sand);
  border-radius: var(--radius-m);
  padding: 32px 28px;
}
.voucher::before, .voucher::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.voucher::before { left: -9px; }
.voucher::after { right: -9px; }

.voucher .stamp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.voucher .stamp svg { width: 26px; height: 26px; color: var(--sand-deep); }

.voucher h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--indigo-deep);
  margin-bottom: 10px;
}
.voucher p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; }
.voucher ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.voucher ul li {
  display: flex;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--ink);
  font-family: var(--font-mono);
}
.voucher ul li::before { content: "→"; color: var(--sand-deep); }

@media (max-width: 900px) { .subsidy-grid { grid-template-columns: 1fr; } }

/* ---------- Why us (row list + meter counters) ---------- */

.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list .num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--sand-deep);
  padding-top: 3px;
  flex-shrink: 0;
}
.why-list h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--indigo-deep); margin-bottom: 4px; }
.why-list p { color: var(--ink-soft); font-size: 0.92rem; }

.meter-panel {
  background: var(--indigo-deep);
  border-radius: var(--radius-m);
  padding: 36px;
  color: var(--paper);
}
.meter-panel .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(247,243,233,0.15);
}
.meter-panel .head span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,233,0.6); }
.meter-panel .head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 3px rgba(63,125,88,0.25); }

.counter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.counter-grid .c h3 {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--sun-bright);
}
.counter-grid .c p { font-size: 0.78rem; color: rgba(247,243,233,0.65); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

@media (max-width: 900px) { .why-wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Services ---------- */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }

.svc-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-s);
  background: var(--paper-dim);
  margin-bottom: 18px;
}
.svc-icon svg { width: 24px; height: 24px; color: var(--sand-deep); }

.svc-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--indigo-deep); margin-bottom: 8px; }
.svc-card p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.svc-card a { font-size: 0.85rem; font-weight: 600; color: var(--indigo); display: inline-flex; align-items: center; gap: 6px; }
.svc-card a svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.svc-card a:hover svg { transform: translateX(3px); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Projects gallery ---------- */

.gallery { background: var(--indigo-dusk); }
.gallery .section-head h2 { color: var(--paper); }
.gallery .section-head p { color: rgba(247,243,233,0.7); }
.gallery .eyebrow { color: var(--sun-bright); }
.gallery .eyebrow::before { background: var(--sun-bright); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .g1 { grid-column: span 2; }

.proj-card { position: relative; border-radius: var(--radius-s); overflow: hidden; aspect-ratio: 4 / 3; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.proj-card:hover img { transform: scale(1.06); }
.proj-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(16,43,54,0.92), transparent);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.proj-tag .name { color: var(--paper); font-weight: 600; font-size: 0.92rem; }
.proj-tag .kw { font-family: var(--font-mono); color: var(--sun-bright); font-size: 0.78rem; }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g1 { grid-column: span 2; }
}

/* ---------- Testimonials (bill-snippet cards) ---------- */

.testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.testi-card {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 86vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
}
.testi-card .quote { color: var(--ink); font-size: 1rem; margin-bottom: 22px; font-style: italic; }
.testi-shift {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.95rem;
  padding: 12px 14px; background: var(--paper); border-radius: var(--radius-s);
  margin-bottom: 18px;
}
.testi-shift .from { color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--sand); }
.testi-shift .to { color: var(--leaf-deep); font-weight: 700; }
.testi-shift svg { width: 14px; height: 14px; color: var(--sand-deep); }
.testi-person { display: flex; justify-content: space-between; align-items: center; }
.testi-person h5 { font-family: var(--font-display); font-size: 1rem; color: var(--indigo-deep); }
.testi-person span { font-size: 0.8rem; color: var(--ink-soft); }
.testi-stars { color: var(--sun); font-size: 0.85rem; }

.testi-nav { display: flex; gap: 10px; margin-top: 24px; justify-content: center; }
.testi-nav button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testi-nav button:hover { background: var(--paper-dim); border-color: var(--sand); }
.testi-nav button svg { width: 16px; height: 16px; color: var(--indigo-deep); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .ic {
  width: 42px; height: 42px; border-radius: var(--radius-s);
  background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .ic svg { width: 20px; height: 20px; color: var(--sand-deep); }
.contact-card h5 { font-family: var(--font-display); font-size: 1.02rem; color: var(--indigo-deep); margin-bottom: 4px; }
.contact-card p { color: var(--ink-soft); font-size: 0.9rem; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--indigo); }

.map-frame { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.15) contrast(1.02); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */

.site-footer { background: var(--indigo-deep); color: rgba(247,243,233,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.2rem; color: var(--paper); margin-bottom: 12px; }
.footer-brand .mark { width: 28px; height: 28px; }
.site-footer .tagline { font-family: var(--font-mono); font-size: 0.78rem; color: var(--sun-bright); margin-bottom: 14px; }
.site-footer p.desc { font-size: 0.88rem; max-width: 320px; }
.site-footer h6 { color: var(--paper); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 0.9rem; }
.site-footer ul a:hover { color: var(--sun-bright); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(247,243,233,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: rgba(247,243,233,0.16); }
.footer-legal p { font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(247,243,233,0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
  color: rgba(247,243,233,0.5);
}

@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Floating WhatsApp + mobile call bar ---------- */

.whatsapp-float {
  position: fixed; bottom: 96px; right: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--leaf);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(44, 91, 64, 0.55);
  z-index: 900;
  transition: transform 0.25s ease;
}
.whatsapp-float svg { width: 26px; height: 26px; color: var(--white); }
.whatsapp-float:hover { transform: scale(1.08); }

.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 12px;
  gap: 10px;
  z-index: 899;
  box-shadow: 0 -6px 20px -12px rgba(23,36,43,0.3);
}

@media (max-width: 767px) {
  .mobile-call-bar { display: flex; }
  .whatsapp-float { bottom: 84px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}