/* ============================================================
   PELUCHÉ — Design System
   Paleta extraída diretamente da identidade visual oficial
   ============================================================ */
:root {
  /* Core palette — from brand images */
  --white:          #FFFFFF;
  --warm-white:     #FDFCF9;
  --off-white:      #F5F1EB;   /* main bg — warm papyrus */
  --cream:          #EDE7DC;   /* secondary bg */
  --cream-md:       #E3DDD3;   /* borders, dividers */
  --cream-dark:     #D6CEBF;   /* stronger dividers */

  --sage:           #9BAD96;   /* primary green — backpack color */
  --sage-light:     #C0D0BB;   /* borders, accents */
  --sage-dark:      #697E65;   /* hover, text on light */
  --sage-bg:        #EBF0E9;   /* very light green tint */
  --sage-card-border: #B5C9B1; /* card border */

  --gold:           #B8A07A;   /* warm gold accent — star mark */
  --gold-light:     #D4C4A0;   /* subtle gold */

  --charcoal:       #28261F;   /* logo text — warm near-black */
  --text:           #48453C;   /* body text */
  --text-light:     #7A7568;   /* secondary text */

  --border:         #D8D1C4;
  --border-light:   #EAE4DA;

  /* Typography */
  --sc:    'Cormorant SC', Georgia, serif;      /* logo / small caps */
  --serif: 'Cormorant Garamond', Georgia, serif; /* headings */
  --sans:  'Jost', system-ui, sans-serif;        /* body */

  /* Spacing */
  --sect: 96px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(40,38,31,.05);
  --sh-sm: 0 4px 16px rgba(40,38,31,.07);
  --sh-md: 0 10px 36px rgba(40,38,31,.09);
  --sh-lg: 0 24px 64px rgba(40,38,31,.11);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .32s;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; width: 100%; height: auto; object-fit: cover; }
a     { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--sans); font-weight: 300; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 28px; }
.section    { padding: var(--sect) 0; }

/* ============================================================
   BACKGROUND TEXTURE — paw print pattern
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cellipse cx='60' cy='76' rx='13' ry='16' fill='%239BAD96' fill-opacity='0.04'/%3E%3Cellipse cx='42' cy='50' rx='6' ry='7' fill='%239BAD96' fill-opacity='0.04'/%3E%3Cellipse cx='54' cy='42' rx='6' ry='7' fill='%239BAD96' fill-opacity='0.04'/%3E%3Cellipse cx='68' cy='42' rx='6' ry='7' fill='%239BAD96' fill-opacity='0.04'/%3E%3Cellipse cx='79' cy='50' rx='6' ry='7' fill='%239BAD96' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -.01em;
  margin-bottom: 0;
}
.section__title em { font-style: italic; color: var(--sage-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section__head { text-align: center; margin-bottom: 68px; }
.section__head .section__title { margin-bottom: 20px; }

/* Ornamental rule */
.section__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.section__rule span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--border);
}
.section__rule svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.on { opacity: 1; transform: none; }
.reveal--right { transform: translateX(28px); }
.reveal--right.on { transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--t) var(--ease), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn--sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  box-shadow: 0 4px 18px rgba(155,173,150,.3);
}
.btn--sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); box-shadow: 0 8px 28px rgba(155,173,150,.4); }

.btn--line {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--cream-md);
}
.btn--line:hover { border-color: var(--sage); color: var(--sage-dark); }

.btn--wa-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--cream-md);
}
.btn--wa-outline:hover { border-color: #25D366; color: #25D366; }

.btn--full { width: 100%; justify-content: center; }
.btn--lg   { padding: 16px 36px; font-size: .88rem; }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab {
  position: fixed;
  right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  z-index: 900;
  transition: transform var(--t), box-shadow var(--t);
}
.fab svg { width: 20px; height: 20px; }
.fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--sh-lg); }
.fab--wa { bottom: 80px; background: #25D366; color: var(--white); }
.fab--ph { bottom: 20px; background: var(--charcoal); color: var(--white); }

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
  flex-shrink: 0;
  transition: opacity var(--t);
}
.logo:hover { opacity: .85; }

