/* ── TOKENS ──────────────────────────────────────────────────────────────────── */
:root {
  --green-deep:  #1a2e1a;
  --green-mid:   #2d5a27;
  --green-light: #4a7c59;
  --sage:        #8fac8a;
  --cream:       #faf8f4;
  --warm-white:  #ffffff;
  --earth:       #c4a882;
  --earth-light: #e8ddd0;
  --text:        #1c1c1c;
  --text-muted:  #5a5a5a;
  --border:      #e4e0d8;
  --green-pale:  #eef5eb;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);

  --nav-h: 80px;
  --section-gap: 5rem;
}

/* ── RESET ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── LAYOUT ──────────────────────────────────────────────────────────────────── */
.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}
.section { padding: var(--section-gap) 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.hidden { display: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; margin-top: 0.75rem; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card--featured .btn-primary:hover { background: var(--green-light); border-color: var(--green-light); }
.hero .btn-primary { background: white; color: var(--green-deep); border-color: white; }
.hero .btn-primary:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover { background: var(--green-pale); transform: translateY(-1px); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }
.nav-links .btn-sm {
  background: var(--green-mid);
  color: white;
  box-shadow: 0 0 0 0 rgba(45,90,39,0.4);
  animation: nav-pulse 2.8s ease-in-out infinite;
}
.nav-links .btn-sm:hover { background: var(--green-light); animation: none; }
@keyframes nav-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,90,39,0.35); }
  60%  { box-shadow: 0 0 0 6px rgba(45,90,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,90,39,0); }
}
.btn-full { width: 100%; }
.btn.active { background: var(--green-mid); color: white; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-wrap.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-mid); }
.nav-links a.active-link {
  color: var(--green-deep);
  font-weight: 600;
  position: relative;
}
.nav-links a.active-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 3px;
  border-radius: 2px;
  background: var(--green-deep);
  opacity: 0.8;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.65rem 1rem; }
  .nav-links .btn { text-align: center; margin-top: 0.5rem; }
}

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(45,90,39,0.35) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  max-width: 720px;
}
.hero-eyebrow {
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-headline {
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-headline em {
  color: var(--sage);
  font-style: normal;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.hero-trust span { display: flex; align-items: center; gap: 0.5rem; }
.trust-logo { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

/* ── APPROACH / TRIFECTA ─────────────────────────────────────────────────────── */
.approach { background: var(--cream); }
.trifecta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .trifecta { grid-template-columns: 1fr; } }
.trifecta-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.trifecta-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.trifecta-icon {
  font-size: 1.1rem;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.trifecta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}
.trifecta-card p { font-size: 0.95rem; }

/* ── SERVICES ────────────────────────────────────────────────────────────────── */
.services { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--cream);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card--featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
}
.service-card--featured p,
.service-card--featured .service-name,
.service-card--featured .service-price,
.service-card--featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card--featured .service-tag { color: var(--sage); }
.service-card--featured .service-price strong { color: white; }
.service-badge {
  position: absolute;
  top: -0.75rem; right: 1.5rem;
  background: var(--earth);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}
.service-price { font-size: 1rem; color: var(--text-muted); }
.service-price strong { font-size: 1.25rem; color: var(--text); }
.service-desc { font-size: 0.9rem; color: var(--text-muted); }
.service-list {
  display: flex; flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  list-style: disc;
  padding-left: 1.1rem;
}
.service-list li { font-size: 0.9rem; color: var(--text-muted); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.75); }
.service-card--featured .service-list { list-style-color: rgba(255,255,255,0.5); }

/* ── HOW IT WORKS ────────────────────────────────────────────────────────────── */
.how-it-works { background: var(--cream); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--green-light);
  opacity: 0.4;
  line-height: 1;
}
.step-body h3 { color: var(--green-deep); margin-bottom: 0.5rem; }
.step-body p  { font-size: 0.95rem; }
.step-divider {
  width: 1px;
  min-height: 120px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}
.how-cta { text-align: center; }
@media (max-width: 768px) {
  .steps { flex-direction: column; gap: 2rem; }
  .step  { padding: 0; }
  .step-divider { width: 100%; height: 1px; min-height: unset; }
}

/* ── WHY URBAN OASIS ─────────────────────────────────────────────────────────── */
.why-us { background: white; }
.why-us-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .why-us-inner { grid-template-columns: 1fr; gap: 3rem; } }
.why-us-text p { margin-bottom: 1.5rem; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.why-list strong { color: var(--text); display: block; margin-bottom: 0.2rem; }
.why-list p { font-size: 0.9rem; margin-bottom: 0; }
.why-us-visual {
  display: block;
}
.why-visual-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-visual-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-visual-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.why-visual-stat {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: 0.15rem;
}
.why-visual-label { font-size: 0.8rem; color: var(--text-muted); }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: #d4a017; font-size: 1rem; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--green-mid);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testimonial-author span  { font-size: 0.8rem; color: var(--text-muted); }

/* ── CONTACT FORM ────────────────────────────────────────────────────────────── */
.contact { background: white; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }
.contact-text p { margin-bottom: 1.5rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-details li { font-size: 0.9rem; color: var(--text-muted); }
.booking-steps { list-style: none; padding: 0; margin: 0; }
.booking-steps li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-muted);
}
.booking-steps li:last-child { border-bottom: none; }
.booking-steps .step-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.booking-steps strong { display: block; color: var(--text); margin-bottom: 0.15rem; }
.step-logo { height: 22px; width: auto; filter: brightness(0) saturate(0) brightness(0.35); opacity: 0.75; }
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-light); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a5a5a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer { background: var(--green-deep); color: white; padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-brand .logo { color: white; font-size: 1.3rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand .logo-img { height: 44px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--sage); color: var(--sage); }
.footer-links { display: flex; gap: 3rem; }
.footer-col h4 { color: white; font-size: 0.8rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sage); }
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage); }

