/* ============================================================
   SOUTHCOAST PAWS & HOME — Stylesheet
   Warm · Clean · Personal — not a template
   ============================================================ */

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

/* === TOKENS === */
:root {
  /* Brand */
  --forest:      #1D4A43;
  --forest-mid:  #265E55;
  --forest-lt:   #3D7A70;
  --sage:        #6BA49D;
  --sage-bg:     #E9F2F0;

  --terra:       #B85934;
  --terra-mid:   #C96A3E;
  --terra-lt:    #E08D6A;

  /* Neutrals */
  --cream:       #F6F2EA;
  --cream-lt:    #FBFAF6;
  --white:       #FFFFFF;
  --ink:         #181818;
  --text:        #3A3A3A;
  --muted:       #787878;
  --faint:       #AAAAAA;
  --border:      #E0D9CF;
  --border-lt:   #EDE7DF;

  /* Special */
  --wa:          #25D366;
  --wa-dark:     #1DA851;

  /* Type */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:  1200px;
  --px:     clamp(1.25rem, 5vw, 3.5rem);
  --py:     clamp(3.75rem, 7vw, 5.5rem);

  /* Shadows */
  --xs:  0 1px 4px rgba(0,0,0,.04);
  --sm:  0 2px 14px rgba(0,0,0,.07);
  --md:  0 6px 28px rgba(0,0,0,.09);
  --lg:  0 16px 56px rgba(0,0,0,.12);

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   26px;
  --r-full: 999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --t: .24s;
}

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

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section        { padding: var(--py) 0; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--cream); }
.section--white { background: var(--white); }
.section--ocean { background: var(--forest); color: var(--white); }
.section--dark  { background: #141414; color: var(--white); }

.text-center { text-align: center; }

/* === TYPOGRAPHY === */
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest-lt);
  margin-bottom: .75rem;
}
.label.centered { display: block; text-align: center; }
.label.light { color: rgba(255,255,255,.45); }

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--ink); }
h4, h5     { font-family: var(--sans); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); }

p.lead {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}
p.lead.centered { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,74,67,.25);
}
.btn-whatsapp {
  background: var(--wa);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-terracotta {
  background: var(--terra);
  color: var(--white);
}
.btn-terracotta:hover {
  background: var(--terra-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,89,52,.3);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm  { padding: .55rem 1.1rem; font-size: .825rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.nav.scrolled {
  border-bottom-color: var(--border-lt);
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav__logo-main {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -.01em;
}
.nav__logo-sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.nav__links a:hover,
.nav__links a.active { color: var(--forest); }
.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--white);
  padding: 2rem var(--px);
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  border-top: 1px solid var(--border-lt);
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-lt);
}
.nav__mobile .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO  — light, editorial, personal
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-lt);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 90% 15%, rgba(107,164,157,.1) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 5%  90%, rgba(246,242,234,.8) 0%, transparent 55%);
  pointer-events: none;
}
.hero__waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  overflow: hidden;
}
.hero__waves svg { display: block; width: 100%; height: 100%; }
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100svh;
  padding-bottom: 70px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--sage-bg);
  border: 1px solid rgba(107,164,157,.2);
  color: var(--forest);
  padding: .35rem .9rem;
  border-radius: var(--r-full);
  font-size: .77rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__content h1 {
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero__content h1 em {
  font-style: italic;
  color: var(--forest-lt);
}
.hero__tagline {
  font-size: clamp(.95rem, 1.7vw, 1.08rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 2.25rem;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--text);
}
.hero__bullets li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--sage-bg);
  border-radius: 50%;
  color: var(--forest);
  font-size: .68rem;
  flex-shrink: 0;
  font-weight: 700;
}
.hero__actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__phones {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.hero__phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
}
.hero__phone span { color: var(--faint); }

