/* ============ New Day Construction — Design Tokens ============ */
:root {
  --bg: #FBFAF6;
  --bg-soft: #F3F0E8;
  --bg-warm: #EFE9DA;
  --ink: #151915;
  --ink-2: #3C403D;
  --ink-3: #6B706C;
  --line: #E5E0D2;
  --line-2: #D6D0BF;
  --green: #c4933d;
  --green-deep: #a87a2a;
  --green-soft: #d4a54d;
  --green-tint: #fdf6eb;
  --yellow: #E8B84B;
  --yellow-deep: #C99B30;
  --yellow-tint: #fdf6eb;
  --star: #F4A625;
  --dark: #2e2e2e;
  --dark-deep: #1a1a1a;
  --danger: #B84A3F;
  --shadow-sm: 0 1px 2px rgba(21, 25, 21, 0.06);
  --shadow-md: 0 8px 24px rgba(21, 25, 21, 0.08);
  --shadow-lg: 0 24px 60px rgba(21, 25, 21, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --max: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
  --serif: "Poppins", "Open Sans", system-ui, sans-serif;
  --sans: "Open Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Poppins", system-ui, sans-serif;
  --ink: #2e2e2e;
  --ink-2: #4a4a4a;
  --ink-3: #7a7a7a;
}

/* accent intensity variants */
body[data-accent="soft"] { --yellow: #d4a54d; --green: #b5862e; }
body[data-accent="balanced"] { /* defaults */ }
body[data-accent="bold"] { --yellow: #b8872f; --green: #a87a2a; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); overflow-wrap: break-word; }

.serif { font-family: var(--serif); font-weight: 700; letter-spacing: -0.01em; }

/* ============ Typography scale ============ */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--green);
}

h1, h2, h3 { margin: 0; }

.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em { font-style: normal; font-weight: 700; color: var(--green); }
.display .hl { color: var(--green); }

.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h2 em { font-style: normal; font-weight: 700; color: var(--green); }

.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 58ch;
}

.small { font-size: 13px; color: var(--ink-3); }
.micro { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 16px 22px;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--yellow);
  color: #1A1308;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 24px rgba(244, 166, 37, 0.35);
}
.btn-primary:hover { background: var(--yellow-deep); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(244, 166, 37, 0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-lg { padding: 20px 28px; font-size: 16px; border-radius: 12px; }
.btn-xl { padding: 22px 32px; font-size: 17px; border-radius: 14px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg-soft); }

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-deep); }

