/* ============================================
   TIRATH ELECTRONICS — LANDING PAGE
   Brand-aligned: Forest green + cream paper
   ============================================ */

:root {
  --forest: #1F4A3D;
  --forest-deep: #143028;
  --sage: #5B8275;
  --mint: #B8D4C7;
  --cream: #F5F0E6;
  --paper: #FBF8F1;
  --paper-warm: #F8F3E8;
  --ink: #1A1A1A;
  --ink-soft: #2a2a2a;
  --amber: #D4A574;
  --muted: #8A8275;

  --shadow-soft: 0 1px 2px rgba(31, 74, 61, 0.04), 0 8px 24px rgba(31, 74, 61, 0.06);
  --shadow-lift: 0 4px 12px rgba(31, 74, 61, 0.08), 0 24px 48px rgba(31, 74, 61, 0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.ital {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(251, 248, 241, 0.78);
  border-bottom: 1px solid rgba(31, 74, 61, 0);
  transition: border-color 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.scrolled {
  padding: 12px 0;
  border-bottom-color: rgba(31, 74, 61, 0.08);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--mint);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 2px;
}

.nav-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.nav-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: width 0.4s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: var(--forest); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream) !important;
  font-weight: 400;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: inline-flex;
  background: rgba(31, 74, 61, 0.06);
  border-radius: 999px;
  padding: 3px;
  gap: 1px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 11.5px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.lang-btn::after {
  /* prevent the hover underline from nav-links a rule */
  display: none !important;
  content: none !important;
}

.lang-btn:hover {
  color: var(--forest);
  background: rgba(31, 74, 61, 0.08);
}

.lang-btn.active {
  background: var(--forest);
  color: var(--cream);
}

.lang-btn.active:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-top: 18px;
    align-self: flex-start;
  }
  .lang-btn { padding: 8px 14px; font-size: 14px; }
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 80px;
  right: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 212, 199, 0.35) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 7.4vw, 112px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--forest);
  margin-bottom: 28px;
}

.hero-title .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.5vw, 21px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ===== 3D BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 140ms var(--ease-out), box-shadow 140ms var(--ease-out);
  will-change: transform;
}

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

.btn:hover { transform: translateY(-1px); }

.btn:active {
  transform: translateY(4px) !important;
  transition-duration: 60ms;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 0 0 var(--forest-deep);
}
.btn-primary:hover { box-shadow: 0 5px 0 0 var(--forest-deep); }
.btn-primary:active { box-shadow: 0 0 0 0 var(--forest-deep); }

.btn-ghost {
  background: var(--paper);
  color: var(--forest);
  box-shadow: 0 4px 0 0 var(--sage), inset 0 0 0 1.5px var(--forest);
}
.btn-ghost:hover { box-shadow: 0 5px 0 0 var(--sage), inset 0 0 0 1.5px var(--forest); }
.btn-ghost:active { box-shadow: 0 0 0 0 var(--sage), inset 0 0 0 1.5px var(--forest); }

.btn-cream {
  background: var(--cream);
  color: var(--forest);
  box-shadow: 0 4px 0 0 var(--sage);
}
.btn-cream:hover { box-shadow: 0 5px 0 0 var(--sage); }
.btn-cream:active { box-shadow: 0 0 0 0 var(--sage); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  box-shadow: 0 4px 0 0 var(--mint), inset 0 0 0 1.5px var(--mint);
}
.btn-ghost-light:hover { box-shadow: 0 5px 0 0 var(--mint), inset 0 0 0 1.5px var(--mint); }
.btn-ghost-light:active { box-shadow: 0 0 0 0 var(--mint), inset 0 0 0 1.5px var(--mint); }

.btn-whatsapp {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 0 0 var(--forest-deep);
}
.btn-whatsapp:hover { box-shadow: 0 5px 0 0 var(--forest-deep); }
.btn-whatsapp:active { box-shadow: 0 0 0 0 var(--forest-deep); }

