:root {
  /* Brand palette */
  --sage: #a8b5a2;
  --eucalyptus: #7f9078;
  --beige: #dccfbe;
  --ivory: #f8f5ef;
  --gold: #c8a97e;
  --ink: #283127;
  --soft-ink: #5f675b;
  --white: #fffdf8;
  --dark-green: #2f3b2c;
  --light-green: #eef0e8;
  --shadow-sm: 0 4px 18px rgba(40, 49, 39, 0.08);
  --shadow: 0 24px 70px rgba(40, 49, 39, 0.18);
  --radius: 8px;
  --transition: 200ms ease;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

address {
  font-style: normal;
}

/* ─── Reveal animation system ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), padding var(--transition);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 12px 34px rgba(40, 49, 39, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  transition: opacity var(--transition);
}

.brand:hover { opacity: 0.85; }

.brand-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  /* Remove white/beige fringe against dark backgrounds */
  mix-blend-mode: normal;
  transition: transform 0.3s ease;
  /* Fallback: if no transparent bg, clip to circle */
  background: transparent;
}

/* On dark header (hero top), the logo bege bg blends in — fine.
   On scrolled ivory header, it blends naturally too. */
.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: none;
}

.brand:hover .brand-logo {
  transform: rotate(6deg) scale(1.05);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-bottom: 3px;
  opacity: 0.9;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle.is-open span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ─── Floating WhatsApp button ─── */
.floating-wa {
  position: fixed;
  z-index: 90;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s ease infinite;
}

.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero-image.loaded { transform: scale(1); }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 38, 26, 0.82) 0%, rgba(28, 38, 26, 0.36) 46%, rgba(28, 38, 26, 0.08) 100%),
    linear-gradient(0deg, rgba(28, 38, 26, 0.64) 0%, rgba(28, 38, 26, 0.04) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

/* ─── Typography ─── */
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 { font-size: clamp(52px, 7vw, 108px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: 24px; line-height: 1.2; }

em { font-style: italic; }

p { line-height: 1.78; }

.hero-copy {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ─── Buttons ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 38px rgba(200, 169, 126, 0.4);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(200, 169, 126, 0.55);
  background: #d4b88c;
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.6);
}

.button-ghost:hover {
  background: rgba(255, 253, 248, 0.12);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--dark-green);
  box-shadow: 0 14px 36px rgba(40, 49, 39, 0.3);
}

.button-gold-outline {
  color: var(--gold);
  border: 1px solid var(--gold);
}

.button-gold-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ─── Hero card ─── */
.hero-card {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 72px);
  bottom: 72px;
  width: min(320px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: var(--radius);
  background: rgba(248, 245, 239, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
}

.hero-card p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── Stats bar ─── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--dark-green);
  color: var(--white);
}

.stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 16px 24px;
}

.stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 253, 248, 0.15);
  flex-shrink: 0;
}

/* ─── Section shared ─── */
.section-pad {
  padding: 100px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading p:last-child {
  color: var(--soft-ink);
  font-size: 17px;
  margin-top: 16px;
}

/* ─── Intro ─── */
.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 120px);
  align-items: center;
  background: var(--white);
}

.intro p:last-child {
  margin: 0;
  color: var(--soft-ink);
  font-size: 18px;
}

/* ─── Services ─── */
.services {
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* 4-col override kept for future single-row layouts */
.service-grid--4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 32px 28px;
  border: 1px solid rgba(127, 144, 120, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 126, 0.4);
}

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(200, 169, 126, 0.6);
  border-radius: 50%;
  color: var(--eucalyptus);
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  color: var(--soft-ink);
  font-size: 15px;
  flex: 1;
}

.service-tagline {
  color: var(--soft-ink);
  font-size: 14px;
  font-style: italic;
  margin: 0 0 20px;
  flex: 0;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid rgba(127, 144, 120, 0.12);
}

.service-list li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.service-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--eucalyptus);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.service-link:hover { color: var(--gold); }

.services-cta {
  margin-top: 60px;
  padding: 48px clamp(28px, 5vw, 72px);
  border-radius: var(--radius);
  background: var(--dark-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.services-cta p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.3;
}

/* ─── Experience ─── */
.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: var(--light-green);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.6s ease;
}

.image-panel:hover img { transform: scale(1.04); }

.experience-copy p {
  color: var(--soft-ink);
  font-size: 17px;
  margin-top: 20px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  padding: 36px 30px;
  border: 1px solid rgba(127, 144, 120, 0.18);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card footer strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--ink);
}

.testimonial-card footer span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Offer ─── */
.offer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 360px);
  gap: 18px;
  align-items: stretch;
  background: var(--eucalyptus);
}

.offer-card {
  padding: clamp(36px, 6vw, 80px);
  border-radius: var(--radius);
  background: var(--ivory);
}

.offer-card h2 { line-height: 1; }

.offer-card p {
  max-width: 600px;
  color: var(--soft-ink);
  font-size: 17px;
  margin: 18px 0 32px;
}

.mini-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 40px 36px;
  border-radius: var(--radius);
  background: var(--dark-green);
  color: var(--white);
}

.mini-pricing span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mini-pricing strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.package-sessions {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
}

.package-price {
  margin: 2px 0 24px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

/* ─── Instagram Feed ─── */
.instagram-feed {
  background: var(--light-green);
  text-align: center;
}

.ig-header {
  max-width: 600px;
  margin: 0 auto 52px;
}

.ig-header p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 17px;
  margin: 16px 0 28px;
}

