/* ═══════════════════════════════════════════════════════
   CHRIS ASSIS TERAPIAS — style.css
   Paleta: creme quente · sage · dourado suave · blush
═══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  /* Core palette */
  --cream:        #FAF6EF;
  --ivory:        #F4EDE0;
  --parchment:    #EDE3D2;
  --sage-pale:    #D6E5D8;
  --sage:         #7EA882;
  --sage-dark:    #4F7554;
  --forest:       #2B4030;
  --gold:         #C09A52;
  --gold-light:   #D9B87A;
  --gold-pale:    #F0E3C4;
  --blush:        #E8C8B8;
  --blush-dark:   #C89070;
  --terra:        #9B5E3A;
  --charcoal:     #1E1E1A;
  --text:         #3A3530;
  --muted:        #847A6E;
  --white:        #FFFFFF;

  /* Spacing */
  --gap-xs: .5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 7rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 32px;
  --r-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(43,64,48,.07);
  --shadow-md: 0 8px 32px rgba(43,64,48,.10);
  --shadow-lg: 0 20px 60px rgba(43,64,48,.13);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='.028'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 700; color: var(--sage-dark); font-family: 'Nunito', sans-serif;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1.5px; background: var(--gold); flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500; color: var(--forest);
}
.section-title em { font-style: italic; color: var(--sage-dark); }

.section-sub {
  font-size: .97rem; line-height: 1.9;
  color: var(--muted); font-weight: 400; max-width: 520px;
}

.divider {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.4rem 0; border-radius: 2px;
}

/* ── LAYOUT HELPERS ────────────────────────────────── */
.section { padding: var(--gap-xl) 6%; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }
.section-center .eyebrow { justify-content: center; }
.section-center .divider { margin: 1.4rem auto; }
.container { max-width: 1280px; margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; border: none; border-radius: var(--r-pill);
  padding: .9rem 2.2rem; transition: all .35s;
}
.btn-primary {
  background: var(--forest); color: var(--cream);
  box-shadow: 0 4px 20px rgba(43,64,48,.22);
}
.btn-primary:hover {
  background: var(--sage-dark); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(43,64,48,.28);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest); font-weight: 700;
  box-shadow: 0 4px 20px rgba(192,154,82,.3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192,154,82,.4);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-outline-light {
  background: transparent; border: 1.5px solid rgba(250,246,239,.5);
  color: var(--cream);
}
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── HEADER / NAV ──────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 1.6rem 6%;
  display: flex; justify-content: space-between; align-items: center;
  transition: padding .4s, background .4s, box-shadow .4s;
}
#header.scrolled {
  background: rgba(250,246,239,.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 1rem 6%;
  box-shadow: 0 1px 0 rgba(43,64,48,.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--cream); letter-spacing: .04em;
  transition: all .4s ease;
}
.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all .4s ease;
}
.logo span { color: var(--gold-light); }

#header.scrolled .logo { color: var(--forest); font-size: 1.6rem; }
#header.scrolled .logo img { width: 50px; height: 50px; }
#header.scrolled .logo span { color: var(--gold); }

.nav-list {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-list a {
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(250,246,239,.85);
  position: relative; transition: color .3s;
}
#header.scrolled .nav-list a { color: var(--text); }
.nav-list a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .35s;
}
.nav-list a:hover::after { width: 100%; }
.nav-list a:hover { color: var(--gold-light); }
#header.scrolled .nav-list a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  padding: .6rem 1.6rem; border-radius: var(--r-pill);
  font-weight: 700; letter-spacing: .12em;
  transition: background .3s, transform .2s, box-shadow .3s !important;
  box-shadow: 0 3px 16px rgba(192,154,82,.35);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,154,82,.45) !important;
}

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; z-index: 810;
}
.burger span {
  display: block; width: 25px; height: 1.5px;
  background: var(--cream); border-radius: 2px; transition: all .3s;
}
#header.scrolled .burger span { background: var(--forest); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  display: none; position: fixed; inset: 0; z-index: 799;
  background: var(--cream); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.drawer.open { display: flex; }
.drawer a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 500; color: var(--forest); transition: color .3s;
}
.drawer a:hover { color: var(--gold); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 1.2rem; /* Small gap to show rounded corners */
  z-index: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  /* Triangle effect: slanted bottom-right to top-left */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  filter: saturate(90%) brightness(0.75);
  transition: transform 1.2s ease;
}
.hero:hover .hero-photo img {
  transform: scale(1.05);
}
/* Soft gradient overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(27,38,23,.78) 0%,
      rgba(43,64,48,.55) 50%,
      rgba(43,64,48,.15) 100%);
}
/* Botanical SVG circle decoration */
.hero-deco {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%); z-index: 2;
  opacity: .15; pointer-events: none;
  width: min(420px, 40vw);
}
.hero-content {
  position: relative; z-index: 3; padding: 0 6%;
  max-width: 680px;
}
.hero-eyebrow {
  color: var(--gold-light); margin-bottom: 1.8rem;
}
.hero-eyebrow::before { background: var(--gold-light); }
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500; line-height: 1.07;
  color: var(--cream); margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-text {
  font-size: 1rem; line-height: 1.9;
  color: rgba(250,246,239,.72); max-width: 440px;
  margin-bottom: 2.8rem; font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(250,246,239,.4); font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase;
}
.hero-scroll-dot {
  width: 1px; height: 40px; background: rgba(250,246,239,.25);
  position: relative; overflow: hidden; border-radius: 1px;
}
.hero-scroll-dot::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%; background: var(--gold-light);
  animation: scrollDot 1.8s ease infinite;
}