.btn-video {
  background: var(--amber);
  color: #4a3b1f;
  box-shadow: 0 4px 0 0 #9a7c4d;
}
.btn-video:hover { box-shadow: 0 5px 0 0 #9a7c4d; }
.btn-video:active { box-shadow: 0 0 0 0 #9a7c4d; }

/* Ensure buttons have room for their drop shadow */
.btn { margin-bottom: 4px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 74, 61, 0.12);
  max-width: 560px;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--forest);
}

.hero-meta span {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* HERO VIDEO */
.hero-video {
  position: relative;
}

.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  transition: transform 0.7s var(--ease);
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 74, 61, 0.18) 100%);
  pointer-events: none;
  z-index: 2;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream);
}

.hero-video:hover .video-frame {
  transform: translateY(-4px);
}

.video-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.caption-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 15px;
  color: var(--forest);
}

.caption-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  text-transform: none;
  font-size: 14px;
  color: var(--muted);
}

/* MARQUEE */
.hero-marquee {
  border-top: 1px solid rgba(31, 74, 61, 0.1);
  border-bottom: 1px solid rgba(31, 74, 61, 0.1);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--paper-warm);
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 36px;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
  font-weight: 400;
}

.marquee-track i {
  color: var(--amber);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 140px 0;
  position: relative;
}

.section-head {
  margin-bottom: 80px;
  max-width: 880px;
}

.section-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--sage);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.02;
  color: var(--forest);
  margin-bottom: 32px;
}

.section-title.light {
  color: var(--cream);
}

.section-title.light .ital {
  color: var(--mint);
}

.section-title .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
  background: var(--paper);
  border-top: 1px solid rgba(31, 74, 61, 0.06);
}

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

.service-card {
  padding: 44px 36px;
  background: var(--cream);
  border-radius: 12px;
  border-top: 3px solid var(--forest);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.service-card-feature {
  background: #E8D5B8;
  color: var(--ink);
  border-top-color: var(--amber);
}

.service-card-feature h3 { color: var(--forest); }
.service-card-feature .service-num { color: var(--sage); }
.service-card-feature p { color: var(--ink-soft); }
.service-card-feature li { color: var(--ink-soft); }
.service-card-feature li::before { background: var(--sage); }

.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--sage);
  line-height: 1;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.service-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.service-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 8px;
}

.service-card li {
  font-size: 14px;
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--ink-soft);
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 1px;
  background: var(--sage);
}

/* ===== SHOWCASE ===== */
.showcase {
  background: var(--forest);
  color: var(--cream);
  padding: 140px 0;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  top: -300px;
  left: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 130, 117, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.showcase .section-num { color: var(--mint); }

.showcase-head {
  max-width: 880px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.showcase-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: var(--cream);
}

.showcase-title .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
}

.showcase-stage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.showcase-video {
  width: 100%;
  border-radius: 16px;
  background: var(--forest-deep);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.showcase-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(184, 212, 199, 0.15);
}

.showcase-item:last-child { border-bottom: none; padding-bottom: 0; }

.showcase-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 10px;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

.showcase-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.showcase-item p {
  font-size: 14.5px;
  color: rgba(245, 240, 230, 0.75);
  line-height: 1.55;
}

/* ===== VALUES ===== */
.values {
  background: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.value {
  padding-top: 28px;
  border-top: 1px solid rgba(31, 74, 61, 0.15);
  position: relative;
}

.value-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--amber);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.value h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.value p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
}

/* ===== PROCESS ===== */
.process {
  background: var(--cream);
  border-top: 1px solid rgba(31, 74, 61, 0.06);
  border-bottom: 1px solid rgba(31, 74, 61, 0.06);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 0 0;
  border-top: 1px solid rgba(31, 74, 61, 0.2);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--sage);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--paper);
  padding: 120px 0;
}

.quote-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 500;
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.4;
  color: var(--forest);
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.quote-author strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--forest);
}