.logo__mark { display: block; margin-bottom: 1px; }
.logo__star-svg { width: 12px; height: 12px; color: var(--gold); fill: var(--gold); }

.logo__wordmark {
  font-family: var(--sc);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--white);
  transition: color var(--t);
  line-height: 1;
}
.logo__tagline {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
  margin-top: 2px;
}

/* Scrolled / dark logo */
.header.scrolled .logo__wordmark { color: var(--charcoal); }
.header.scrolled .logo__tagline  { color: var(--text-light); }
.logo--light .logo__wordmark     { color: var(--white); }
.logo--light .logo__tagline      { color: rgba(255,255,255,.45); }
.logo--dark  .logo__wordmark     { color: var(--charcoal); }
.logo--dark  .logo__tagline      { color: var(--text-light); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.header.scrolled {
  background: rgba(245,241,235,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 14px 0;
}

.header__inner { display: flex; align-items: center; gap: 20px; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  padding: 7px 11px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav__link:hover { color: var(--white); }
.header.scrolled .nav__link { color: var(--text-light); }
.header.scrolled .nav__link:hover { color: var(--charcoal); background: var(--sage-bg); }

.nav__cta {
  margin-left: 10px;
  padding: 8px 20px;
  font-size: .75rem;
}
.header:not(.scrolled) .nav__cta {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  box-shadow: none;
}
.header:not(.scrolled) .nav__cta:hover { background: rgba(255,255,255,.25); }
.header.scrolled .nav__cta { background: var(--sage); border-color: var(--sage); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--t); }
.header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ============================================================
   HERO — editorial split layout
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

/* Decorative line-art elements */
.hero__deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco { position: absolute; color: var(--sage); }

/* Positions match the scattered composition in IMG_1564 */
.deco--bone-1   { width: 90px;  top: 14%;  left: 3%;   opacity: .13; transform: rotate(-18deg); }
.deco--rope-1   { width: 72px;  top: 28%;  left: 6%;   opacity: .1;  transform: rotate(12deg); }
.deco--paw-1    { width: 36px;  top: 58%;  left: 4%;   opacity: .12; }
.deco--scissors-1 { width: 54px; top: 72%; left: 9%;  opacity: .09; transform: rotate(-8deg); }
.deco--bone-2   { width: 70px;  top: 82%;  right: 4%;  opacity: .1;  transform: rotate(22deg); }
.deco--paw-2    { width: 28px;  top: 18%;  right: 6%;  opacity: .1; }

/* Split layout */
.hero__split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

/* Left — brand text panel */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative;
  /* Sage green left-border like the card in IMG_1564 */
  border-right: 1px solid var(--border-light);
}

/* Very subtle sage border accent line (left edge) */
.hero__left::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--sage-light), transparent);
  border-radius: 0 2px 2px 0;
}

.hero__pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__pre svg { fill: var(--gold); flex-shrink: 0; }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--sage-dark); }

.hero__sub {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.78;
  max-width: 380px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__trust { display: flex; flex-direction: column; gap: 8px; }
.trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--text-light);
}
.trust__pill svg { fill: var(--gold); flex-shrink: 0; }

