/* ============================================
   HEALTHY OVENS PLUS — Stylesheet v3
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --green: #3a8c3f;
  --green-dark: #1e5c22;
  --green-deep: #0f3512;
  --green-light: #d4edda;
  --green-mid: #52b788;
  --red: #cc2200;
  --orange: #d96c2d;
  --orange2: #e8833f;
  --cream: #f9f7f4;
  --cream2: #f2ede6;
  --text: #1a1a1a;
  --text2: #3d3d3d;
  --text3: #666;
  --white: #ffffff;
  --shadow-xs: 0 1px 4px rgba(0,0,0,.07);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.11);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.18);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --nav-h: 76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: #f0a050; }
p { color: var(--text2); }

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.eyebrow.light { color: #a8d5b0; }
.eyebrow.light::before { background: #a8d5b0; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--green); color: white; box-shadow: 0 4px 18px rgba(58,140,63,.3); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,140,63,.4); }
.btn-orange { background: var(--orange); color: white; box-shadow: 0 4px 18px rgba(217,108,45,.3); }
.btn-orange:hover { background: #c05a22; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,108,45,.4); }
.btn-white { background: white; color: var(--green-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: white; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ---- Layout ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { margin-bottom: 1rem; color: var(--green-dark); }
.section-head p { font-size: 1.05rem; color: var(--text3); }

/* ---- Animations ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ============================================
   TOP BAR
============================================ */
.topbar {
  background: var(--green-deep);
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.topbar a {
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color .2s;
}
.topbar a:hover { color: #a8d5b0; }
.topbar svg { width: 13px; height: 13px; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

/* LOGO — the key fix */
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all .3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text2);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-light); }
.nav-links .nav-book {
  background: var(--green);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.nav-links .nav-book:hover { background: var(--green-dark); color: white; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,35,12,0.85) 0%, rgba(15,53,18,0.7) 50%, rgba(20,20,20,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-text { max-width: 620px; }
.hero-text .eyebrow { color: #a8d5b0; margin-bottom: 1.25rem; }
.hero-text .eyebrow::before { background: #a8d5b0; }
.hero-text h1 { color: white; margin-bottom: 1.25rem; }
.hero-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-width: 150px;
}
.hs-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hs-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar { background: var(--green-dark); }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-l {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   INTRO SPLIT
============================================ */
.intro-section { background: var(--cream); }
.split-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.split-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.img-badge-icon {
  width: 38px; height: 38px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.img-badge-icon svg { width: 20px; height: 20px; }
.img-badge strong { font-size: 0.88rem; color: var(--green-dark); display: block; }
.img-badge p { font-size: 0.78rem; color: var(--text3); margin: 0; }

.split-text h2 { color: var(--green-dark); margin-bottom: 1rem; }
.split-text p { color: var(--text3); line-height: 1.8; margin-bottom: 1rem; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}
.pill svg { width: 14px; height: 14px; color: var(--green); }

/* ============================================
   SERVICES PREVIEW
============================================ */
.services-preview { background: var(--cream2); }
.service-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .28s, box-shadow .28s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-photo { position: relative; height: 220px; overflow: hidden; }
.sc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .sc-photo img { transform: scale(1.06); }
.sc-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sc-body { padding: 1.75rem; }
.sc-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
}
.sc-icon svg { width: 22px; height: 22px; }
.sc-body h3 { color: var(--green-dark); margin-bottom: 0.6rem; }
.sc-body p { font-size: 0.88rem; color: var(--text3); line-height: 1.7; margin-bottom: 1.25rem; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  transition: gap .2s;
}
.sc-link:hover { gap: 0.7rem; }
.sc-link svg { width: 15px; height: 15px; }

/* ============================================
   HOW IT WORKS
============================================ */
.hiw { background: var(--green-deep); }
.hiw .section-head h2 { color: white; }
.hiw .section-head p { color: rgba(255,255,255,.6); }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background .3s;
}
.step-card:hover { background: rgba(255,255,255,.1); }
.step-num {
  width: 56px; height: 56px;
  background: rgba(58,140,63,.3);
  border: 2px solid rgba(58,140,63,.5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #a8d5b0;
}
.step-num svg { width: 26px; height: 26px; }
.step-card h4 { color: white; margin-bottom: 0.6rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ============================================
   OUR WORK
============================================ */
.our-work { background: var(--cream); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.work-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.work-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.work-wide {
  grid-column: span 2;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,35,12,0.92) 0%, transparent 100%);
  padding: 2.5rem 1.25rem 1.25rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all .3s ease;
}
.work-item:hover .work-label { transform: translateY(0); opacity: 1; }
.work-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.work-label p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.work-cta { text-align: center; }

/* ============================================
   CTA BAND
============================================ */
.cta-band { background: var(--green); padding: 4rem 1.5rem; }
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 0.5rem; }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   TRUST
============================================ */
.trust-section { background: var(--cream2); }
.trust-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .28s, box-shadow .28s;
  text-align: center;
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tc-icon {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
}
.tc-icon svg { width: 30px; height: 30px; }
.trust-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.87rem; color: var(--text3); line-height: 1.65; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--green-deep); color: rgba(255,255,255,.55); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding: 5rem 0 4rem;
}
.footer-brand {}
.footer-logo-link { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  background: white;
  border-radius: 8px;
  padding: 6px 10px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: all .2s;
}
.soc-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.soc-btn svg { width: 17px; height: 17px; }
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul a:hover { color: #a8d5b0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--green-mid); }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-item a:hover { color: #a8d5b0; }
.footer-hours { font-size: 0.88rem; color: rgba(255,255,255,.45); margin-top: 1rem; }
.footer-hours strong { color: rgba(255,255,255,.7); display: block; margin-bottom: 0.25rem; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.25);
}

/* ============================================
   PAGE HERO (interior pages)
============================================ */
.page-hero {
  background: var(--green-dark);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58,140,63,.2) 0%, transparent 70%);
}
.page-hero .eyebrow { justify-content: center; color: #a8d5b0; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { color: white; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.8rem;
  color: rgba(255,255,255,.35); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: #a8d5b0; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================
   ABOUT PAGE
============================================ */
.about-story { background: var(--cream); }
.about-values { background: var(--cream2); }
.value-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  border-left: 4px solid var(--green);
}
.val-icon { width: 44px; height: 44px; color: var(--green); margin-bottom: 1rem; }
.val-icon svg { width: 44px; height: 44px; }
.value-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text3); }
.team-section { background: var(--cream); }
.team-promise {
  background: var(--green-dark);
  border-radius: var(--r-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: white;
}
.team-promise h2 { color: white; }
.team-promise p { color: rgba(255,255,255,.7); line-height: 1.8; }
.promise-list { list-style: none; margin-top: 1.5rem; }
.promise-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 0.92rem;
  color: rgba(255,255,255,.75);
}
.promise-list li:last-child { border-bottom: none; }
.promise-list li svg { width: 18px; height: 18px; color: #a8d5b0; flex-shrink: 0; margin-top: 2px; }
.promise-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-xl); }
.promise-img img { width: 100%; height: 100%; }