.quote-author span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ===== VISIT ===== */
.visit {
  background: var(--forest);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.visit::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 130, 117, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.visit .section-num { color: var(--mint); }

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.visit-lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--mint);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.visit-card {
  background: rgba(245, 240, 230, 0.05);
  border: 1px solid rgba(184, 212, 199, 0.18);
  border-radius: 16px;
  padding: 12px 36px;
  backdrop-filter: blur(8px);
}

.visit-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(184, 212, 199, 0.12);
  align-items: start;
}

.visit-row:last-child { border-bottom: none; }

.visit-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  opacity: 0.7;
  padding-top: 4px;
}

.visit-value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.5;
  font-weight: 400;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-deep);
  color: var(--mint);
  padding: 64px 0 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark .logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}

.footer-sub {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  opacity: 0.6;
  margin-top: 4px;
}

.footer-line {
  width: 80px;
  height: 1px;
  background: var(--mint);
  opacity: 0.3;
}

.footer-meta {
  display: flex;
  gap: 32px;
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0.03em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-video { max-width: 560px; }
  .services-grid { grid-template-columns: 1fr; }
  .showcase-stage { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .hero { padding: 120px 0 0; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  section { padding: 96px 0; }
  .section-head { margin-bottom: 56px; }
  .steps { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .visit-card { padding: 8px 24px; }
  .visit-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .marquee-track { font-size: 16px; gap: 24px; }
}

/* ===========================================
   ============= NEW COMPONENTS ==============
   =========================================== */

/* ===== PROMO BAR (site-wide) ===== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--forest-deep);
  color: var(--mint);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
  font-family: 'Outfit', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.4;
}

.promo-tag {
  background: var(--amber);
  color: #2c1f0a;
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-bar strong {
  color: var(--cream);
  font-weight: 500;
}

.promo-bar a {
  color: var(--amber);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.promo-bar a:hover { color: var(--cream); }

/* Push everything down for the promo bar */
.nav { top: 40px; }
.hero { padding-top: 200px; }
.page-hero { padding-top: 200px; }

@media (max-width: 600px) {
  .promo-bar { font-size: 11.5px; padding: 8px 12px; gap: 7px; }
  .promo-tag { font-size: 9.5px; padding: 2px 7px; letter-spacing: 0.14em; }
  .nav { top: 56px; }
  .hero { padding-top: 200px; }
  .page-hero { padding-top: 170px; }
}

/* ===== NAV ACTIVE STATE + MOBILE DRAWER ===== */
.nav-links a.active {
  color: var(--forest);
  font-weight: 500;
}
.nav-links a.active::after { width: 100% !important; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  margin: 5px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO LEAD FORM ===== */
.hero-form {
  background: var(--cream);
  padding: 36px 32px 32px;
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(31, 74, 61, 0.04),
    0 8px 24px rgba(31, 74, 61, 0.08),
    0 32px 64px rgba(31, 74, 61, 0.10);
  border-top: 4px solid var(--forest);
  position: relative;
}

.hero-form-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--amber);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.hero-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: -0.018em;
  line-height: 1.1;
}

.hero-form .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(31, 74, 61, 0.15);
  border-radius: 8px;
  background: var(--paper);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 74, 61, 0.08);
}

.form-row textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}

.hero-form .btn {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 15px 24px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* ===== HERO 3-COLUMN VARIANT (text + form) ===== */
.hero-inner.has-form {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--mint);
  display: grid;
  place-items: center;
  box-shadow:
    0 5px 0 0 var(--forest-deep),
    0 12px 32px rgba(31, 74, 61, 0.25);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.15s ease;
  pointer-events: none;
  text-decoration: none;
}

.float-wa.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: wa-pulse 4s ease-in-out infinite;
}

.float-wa:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 7px 0 0 var(--forest-deep),
    0 14px 38px rgba(31, 74, 61, 0.30);
}

.float-wa:active {
  transform: translateY(3px) scale(1);
  box-shadow:
    0 2px 0 0 var(--forest-deep),
    0 6px 16px rgba(31, 74, 61, 0.18);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: var(--mint);
}