/* Arrow animation */
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ Section ============ */
.section {
  padding: clamp(56px, 6vw, 88px) 0;
  position: relative;
}
.section--tight { padding: clamp(36px, 4vw, 56px) 0; }
.section--green { background: var(--dark); color: #fff; }
.section--green .h2 em { color: var(--yellow); }
.section--green .eyebrow { color: var(--yellow); }
.section--green .eyebrow::before { background: var(--yellow); }
.section--soft { background: var(--bg-soft); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head--center {
  margin-left: auto; margin-right: auto; text-align: center; align-items: center;
}

/* ============ Card primitives ============ */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card--pad-lg { padding: 36px; }

/* ============ Nav ============ */
.nav {
  position: relative;
  z-index: 40;
  background: transparent;
  border-bottom: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -0.01em;
}
.logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: -20px 0;
}
.footer-logo .logo-img { height: 80px; margin: -10px 0; opacity: 0.95; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--green);
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 14px; font-family: var(--sans);
  letter-spacing: -0.02em;
}
.nav-links {
  display: none;
  gap: 34px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-rating {
  display: none;
  align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
@media (min-width: 1100px) { .nav-rating { display: inline-flex; } }
.stars { display: inline-flex; gap: 2px; color: var(--yellow); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-grid > div { min-width: 0; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 72px; }
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.rating-pill--prominent {
  padding: 7px 14px 7px 10px;
  font-size: 12.5px;
  gap: 8px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rating-pill--prominent .stars { color: var(--yellow-deep); flex-shrink: 0; }
@media (max-width: 720px) {
  .rating-pill--prominent { font-size: 11px; padding: 6px 12px 6px 8px; gap: 6px; }
  .rating-pill--prominent .stars svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  .rating-pill--prominent { font-size: 10px; padding: 5px 10px 5px 7px; gap: 5px; }
  .rating-pill--prominent .stars svg { width: 11px; height: 11px; }
}

/* ============ Offer banner (under headline) ============ */
.offer-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--yellow-tint);
  border: 1px solid #F3DFA5;
  border-left: 3px solid var(--yellow-deep);
  border-radius: 8px;
  margin-bottom: 28px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer-banner-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}
.offer-banner-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
  white-space: nowrap;
  min-width: 0;
}
.offer-banner-text strong {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: -0.005em;
}
.offer-banner-sep { color: var(--ink-3); }
.offer-banner-text > span:last-child {
  color: var(--ink-2);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 720px) {
  .offer-banner {
    align-self: stretch;
    padding: 7px 12px;
    gap: 6px;
    margin-bottom: 20px;
    width: 100%;
    white-space: normal;
    display: flex;
  }
  .offer-banner-text {
    font-size: 11.5px;
    gap: 4px;
    white-space: normal;
    flex-wrap: wrap;
  }
  .offer-banner-ic { font-size: 13px; }
}
@media (max-width: 420px) {
  .offer-banner-text { font-size: 10.5px; gap: 3px; }
  .offer-banner { padding: 6px 10px; }
}
.rating-pill .stars { font-size: 13px; }
.hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-headline em { font-style: normal; font-weight: 700; color: var(--green); }
.value-inline { color: var(--green); font-weight: 700; white-space: nowrap; }
.hero-headline .value-chip { display: none; }

.hero-bullets {
  list-style: none;
  padding: 0; margin: 0 0 32px 0;
  display: grid;
  gap: 14px;
}
.hero-bullet {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.45;
}
.hero-bullet .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.hero-bullet strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-cta-row .small { display: flex; align-items: center; gap: 8px; }
.hero-trust-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: nowrap;
}
.hero-trust-stat {
  display: flex; align-items: center; gap: 10px;
  flex: 1 1 0;
  min-width: 0;
}
.hero-trust-stat + .hero-trust-stat {
  border-left: 1px solid var(--line);
  padding-left: 12px;
}
.hero-trust-stat > div { display: flex; flex-direction: column; min-width: 0; }
.hero-trust-ic {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-trust-stat strong { font-family: var(--display); color: var(--ink); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; white-space: nowrap; }
.hero-trust-stat span { font-size: 11.5px; color: var(--ink-3); line-height: 1.2; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Hero visual side */
.hero-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 960px) {
  .hero-visual {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    max-height: none !important;
    min-height: unset !important;
  }
  .hero-grid > div:last-child {
    align-self: flex-start !important;
    display: flex;
    flex-direction: column;
  }
  .hero-grid > div:last-child .hero-visual {
    flex: none !important;
  }
}
.hero-visual .ph { position: absolute; inset: 0; }

/* Hero floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  max-width: 260px;
  border: 1px solid rgba(255,255,255,0.7);
}
.float-card.tl { top: 20px; left: -10px; }
.float-card.br { bottom: 24px; right: -10px; }
.float-card .fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--yellow-tint); color: var(--yellow-deep);
  display: grid; place-items: center; flex-shrink: 0;
}
.float-card .fc-icon.green { background: var(--green-tint); color: var(--green); }
.float-card strong { display: block; color: var(--ink); font-weight: 600; font-size: 13px; }
.float-card span { color: var(--ink-3); font-size: 12px; }

/* ============ Placeholder image ============ */
.ph {
  background: repeating-linear-gradient(
    135deg,
    #D8D2BF,
    #D8D2BF 2px,
    #E5E0D2 2px,
    #E5E0D2 16px
  );
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: #6B7066;
  font-family: "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ph::after {
  content: attr(data-label);
  background: rgba(251, 250, 246, 0.9);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.ph--green {
  background: repeating-linear-gradient(
    135deg,
    #2C5540,
    #2C5540 2px,
    #335A46 2px,
    #335A46 16px
  );
  color: #B8D0C0;
}
.ph--green::after { background: rgba(40, 80, 55, 0.85); color: #E8EEEA; border-color: #3A6B4C; }

/* ============ Gallery strip (under trust bar) ============ */
/* ============ Trust bar ============ */
.gallery-strip {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (min-width: 720px) {
  .gallery-strip-grid { grid-template-columns: repeat(8, 1fr); gap: 10px; }
}
.gs-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease;
}
.gs-tile:hover { transform: translateY(-2px); }
.gs-tile .ph { width: 100%; height: 100%; font-size: 9px; }
.gs-tile .ph::after { padding: 3px 6px; font-size: 9px; }
.gs-meta {
  position: absolute;
  bottom: 6px; left: 6px; right: 6px;
  background: rgba(21,25,21,0.78);
  color: #fff;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 4px;
  opacity: 0;
  display: flex; flex-direction: column; gap: 1px;
  transition: opacity 0.2s;
}
.gs-tile:hover .gs-meta { opacity: 1; }
.gs-style { font-size: 9px; opacity: 0.75; }
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-bar .trust-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 600;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .trust-bar-inner { gap: 24px; }
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: center;
  width: 160px;
}
.trust-badge img { height: 96px; width: auto; max-width: 100%; object-fit: contain; }
@media (max-width: 600px) {
  .trust-badge img { height: 64px; }
}
.trust-badge .trust-text { font-size: 12.5px; color: var(--ink-2); font-weight: 600; letter-spacing: 0.01em; }

/* ============ Guarantees ============ */
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .guarantees-grid { grid-template-columns: repeat(3, 1fr); } }

.guarantee {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.guarantee:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.guarantee-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.025em;
}
.guarantee-value .small-prefix { font-size: 22px; vertical-align: top; margin-right: 2px; }
.guarantee-value .unit { font-family: var(--sans); font-size: 14px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
.guarantee h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.guarantee p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.guarantee .ribbon {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--yellow-tint);
  color: var(--yellow-deep);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid #F3DFA5;
}
.ribbon--hot {
  background: var(--yellow-deep);
  color: #fff;
  border-color: var(--yellow-deep);
  box-shadow: 0 4px 10px rgba(216, 141, 14, 0.35);
}
.guarantee--featured {
  border-color: var(--yellow-deep);
  box-shadow: 0 4px 14px rgba(244, 166, 37, 0.15);
  position: relative;
}
.guarantee--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============ Why Us ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; }
.why-item .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-tint); color: var(--green);
  display: grid; place-items: center;
}
.why-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.005em; }
.why-item p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.why-stat { background: #fff; padding: 32px 24px; }
.why-stat .big {
  font-family: var(--display);
  font-weight: 700;
  font-size: 52px; line-height: 1;
  color: var(--green); letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.why-stat .lbl { font-size: 13px; color: var(--ink-3); }

.why-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============ Gallery ============ */
.gallery-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.gallery-tab {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 999px;
  transition: all 0.2s;
}
.gallery-tab.is-active {
  background: var(--green);
  color: #fff;
}
.gallery-tab:hover:not(.is-active) { color: var(--ink); }

.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .masonry { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .masonry { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease;
}
@media (min-width: 700px) { .tile { margin-bottom: 16px; } }
.tile:hover { transform: translateY(-2px); }
.tile .ph { width: 100%; height: 100%; }
.tile-meta {
  position: absolute;
  left: 12px; bottom: 12px; right: 12px;
  background: rgba(21,25,21,0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s;
}
.tile:hover .tile-meta { opacity: 1; transform: translateY(0); }
.tile-meta .c { color: #E8EEEA; }
.tile-meta .s { color: var(--yellow); font-weight: 600; }

/* Video tile */
.tile--video { cursor: pointer; }
.tile--video .tile-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.12) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: background 0.25s;
}
.tile--video:hover .tile-shade {
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.60) 100%);
}
.tile--video .tile-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--green);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  padding-left: 4px;
  transition: transform 0.25s, background 0.2s;
  pointer-events: none;
}
.tile--video:hover .tile-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.tile--video .tile-video-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tile--video .tile-meta {
  opacity: 1;
  transform: none;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  left: 16px; bottom: 16px; right: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-size: 13px;
}
.tile--video .tile-meta .c { color: rgba(255,255,255,0.85); font-weight: 500; }
.tile--video .tile-meta .s { color: #fff; font-weight: 600; }

/* ============ Gallery Lightbox ============ */
.lb-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(6, 9, 7, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: lbFade 0.2s ease-out;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lb-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 10010;
}
.lb-close:hover { background: rgba(255,255,255,0.32); }

.lb-nav {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 10005;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); color: #fff; }
.lb-nav--prev { left: 20px; }
.lb-nav--next { right: 20px; }

.lb-stage {
  width: calc(100vw - 160px);
  max-width: 1200px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: lbRise 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes lbRise {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-media {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  display: block;
}

.lb-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  width: 100%;
  flex-shrink: 0;
}
.lb-caption-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
  color: #fff;
}
.lb-caption-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.lb-counter {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .lb-stage { width: calc(100vw - 32px); height: calc(100vh - 80px); }
  .lb-nav { width: 40px; height: 40px; }
  .lb-nav--prev { left: 8px; }
  .lb-nav--next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
}

/* ============ Process ============ */
.process-list {
  display: grid;
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.process-step {
  background: #fff;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  transition: background 0.2s;
}
.process-step:hover { background: var(--bg-soft); }
.process-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.025em;
}
.process-body h3 { font-size: 20px; font-weight: 600; margin: 0 0 4px 0; letter-spacing: -0.005em; }
.process-body p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; max-width: 62ch; }
.process-time {
  font-size: 12px;
  color: var(--ink-3);
  padding: 6px 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .process-step { grid-template-columns: 60px 1fr; padding: 24px; gap: 18px; }
  .process-num { font-size: 40px; }
  .process-time { grid-column: 2; justify-self: start; }
}