/* ── STATS BAND ────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  padding: 2.5rem 6%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: .75rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(250,246,239,.65);
  margin-top: .4rem; font-weight: 600;
}
.stat-divider {
  width: 1px; background: rgba(250,246,239,.12);
  margin: .5rem 0;
}

/* ── SERVICES ──────────────────────────────────────── */
.services-section { background: var(--cream); }
.services-intro {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.svc-card {
  background: var(--white); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.svc-img {
  height: 210px; overflow: hidden; position: relative;
}
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  filter: saturate(85%);
}
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-img-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(43,64,48,.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--gold-light); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--r-pill);
  font-weight: 700;
}
.svc-body {
  padding: 1.8rem; flex: 1; display: flex; flex-direction: column;
}
.svc-icon {
  width: 40px; height: 40px; color: var(--gold);
  margin-bottom: 1rem; opacity: .9;
}
.svc-card h3 {
  font-size: 1.4rem; font-weight: 600; color: var(--forest);
  margin-bottom: .5rem;
}
.svc-card p { font-size: .88rem; color: var(--muted); line-height: 1.8; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-dark); transition: gap .3s;
}
.svc-link:hover { gap: .9rem; color: var(--forest); }

/* ── ABOUT ─────────────────────────────────────────── */
.about-section { background: var(--ivory); }
.about-grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 6rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-border {
  position: absolute; top: 20px; left: -20px;
  right: 20px; bottom: -20px;
  border: 1.5px solid var(--gold); border-radius: var(--r-md);
  opacity: .5; z-index: 0;
}
.about-img {
  position: relative; z-index: 1;
  width: 100%; height: 580px; object-fit: cover;
  border-radius: var(--r-md);
  filter: sepia(6%) saturate(90%);
  object-position: top;
}
.about-badge {
  position: absolute; bottom: 2.5rem; right: -2rem; z-index: 2;
  background: var(--forest); border-radius: 50%;
  width: 128px; height: 128px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-lg); padding: .5rem;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.about-badge-txt {
  font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(250,246,239,.7);
  margin-top: .3rem; font-weight: 600; line-height: 1.3;
}
.about-copy { display: flex; flex-direction: column; gap: .8rem; }
.about-copy .section-title { margin: .8rem 0 .3rem; }
.about-subtitle {
  font-size: .82rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sage);
  font-weight: 700; font-family: 'Nunito', sans-serif;
}
.about-copy .section-sub { margin-top: .5rem; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-top: 1.2rem;
}
.av {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--white); border-radius: var(--r-sm);
  padding: 1rem; box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.av-icon {
  width: 32px; height: 32px; color: var(--gold);
  flex-shrink: 0; margin-top: .1rem;
}
.av h4 {
  font-size: .95rem; font-weight: 600; color: var(--forest);
  margin-bottom: .2rem; font-family: 'Nunito', sans-serif;
}
.av p { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testi-section { background: var(--sage-pale); }
.testi-section .section-sub { margin: 0 auto; }

/* Google badge */
.google-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--white); border-radius: var(--r-pill);
  padding: .7rem 1.4rem; box-shadow: var(--shadow-sm);
  margin: 1.5rem auto 3rem; font-size: .85rem; font-weight: 700;
  color: var(--text); cursor: pointer; transition: box-shadow .3s;
  text-decoration: none;
}
.google-badge:hover { box-shadow: var(--shadow-md); }
.google-stars { color: #FBBC04; font-size: 1rem; letter-spacing: .06em; }
.google-logo {
  font-size: .82rem; font-weight: 800;
  background: linear-gradient(135deg,#4285F4,#34A853,#FBBC04,#EA4335);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testi-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.2rem; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  font-weight: 600; color: var(--sage-dark);
}
.testi-stars { color: #FBBC04; font-size: .8rem; letter-spacing: .05em; }
.testi-q-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  line-height: .5; color: var(--gold); opacity: .25; margin-bottom: .8rem;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.75; color: var(--muted);
  flex: 1;
}
.testi-author { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--ivory); }
.testi-name { font-size: .9rem; font-weight: 700; color: var(--forest); }
.testi-detail { font-size: .76rem; color: var(--muted); margin-top: .15rem; }
.testi-google-icon {
  width: 16px; display: inline-block; margin-left: .4rem; vertical-align: middle;
}

/* CTA strip */
.testi-cta {
  text-align: center; margin-top: 3.5rem;
}
.testi-cta p {
  font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem;
}

/* ── PACKAGES ──────────────────────────────────────── */
.packages-section { background: var(--cream); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.pkg-card {
  border-radius: var(--r-md); overflow: hidden;
  border: 1.5px solid transparent;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}
.pkg-card.featured {
  background: var(--forest); border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pkg-top { padding: 2.4rem 2rem 2rem; flex: 1; }
.pkg-badge {
  display: inline-block; background: var(--gold-pale);
  color: var(--terra); font-size: .65rem; letter-spacing: .16em;
  text-transform: uppercase; padding: .3rem .9rem;
  border-radius: var(--r-pill); font-weight: 700; margin-bottom: 1.2rem;
}
.pkg-card.featured .pkg-badge { background: rgba(240,227,196,.15); color: var(--gold-light); }
.pkg-freq {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage-dark); font-weight: 700; margin-bottom: .5rem;
}
.pkg-card.featured .pkg-freq { color: var(--gold-light); opacity: .8; }
.pkg-card h3 {
  font-size: 1.9rem; font-weight: 500; color: var(--forest); margin-bottom: .4rem;
}
.pkg-card.featured h3 { color: var(--cream); }
.pkg-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; font-weight: 400; }
.pkg-card.featured .pkg-sub { color: rgba(250,246,239,.55); }
.pkg-divider { width: 40px; height: 1.5px; background: var(--gold-pale); margin-bottom: 1.2rem; }
.pkg-card.featured .pkg-divider { background: rgba(250,246,239,.18); }
.pkg-desc { font-size: .88rem; line-height: 1.85; color: var(--muted); }
.pkg-card.featured .pkg-desc { color: rgba(250,246,239,.6); }
.pkg-bottom {
  padding: 1.5rem 2rem; border-top: 1px solid var(--ivory);
}
.pkg-card.featured .pkg-bottom { border-color: rgba(255,255,255,.08); }
.pkg-bottom .btn { width: 100%; justify-content: center; }

/* ── PARTNERS ──────────────────────────────────────── */
.partners-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2rem; margin-top: 3.5rem;
}
.partner-card {
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  width: 100px; height: 100px; flex-shrink: 0;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.partner-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: grayscale(100%);
}
.partner-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ── CONTACT ───────────────────────────────────────── */
.contact-section { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-info .section-title { margin: .8rem 0 .3rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--white); border-radius: 50%;
  border: 1.5px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: .1rem;
}
.contact-item-icon svg { width: 18px; }
.contact-item h4 { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; font-family: 'Nunito', sans-serif; margin-bottom: .2rem; }
.contact-item p { font-size: .92rem; color: var(--text); line-height: 1.65; }
.contact-item a:hover { color: var(--sage-dark); }