/* ============================================
   SERVICES PAGE
============================================ */
.services-full { background: var(--cream); }
.serv-card-full {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .3s;
}
.serv-card-full:hover { box-shadow: var(--shadow-lg); }
.serv-card-full.reverse { direction: rtl; }
.serv-card-full.reverse > * { direction: ltr; }
.serv-photo { height: 360px; overflow: hidden; }
.serv-photo img { width: 100%; height: 100%; transition: transform .5s; }
.serv-card-full:hover .serv-photo img { transform: scale(1.05); }
.serv-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.serv-info .sc-icon { margin-bottom: 1.25rem; }
.serv-info h3 { color: var(--green-dark); font-size: 1.7rem; margin-bottom: 1rem; }
.serv-info p { color: var(--text3); line-height: 1.8; margin-bottom: 1rem; }
.incl-list { margin: 1.25rem 0; }
.incl-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text2);
  padding: 0.3rem 0; font-weight: 500;
}
.incl-list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.pricing-section { background: var(--cream2); }
.price-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,.05);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--green-dark); border-color: var(--green); color: white; }
.pc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.price-card:not(.featured) .pc-icon { background: var(--green-light); color: var(--green); }
.price-card.featured .pc-icon { background: rgba(255,255,255,.15); color: #a8d5b0; }
.pc-icon svg { width: 28px; height: 28px; }
.price-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin-bottom: 0.5rem; }
.price-card:not(.featured) h4 { color: var(--green-dark); }
.price-card.featured h4 { color: white; }
.pc-price { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--green); margin: 0.75rem 0; }
.price-card.featured .pc-price { color: #a8d5b0; }
.price-card p { font-size: 0.85rem; }
.price-card:not(.featured) p { color: var(--text3); }
.price-card.featured p { color: rgba(255,255,255,.65); }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { color: var(--green-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text3); line-height: 1.8; margin-bottom: 2rem; }
.cinfo-items { display: flex; flex-direction: column; gap: 1.25rem; }
.cinfo-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: white; border-radius: var(--r-md);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow-xs);
}
.cinfo-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.cinfo-icon svg { width: 20px; height: 20px; }
.cinfo-item h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); margin-bottom: 0.25rem; }
.cinfo-item p, .cinfo-item a { font-size: 0.95rem; font-weight: 600; color: var(--green-dark); }
.cinfo-item a:hover { color: var(--green); }
.hours-card { background: var(--green-dark); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }
.hours-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: white; margin-bottom: 1rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 0.87rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,.5); }
.hours-row span:last-child { color: white; font-weight: 600; }
.hours-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(58,140,63,.2); color: #a8d5b0;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  border: 1px solid rgba(58,140,63,.3); margin-top: 1rem;
}
.hours-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green-mid); }
.contact-form-wrap { background: white; border-radius: var(--r-xl); padding: 3rem; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { color: var(--green-dark); margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text3); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid #e0d9d0;
  border-radius: var(--r-sm);
  outline: none;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,140,63,.1);
  background: white;
}
.form-note { font-size: 0.82rem; color: var(--green); text-align: center; margin-top: 0.75rem; font-weight: 600; min-height: 1.2em; }