/* ============ Testimonials ============ */
.t-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .t-featured {
    grid-template-columns: 1.8fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  .t-featured > .t-video:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }
  .t-featured > .t-video:not(:first-child) { aspect-ratio: 16/11; }
}
.t-video {
  position: relative;
  aspect-ratio: 9/12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}
.t-video:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-video .ph { position: absolute; inset: 0; }
.t-video-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.t-video-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.t-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.t-play-btn {
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s, background 0.2s;
}
.t-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.t-video-info { position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(21,25,21,0.85));
  color: #fff;
  padding: 40px 20px 20px;
}
.t-video-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-video-info .meta { font-size: 12px; opacity: 0.8; margin-top: 4px; }
@media (min-width: 900px) {
  .t-featured > .t-video:first-child .t-video-info h4 { font-size: 16px; }
}

.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.t-card .source-row {
  display: flex; justify-content: space-between; align-items: center;
}
.t-card .src {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600;
}
.t-card .stars { font-size: 14px; }
.t-card .quote {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  letter-spacing: 0;
  margin: 0;
  flex: 1;
}
.t-card .author {
  display: flex; gap: 12px; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: grid; place-items: center;
  font-weight: 600; font-size: 13px;
}
.t-card .author-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.t-card .author-loc { font-size: 12px; color: var(--ink-3); }

