@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --cream:   #FDF8F3;
  --cream2:  #F5EDE0;
  --dark:    #2C1810;      /* warm dark brown — replaces cold plum everywhere */
  --dark2:   #3D2314;
  --coral:   #FF6B6B;
  --coral2:  #E85555;
  --amber:   #F59E0B;
  --sage:    #10B981;
  --rose:    #F43F5E;
  --muted:   #7A6050;
  --border:  rgba(44,24,16,0.10);
  --white:   #ffffff;
  --shadow-sm: 0 2px 12px rgba(44,24,16,0.08);
  --shadow:    0 8px 32px rgba(44,24,16,0.12);
  --shadow-lg: 0 20px 60px rgba(44,24,16,0.18);
  --radius:  16px;
  --radius-lg: 28px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .25s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1380px; margin: 0 auto; padding: 0 40px; }

/* ── Typography ── */
.display { font-family: 'DM Serif Display', serif; }
h1,h2,h3 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
h1 { font-size: clamp(4rem, 6vw, 7.2rem); }
h2 { font-size: clamp(3rem, 4vw, 5rem); }
h3 { font-size: clamp(2.2rem, 3vw, 3.2rem); }
h4 { font-size: 2rem; font-weight: 700; line-height: 1.3; }
h5 { font-size: 1.7rem; font-weight: 700; }
p { line-height: 1.8; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-coral  { background: var(--coral); color: #fff; }
.btn-coral:hover  { background: var(--coral2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,107,.35); color: #fff; }
.btn-dark   { background: var(--dark); color: #fff; }
.btn-dark:hover   { background: var(--dark2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(44,24,16,.3); color: #fff; }
.btn-ghost  { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-ghost:hover  { background: var(--dark); color: #fff; transform: translateY(-3px); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-white:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); color: #fff; }
.btn-ghost-dark  { background: transparent; color: var(--dark); border-color: rgba(44,24,16,.4); }
.btn-ghost-dark:hover  { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-amber  { background: var(--amber); color: var(--dark); }
.btn-amber:hover  { background: #D97706; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(245,158,11,.35); color: var(--dark); }
.btn-white  { background: #fff; color: var(--coral); }
.btn-white:hover  { background: var(--cream); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.15); color: var(--coral2); }
.btn-lg { padding: 18px 44px; font-size: 1.7rem; }
.btn-sm { padding: 10px 24px; font-size: 1.3rem; }

/* ── Pill labels ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.pill-coral { background: rgba(255,107,107,.12); color: var(--coral2); }
.pill-amber { background: rgba(245,158,11,.12); color: #B45309; }
.pill-sage  { background: rgba(16,185,129,.12); color: #047857; }
.pill-dark  { background: rgba(44,24,16,.08); color: var(--dark); }

/* ── Section spacing ── */
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 130px 0; }
.section-cream  { background: var(--cream); }
.section-cream2 { background: var(--cream2); }
.section-white  { background: #fff; }
/* Warm gradient accent sections — replaces all cold dark sections */
.section-dark   { background: linear-gradient(135deg, #2C1810 0%, #4A2218 100%); }
.section-warm   { background: linear-gradient(135deg, #FF6B6B 0%, #F43F5E 40%, #FF8C42 100%); }
.section-amber-warm { background: linear-gradient(135deg, #F59E0B 0%, #EF6C00 100%); }

/* ── Section header ── */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-eyebrow { display: block; margin-bottom: 14px; }
.section-title { color: var(--dark); margin-bottom: 18px; }
.section-title.white { color: #fff; }
.section-sub { font-size: 1.7rem; color: var(--muted); line-height: 1.8; max-width: 580px; }
.section-sub.white { color: rgba(255,255,255,.78); }

/* ── Preloader — warm coral ── */
#preloader {
  position: fixed; inset: 0;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity .6s ease .2s, visibility .6s ease .2s;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader img { width: 240px; height: auto; margin-bottom: 28px; }
.preloader-bar { width: 180px; height: 4px; background: rgba(255,107,107,.2); border-radius: 4px; overflow: hidden; }
.preloader-fill { height: 100%; background: var(--coral); border-radius: 4px; animation: fillbar .9s ease forwards; }
@keyframes fillbar { from { width: 0% } to { width: 100% } }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9000;
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(44,24,16,.10);
  border-bottom: 1px solid var(--border);
  transition: all .35s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(44,24,16,.14);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
/* Logo — always show the real coloured logo, never invert */
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-logo img.light { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 16px; border-radius: 10px;
  font-weight: 600; font-size: 1.45rem;
  color: var(--dark); transition: all .2s;
}
.nav-links a:hover { background: rgba(44,24,16,.06); color: var(--coral); }
.nav-links a.active { color: var(--coral); font-weight: 700; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; display: block; transition: all .3s; }

/* ── Mobile menu — warm dark brown ── */
.mobile-nav {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, #2C1810 0%, #4A2218 100%);
  z-index: 8999; display: flex; flex-direction: column;
  padding: 110px 40px 40px; gap: 4px; overflow-y: auto;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem; color: rgba(255,255,255,.8);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { color: #fff; padding-left: 8px; }
.mobile-nav .mobile-cta { margin-top: 28px; }
.mobile-close {
  position: absolute; top: 28px; right: 32px;
  background: rgba(255,255,255,.1); border: none;
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 2.4rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.mobile-close:hover { background: rgba(255,255,255,.2); }

/* ── HERO — warm coral/rose gradient ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #FF6B6B 0%, #F43F5E 30%, #FF8C42 70%, #F59E0B 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 76px 0 80px;
  min-height: calc(100vh);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .05;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .3;
}
.hero-blob-1 { width: 600px; height: 600px; background: rgba(255,255,255,.4); top: -150px; right: -100px; animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-2 { width: 400px; height: 400px; background: rgba(255,255,255,.25); bottom: -100px; left: 5%; animation: blobFloat 10s ease-in-out infinite reverse; }
.hero-blob-3 { width: 300px; height: 300px; background: rgba(244,63,94,.4); top: 30%; left: 30%; animation: blobFloat 12s ease-in-out infinite; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-eyebrow .pill { background: rgba(255,255,255,.25); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.hero-title { color: #fff; margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,.15); }
.hero-title em { font-style: italic; color: #fff; opacity: .9; }
.hero-desc { color: rgba(255,255,255,.88); font-size: 1.8rem; line-height: 1.8; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #fff; margin-left: -10px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust p { color: rgba(255,255,255,.85); font-size: 1.4rem; }
.hero-trust strong { color: #fff; font-weight: 800; }
.hero-visual { position: relative; z-index: 2; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25); height: 580px;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; background: #fff;
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-lg);
}
.hero-card-1 { bottom: 40px; left: -40px; }
.hero-card-2 { top: 50px; right: -30px; background: rgba(255,255,255,.95); }
.hero-card .card-num { font-family: 'DM Serif Display', serif; font-size: 3.2rem; color: var(--coral); line-height: 1; }
.hero-card .card-label { font-size: 1.3rem; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* ── Feature strip ── */
.feature-strip { background: #fff; padding: 0; }
.feature-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.feature-item {
  padding: 36px 32px; border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px; transition: background .2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,107,107,.04); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.feature-item h5 { font-size: 1.5rem; margin-bottom: 4px; }
.feature-item p { font-size: 1.3rem; color: var(--muted); line-height: 1.6; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-img-sec {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 280px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}
.about-badge {
  position: absolute; top: 50%; left: 60%; transform: translate(-50%,-50%);
  background: var(--coral); color: #fff; border-radius: var(--radius);
  padding: 22px 28px; text-align: center;
  box-shadow: 0 12px 40px rgba(255,107,107,.4); z-index: 2;
}
.about-badge .n { font-family: 'DM Serif Display', serif; font-size: 4rem; line-height: 1; }
.about-badge .l { font-size: 1.3rem; opacity: .9; margin-top: 4px; }
.about-text p { font-size: 1.65rem; color: var(--muted); margin-bottom: 20px; }
.check-list { margin: 28px 0 40px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.55rem; font-weight: 600; color: var(--dark);
  margin-bottom: 16px;
}
.check-list li .icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; margin-top: 1px;
}

/* ── Stats — warm gradient instead of cold dark ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-card {
  padding: 52px 36px;
  background: linear-gradient(135deg, #FF6B6B 0%, #F43F5E 100%);
  text-align: center; position: relative; overflow: hidden;
  transition: filter .3s;
}
.stat-card:hover { filter: brightness(1.06); }
.stat-card:nth-child(1) { background: linear-gradient(135deg, #FF6B6B 0%, #F43F5E 100%); }
.stat-card:nth-child(2) { background: linear-gradient(135deg, #F59E0B 0%, #EF6C00 100%); }
.stat-card:nth-child(3) { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.stat-card:nth-child(4) { background: linear-gradient(135deg, #2C1810 0%, #4A2218 100%); }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 5.6rem; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 1.5rem; color: rgba(255,255,255,.82); font-weight: 600; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
/* Homepage uses 3 columns — 3x2 grid */
.home-services-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 28px; }

/* View All CTA below the 3x2 grid */
.services-view-more {
  margin-top: 52px;
  text-align: center;
  padding: 40px 48px;
  background: #fff;
  border-radius: 24px;
  border: 1.5px dashed rgba(255,107,107,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.services-view-more p {
  font-size: 1.7rem;
  color: var(--muted);
  margin: 0;
  text-align: left;
}
.services-view-more p strong {
  color: var(--coral);
  font-weight: 800;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all .35s cubic-bezier(.34,1.2,.64,1);
  position: relative; display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--coral); transform: scaleX(0); transition: transform .3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
/* Image on top of each service card */
.svc-img-wrap { width: 100%; height: 180px; overflow: hidden; flex-shrink: 0; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.service-card:hover .svc-img-wrap img { transform: scale(1.06); }
/* Card body */
.service-card .service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  margin: 20px 20px 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff; flex-shrink: 0;
}
.service-card h4 { font-size: 1.8rem; margin: 14px 20px 10px; line-height: 1.3; }
.service-card p { font-size: 1.4rem; color: var(--muted); line-height: 1.7; margin: 0 20px 16px; flex: 1; }
.service-link { font-size: 1.35rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin: 0 20px 20px; }
.service-link i { transition: transform .2s; }
.service-card:hover .service-link i { transform: translateX(4px); }
/* Services page cards — no image, classic layout */
.section-cream2.services-page .services-grid { grid-template-columns: repeat(3, 1fr); }
.services-page .service-card .svc-img-wrap { display: none; }
.services-page .service-card .service-icon { margin: 32px 32px 20px; width: 64px; height: 64px; font-size: 2.6rem; border-radius: 18px; }
.services-page .service-card h4 { font-size: 2.2rem; margin: 0 32px 12px; }
.services-page .service-card p { font-size: 1.5rem; margin: 0 32px 18px; }
.services-page .service-card .service-link { margin: 0 32px 32px; font-size: 1.4rem; }

/* ── Home Gallery Grid — clean 3x2 with bottom labels ── */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hg-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: #fff;
  transition: all .35s cubic-bezier(.34,1.2,.64,1);
}
.hg-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hg-img-wrap {
  width: 100%; height: 280px; overflow: hidden;
  position: relative;
}
.hg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.hg-item:hover .hg-img-wrap img { transform: scale(1.05); }
.hg-label {
  padding: 16px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--dark);
  background: #fff;
  border-top: 1px solid var(--border);
}

/* ── Gallery masonry (keep for gallery page fallback) ── */
.gallery-masonry {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px; gap: 16px;
}
.gal-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item .gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,.7) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item .gal-caption { color: #fff; font-weight: 600; font-size: 1.4rem; }
.gal-1  { grid-column: 1/5;  grid-row: 1/5; }
.gal-2  { grid-column: 5/9;  grid-row: 1/4; }
.gal-3  { grid-column: 9/13; grid-row: 1/5; }
.gal-4  { grid-column: 1/4;  grid-row: 5/9; }
.gal-5  { grid-column: 4/9;  grid-row: 4/9; }
.gal-6  { grid-column: 9/13; grid-row: 5/9; }
.gal-7  { grid-column: 1/5;  grid-row: 9/13; }
.gal-8  { grid-column: 5/9;  grid-row: 9/13; }
.gal-9  { grid-column: 9/13; grid-row: 9/13; }
.gal-10 { grid-column: 5/9;  grid-row: 4/5; }

/* ── Testimonials — warm amber/rose instead of dark ── */
.testi-wrap { position: relative; }
.testi-big-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 18rem; color: rgba(255,255,255,.15);
  line-height: 1; position: absolute; top: -40px; left: -20px;
  pointer-events: none; user-select: none;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: 40px 36px; transition: all .3s ease;
}
.testi-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.testi-card.featured {
  background: rgba(255,255,255,.95); border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.testi-card.featured .testi-text { color: var(--muted); }
.testi-card.featured .testi-name { color: var(--dark); }
.testi-card.featured .testi-role { color: var(--muted); }
.testi-card.featured .testi-stars { color: var(--amber); }
.testi-stars { color: rgba(255,255,255,.9); font-size: 1.6rem; margin-bottom: 20px; letter-spacing: 2px; }
.testi-text { font-size: 1.6rem; line-height: 1.85; color: rgba(255,255,255,.9); font-style: italic; margin-bottom: 30px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: #fff;
  background: rgba(255,255,255,.25);
}
.testi-name { font-weight: 700; font-size: 1.5rem; color: #fff; }
.testi-role { font-size: 1.3rem; color: rgba(255,255,255,.65); margin-top: 2px; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--coral); border-radius: 32px;
  padding: 70px 80px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.08); right: -80px; top: -120px;
}
.cta-banner::after {
  content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.06); left: 10%; bottom: -80px;
}
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.88); font-size: 1.7rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Page Hero — warm gradient ── */
.page-hero {
  padding: 140px 0 90px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #FF6B6B 0%, #F43F5E 35%, #FF8C42 75%, #F59E0B 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: .05;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,.15); }
.page-hero p { color: rgba(255,255,255,.88); font-size: 1.8rem; max-width: 560px; margin-bottom: 24px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; }
.breadcrumb a { color: rgba(255,255,255,.65); font-size: 1.4rem; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: 1.4rem; }
.breadcrumb .current { color: #fff; font-size: 1.4rem; font-weight: 700; }

/* ── Forms ── */
.form-wrapper { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 52px 56px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.form-section-title {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--dark);
  margin: 36px 0 20px; padding-top: 28px; border-top: 1px solid var(--border);
}
.form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; }
.form-row .form-group { display: flex; flex-direction: column; }
.form-row .form-group label { flex-shrink: 0; }
.form-row .form-group input { flex: 1; }
.form-group { margin-bottom: 0; }
.form-group + .form-group, .form-row + .form-group, .form-group + .form-row { margin-top: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.form-group label .req { color: var(--coral); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(44,24,16,.15); border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem;
  color: var(--dark); background: var(--cream); outline: none; transition: all .25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: .6; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--coral); background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,107,.10);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.check-opt { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.check-opt input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--coral); flex-shrink: 0; }
.check-opt span { font-size: 1.4rem; color: var(--muted); font-weight: 500; }
.agree-wrap { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; cursor: pointer; }
.agree-wrap input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.agree-wrap span { font-size: 1.4rem; color: var(--muted); line-height: 1.65; }
.form-submit { width: 100%; margin-top: 28px; justify-content: center; font-size: 1.6rem; padding: 17px; }
.form-note { text-align: center; font-size: 1.3rem; color: var(--muted); margin-top: 14px; }
.terms-notice {
  background: rgba(255,107,107,.06); border: 1px solid rgba(255,107,107,.15);
  border-radius: 14px; padding: 22px 24px; margin-top: 24px;
}
.terms-notice li { display: flex; align-items: flex-start; gap: 10px; font-size: 1.4rem; color: var(--muted); margin-bottom: 10px; line-height: 1.65; }
.terms-notice li:last-child { margin-bottom: 0; }
.terms-notice li i { color: var(--coral); margin-top: 2px; flex-shrink: 0; }

/* ── Sidebar widgets ── */
.sidebar-stack { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget { border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.sidebar-widget.dark { background: linear-gradient(135deg, #2C1810 0%, #4A2218 100%); border-color: transparent; }
.sidebar-widget.cream { background: var(--cream2); }
.sidebar-widget.coral { background: var(--coral); border-color: transparent; box-shadow: 0 12px 36px rgba(255,107,107,.25); }
.sidebar-widget h4 { font-size: 1.8rem; margin-bottom: 18px; }
.sidebar-widget.dark h4 { color: var(--amber); }
.sidebar-widget.coral h4 { color: #fff; }
.info-rows li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.4rem; margin-bottom: 14px; }
.info-rows li:last-child { margin-bottom: 0; }
.info-rows li i { color: var(--coral); margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }
.info-rows.dark li { color: rgba(255,255,255,.8); }
.info-rows.dark li i { color: var(--amber); }
.info-rows.dark li strong { color: #fff; }
.hours-rows li { display: flex; justify-content: space-between; font-size: 1.4rem; padding: 10px 0; border-bottom: 1px solid rgba(44,24,16,.07); }
.hours-rows li:last-child { border-bottom: none; }
.hours-rows .val { font-weight: 700; color: var(--dark); }
.hours-rows .closed { color: var(--coral); font-weight: 700; }
.hours-rows.dark li { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.08); }
.hours-rows.dark .val { color: #fff; }
.sidebar-widget.coral p { color: rgba(255,255,255,.9); font-size: 1.5rem; line-height: 1.75; margin-bottom: 20px; }

/* ── How it works ── */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.hiw-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  font-family: 'DM Serif Display', serif; font-size: 3rem; color: #fff;
}
.hiw-step h4 { font-size: 1.9rem; margin-bottom: 10px; }
.hiw-step p { font-size: 1.45rem; color: var(--muted); line-height: 1.7; }

/* ── Contact cards ── */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.contact-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all .3s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card.featured { background: linear-gradient(135deg, var(--coral) 0%, #F43F5E 100%); border-color: transparent; }
.cc-icon { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: #fff; }
.contact-card h4 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-card.featured h4 { color: #fff; }
.contact-card p, .contact-card a { font-size: 1.45rem; color: var(--muted); line-height: 1.65; }
.contact-card.featured p, .contact-card.featured a { color: rgba(255,255,255,.88); }
.contact-card a:hover { color: var(--coral); }
.contact-card.featured a:hover { color: #fff; }
.social-links { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; transition: all .25s; }
.social-btn:hover { background: var(--dark); transform: translateY(-2px); color: #fff; }
.quick-links { display: flex; flex-direction: column; gap: 14px; }
.quick-link-item { display: flex; align-items: center; gap: 18px; background: var(--cream2); border-radius: var(--radius); padding: 18px 22px; border: 1.5px solid transparent; transition: all .3s; }
.quick-link-item:hover { border-color: var(--coral); background: #fff; transform: translateX(4px); }
.ql-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; flex-shrink: 0; }
.quick-link-item h5 { font-size: 1.6rem; margin-bottom: 2px; }
.quick-link-item p { font-size: 1.3rem; color: var(--muted); margin: 0; }

/* ── Support cards ── */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.support-card { background: #fff; border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all .3s ease; }
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.support-card.dark { background: linear-gradient(135deg, #2C1810 0%, #4A2218 100%); border-color: transparent; }
.support-icon { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #fff; margin-bottom: 24px; }
.support-card h3 { font-size: 2.8rem; margin-bottom: 14px; }
.support-card.dark h3 { color: #fff; }
.support-card p { font-size: 1.55rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.support-card.dark p { color: rgba(255,255,255,.72); }
.accept-list, .decline-list { background: rgba(44,24,16,.04); border-radius: 12px; padding: 18px 20px; margin-bottom: 24px; }
.support-card.dark .accept-list { background: rgba(255,255,255,.08); }
.accept-list p, .decline-list p { font-weight: 700; font-size: 1.4rem; margin-bottom: 12px; }
.support-card.dark .accept-list p { color: rgba(255,255,255,.9); }
.accept-list li, .decline-list li { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; color: var(--muted); margin-bottom: 8px; }
.support-card.dark .accept-list li { color: rgba(255,255,255,.65); }

/* ── MVV cards ── */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvv-card { border-radius: var(--radius-lg); padding: 44px 38px; }
.mvv-card.light { background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.mvv-card.dark  { background: linear-gradient(135deg, #2C1810 0%, #4A2218 100%); }
.mvv-icon { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #fff; margin-bottom: 26px; }
.mvv-card h3 { font-size: 3rem; margin-bottom: 16px; }
.mvv-card.light h3 { color: var(--dark); }
.mvv-card.dark h3  { color: #fff; }
.mvv-card p { font-size: 1.55rem; line-height: 1.8; }
.mvv-card.light p { color: var(--muted); }
.mvv-card.dark p  { color: rgba(255,255,255,.75); }
.mvv-list li { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.mvv-list li i { color: var(--coral); }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all .35s ease; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img { width: 100%; height: 280px; object-fit: cover; }
.team-placeholder { height: 280px; display: flex; align-items: center; justify-content: center; font-size: 6rem; color: rgba(255,255,255,.4); }
.team-body { padding: 28px 30px; }
.team-body h5 { font-size: 2rem; margin-bottom: 4px; }
.team-role { font-size: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); margin-bottom: 12px; }
.team-body p { font-size: 1.4rem; color: var(--muted); line-height: 1.7; }

/* ── Gallery page ── */
.gallery-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-page-item { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-page-item img { width: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item .gcap { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(44,24,16,.85)); padding: 30px 18px 16px; color: #fff; font-weight: 700; font-size: 1.5rem; }

/* ── Footer — clean charcoal, logo on white background ── */
.footer {
  background: #1E1E1E;
  padding: 80px 0 0;
  border-top: 5px solid var(--coral);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.4fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.09); }
/* Logo sits on a white rounded pill so it reads clearly on dark background */
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.footer-logo-wrap img { height: 68px; width: auto; display: block; }
.footer-desc { color: rgba(255,255,255,.55); font-size: 1.45rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 1.5rem; transition: all .25s; }
.footer-socials a:hover { background: var(--coral); color: #fff; }
.footer-col h5 { color: var(--amber); font-size: 1.4rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: 1.45rem; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-hours li { display: flex; justify-content: space-between; font-size: 1.4rem; color: rgba(255,255,255,.55); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-hours li:last-child { border-bottom: none; }
.footer-hours .v { color: rgba(255,255,255,.88); font-weight: 600; }
.footer-hours .c { color: var(--coral); font-weight: 600; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.45rem; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.footer-contact li i { color: var(--coral); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 1.3rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: 1.3rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Back to top ── */
#btt { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 6px 20px rgba(255,107,107,.4); opacity: 0; pointer-events: none; transition: all .3s cubic-bezier(.34,1.56,.64,1); z-index: 9000; cursor: pointer; }
#btt.show { opacity: 1; pointer-events: all; }
#btt:hover { transform: translateY(-4px) scale(1.1); background: var(--coral2); }

/* ── Scroll animations ── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media(max-width:1100px) {
  .hero-inner { gap: 48px; }
  .hero-card-1 { left: -10px; }
  .hero-card-2 { right: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(2,1fr); }
  .form-wrapper { grid-template-columns: 1fr; }
  .form-wrapper .sidebar-stack { display: grid; grid-template-columns: repeat(3,1fr); }
}
@media(max-width:900px) {
  h1 { font-size: 4.2rem; }
  h2 { font-size: 3.2rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { height: 340px; }
  .about-img-main { width: 100%; height: 340px; position: relative; }
  .about-img-sec, .about-badge { display: none; }
  .services-grid, .testi-grid, .mvv-grid, .team-grid, .support-grid { grid-template-columns: 1fr 1fr; }
  .home-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .services-view-more { flex-direction: column; text-align: center; padding: 28px 24px; }
  .services-view-more p { text-align: center; }
  .stats-grid, .hiw-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { display: grid; grid-template-columns: repeat(2,1fr); grid-auto-rows: auto; gap: 16px; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-1,.gal-2,.gal-3,.gal-4,.gal-5,.gal-6,.gal-7,.gal-8,.gal-9,.gal-10 { grid-column: auto; grid-row: auto; }
  .gal-item { height: 220px !important; }
  .feature-strip-inner { grid-template-columns: repeat(2,1fr); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner { padding: 48px 36px; }
  .gallery-grid-page { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  html { font-size: 56.25%; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .testi-grid, .mvv-grid, .team-grid, .support-grid, .hiw-grid, .contact-cards { grid-template-columns: 1fr; }
  .home-services-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-template-columns: 1fr; }
  .gal-item { height: 240px !important; }
  .gallery-grid-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .cta-banner { padding: 40px 24px; }
  .form-wrapper .sidebar-stack { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}