/* Hero visual */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.hero__photo {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  position: relative;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  color: var(--faint);
  font-size: .85rem;
  text-align: center;
  padding: 2rem;
}
.hero__photo-placeholder .icon { font-size: 2.25rem; }
.hero__cards {
  display: flex;
  gap: .875rem;
  width: 100%;
  max-width: 450px;
}
.hero__card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 1.1rem;
  text-align: center;
  box-shadow: var(--xs);
}
.hero__card-icon { font-size: 1.4rem; margin-bottom: .35rem; }
.hero__card-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .2rem;
  color: var(--forest);
}
.hero__card-label { font-size: .68rem; color: var(--muted); line-height: 1.3; }

/* ============================================================
   TRUST BAR — clean, light
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: .9rem 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.trust-bar__inner::-webkit-scrollbar { display: none; }
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--text);
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar__item-icon { font-size: .95rem; }
.trust-bar__divider {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: clamp(2.25rem, 5vw, 3.25rem); }
.section-header .label  { margin-bottom: .75rem; }
.section-header h2      { margin-bottom: .875rem; }
.section-header .lead   { margin-top: .5rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-lt);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease), border-color var(--t);
}
.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--md);
  transform: translateY(-3px);
}
.service-card__icon {
  font-size: 1.875rem;
  margin-bottom: .875rem;
  display: block;
}
.service-card__title {
  font-size: .975rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.service-card__desc {
  font-size: .845rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-lt);
}
.service-card__price {
  font-weight: 700;
  font-size: .88rem;
  color: var(--forest);
}
.service-card__link {
  font-size: .77rem;
  font-weight: 600;
  color: var(--forest-lt);
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: gap var(--t);
}
.service-card__link:hover { gap: .5rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__photo-wrap { position: relative; }
.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--border);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--faint);
  font-size: .875rem;
  text-align: center;
  padding: 2rem;
}
.about__dog-tags {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .75rem;
}
.about__dog-tag {
  background: var(--white);
  border-radius: var(--r-full);
  padding: .4rem .9rem;
  font-size: .77rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--md);
  white-space: nowrap;
  border: 1px solid var(--border-lt);
}
.about__content { padding-top: .5rem; }
.about__content .label { margin-bottom: .75rem; }
.about__content h2 { margin-bottom: 1.25rem; }
.about__content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: .935rem;
}
.about__quote {
  background: var(--cream);
  border-left: 3px solid var(--terra);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0;
}
.about__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: .975rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.65;
}
.about__quote cite {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  color: var(--terra);
  margin-top: .5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-style: normal;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .875rem;
  margin-top: 1.75rem;
}
.about__stat {
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  background: var(--white);
}
.about__stat-value {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.about__stat-label {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .3rem;
  line-height: 1.3;
}

/* ============================================================
   USP SECTION
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.usp-card {
  background: var(--cream-lt);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.1rem;
  text-align: center;
  border: 1px solid var(--border-lt);
  transition: all var(--t) var(--ease);
}
.usp-card:hover {
  background: var(--white);
  box-shadow: var(--sm);
  transform: translateY(-2px);
}
.usp-card__icon { font-size: 1.65rem; margin-bottom: .75rem; }
.usp-card__title {
  font-size: .83rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}
.usp-card__desc { font-size: .77rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.package-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  background: var(--white);
  transition: all var(--t) var(--ease);
}
.package-card:hover { box-shadow: var(--lg); transform: translateY(-4px); }
.package-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.02);
}
.package-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.package-card__header { padding: 1.75rem 1.75rem 1.25rem; }
.package-card__tag {
  display: inline-block;
  padding: .22rem .7rem;
  border-radius: var(--r-full);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.package-card--featured .package-card__tag {
  background: rgba(224,141,106,.15);
  color: var(--terra-lt);
}
.package-card:not(.package-card--featured) .package-card__tag {
  background: var(--sage-bg);
  color: var(--forest);
}
.package-card__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--ink);
}
.package-card--featured .package-card__name { color: var(--white); }
.package-card__price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--forest);
}
.package-card--featured .package-card__price { color: var(--terra-lt); }
.package-card__price-note {
  font-size: .74rem;
  color: var(--muted);
  margin-top: .25rem;
}
.package-card--featured .package-card__price-note { color: rgba(255,255,255,.38); }
.package-card__divider {
  height: 1px;
  background: var(--border-lt);
  margin: 0 1.75rem;
}
.package-card--featured .package-card__divider { background: rgba(255,255,255,.1); }
.package-card__items { padding: 1.25rem 1.75rem; }
.package-card__item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .845rem;
  color: var(--muted);
  padding: .45rem 0;
  border-bottom: 1px solid var(--border-lt);
}
.package-card--featured .package-card__item {
  color: rgba(255,255,255,.6);
  border-bottom-color: rgba(255,255,255,.07);
}
.package-card__item:last-child { border-bottom: none; }
.package-card__item-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sage-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.package-card--featured .package-card__item-check {
  background: rgba(224,141,106,.15);
  color: var(--terra-lt);
}
.package-card__footer { padding: 0 1.75rem 1.75rem; }
.package-card__footer .btn { width: 100%; justify-content: center; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 100% at 100% 50%, rgba(61,122,112,.35) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-banner__text h2 { color: var(--white); margin-bottom: .6rem; }
.cta-banner__text p  { color: rgba(255,255,255,.6); font-size: .975rem; max-width: 44ch; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   PRICING TABLE (Services page)
   ============================================================ */