@keyframes wa-pulse {
  0%, 90%, 100% {
    box-shadow:
      0 5px 0 0 var(--forest-deep),
      0 12px 32px rgba(31, 74, 61, 0.25),
      0 0 0 0 rgba(184, 212, 199, 0.4);
  }
  10% {
    box-shadow:
      0 5px 0 0 var(--forest-deep),
      0 12px 32px rgba(31, 74, 61, 0.25),
      0 0 0 18px rgba(184, 212, 199, 0);
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 96px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 212, 199, 0.30) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--sage);
  margin-bottom: 18px;
}

.page-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--forest);
  margin-bottom: 26px;
}

.page-hero-title .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.page-hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 23px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 36px;
}

.page-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PRODUCTS PAGE ===== */
.products-section {
  background: var(--paper);
  padding: 0 0 140px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 56px;
  justify-content: center;
  max-width: 800px;
}

.category-tab {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: inherit;
  box-shadow: 0 3px 0 0 rgba(31, 74, 61, 0.14);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}

.category-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 0 rgba(31, 74, 61, 0.18);
}

.category-tab.active {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 3px 0 0 var(--forest-deep);
}

.category-tab.active:hover {
  box-shadow: 0 4px 0 0 var(--forest-deep);
}

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

.product-card {
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  opacity: 1;
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(31, 74, 61, 0.92);
  color: var(--cream);
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-brand {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.product-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.product-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: auto;
}

.product-card .btn {
  align-self: flex-start;
  font-size: 13.5px;
  padding: 10px 18px;
  margin-top: 4px;
}

/* ===== BRANDS STRIP ===== */
.brands-strip {
  background: var(--cream);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid rgba(31, 74, 61, 0.06);
  border-bottom: 1px solid rgba(31, 74, 61, 0.06);
}

.brands-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
  font-weight: 500;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 44px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--forest);
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
}

.brands-list span {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.brands-list span:hover { opacity: 1; }

/* ===== COMPLAINTS GRID (repairs page) ===== */
.complaints {
  background: var(--paper);
  padding: 120px 0;
}

.complaints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.complaint-group {
  padding: 38px 32px;
  background: var(--cream);
  border-radius: 14px;
  border-top: 3px solid var(--forest);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.complaint-group:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.complaint-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 74, 61, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.complaint-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.6;
}

.complaint-group h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.complaint-group .complaint-sub {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

.complaint-list {
  list-style: none;
}

.complaint-list li {
  padding: 11px 0 11px 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(31, 74, 61, 0.07);
  line-height: 1.45;
}

.complaint-list li:last-child {
  border-bottom: none;
}

.complaint-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 1px;
  background: var(--amber);
}

/* ===== VIDEO CTA BLOCK ===== */
.video-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 48px;
  border-radius: 18px;
  text-align: center;
  margin: 0 auto;
  max-width: 920px;
  position: relative;
  overflow: hidden;
}

.video-cta::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 130, 117, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.video-cta::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.video-cta-inner {
  position: relative;
  z-index: 1;
}

.video-cta-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--mint);
  margin-bottom: 14px;
}

.video-cta h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.video-cta h3 .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
}

.video-cta p {
  font-size: 16px;
  color: rgba(245, 240, 230, 0.82);
  margin: 0 auto 32px;
  max-width: 540px;
  line-height: 1.55;
}

.video-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STORY 2-COL (about page) ===== */
.story-section {
  padding: 120px 0;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.story-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1.35;
  color: var(--forest);
  padding-left: 28px;
  border-left: 2px solid var(--amber);
  letter-spacing: -0.01em;
}

.story-text p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.story-text p:last-child { margin-bottom: 0; }