/* ============================================
   PRICE CALCULATOR MODAL
============================================ */
.pc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pc-overlay.open { opacity: 1; visibility: visible; }

.pc-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  /* KEY: use flex column so footer is always visible */
  display: flex;
  flex-direction: column;
  /* height is constrained, body scrolls inside */
  height: min(92vh, 700px);
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.pc-overlay.open .pc-modal { transform: translateY(0) scale(1); }

.pc-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: rgba(0,0,0,0.06);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #555;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2; line-height: 1;
  flex-shrink: 0;
}
.pc-close:hover { background: rgba(0,0,0,0.12); }

/* HEADER — never shrinks */
.pc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem 1.1rem;
  border-bottom: 1px solid #f0ede8;
  flex-shrink: 0;
}
.pc-header-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.pc-header-icon svg { width: 22px; height: 22px; }
.pc-header h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--green-deep); margin-bottom: 0.1rem; }
.pc-header p { font-size: 0.8rem; color: var(--text3); }

/* BODY — scrolls, takes up remaining space */
.pc-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 0; /* critical for flex scroll */
}
.pc-body::-webkit-scrollbar { width: 3px; }
.pc-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

.pc-cat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.pc-cat-label svg { width: 13px; height: 13px; }
.pc-services { display: flex; flex-direction: column; gap: 0.45rem; }