.pricing-section { margin-bottom: 2.5rem; }
.pricing-section__header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1px;
  padding: .875rem 1.25rem;
  background: var(--cream-lt);
  border-radius: var(--r-md) var(--r-md) 0 0;
  border: 1px solid var(--border-lt);
  border-bottom: none;
}
.pricing-section__icon  { font-size: 1.45rem; }
.pricing-section__title { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-lt);
}
.pricing-table thead tr { background: var(--cream); }
.pricing-table th {
  padding: .7rem 1.1rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  text-align: left;
}
.pricing-table tbody tr {
  border-top: 1px solid var(--border-lt);
  transition: background var(--t);
}
.pricing-table tbody tr:hover { background: var(--cream-lt); }
.pricing-table td { padding: .875rem 1.1rem; font-size: .875rem; vertical-align: middle; }
.pricing-table td:first-child { font-weight: 600; color: var(--ink); }
.pricing-table td:nth-child(3) { font-weight: 700; color: var(--forest); white-space: nowrap; }
.pricing-table td:nth-child(4) { color: var(--muted); font-size: .8rem; }
.pricing-badge {
  display: inline-block;
  padding: .17rem .55rem;
  border-radius: var(--r-full);
  font-size: .67rem;
  font-weight: 600;
  background: var(--sage-bg);
  color: var(--forest);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-lt);
  transition: box-shadow var(--t);
}
.contact-card:hover { box-shadow: var(--sm); }
.contact-card__role {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest-lt);
  margin-bottom: .4rem;
}
.contact-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .2rem;
}
.contact-card__note {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  line-height: 1.5;
}
.contact-card .btn { width: 100%; justify-content: center; }
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  border: 1px solid var(--border-lt);
  box-shadow: var(--sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .77rem; font-weight: 600; color: var(--text); letter-spacing: .02em; }