.ig-follow-btn {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.ig-widget-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ig-widget-wrap behold-widget {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ─── Location ─── */
.location {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
  background: var(--white);
}

.location-address {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.65;
  margin: 16px 0 28px;
}

.contact-box {
  display: grid;
  gap: 0;
  border: 1px solid rgba(127, 144, 120, 0.22);
  border-radius: var(--radius);
  background: var(--ivory);
  overflow: hidden;
}

.contact-box a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(127, 144, 120, 0.18);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  overflow-wrap: anywhere;
  transition: background 0.18s ease, color 0.18s ease;
}

.contact-box a:last-child { border-bottom: 0; }

.contact-box a:hover {
  background: rgba(200, 169, 126, 0.1);
  color: var(--eucalyptus);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
  height: 100%;
}

.location-map iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* ─── Footer ─── */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 16px 48px;
  align-items: start;
  padding: 48px clamp(18px, 5vw, 72px);
  background: var(--dark-green);
  color: var(--white);
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-brand p {
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.footer-brand span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  font-size: 14px;
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 12px;
  color: rgba(255, 253, 248, 0.42);
}

/* ─── Very small screens (390px iPhone) ─── */
@media (max-width: 400px) {
  .service-list li { font-size: 11px; padding: 4px 9px; }
  .stat strong { font-size: 22px; }
  .hero-copy { font-size: 14px; }
  .section-pad { padding: 48px 14px; }
}

/* ─── Tablet (980px) ─── */
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(127, 144, 120, 0.14);
  }

  .site-nav a::after { display: none; }
  .site-nav a:last-child { border-bottom: 0; }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-radius: var(--radius);
  }

  .hero {
    align-items: center;
    padding-top: 120px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    width: 100%;
  }

  .stats-bar { gap: 0; }
  .stat-divider { display: none; }

  .intro,
  .experience,
  .offer,
  .location {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .location-map { min-height: 320px; }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .footer-brand { grid-column: 1 / -1; }
  .footer-copy { grid-column: 1 / -1; }
}

/* ─── Mobile (640px) ─── */
@media (max-width: 640px) {

  /* Header */
  .site-header { padding: 12px 16px; }
  .brand { min-width: 0; }
  .brand-logo { width: 40px; height: 40px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 8px; letter-spacing: 0.18em; }

  /* Hero — tighter, content at bottom */
  .hero {
    min-height: 100svh;
    padding: 100px 18px 36px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(28, 38, 26, 0.92) 0%, rgba(28, 38, 26, 0.2) 55%),
      linear-gradient(90deg, rgba(28, 38, 26, 0.6) 0%, rgba(28, 38, 26, 0.1) 100%);
  }

  .hero-copy { font-size: 15px; margin-top: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-actions .button { width: 100%; text-align: center; justify-content: center; }

  /* Hide hero-card on mobile — too much content */
  .hero-card { display: none; }

  /* Stats — 2×2 grid, compact */
  .stats-bar { padding: 20px 16px; gap: 0; }
  .stat { flex-basis: 50%; padding: 12px 8px; }
  .stat strong { font-size: 26px; }
  .stat span { font-size: 10px; }

  /* Section spacing */
  .section-pad { padding: 56px 18px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading p:last-child { font-size: 15px; }

  /* Typography */
  h2 { font-size: clamp(28px, 9vw, 42px); }
  h3 { font-size: 19px; }

  /* Intro */
  .intro p:last-child { font-size: 16px; }

  /* Services — single column, compact cards */
  .service-grid,
  .service-grid--3col,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
  }

  .service-card h3 { font-size: 17px; margin-bottom: 8px; }

  .service-tagline { font-size: 13px; margin-bottom: 14px; }

  /* Service list → pill tags on mobile */
  .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 0;
  }

  .service-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: var(--ivory);
    border: 1px solid rgba(127, 144, 120, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--soft-ink);
    border-bottom: none;
  }

  .service-list li::before {
    width: 4px;
    height: 4px;
    flex-shrink: 0;
  }

  .service-link { margin-top: 16px; font-size: 11px; }

  /* Services CTA banner */
  .services-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 20px;
    margin-top: 36px;
    gap: 16px;
  }

  .services-cta p { font-size: 18px; }

  /* Experience — hide image, focus on text */
  .image-panel { display: none; }

  /* Testimonials — compact */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card p { font-size: 14px; }
  .testimonial-card footer strong { font-size: 16px; }

  /* Offer section */
  .offer-card { padding: 28px 20px; }
  .offer-card h2 { font-size: clamp(32px, 10vw, 48px); }
  .offer-card p { font-size: 15px; margin: 12px 0 22px; }
  .mini-pricing { padding: 28px 20px; }
  .mini-pricing strong { font-size: 36px; }
  .package-price { font-size: 22px; margin-bottom: 18px; }

  /* Instagram */
  .ig-header { margin-bottom: 32px; }
  .ig-header p:not(.eyebrow) { font-size: 15px; }
  .ig-widget-wrap { border-radius: 6px; }

  /* Location */
  .location-address { font-size: 16px; }
  .contact-box a { font-size: 14px; padding: 14px 16px; }
  .location-map { min-height: 260px; }

  /* Footer */
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 36px 18px; }
  .footer-brand p { font-size: 20px; }
  .footer-logo { width: 48px; height: 48px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .footer-nav a { font-size: 11px; }
  .footer-contact a { font-size: 13px; }

  /* WhatsApp float — icon only */
  .floating-wa span { display: none; }
  .floating-wa { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
}