/* Right — photo panel */
.hero__right {
  position: relative;
  background: #F2F1EF; /* match IMG_1565 photo background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__img-frame {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ============================================================
   RIBBON — scrolling brand values
   ============================================================ */
.ribbon {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon__track {
  display: inline-flex;
  gap: 28px;
  animation: ribbonScroll 22s linear infinite;
}
.ribbon__track span {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.ribbon__dot { color: var(--gold) !important; font-size: .55rem !important; }

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.svc-card {
  background: var(--white);
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--t), box-shadow var(--t);
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--sage-light);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
  transform-origin: left;
  border-radius: 0 0 2px 2px;
}
.svc-card:hover { background: var(--warm-white); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-card__icon-wrap {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--sage);
  transition: color var(--t), transform var(--t);
}
.svc-card:hover .svc-card__icon-wrap { color: var(--sage-dark); transform: scale(1.06); }
.svc-card__icon { width: 100%; height: 100%; }

.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.svc-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: gap var(--t), color var(--t);
  margin-top: auto;
}
.svc-link:hover { gap: 8px; }
.svc-link span { display: inline-block; transition: transform var(--t); }
.svc-link:hover span { transform: translateX(3px); }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  background: var(--charcoal);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
/* subtle paw in dark section */
.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cellipse cx='80' cy='100' rx='18' ry='22' fill='white' fill-opacity='0.02'/%3E%3Cellipse cx='56' cy='64' rx='7' ry='9' fill='white' fill-opacity='0.02'/%3E%3Cellipse cx='70' cy='54' rx='7' ry='9' fill='white' fill-opacity='0.02'/%3E%3Cellipse cx='90' cy='54' rx='7' ry='9' fill='white' fill-opacity='0.02'/%3E%3Cellipse cx='105' cy='64' rx='7' ry='9' fill='white' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.numbers__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.num-item {
  text-align: center;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.num-item strong {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.num-item sup { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); line-height: 1; vertical-align: super; }
.num-item p   { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 8px; font-weight: 300; }

.num-divider { width: 1px; height: 52px; background: rgba(255,255,255,.07); flex-shrink: 0; }

/* ============================================================
   ABOUT / BRAND STORY
   ============================================================ */
.about { background: var(--off-white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.about__visual { position: relative; }

.about__img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
  /* Sage border like the identity card in IMG_1564 */
  outline: 1px solid var(--sage-light);
  outline-offset: 8px;
}
.about__img-main img { width: 100%; height: 100%; filter: saturate(.88); }

.about__img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 130px;
  text-align: center;
}
.about__img-badge svg { fill: var(--gold); margin-bottom: 4px; }
.about__img-badge span  { font-family: var(--sc); font-size: .95rem; font-weight: 600; color: var(--charcoal); letter-spacing: .06em; }
.about__img-badge small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }

.about__content > .section__title { margin-bottom: 20px; }
.about__content > p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about__diffs { display: flex; flex-direction: column; gap: 4px; margin: 28px 0 32px; }

.diff {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  transition: background var(--t);
}
.diff:hover { background: var(--sage-bg); }

.diff__check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-bg);
  border: 1px solid var(--sage-light);
  color: var(--sage-dark);
  font-size: .75rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.diff:hover .diff__check { background: var(--sage); color: var(--white); border-color: var(--sage); }

.diff > div strong { display: block; font-size: .88rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.diff > div p      { font-size: .8rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--cream); }

.how__steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.how-step {
  flex: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 48px 32px 40px;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.how-step__num {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--sage-dark);
  background: var(--cream);
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.how-step__icon-wrap {
  width: 52px; height: 52px;
  color: var(--sage);
  margin: 0 auto 20px;
}
.how-step__icon-wrap svg { width: 100%; height: 100%; }

.how-step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.how-step p { font-size: .83rem; color: var(--text-light); line-height: 1.72; }

.how-step__arrow {
  padding: 0 16px;
  flex-shrink: 0;
  color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step__arrow svg { width: 32px; height: 12px; flex-shrink: 0; }

/* ============================================================
   BOOKING / FORM
   ============================================================ */
.booking { background: var(--off-white); }

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.booking__left .section__title { margin-bottom: 14px; }
.booking__left > p { font-size: .88rem; color: var(--text-light); line-height: 1.78; margin-bottom: 32px; }

.booking__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.booking__img-wrap img {
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--sh-md);
  filter: saturate(.85);
  /* sage border from the card */
  outline: 1px solid var(--sage-light);
  outline-offset: 6px;
}

.booking__img-tag {
  position: absolute;
  bottom: -14px; right: 20px;
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.booking__img-tag svg { fill: var(--gold); }

/* FORM */
.form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-sm);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form__group { display: flex; flex-direction: column; gap: 5px; }
.form__group--full { margin-bottom: 20px; }

.form__group label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237A7568'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
  cursor: pointer;
}
.form__group textarea { resize: vertical; min-height: 84px; }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(155,173,150,.12);
}
.form__group input.err,
.form__group select.err { border-color: #C08070; }
.form__err { font-size: .7rem; color: #C08070; min-height: 14px; }

.form__success {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--sage-bg);
  border: 1px solid var(--sage-light);
  border-radius: var(--r-md);
  font-size: .84rem;
  color: var(--sage-dark);
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form__success.on { display: flex; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }

/* Viewport clips the track — cards never get cut */
.carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  /* width set by JS to sum of all cards */
}

/* Card — width injected by JS so always fills exactly N columns */
.t-card {
  flex: 0 0 auto;          /* JS sets explicit width */
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  overflow: hidden;         /* contain the quote glyph */
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

/* Decorative quote mark — matches brand's editorial style */
.t-card__quote {
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sage-light);
  opacity: .35;
  pointer-events: none;
  user-select: none;
}

/* Sage top border line (matches IMG_1564 card border) */
.t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
}