.pc-item {
  display: flex; align-items: center; gap: 0.85rem;
  background: #faf9f7; border: 1.5px solid #eee;
  border-radius: 11px; padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  user-select: none;
}
.pc-item:hover { border-color: var(--green-mid); background: #f0faf3; }
.pc-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.pc-item:has(input:checked) { border-color: var(--green); background: #edf7f0; box-shadow: 0 0 0 3px rgba(58,140,63,0.09); }
.pc-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.pc-item-name { font-size: 0.88rem; font-weight: 600; color: #1a1a1a; }
.pc-item-sub { font-size: 0.75rem; color: var(--text3); }
.pc-item-price { font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.95rem; color: var(--green-dark); flex-shrink: 0; }

/* FOOTER — never shrinks, always visible */
.pc-footer {
  border-top: 1px solid #f0ede8;
  padding: 1rem 2rem 1.5rem;
  background: #fdfcfb;
  flex-shrink: 0;
}
.pc-total-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.pc-total-label { font-size: 0.8rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }
.pc-total-amount { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 900; color: var(--green-dark); }
.pc-surcharge-note {
  display: flex; align-items: flex-start; gap: 0.45rem;
  font-size: 0.75rem; color: #c1540a;
  background: #fff5ef; border: 1px solid #f5ddd0;
  border-radius: 8px; padding: 0.55rem 0.8rem;
  margin-bottom: 1rem; line-height: 1.5;
}
.pc-surcharge-note svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 1px; }

.pc-actions { display: flex; gap: 0.65rem; }
.pc-reset-btn {
  background: #f0ede8; color: var(--text2); border: none;
  flex-shrink: 0; padding: 0.8rem 1.25rem;
  font-size: 0.85rem; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  cursor: pointer; transition: background 0.2s;
}
.pc-reset-btn svg { width: 14px; height: 14px; }
.pc-reset-btn:hover { background: #e5e0d8; }
.pc-proceed-btn { flex: 1; justify-content: center; font-size: 0.9rem; padding: 0.8rem 1rem; }

/* ---- MOBILE: slides up from bottom ---- */
@media (max-width: 640px) {
  .pc-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .pc-modal {
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 100%;
    /* On mobile give it a fixed height based on viewport */
    height: auto;
    max-height: 88svh;
    transform: translateY(100%);
  }
  .pc-overlay.open .pc-modal {
    transform: translateY(0);
  }
  .pc-header {
    padding: 1.1rem 1.1rem 0.9rem;
    gap: 0.75rem;
  }
  .pc-header-icon { width: 38px; height: 38px; border-radius: 10px; }
  .pc-header-icon svg { width: 18px; height: 18px; }
  .pc-header h3 { font-size: 1.05rem; }
  .pc-header p { font-size: 0.75rem; }
  .pc-close { top: 0.85rem; right: 1rem; width: 30px; height: 30px; font-size: 1.2rem; }

  .pc-body {
    padding: 0.9rem 1.1rem;
    gap: 1rem;
  }
  .pc-item {
    padding: 0.7rem 0.8rem;
    gap: 0.7rem;
    border-radius: 10px;
  }
  .pc-item input[type="checkbox"] { width: 20px; height: 20px; }
  .pc-item-name { font-size: 0.83rem; }
  .pc-item-sub { font-size: 0.71rem; }
  .pc-item-price { font-size: 0.88rem; }

  .pc-footer {
    padding: 0.85rem 1.1rem 1.25rem;
    /* Extra bottom padding for iOS home bar */
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  }
  .pc-total-amount { font-size: 1.7rem; }
  .pc-surcharge-note { font-size: 0.72rem; padding: 0.45rem 0.7rem; margin-bottom: 0.85rem; }

  .pc-actions {
    flex-direction: row;
    gap: 0.55rem;
  }
  .pc-reset-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  .pc-proceed-btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.75rem 0.75rem;
    justify-content: center;
    text-align: center;
  }
  /* Hide reset text on very small phones, show only icon */
}

@media (max-width: 360px) {
  .pc-proceed-btn { font-size: 0.8rem; }
  .pc-reset-btn span { display: none; }
}


/* ============================================
   OUR WORK — BENTO GRID (matches reference)
============================================ */
.work-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.wb-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 480px;
  background: #111;
}
.wb-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.wb-hero:hover img { transform: scale(1.04); }

.wb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.wb-cell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  min-height: 220px;
}
.wb-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.wb-cell:hover img { transform: scale(1.05); }

