/* =========================================================
   CommfyCouch — main stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Josefin+Sans:wght@400;500;600&family=Playfair+Display:wght@400;500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root{
  --header-bg: #dce7f3;
  --page-bg: #ffffff;
  --footer-bg: #47566b;
  --footer-text: #dfe6ee;
  --heading-blue: #7c93a8;
  --text-dark: #33414f;
  --text-muted: #5c6b7a;
  --lavender-bg: #eeecf7;
  --lavender-bg-alt: #f4f3fa;
  --purple-icon: #8b7ff5;
  --purple-icon-bg: #e4e0fb;
  --whatsapp-green: #25d366;
  --about-bg: #fbefdf;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1160px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--page-bg);
  line-height: 1.6;
}

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

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

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4{
  font-family: 'Gruppo', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 16px;
}

p{ margin: 0 0 16px; color: var(--text-muted); }

/* -------------------- Header -------------------- */
.site-header{
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Gruppo', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.brand img{ height: 46px; width: auto; }

.main-nav ul{
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.main-nav a{
  font-weight: 500;
  color: var(--text-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}

.main-nav a:hover,
.main-nav a.active{
  border-bottom-color: var(--text-dark);
}

.nav-toggle{
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* -------------------- Buttons -------------------- */
.btn{
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Gruppo', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary{
  background: var(--text-dark);
  color: #fff;
}

.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 8px 20px rgba(51,65,79,.25); }

.btn-outline{
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

/* -------------------- Hero -------------------- */
.hero{
  padding: 60px 0 70px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 1.08;
  color: #1a1a1a;
  margin: 0;
}

.hero-with{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: #1a1a1a;
  margin: 18px 0 0;
}

.hero-brand{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8rem;
  color: #1a1a1a;
  margin: 2px 0 0;
}

.hero-sub-blue{
  font-family: 'Gruppo', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--heading-blue);
  margin: 36px 0 26px;
  max-width: 460px;
}

.hero-image img{
  border-radius: var(--radius-lg);
  width: 100%;
  height: 560px;
  object-fit: cover;
}

/* Hero call-to-action — gold button, nudged down and to the right */
.hero-btn{
  background: #e6c14e;
  color: #fff;
  margin-top: 46px;
  margin-left: 110px;
}
.hero-btn:hover{ background: #d9b23c; box-shadow: 0 8px 20px rgba(0,0,0,.15); }

/* -------------------- About / Mission section -------------------- */
.split-section{
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-section img{
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.tagline-heading{
  font-family: 'Gruppo', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 26px;
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  color: var(--purple-icon);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* -------------------- Steps / cards -------------------- */
.steps-section{
  padding: 50px 0 80px;
}

.steps-section > .container > h2{
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

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

.step-card{
  background: var(--lavender-bg);
  border-radius: var(--radius-md);
  padding: 32px;
}

.step-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple-icon-bg);
  color: var(--purple-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.step-number{
  font-family: 'Gruppo', sans-serif;
  font-size: 1.8rem;
  color: var(--purple-icon);
  opacity: .55;
  display: block;
  margin-bottom: 6px;
}

.step-card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.step-card p{ margin-bottom: 0; }

/* -------------------- Philosophy list -------------------- */
.philosophy-list{
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 14px;
}

.philosophy-list li{
  padding: 16px 20px;
  background: var(--lavender-bg-alt);
  border-radius: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

/* -------------------- About intro -------------------- */
.about-intro{
  background: var(--about-bg);
  padding: 60px 0 70px;
}

.about-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.welcome-heading{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.about-intro .intro-lead{
  font-family: var(--font-display);
  font-weight: 400;
  color: #1a1a1a;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.our-counsellors-heading{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
}

.about-intro p{
  color: #4a4a45;
  font-size: 1.3rem;
  font-family: var(--font-display);
  line-height: 1.5;
}

/* -------------------- Team -------------------- */
.team-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 50px 0 70px;
  align-items: start;
}

.team-card{
  background: transparent;
  border-radius: var(--radius-lg);
}

.team-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-card-body{
  background: #16233a;
  color: #fff;
  text-align: center;
  padding: 30px 28px 32px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -6px;
}

.team-card-body h3{ margin-bottom: 10px; color: #fff; }

.team-card-body .role{
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 16px;
  display: block;
}

.team-card-body p{ color: #dfe6ee; }

.team-card-body .btn-primary{
  background: #0d1626;
  margin-top: 8px;
}

/* -------------------- Instagram feed -------------------- */
.insta-section{ padding: 30px 24px 80px; }

.insta-embed{ max-width: 960px; margin: 0 auto; }

.insta-placeholder{
  border: 2px dashed #d7d3ea;
  border-radius: var(--radius-lg);
  padding: 50px 24px;
  text-align: center;
  background: var(--lavender-bg-alt);
}

.insta-placeholder p{ margin-bottom: 18px; }

/* SociableKit Instagram widget — show only the 4 latest, hide load-more + branding */
.sk-ig-all-posts .sk-instagram-feed-item-sizer:nth-child(n+5){ display: none !important; }
.sk-ig-bottom-btn-container,
.sk_branding{ display: none !important; }

/* Live 4-post grid — preserves rounded card look, spacing and responsiveness */
.ig-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ig-item{
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--lavender-bg-alt);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ig-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(51,65,79,.18);
}

/* reel / carousel corner badge (visual only) */
.ig-item.is-video::after,
.ig-item.is-carousel::after{
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .95;
}
.ig-item.is-video::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}
.ig-item.is-carousel::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='7' y='7' width='13' height='13' rx='2'/%3E%3Cpath d='M4 4h11v2H5v10H4z'/%3E%3C/svg%3E");
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}

/* loading skeleton */
.ig-skeleton{
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, #eee 30%, #f6f6f6 50%, #eee 70%);
  background-size: 200% 100%;
  animation: ig-shimmer 1.2s ease-in-out infinite;
}

@keyframes ig-shimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

@media (max-width: 860px){
  .ig-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* -------------------- Inner page banner -------------------- */
.page-banner{
  background-image: linear-gradient(rgba(220,231,243,.6), rgba(255,255,255,1)), var(--banner-img, none);
  background-size: cover;
  background-position: center;
  padding: 60px 0 30px;
  text-align: center;
}

.page-banner h1{
  font-size: 2.6rem;
  color: var(--heading-blue);
}

/* -------------------- Service catalog -------------------- */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0;
}

.service-card{
  display: block;
  color: inherit;
}

.service-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid #ece8f5;
}

.service-card h3{
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.service-price{
  color: var(--text-muted);
  font-size: .92rem;
}

.service-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 20px 0 70px;
  align-items: start;
}

.service-detail img{
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid #ece8f5;
}

.service-detail .subtitle{
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 14px;
}

.service-detail .price-line{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-detail .format-line{
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* -------------------- Forms -------------------- */
.form-card{
  background: var(--lavender-bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto 60px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group{ margin-bottom: 18px; }

.form-group.full{ grid-column: 1 / -1; }

label{
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: .92rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"],
select,
textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d3ea;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  background: #fff;
}

textarea{ min-height: 100px; resize: vertical; }

.checkbox-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  font-size: .88rem;
  color: var(--text-muted);
}

.checkbox-row input{ margin-top: 4px; }

.form-note{
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-success, .form-error{
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: .9rem;
}

.form-success{ background: #dcf5e6; color: #1e6b3c; }
.form-error{ background: #fbe2e2; color: #922; }

/* -------------------- Legal pages -------------------- */
.legal-content{
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0 80px;
}

.legal-content h2{ margin-top: 40px; font-size: 1.4rem; }
.legal-content p{ color: var(--text-dark); }
.legal-content .meta{ color: var(--text-muted); font-size: .9rem; margin-bottom: 30px; }

/* -------------------- Bio pages -------------------- */
.bio-hero{
  padding: 60px 0 20px;
  text-align: center;
}

.bio-hero h1{ font-size: 2.4rem; color: var(--heading-blue); }
.bio-hero .subtitle{ color: var(--purple-icon); font-weight: 600; margin-bottom: 20px; }

.bio-content{
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 70px;
}

.bio-content h3{ margin-top: 34px; }

.bio-quote{
  font-style: normal;
  font-family: 'Gruppo', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  border-left: 4px solid var(--purple-icon);
  padding-left: 20px;
  margin: 26px 0;
}

.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 30px;
}

.tag{
  background: var(--purple-icon-bg);
  color: var(--purple-icon);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}

/* -------------------- Footer -------------------- */
.site-footer-wrap{
  padding: 20px 0 60px;
}

.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-logo img{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.footer-brand-name{
  font-family: 'Gruppo', sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer h4{
  color: #fff;
  font-family: 'Gruppo', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
}

.site-footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li{ margin-bottom: 10px; }

.site-footer p{ color: var(--footer-text); }

.site-footer a{ color: var(--footer-text); }
.site-footer a:hover{ color: #fff; text-decoration: underline; }

.social-row{
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social-row a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------- WhatsApp floating button -------------------- */
.whatsapp-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  z-index: 200;
}

.whatsapp-float svg{ width: 28px; height: 28px; fill: #fff; }

/* =========================================================
   Polish — gentle motion, warmth and depth
   ========================================================= */

/* Soft fade-up as sections come into view */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* Warm, calming wash behind the hero */
.hero{
  background: radial-gradient(1100px 520px at 82% 12%, #fdf4e6 0%, rgba(253,244,230,0) 62%),
              radial-gradient(900px 460px at 8% 78%, #eef3f9 0%, rgba(238,243,249,0) 60%);
}

/* Images breathe a little */
.hero-image img, .split-section img, .team-card img{
  box-shadow: 0 18px 40px rgba(40,55,75,.10);
  transition: transform .5s ease, box-shadow .5s ease;
}
.hero-image img:hover, .split-section img:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(40,55,75,.16);
}

/* Step cards lift and warm on hover */
.step-card{
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  border: 1px solid rgba(139,127,245,.10);
}
.step-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(90,80,170,.14);
  background: #f6f4fd;
}

/* Service cards feel clickable */
.service-card{ transition: transform .3s ease; }
.service-card:hover{ transform: translateY(-5px); }
.service-card:hover img{ box-shadow: 0 16px 32px rgba(40,55,75,.16); }
.service-card img{ transition: box-shadow .3s ease; }

/* Counsellor cards */
.team-card{ transition: transform .3s ease; }
.team-card:hover{ transform: translateY(-4px); }

/* Buttons get a touch of depth */
.btn{ box-shadow: 0 4px 14px rgba(40,55,75,.10); letter-spacing: .3px; }

/* Eyebrow gets a small accent rule */
.eyebrow{ position: relative; }

/* =========================================================
   Blog
   ========================================================= */
.blog-hero{
  background: var(--about-bg);
  padding: 56px 0 48px;
  text-align: center;
}
.blog-hero h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.blog-hero p{ max-width: 620px; margin: 0 auto; font-size: 1.1rem; }

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 56px 0 80px;
}

.blog-card{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceaf4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 44px rgba(40,55,75,.14); }

.blog-card img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card-body{ padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-date{
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-icon);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card h3{
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.blog-card p{ margin-bottom: 16px; }
.blog-readmore{
  margin-top: auto;
  font-weight: 600;
  font-size: .9rem;
  color: var(--purple-icon);
}

/* Single post */
.post-hero{ background: var(--about-bg); padding: 54px 0 44px; }
.post-hero .container{ max-width: 820px; }
.post-hero h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.post-body{ max-width: 760px; margin: 0 auto; padding: 44px 24px 80px; }
.post-body img.post-cover{
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  box-shadow: 0 18px 40px rgba(40,55,75,.12);
}
.post-body p{
  font-size: 1.12rem;
  line-height: 1.85;
  color: #46505c;
  margin-bottom: 20px;
}
.post-body h2{
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--heading-blue);
  line-height: 1.3;
  margin: 44px 0 16px;
}
.post-body h3{
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--heading-blue);
  margin: 34px 0 12px;
}
.post-body h2:first-child, .post-body h3:first-child{ margin-top: 0; }
.post-body .post-note{
  font-style: italic;
  font-size: 1rem;
  color: #5b6673;
  background: var(--about-bg);
  border-left: 4px solid var(--purple-icon);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-top: 34px;
}
.blog-empty{
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

@media (max-width: 860px){
  .blog-grid{ grid-template-columns: 1fr; gap: 24px; padding: 34px 0 56px; }
  .blog-hero{ padding: 36px 0 32px; }
  .blog-hero h1{ font-size: 2.1rem; }
  .post-hero h1{ font-size: 1.9rem; }
  .post-body{ padding: 28px 20px 60px; }
  .post-body p{ font-size: 1.05rem; }
  .post-body h2{ font-size: 1.45rem; margin: 34px 0 12px; }
  .post-body h3{ font-size: 1.2rem; }
}

/* -------------------- Responsive -------------------- */
@media (max-width: 860px){
  .hero-grid,
  .split-section,
  .steps-grid,
  .team-grid,
  .footer-grid,
  .services-grid,
  .service-detail{
    grid-template-columns: 1fr;
  }

  .hero-title{ font-size: 2.6rem; }
  .hero-brand{ font-size: 2rem; }
  .hero-with{ font-size: 1.5rem; }
  .hero-sub-blue{ font-size: 1.6rem; margin: 24px 0 18px; }
  .hero-btn{ margin-left: 0; margin-top: 22px; }
  .hero-image img{ height: 340px; }

  /* Mobile: text + Book Appointment first, photo underneath */
  .split-section .split-image{ order: 2; margin-top: 26px; }
  .split-section{ padding: 40px 0; gap: 24px; }
  .split-section img{ height: 300px; }

  /* Tighter, cleaner mobile rhythm */
  .hero{ padding: 30px 0 40px; }
  .steps-section{ padding: 20px 0 50px; }
  .about-intro{ padding: 40px 0 46px; }
  .about-title{ font-size: 2.2rem; margin-bottom: 26px; }
  .welcome-heading{ font-size: 1.8rem; margin-bottom: 20px; }
  .about-intro .intro-lead{ font-size: 1.35rem; }
  .about-intro p{ font-size: 1.08rem; }
  .team-grid{ margin: 30px 0 40px; gap: 28px; }
  .insta-section{ padding: 20px 16px 60px; }
  .site-footer-wrap{ padding: 10px 0 40px; }

  .main-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    display: none;
    padding: 10px 24px 24px;
  }

  .main-nav.open{ display: block; }

  .main-nav ul{
    flex-direction: column;
    gap: 16px;
  }

  .nav-toggle{ display: block; }

  .site-footer{ padding: 34px 24px; }

  .form-row{ grid-template-columns: 1fr; }

  .form-card{ padding: 26px; }
}

/* -------------------- Tally embedded forms -------------------- */
.form-card iframe[data-tally-src]{
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 520px;
}
@media (max-width: 860px){
  .form-card iframe[data-tally-src]{ min-height: 620px; }
}