/* ============ Service Area ============ */
.sa-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) { .sa-grid { grid-template-columns: 1fr 1.2fr; gap: 72px; } }
.sa-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 24px 0 32px;
}
.sa-city { display: flex; align-items: center; gap: 8px; }
.sa-city::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.sa-map {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--green-tint);
  border: 1px solid var(--line);
}

/* ============ FAQ ============ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-q .ico {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--green);
  transition: transform 0.25s, background 0.2s;
}
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 70ch; }

/* ============ Final CTA ============ */
.final-cta {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 88px) clamp(32px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; top: -50%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(244,166,37,0.15), transparent 70%);
  pointer-events: none;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) { .final-cta-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.final-cta h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px 0;
}
.final-cta h2 em { font-style: normal; font-weight: 700; color: var(--yellow); }
.final-cta .sub { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.55; max-width: 50ch; }
.final-cta-actions { display: flex; flex-direction: column; gap: 14px; }
.final-cta-offers {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.final-cta-offers .offer {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.final-cta-offers .offer .ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(244,166,37,0.2); color: var(--yellow);
  display: grid; place-items: center; flex-shrink: 0;
}

/* ============ Video Testimonial Section ============ */
.gallery-intro {
  max-width: 760px;
  margin-bottom: 36px;
}
.gallery-sub {
  margin-top: 14px;
  color: var(--ink-2);
  max-width: 560px;
}
.gallery-tabs-row {
  display: flex;
  justify-content: flex-start;
  margin: 40px 0 28px;
}

/* ============ Video Testimonial Card ============ */
.vt-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px -28px rgba(15, 30, 20, 0.18), 0 6px 20px -10px rgba(15, 30, 20, 0.08);
}
@media (min-width: 900px) {
  .vt-card {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.vt-media {
  position: relative;
  aspect-ratio: 16/10;
  background: #0f140f;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 900px) {
  .vt-media { aspect-ratio: auto; min-height: 100%; }
}
.vt-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vt-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.vt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  border: none;
  display: grid; place-items: center;
  color: var(--green);
  box-shadow: 0 14px 40px rgba(0,0,0,0.38);
  cursor: pointer;
  transition: transform 0.25s, background 0.2s;
  padding: 0 0 0 4px;
}
.vt-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

.vt-info {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
}
@media (min-width: 900px) {
  .vt-info { padding: 40px 38px; }
}
.vt-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}
.vt-loc {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.vt-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 18px;
}
.vt-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FDF1D8;
  color: #8A5A0B;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  min-width: 0;
  flex: 0 1 auto;
}
.vt-tag svg { color: #A56E0B; }
.vt-quote {
  margin: 0;
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--green);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.58;
  font-style: italic;
}
.vt-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.vt-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.vt-author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.vt-author-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 1px;
}
.footer {
  padding: 48px 0 32px;
  color: var(--ink-3);
  font-size: 13px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer .logo { font-size: 18px; color: var(--ink); }

/* ============ Sticky mobile CTA ============ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 30;
  display: flex;
}
.mobile-cta .btn { flex: 1; }
@media (min-width: 900px) { .mobile-cta { display: none; } }
body { padding-bottom: 72px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ============ Modal ============ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(21, 25, 21, 0.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  overscroll-behavior: contain;
  animation: fadeIn 0.2s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  min-height: min(640px, calc(100vh - 48px));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateY(12px);
  opacity: 0;
  animation: slideUp 0.3s cubic-bezier(0.2, 0.9, 0.3, 1) forwards 0.05s;
}
@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
.modal-header {
  padding: 20px 24px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--line);
}
.modal-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 4px 2px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.15s;
  flex-shrink: 0;
}
.modal-back:hover { color: var(--ink); }
.modal-back svg { width: 14px; height: 14px; }
.modal-back--placeholder { width: 52px; pointer-events: none; }
.modal-step-count { font-size: 12px; color: var(--ink-3); flex-shrink: 0; white-space: nowrap; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: background 0.15s;
}
.modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.modal-progress {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex: 1;
  max-width: 200px;
}
.modal-progress-bar {
  height: 100%;
  background: var(--green);
  transition: width 0.35s ease;
}
.modal-body {
  padding: 40px 44px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.modal-back-bar {
  margin: -12px 0 20px;
  display: flex;
}
.back-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.back-pill:hover { background: var(--line); color: var(--ink); border-color: var(--ink-3); }
.back-pill svg { width: 14px; height: 14px; }
.step-back-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.modal-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.modal-body .sub { color: var(--ink-3); font-size: 14px; margin: 0 0 24px; }
.modal-promise {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.modal-promise svg { color: var(--ink-3); flex-shrink: 0; }

.step-options { display: flex; flex-direction: column; gap: 10px; }
.step-option {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-option:hover { border-color: var(--green); background: var(--green-tint); }
.step-option.is-selected { border-color: var(--green); background: var(--green-tint); }
.step-option .radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  flex-shrink: 0;
  transition: all 0.15s;
  position: relative;
}
.step-option.is-selected .radio { border-color: var(--green); background: var(--green); }
.step-option.is-selected .radio::after {
  content: ""; position: absolute; inset: 4px;
  background: #fff; border-radius: 50%;
}

.step-fields { display: flex; flex-direction: column; gap: 14px; }
.field label { display: block; font-size: 13px; color: var(--ink-2); font-weight: 500; margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}
.field input:focus { outline: none; border-color: var(--green); }
.field.has-error input { border-color: var(--danger); }
.field .err { color: var(--danger); font-size: 12px; margin-top: 4px; }

.modal-footer {
  padding: 20px 28px 24px;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 12px;
}
.modal-footer--divider {
  border-top: 1px solid var(--line);
}
.modal-footer .btn { width: 100%; }
.modal-footer .back {
  font-size: 13px; color: var(--ink-3); font-weight: 500;
  align-self: flex-start;
}
.modal-footer .back:hover { color: var(--ink); }
.modal-trust {
  font-size: 12px; color: var(--ink-3); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.modal-disclaimer {
  font-size: 10.5px;
  color: var(--ink-3);
  line-height: 1.45;
  text-align: center;
}

.modal-disqualify { text-align: center; padding: 20px 8px 8px; }
.modal-disqualify .emoji { font-size: 36px; margin-bottom: 16px; }

.modal-success { text-align: center; padding: 20px 8px; }
.modal-success .check-big {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 20px;
}

/* ============ Tweaks Panel ============ */
.tweaks-panel {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 60;
  border: 1px solid var(--line);
  overflow: hidden;
  max-height: 70vh;
  display: flex; flex-direction: column;
}
@media (min-width: 900px) { .tweaks-panel { bottom: 20px; right: 20px; } }
.tweaks-head {
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600;
}
.tweaks-body { padding: 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 18px; }
.tweak-group { display: flex; flex-direction: column; gap: 8px; }
.tweak-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.tweak-options { display: flex; flex-wrap: wrap; gap: 6px; }
.tweak-chip {
  padding: 7px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  transition: all 0.15s;
}
.tweak-chip:hover { border-color: var(--green-soft); }
.tweak-chip.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.tweak-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
  min-height: 64px;
}
.tweak-input:focus { outline: none; border-color: var(--green); }