/* ===== REPAIR REQUEST MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 48, 40, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: var(--paper);
  max-width: 600px;
  width: 100%;
  border-radius: 18px;
  padding: 44px 40px 36px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--forest);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--forest);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
  font-family: inherit;
}

.modal-close:hover {
  background: var(--mint);
  transform: scale(1.08);
}

.modal-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--amber);
  margin-bottom: 8px;
}

.modal-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.modal-product {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.55;
}

.modal-product strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
  font-size: 17px;
}

.modal-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(31, 74, 61, 0.15);
  border-radius: 8px;
  background: var(--paper);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%231F4A3D' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.modal-card select:focus {
  outline: none;
  border-color: var(--forest);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(31, 74, 61, 0.08);
}

.modal-card .btn {
  width: 100%;
  margin-top: 6px;
}

/* ===== EXPRESS HOME-VISIT SERVICE CTA ===== */
.express-cta {
  background: var(--cream);
  border-radius: 20px;
  padding: 56px 56px;
  border-top: 4px solid var(--amber);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(31, 74, 61, 0.04),
    0 12px 32px rgba(31, 74, 61, 0.08);
}

.express-cta::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.20) 0%, transparent 65%);
  pointer-events: none;
}

.express-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #2c1f0a;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.express-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.express-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.express-text h2 .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.express-text p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: none;
}

.express-fee {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--forest);
  background: rgba(31, 74, 61, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 2px;
}

.express-features {
  list-style: none;
  margin-bottom: 0;
}

.express-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.express-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--forest);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2 6L5 9L10 3.5' stroke='%23F5F0E6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.express-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.express-cta-buttons .btn { width: 100%; }

@media (max-width: 900px) {
  .express-cta { padding: 40px 28px; }
  .express-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal-card {
  max-width: 980px !important;
  padding: 0 !important;
  overflow: hidden;
}

.product-modal-card .modal-close {
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(6px);
  z-index: 5;
}

.pm-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  max-height: 90vh;
}

.pm-image-wrap {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.pm-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pm-content {
  padding: 48px 44px 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.pm-brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 8px;
}

.pm-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pm-desc {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 28px;
}

.pm-section {
  margin-bottom: 26px;
}

.pm-section h4 {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(31, 74, 61, 0.1);
  padding-bottom: 8px;
}

.pm-section ul {
  list-style: none;
}

.pm-section ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.pm-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 1px;
  background: var(--amber);
}

.pm-section dl {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 8px 24px;
  font-size: 14px;
}

.pm-section dt {
  color: var(--muted);
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid rgba(31, 74, 61, 0.06);
}

.pm-section dd {
  color: var(--ink);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(31, 74, 61, 0.06);
}

.pm-section dl > *:nth-last-child(-n+2) {
  border-bottom: none;
}

.pm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