/* ── IMAGES ──────────────────────────────────────────────────────────────────── */

/* Logo image */
.logo-img { height: 64px; width: auto; display: block; }


/* Hero split image */
.hero-image-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden;
  pointer-events: none;
}
.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-deep) 0%, rgba(26,46,26,0.55) 35%, transparent 75%);
  z-index: 1;
}
.hero-image-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 860px) { .hero-image-panel { display: none; } }

/* Approach photo strip */
.approach-photo {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
}
.approach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* Service card image header */
.service-card-img {
  margin: -2rem -2rem 1.5rem;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* How It Works image */
.how-image-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 500px;
}
.how-image-wrap img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Why Us photo with stats overlay */
.why-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-photo-wrap > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why-photo-stats {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.why-photo-stats .why-visual-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.1rem 1rem;
}

/* Testimonials scene image */
.testimonials-scene {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
}
.testimonials-scene img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }

/* ── APPROACH CAROUSEL ───────────────────────────────────────────────────────── */
.approach-carousel {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 380px;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}
@media (max-width: 600px) { .approach-carousel { height: 240px; } }

/* ── CLIENT JOURNEY STEPS ────────────────────────────────────────────────────── */
.journey-steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.journey-step {
  text-align: center;
  padding: 0 0.4rem;
  position: relative;
  z-index: 1;
}
.journey-num {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--green-mid);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 auto 0.9rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.journey-step h4 {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.journey-step p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .journey-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .journey-steps::before { display: none; }
  .journey-step h4 { font-size: 0.9rem; }
  .journey-step p { font-size: 0.85rem; }
}
@media (max-width: 560px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ── TESTIMONIALS SCROLL ─────────────────────────────────────────────────────── */
.testimonials-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  cursor: grab;
}
.testimonials-scroll:active { cursor: grabbing; }
.testimonials-scroll::-webkit-scrollbar { height: 4px; }
.testimonials-scroll::-webkit-scrollbar-track { background: transparent; }
.testimonials-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.testimonials-scroll .testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}
@media (max-width: 600px) {
  .testimonials-scroll .testimonial-card { flex: 0 0 calc(100vw - 4rem); }
}

/* ── TESTIMONIALS ARROWS ─────────────────────────────────────────────────────── */
.testimonials-wrap {
  position: relative;
}
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--green-deep);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-top: -0.5rem; /* offset for scroll padding */
}
.testimonials-arrow:hover { background: var(--green-pale); border-color: var(--green-light); transform: translateY(-50%) scale(1.08); }
.testimonials-arrow--prev { left: -20px; }
.testimonials-arrow--next { right: -20px; }
@media (max-width: 600px) {
  .testimonials-arrow--prev { left: -8px; }
  .testimonials-arrow--next { right: -8px; }
}

/* ── FOOTER CHIPS ────────────────────────────────────────────────────────────── */
.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.footer-chip {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}
.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  display: inline-block;
  margin-bottom: 0.6rem;
}

/* ── MOBILE IMPROVEMENTS ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-gap: 3rem; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-inner { padding: calc(var(--nav-h) + 2rem) 0 3rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 0.65rem; }
  .service-card { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .booking-layout { gap: 2rem; }
  .why-photo-wrap > img { min-height: 380px; }
  .why-photo-stats { grid-template-columns: 1fr 1fr; gap: 0.5rem; bottom: 0.75rem; left: 0.75rem; right: 0.75rem; }
  .why-visual-card { padding: 0.85rem 0.6rem; }
  .why-visual-stat { font-size: 1.5rem; }
}

/* ── SUCCESS BANNER ──────────────────────────────────────────────────────────── */
.success-banner {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 200;
  background: var(--green-mid);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: slide-down 0.35s ease;
}
.success-banner[hidden] { display: none; }
.success-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 0.25rem;
  transition: color 0.2s;
}
.success-close:hover { color: white; }
@keyframes slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── WHY IT WORKS ───────────────────────────────────────────────────────────── */
.why-it-works { background: var(--cream); }
.why-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .why-works-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-works-grid { grid-template-columns: 1fr; } }
.why-works-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.why-works-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-works-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
  text-align: center;
}
.why-works-card p { font-size: 0.92rem; }

/* ── ABOUT ───────────────────────────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner { max-width: 780px; }
.about-body p { margin-bottom: 1.25rem; font-size: 1rem; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.founder-card { display: flex; flex-direction: column; gap: 1.25rem; }
.founder-photo-wrap { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; background: var(--green-pale); }
.founder-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.founder-photo-placeholder { width: 100%; height: 100%; background: var(--green-pale); }
.founder-name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--green-mid); margin-bottom: 0.5rem; }
.founder-bio p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.founder-bio p:last-child { margin-bottom: 0; }

/* ── PORTFOLIO TEASER ────────────────────────────────────────────────────────── */
.portfolio-teaser { background: white; }
.portfolio-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) { .portfolio-img-grid { grid-template-columns: 1fr; } }
.portfolio-img-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-img-grid img:hover { transform: scale(1.03); }

/* ── BLOG TEASER ─────────────────────────────────────────────────────────────── */
.blog-teaser { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.blog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-date { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card-body h3 { font-size: 1.05rem; color: var(--green-deep); line-height: 1.35; }
.blog-card-body p { font-size: 0.88rem; flex: 1; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