/* utility */
.no-wrap { white-space: nowrap; }
.hide-mobile { display: none; }
@media (min-width: 700px) { .hide-mobile { display: initial; } }
.show-mobile { display: initial; }
@media (min-width: 700px) { .show-mobile { display: none; } }

/* Fade-up scroll animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Nav — phone + hamburger ============ */
.nav-call {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}
.nav-call:hover { background: var(--bg-soft); border-color: var(--line-2); }
.nav-call .nav-call-text { white-space: nowrap; }
@media (min-width: 700px) { .nav-call { display: inline-flex; } }

.nav-cta .nav-cta-long { display: inline; }
.nav-cta .nav-cta-short { display: none; }
@media (max-width: 560px) {
  .nav-cta .nav-cta-long { display: none; }
  .nav-cta .nav-cta-short { display: inline; }
  .nav-cta { padding: 12px 16px; font-size: 14px; }
}

/* Hamburger */
.nav-burger {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  color: var(--ink);
}
.nav-burger:hover { background: var(--bg-soft); }
@media (min-width: 900px) { .nav-burger { display: none; } }

.burger { position: relative; width: 22px; height: 16px; display: block; }
.burger span {
  position: absolute; left: 0; right: 0;
  height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 7px; }
.burger span:nth-child(3) { top: 12px; }
.burger.is-open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Drawer */
.nav-drawer {
  position: fixed; inset: 72px 0 0 0;
  background: rgba(21,25,21,0.45);
  backdrop-filter: blur(4px);
  z-index: 35;
  animation: fadeIn 0.2s ease forwards;
}
.nav-drawer-sheet {
  background: var(--bg);
  padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 20px 40px rgba(21,25,21,0.12);
  border-bottom: 1px solid var(--line);
  animation: slideDown 0.25s cubic-bezier(0.2,0.9,0.3,1) forwards;
  transform: translateY(-12px);
  opacity: 0;
}
@keyframes slideDown { to { transform: translateY(0); opacity: 1; } }
.nav-drawer-sheet a {
  padding: 16px 4px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
}
.nav-drawer-sheet a:last-of-type { border-bottom: none; }
.nav-drawer-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}
.nav-drawer-actions .btn { width: 100%; }