/* Map Container */
.map-container { display: flex; flex-direction: column; height: 100%; gap: 1.8rem; }

/* Map embed */
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  height: 100%; min-height: 400px;
  box-shadow: var(--shadow-lg); flex-grow: 1;
  border: 1px solid rgba(192,154,82,.12);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(20%) sepia(40%) hue-rotate(60deg) contrast(90%);
  transition: filter .5s ease;
}
.map-wrap iframe:hover {
  filter: none;
}

/* ── WAVE FOOTER ───────────────────────────────────── */
.footer-wave-wrap {
  line-height: 0; overflow: hidden;
  background: var(--ivory); /* matches section above */
}
.footer-wave-wrap svg { display: block; width: 100%; }

footer {
  background: var(--forest); color: rgba(250,246,239,.65);
  padding: 4.5rem 6% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3.5rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,246,239,.08);
}
.footer-brand .logo { color: var(--cream); display: block; margin-bottom: 1rem; }
.footer-brand .logo span { color: var(--gold-light); }
.footer-brand p { font-size: .87rem; line-height: 1.85; font-weight: 400; max-width: 320px; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.8rem; }
.soc {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(250,246,239,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,239,.5); transition: border-color .3s, color .3s, background .3s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(192,154,82,.08); }
.soc svg { width: 17px; }

.footer-col h5 {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1.6rem; font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: .8rem; }
.footer-col a { font-size: .88rem; color: rgba(250,246,239,.5); font-weight: 400; transition: color .3s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .9rem;
}
.footer-contact-item svg { width: 16px; flex-shrink: 0; margin-top: .2rem; color: var(--gold); opacity: .8; }
.footer-contact-item span { font-size: .86rem; line-height: 1.6; font-weight: 400; }
.footer-contact-item a { transition: color .3s; }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .78rem;
}
.footer-bottom a { color: var(--gold-light); transition: opacity .3s; }
.footer-bottom a:hover { opacity: .7; }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
.reveal[data-d="5"] { transition-delay: .5s; }
.reveal[data-d="6"] { transition-delay: .6s; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 4rem; }
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { order: -1; }
  .about-img { height: 400px; }
  .about-badge { right: 1rem; }
  .about-values { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: scale(1); }
  .pkg-card.featured:hover { transform: translateY(-6px); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-list { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 5rem 5%; }
  .services-intro { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .logo img { width: 60px; height: 60px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 1.4rem .8rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
}