.t-card__stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative; /* above quote glyph */
  z-index: 1;
}

.t-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.t-card__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

/* Circular avatar */
.t-card__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-bg), var(--cream));
  border: 1.5px solid var(--sage-light);
  color: var(--sage-dark);
  font-family: var(--sc);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(155,173,150,.2);
}

.t-card__info { display: flex; flex-direction: column; gap: 2px; }
.t-card__info strong { font-size: .88rem; font-weight: 600; color: var(--charcoal); }
.t-card__info span   { font-size: .76rem; color: var(--text-light); font-weight: 300; }

/* Controls */
.carousel__ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.c-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
  cursor: pointer;
}
.c-btn svg { width: 18px; height: 18px; stroke-linecap: round; stroke-linejoin: round; }
.c-btn:hover { background: var(--sage); color: var(--white); border-color: var(--sage); transform: scale(1.08); }

.c-dots { display: flex; gap: 6px; align-items: center; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--t), width var(--t), border-radius var(--t);
}
.dot.active { background: var(--sage); width: 22px; border-radius: 4px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--cream);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.cta-final__deco { position: absolute; inset: 0; pointer-events: none; }
.deco--paw-cta-1 { width: 80px;  bottom: 10%; left: 5%;  color: var(--sage); opacity: .07; }
.deco--bone-cta  { width: 100px; top: 15%;   right: 4%; color: var(--sage); opacity: .07; transform: rotate(20deg); }
.deco--paw-cta-2 { width: 50px;  top: 20%;   left: 12%; color: var(--sage); opacity: .05; }

.cta-final__inner { position: relative; z-index: 1; }
.cta-final__inner .section__title { margin-bottom: 18px; }
.cta-final__inner > p {
  font-size: .95rem;
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-final__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: var(--white); }

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__brand p {
  font-size: .84rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  margin: 14px 0 22px;
  line-height: 1.72;
  max-width: 240px;
}

.footer__social { display: flex; gap: 8px; }
.soc {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: var(--t);
}
.soc svg { width: 15px; height: 15px; }
.soc:hover { background: var(--sage); color: var(--white); border-color: transparent; transform: translateY(-2px); }

.footer__col h4 {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: .83rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  margin-bottom: 9px;
  line-height: 1.65;
  transition: color var(--t);
}
.footer__col a:hover { color: var(--white); padding-left: 3px; }

.footer__map { height: 200px; opacity: .55; transition: opacity var(--t); }
.footer__map:hover { opacity: 1; }
.footer__map iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(.9) brightness(1.05); }