/* ============ Mobile CTA bar — dual action ============ */
.mobile-cta { gap: 10px; align-items: stretch; }
.mobile-cta-call {
  flex: 0 0 auto;
  padding: 14px 18px !important;
  gap: 8px;
}
.mobile-cta-main { flex: 1; min-width: 0; }

/* ============ Comprehensive mobile pass ============ */
@media (max-width: 720px) {
  /* Tighter section padding */
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
  .section-head { margin-bottom: 32px; gap: 12px; }

  /* Nav */
  .nav-inner { height: 64px; position: relative; justify-content: center; }
  .logo { position: static; margin-left: -6px; }
  .nav-right { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .logo-img { height: 80px; margin: -12px 0; }
  .footer-logo .logo-img { height: 64px; margin: -8px 0; }
  .logo span { font-size: 16px; }
  .logo-mark { width: 32px; height: 32px; font-size: 12px; }

  /* Nav — hide primary CTA on mobile (hamburger covers it) */
  .nav-cta { display: none; }

  /* Hide sticky bottom CTA bar on mobile */
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }

  /* Remove eyebrow dash on mobile — cleaner centered look */
  .eyebrow::before { display: none; }
  .eyebrow { gap: 0; }

  /* Modal promise line — single line with lock at end */
  .modal-promise {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
  }

  /* Hero */
  .hero { padding-top: 28px; padding-bottom: 40px; }
  .hero-grid { gap: 32px; text-align: center; }
  .hero-grid > div:first-child { display: flex; flex-direction: column; align-items: center; max-width: 100%; overflow: hidden; }
  .hero-headline {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.14;
    margin-bottom: 20px;
  }
  .hero-eyebrow-row { margin-bottom: 16px; gap: 10px; justify-content: center; flex-direction: column; align-items: center; }
  .hero-eyebrow-row .eyebrow { font-size: 11px; line-height: 1.4; text-align: center; }
  .hero-bullets { gap: 12px; margin-bottom: 24px; text-align: left; width: 100%; max-width: 420px; }
  .hero-bullet { font-size: 15px; grid-template-columns: 24px 1fr; gap: 10px; }
  .hero-cta-row { gap: 12px; margin-bottom: 16px; flex-direction: column; width: 100%; max-width: 420px; align-items: center; }
  .hero-cta-row .btn { width: 100%; }
  .hero-trust-row {
    gap: 14px;
    padding-top: 18px;
    justify-content: space-around;
  }
  .hero-trust-stat { gap: 10px; flex: 0 1 auto; justify-content: center; }
  .hero-trust-stat + .hero-trust-stat { padding-left: 14px; }
  .hero-trust-ic { display: none; }
  .hero-trust-stat strong { font-size: 16px; }
  .hero-trust-stat span { font-size: 11px; }

  /* Hero visual — shrink, hide float cards */
  .hero-visual { aspect-ratio: 5 / 4 !important; border-radius: 18px; }
  .float-card { display: none; }

  /* Trust bar — 5 tiny icons looks bad; go 3+2 stack with larger icons */
  .trust-bar { padding: 36px 0; }
  .trust-bar .trust-label { margin-bottom: 24px; font-size: 10.5px; }
  .trust-bar-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 16px !important;
    max-width: 320px;
    margin: 0 auto;
    justify-items: center;
  }
  .trust-badge { width: auto !important; min-width: unset; }
  .trust-bar-inner::after { display: none; }
  .trust-badge { gap: 8px; }
  .trust-badge img { height: 60px; }
  .trust-badge .trust-text { font-size: 11px; line-height: 1.25; }

  /* Typography scale */
  .display { font-size: clamp(34px, 9vw, 44px); }
  .h2 { font-size: clamp(26px, 7vw, 34px); }
  .lede { font-size: 15.5px; }

  /* Cards default to tighter padding */
  .card { padding: 22px; }
  .card--pad-lg { padding: 24px; }

  /* Guarantees */
  .guarantees-grid { gap: 14px; }
  .guarantee { padding: 24px 22px; gap: 14px; }
  .guarantee-value { font-size: 38px; }
  .guarantee-value .small-prefix { font-size: 18px; }

  /* Buttons: ensure comfortable tap targets */
  .btn { min-height: 48px; padding: 14px 20px; }
  .btn-lg { min-height: 52px; padding: 16px 22px; font-size: 15px; }
  .btn-xl { min-height: 56px; padding: 18px 24px; font-size: 16px; }

  /* Modal goes near-fullscreen on mobile */
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal {
    border-radius: 20px 20px 0 0;
    max-height: 96vh;
    min-height: unset;
    max-width: 100%;
    animation: slideFromBottom 0.3s cubic-bezier(0.2,0.9,0.3,1) forwards 0.05s;
  }
  @keyframes slideFromBottom { from { transform: translateY(100%); opacity: 1; } to { transform: translateY(0); opacity: 1; } }
  .modal-header { padding: 16px 18px 14px; }
  .modal-body { padding: 20px 18px 12px !important; }
  .modal-footer { padding: 12px 18px calc(env(safe-area-inset-bottom) + 20px) !important; gap: 6px !important; }
  .step-fields { gap: 10px !important; }
  .step-option { padding: 16px 18px !important; font-size: 15px !important; min-height: 56px; }
  .field input { font-size: 16px !important; /* prevent iOS zoom */ padding: 14px 14px !important; }
  .field label { font-size: 13px !important; }

  /* Tweaks panel — stay out of the way of mobile-cta */
  .tweaks-panel { bottom: 84px; right: 12px; left: 12px; width: auto; max-height: 60vh; }

  /* Container padding */
  .container { padding-left: 18px; padding-right: 18px; }

  /* Gallery tabs — horizontal scroll instead of overflow */
  .gallery-head { margin-bottom: 24px; gap: 14px; align-items: stretch; }
  .gallery-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gallery-tab { flex-shrink: 0; white-space: nowrap; padding: 10px 16px; font-size: 13px; }

  /* Float card placements (in case of centered/fullbleed layouts) */
  .float-card.tl, .float-card.br { display: none; }

  /* Video testimonial tags — keep side-by-side on one row */
  .vt-tags { flex-wrap: nowrap; gap: 6px; }
  .vt-tag {
    font-size: 11.5px;
    padding: 5px 9px;
    min-width: 0;
    flex: 0 1 auto;
    white-space: nowrap;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-headline { font-size: 26px; }
  .hero-trust-stat strong { font-size: 14px; }
  .hero-trust-stat span { font-size: 10px; }
  .hero-trust-stat + .hero-trust-stat { padding-left: 10px; }
  .trust-badge img { height: 52px; }
  .nav-cta { padding: 10px 12px; font-size: 13px; }
  .logo-img { height: 68px; margin: -10px 0; }
  .mobile-cta-call span { display: none; }
  .mobile-cta-call { padding: 14px !important; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1 !important; transform: none !important; }
  .btn, .arrow, .guarantee, .t-video { transition: none !important; }
  * { animation-duration: 0.001s !important; }
}