.form-field input,
.form-field textarea,
.form-field select {
  padding: .75rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--cream-lt);
  color: var(--ink);
  font-size: .875rem;
  transition: all var(--t) var(--ease);
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--forest-lt);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,122,112,.1);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: .82rem;
  transition: all var(--t) var(--ease);
  background: var(--cream-lt);
  user-select: none;
}
.form-checkbox:has(input:checked),
.form-checkbox.checked {
  border-color: var(--forest-lt);
  background: var(--sage-bg);
  color: var(--forest);
}
.form-checkbox input { display: none; }
.form-checkbox__box {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .6rem;
  transition: all var(--t);
}
.form-checkbox.checked .form-checkbox__box {
  border-color: var(--forest-lt);
  background: var(--forest-lt);
  color: var(--white);
}
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-top: 1.25rem; }
.form-actions .btn { justify-content: center; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.area-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-lt);
}
.area-card__type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.area-card--primary .area-card__type   { color: var(--forest-lt); }
.area-card--secondary .area-card__type { color: var(--terra); }
.area-card__title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .875rem; }
.area-towns { display: flex; flex-wrap: wrap; gap: .4rem; }
.area-town {
  padding: .28rem .72rem;
  border-radius: var(--r-full);
  font-size: .77rem;
  font-weight: 500;
}
.area-card--primary .area-town   { background: var(--sage-bg); color: var(--forest); }
.area-card--secondary .area-town { background: var(--cream); color: var(--muted); }

/* ============================================================
   SOCIALS SECTION
   ============================================================ */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.social-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  transition: all var(--t) var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.social-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.social-card__platform {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: .4rem;
}
.social-card__handle {
  font-size: .975rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .35rem;
}
.social-card__action { font-size: .77rem; color: rgba(255,255,255,.42); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #141414; color: rgba(255,255,255,.58); }
.footer__top {
  padding: clamp(3rem, 5vw, 4.5rem) var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.footer__location {
  font-size: .77rem;
  color: rgba(255,255,255,.32);
  line-height: 1.55;
}
.footer__col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer__col ul  { display: flex; flex-direction: column; gap: .5rem; }
.footer__col a   { font-size: .845rem; color: rgba(255,255,255,.48); transition: color var(--t); }
.footer__col a:hover { color: rgba(255,255,255,.82); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.25rem var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .77rem;
  color: rgba(255,255,255,.22);
  flex-wrap: wrap;
}
.footer__wa-row { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer__wa-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(37,211,102,.09);
  border: 1px solid rgba(37,211,102,.18);
  color: rgba(37,211,102,.75);
  padding: .4rem .875rem;
  border-radius: var(--r-full);
  font-size: .77rem;
  font-weight: 600;
  transition: all var(--t);
  cursor: pointer;
  text-decoration: none;
}
.footer__wa-btn:hover { background: rgba(37,211,102,.16); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.wa-float__bubble {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--lg);
  max-width: 225px;
  font-size: .81rem;
  color: var(--text);
  animation: floatBubble .35s var(--ease) both;
  position: relative;
  border: 1px solid var(--border-lt);
}
.wa-float__bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--white);
}
.wa-float__bubble strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--ink);
  font-size: .84rem;
}
.wa-float__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  text-decoration: none;
}
.wa-float__btn:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
}
.wa-float__close {
  position: absolute;
  top: .4rem; right: .55rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--faint);
  font-size: .9rem;
  line-height: 1;
}
@keyframes floatBubble {
  from { opacity: 0; transform: translateY(10px) scale(.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(68px + clamp(3rem,6vw,5rem)) var(--px) clamp(3rem,5vw,4rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero .label { margin-bottom: .75rem; }
.page-hero h1     { margin-bottom: .875rem; }
.page-hero .lead  { max-width: 58ch; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }
.reveal-delay-4 { transition-delay: .34s; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1.5rem;
  border-radius: var(--r-full);
  font-size: .84rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease);
  z-index: 300;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 70px; }
  .hero__visual { align-items: center; }
  .hero__photo  { max-width: 340px; }
  .hero__cards  { max-width: 340px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about__inner  { grid-template-columns: 1fr; }
  .about__photo-wrap { max-width: 400px; margin: 0 auto 3rem; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }
  .contact-layout { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --py: 3rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services-grid  { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-checkboxes { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__cards { flex-direction: column; gap: .75rem; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 1rem; right: 1rem; }
  .area-towns { gap: .35rem; }
  .packages-grid { max-width: 100%; }
}