.footer__bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.05); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer__bottom p { font-size: .76rem; font-weight: 300; color: rgba(255,255,255,.28); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sect: 80px; }

  /* Hero */
  .hero__split { grid-template-columns: 1fr 1fr; }
  .hero__left  { padding: 120px 40px 72px 48px; }
  .hero__title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }

  /* Services */
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about__inner { gap: 48px; }
  .about__img-badge { right: 0; }

  /* Numbers */
  .num-item { padding: 0 32px; }

  /* Booking */
  .booking__inner { grid-template-columns: 1fr; gap: 48px; }
  .booking__img-wrap { max-width: 480px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sect: 64px; }

  /* ── NAV / MENU ── */
  .nav, .nav__cta { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(245,241,235,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
    padding: 24px;
  }
  .nav.open .nav__link {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--charcoal);
    padding: 10px 32px;
    letter-spacing: .01em;
    border-radius: var(--r-md);
  }
  .nav.open .nav__link:hover { background: var(--sage-bg); color: var(--sage-dark); }
  .hamburger { display: flex; }

  /* ── HERO ── */
  .hero__split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hero__left {
    padding: 100px 24px 44px;
    min-height: auto;
    order: 2;
  }
  .hero__left::before { display: none; }
  .hero__right {
    order: 1;
    /* Let the image dictate height — no cropping */
    min-height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
    background: #F2F1EF;
  }
  .hero__photo {
    object-fit: contain;
    object-position: center;
  }
  .hero__title { font-size: clamp(2rem, 7.5vw, 3rem); }
  .hero__sub   { font-size: .88rem; }
  .hero__actions { gap: 10px; }
  .hero__trust { flex-wrap: wrap; gap: 6px; }
  .hero__deco  { opacity: .3; }

  /* ── RIBBON ── */
  .ribbon__track span { font-size: .65rem; }

  /* ── SERVICES ── */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: var(--r-lg);
  }
  .svc-card { padding: 28px 22px; }

  /* ── NUMBERS ── */
  .numbers { padding: 40px 0; }
  .numbers__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .num-item { padding: 20px 16px; }
  .num-item strong { font-size: 2.4rem; }
  .num-divider { display: none; }
  .num-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.07); }
  .num-item:nth-child(1),
  .num-item:nth-child(2)    { border-bottom: 1px solid rgba(255,255,255,.07); }

  /* ── ABOUT ── */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-main { aspect-ratio: 3/2; }
  .about__img-badge { right: 16px; bottom: -16px; }
  .about__diffs { gap: 2px; }
  .diff { padding: 12px 14px; }

  /* ── HOW IT WORKS ── */
  .how__steps { flex-direction: column; gap: 20px; align-items: stretch; }
  .how-step { padding: 40px 24px 32px; }
  .how-step__arrow { transform: rotate(90deg); align-self: center; width: 40px; padding: 0; }
  .how-step__arrow svg { transform: rotate(90deg); }

  /* ── BOOKING ── */
  .booking__inner { grid-template-columns: 1fr; gap: 40px; }
  .booking__left  { order: 1; }
  .booking__right { order: 2; }
  .booking__img-wrap { display: none; }
  .form { padding: 28px 20px; border-radius: var(--r-lg); }
  .form__row { grid-template-columns: 1fr; gap: 12px; }

  /* ── CAROUSEL / TESTIMONIALS ── */
  .carousel__ctrl { gap: 12px; }
  .c-btn { width: 40px; height: 40px; }

  /* ── CTA FINAL ── */
  .cta-final { padding: 72px 0; }
  .cta-final__inner .section__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .cta-final__actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-final__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ── FOOTER ── */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 36px;
  }
  .footer__bottom-inner { flex-direction: column; gap: 4px; text-align: center; }
  .footer__map { height: 180px; }

  /* ── FAB ── */
  .fab { right: 14px; width: 44px; height: 44px; }
  .fab--wa { bottom: 70px; }
  .fab--ph { bottom: 16px; }

  /* ── SECTION HEAD ── */
  .section__head { margin-bottom: 48px; }
  .section__title { font-size: clamp(1.8rem, 5.5vw, 2.8rem); }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --sect: 52px; }

  .container { padding-inline: 18px; }

  /* Hero — image stays whole, never cropped */
  .hero__right  { aspect-ratio: 4 / 5; min-height: auto; max-height: none; }
  .hero__left   { padding: 88px 18px 40px; }
  .hero__title  { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero__sub    { font-size: .85rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__trust  { gap: 4px; }

  /* Services */
  .svc-card { padding: 24px 18px; }
  .svc-card__icon-wrap { width: 44px; height: 44px; }

  /* Numbers */
  .num-item strong { font-size: 2rem; }
  .num-item p { font-size: .62rem; }

  /* Form */
  .form { padding: 22px 16px; }
  .form__group input,
  .form__group select,
  .form__group textarea { font-size: .85rem; padding: 10px 12px; }

  /* Section title */
  .section__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Footer */
  .footer__top { padding: 40px 0 28px; }
  .footer__col h4 { margin-bottom: 12px; }
  .footer__col a,
  .footer__col p { font-size: .8rem; margin-bottom: 7px; }
}