/* Labels */
.wb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,35,12,0.88) 0%, rgba(10,35,12,0.4) 60%, transparent 100%);
  padding: 1.5rem 1rem 0.85rem;
}
.wb-label-bottom {
  padding: 2.5rem 1.25rem 1.25rem;
}
.wb-label .work-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.35rem;
}
.wb-label p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .work-bento {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .wb-hero {
    min-height: 280px;
    border-radius: 14px;
  }
  .wb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .wb-cell {
    min-height: 150px;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .wb-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wb-cell {
    min-height: 130px;
  }
}


/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Full audit — all components, all pages
============================================ */

/* ---- TABLET: 1024px ---- */
@media (max-width: 1024px) {

  /* Layout */
  .section { padding: 4rem 1.5rem; }
  .grid-2 { gap: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { flex-direction: row; gap: 1rem; }
  .hero-stat { flex: 1; min-width: unset; }

  /* Stats bar */
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }

  /* How it works */
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3.5rem 0 3rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* About — promise section */
  .team-promise { grid-template-columns: 1fr; padding: 3rem; }
  .promise-img { display: none; }

  /* Services page */
  .serv-card-full { grid-template-columns: 1fr 1fr; }
  .serv-photo { height: 300px; }
  .serv-info { padding: 2rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---- MOBILE: 768px ---- */
@media (max-width: 768px) {

  :root { --nav-h: 64px; }

  /* === TOPBAR === */
  .topbar {
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  /* === NAVBAR === */
  .navbar { padding: 0 1.25rem; }
  .nav-logo-img { height: 44px; max-width: 170px; }

  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Nav drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100dvh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 1.75rem 2rem;
    gap: 0.2rem;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    width: 100%;
  }
  .nav-links .nav-book {
    margin: 1rem 0 0;
    text-align: center;
    padding: 0.85rem 1rem;
  }

  /* === HERO === */
  .hero { min-height: 100dvh; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-text h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-text p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats {
    flex-direction: row;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
  .hero-stat {
    flex: 1;
    padding: 0.85rem 0.75rem;
    text-align: center;
    min-width: 0;
  }
  .hs-num { font-size: 1.5rem; }
  .hs-lbl { font-size: 0.62rem; }

  /* === STATS BAR === */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 0.75rem;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-n { font-size: 1.6rem; }

  /* === SECTION PADDING === */
  .section { padding: 3rem 1.25rem; }
  .section-head { margin-bottom: 2.5rem; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* === INTRO SPLIT === */
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .split-img-wrap { aspect-ratio: 16/10; border-radius: var(--r-lg); }
  .split-text p { font-size: 0.92rem; }

  /* === SERVICES CARDS (home) === */
  .grid-3 { grid-template-columns: 1fr; gap: 1.25rem; }
  .sc-photo { height: 200px; }

  /* === HOW IT WORKS === */
  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-card { padding: 1.5rem 1.25rem; }
  .step-num { width: 48px; height: 48px; }
  .step-num svg { width: 22px; height: 22px; }

  /* === TRUST CARDS === */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-card { padding: 1.5rem 1.25rem; }
  .tc-icon { width: 52px; height: 52px; border-radius: 14px; }

  /* === CTA BAND === */
  .cta-band { padding: 2.5rem 1.25rem; }
  .cta-band-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .cta-band h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-band-btns { flex-direction: column; width: 100%; gap: 0.75rem; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }

  /* === PAGE HERO (inner pages) === */
  .page-hero { padding: 3.5rem 1.25rem 3rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 3rem); }
  .page-hero p { font-size: 0.95rem; }

  /* === ABOUT PAGE === */
  .about-values .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .value-card { padding: 1.5rem; }
  .team-promise { padding: 2rem 1.5rem; border-radius: var(--r-lg); }
  .team-promise h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .promise-list li { font-size: 0.88rem; }

  /* === SERVICES PAGE === */
  .serv-card-full,
  .serv-card-full.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .serv-card-full.reverse > * { direction: ltr; }
  .serv-photo { height: 220px; }
  .serv-info { padding: 1.5rem; }
  .serv-info h3 { font-size: 1.4rem; }
  .pricing-section .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .price-card { padding: 1.5rem; }
  .pc-price { font-size: 1.8rem; }

  /* === CONTACT PAGE === */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .contact-info p { margin-bottom: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; border-radius: var(--r-lg); }
  .contact-form-wrap h3 { font-size: 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cinfo-item { padding: 1rem 1.25rem; gap: 0.85rem; }
  .cinfo-icon { width: 40px; height: 40px; }

  /* === FOOTER === */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }
  .footer-brand { grid-column: 1; }
  .footer-logo-img { height: 44px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-col { padding-bottom: 0; }
  .footer-col h5 { margin-bottom: 0.85rem; }
  .footer-col ul { gap: 0.5rem; }
  .footer-bottom { padding: 1.25rem 0; font-size: 0.75rem; }

  /* === BUTTONS global === */
  .btn-full,
  .btn[style*="width:100%"] { width: 100%; justify-content: center; }
}

/* ---- SMALL MOBILE: 480px ---- */
@media (max-width: 480px) {

  /* Hero stats — stack on very small */
  .hero-stats { flex-direction: column; gap: 0.5rem; }
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.75rem 1rem;
  }
  .hs-num { font-size: 1.4rem; margin-bottom: 0; }

  /* How it works — single column */
  .hiw-steps { grid-template-columns: 1fr; }
  .step-card { display: flex; align-items: flex-start; gap: 1rem; text-align: left; padding: 1.25rem; }
  .step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; }

  /* Trust — single column */
  .grid-4 { grid-template-columns: 1fr; }
  .trust-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem;
  }
  .tc-icon { margin: 0; flex-shrink: 0; width: 46px; height: 46px; }

  /* About values — single col already, just compact */
  .value-card { padding: 1.25rem; }

  /* Topbar — stack */
  .topbar { flex-direction: column; align-items: center; gap: 0.35rem; padding: 0.6rem; }

  /* Footer cols inline */
  .footer-main { gap: 1.75rem; }
}

/* ---- EXTRA SMALL: 360px ---- */
@media (max-width: 360px) {
  .hero-text h1 { font-size: 1.9rem; }
  .hero-btns .btn { font-size: 0.85rem; padding: 0.8rem 1.25rem; }
  .section { padding: 2.5rem 1rem; }
  .navbar { padding: 0 1rem; }
}