@media (max-width: 820px) {
  .product-modal-card { max-height: 92vh; }
  .pm-grid { grid-template-columns: 1fr; max-height: 92vh; }
  .pm-image-wrap { aspect-ratio: 16 / 10; }
  .pm-content { padding: 32px 26px 28px; max-height: none; }
  .pm-name { font-size: 26px; }
  .pm-section dl { grid-template-columns: 1fr; gap: 0; }
  .pm-section dt { padding-bottom: 0; border-bottom: none; color: var(--sage); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
  .pm-section dd { margin-bottom: 8px; }
  .pm-actions .btn { flex: 1; min-width: 0; }
}

/* ===== PROBLEM CHECKLIST inside modal ===== */
.checklist-intro {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Fraunces', serif;
  margin-bottom: 8px;
}

.problem-checklist {
  display: grid;
  gap: 2px;
  background: var(--cream);
  border: 1px solid rgba(31, 74, 61, 0.08);
  border-radius: 10px;
  padding: 6px 14px;
  max-height: 240px;
  overflow-y: auto;
}

.problem-checklist.error {
  border-color: #c8553d;
  box-shadow: 0 0 0 3px rgba(200, 85, 61, 0.15);
  animation: shake 0.45s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.problem-checklist:empty::before {
  content: 'Loading common problems...';
  display: block;
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
  border-bottom: 1px solid rgba(31, 74, 61, 0.06);
  transition: color 0.2s ease;
  position: relative;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item:hover {
  color: var(--ink);
}

.checklist-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.check-mark {
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 1.5px solid var(--sage);
  background: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}

.check-mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.2s var(--ease);
}

.checklist-item input:checked ~ .check-mark {
  background: var(--forest);
  border-color: var(--forest);
}

.checklist-item input:checked ~ .check-mark::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.checklist-item:hover .check-mark {
  border-color: var(--forest);
}

.checklist-item input:focus-visible ~ .check-mark {
  box-shadow: 0 0 0 3px rgba(31, 74, 61, 0.15);
}

.check-label {
  flex: 1;
}

.checklist-other-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  background: transparent;
  border: none;
  color: var(--sage);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13.5px;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.checklist-other-toggle:hover { color: var(--forest); }

/* Make complaint cards feel clickable */
.complaint-group {
  cursor: pointer;
  position: relative;
}

.complaint-group::after {
  content: '→';
  position: absolute;
  top: 36px;
  right: 28px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--sage);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.complaint-group:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .modal-card { padding: 36px 24px 28px; border-radius: 14px; }
  .modal-card h3 { font-size: 24px; }
  .complaint-group::after { display: none; }
}

/* Founder photo styles live in about.html <style> block — see .founder-portrait + .founder-photo there */

/* ===== REVIEWS SECTION (home page) ===== */
.reviews {
  background: var(--paper);
  padding: 130px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-top: 3px solid var(--amber);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  line-height: 1;
}

.review-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}

.review-text::before {
  content: '"';
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 0.4;
  color: var(--amber);
  margin-bottom: 14px;
  font-style: normal;
  font-weight: 500;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 74, 61, 0.1);
}

.review-author strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--forest);
  letter-spacing: -0.005em;
}

.review-author span {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.reviews-cta {
  text-align: center;
  padding-top: 24px;
}

.reviews-cta p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-card { padding: 28px 24px 24px; }
}

/* ===== QUERIES SECTION (home page) ===== */
.queries-section {
  background: var(--cream);
  padding: 130px 0;
  border-top: 1px solid rgba(31, 74, 61, 0.06);
}

.queries-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .queries-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== EXPANDED FOOTER (overrides original) ===== */
.footer {
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: start;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(184, 212, 199, 0.75);
  line-height: 1.5;
  max-width: 320px;
}

.footer-address {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(184, 212, 199, 0.65);
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--mint);
  margin-bottom: 18px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(184, 212, 199, 0.7);
}

.footer-col a {
  color: inherit;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(184, 212, 199, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(184, 212, 199, 0.55);
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: 0.03em;
}

/* ===== NEW MOBILE RULES ===== */
@media (max-width: 1024px) {
  .hero-inner.has-form { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .complaints-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-brand { grid-column: 1 / -1; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 360px);
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 36px 36px;
    gap: 8px;
    transition: right 0.4s var(--ease);
    box-shadow: -24px 0 64px rgba(0, 0, 0, 0.08);
    z-index: 105;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(31, 74, 61, 0.08);
  }
  .nav-links a.nav-cta {
    margin-top: 16px;
    width: auto;
    padding: 12px 24px;
    border-bottom: none;
  }

  .hero-form { padding: 28px 24px; }
  .hero-form h3 { font-size: 24px; }
  .form-row-split { grid-template-columns: 1fr; }

  .page-hero { padding: 120px 0 64px; }

  .products-grid { grid-template-columns: 1fr; }
  .complaints-grid { grid-template-columns: 1fr; }
  .category-tabs { gap: 8px; }
  .category-tab { padding: 9px 16px; font-size: 13px; }

  .video-cta { padding: 48px 28px; border-radius: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }

  .float-wa { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .float-wa svg { width: 26px; height: 26px; }

  .brands-list { gap: 14px 28px; font-size: 19px; }
  .story-quote { font-size: 24px; padding-left: 20px; }
}
