/* ==========================================================================
   Happy Tails Pet Resort — Gurgaon
   Mobile-first stylesheet. No frameworks, no build step.
   Sections:
     1. Tokens & reset          6. Buttons, chips, badges
     2. Typography & utilities  7. Cards (services, testimonials, pricing)
     3. Header & navigation     8. Gallery & lightbox
     4. Hero                    9. Forms & contact
     5. Sections & dividers    10. Footer, FAB, animations, a11y
   ========================================================================== */

/* 1. Tokens & reset
   -------------------------------------------------------------------------- */
:root {
  /* palette — warm, cuddly, trustworthy */
  --cream: #fff9f1;
  --sand: #f8eddc;
  --sand-deep: #f1e2ca;
  --card: #ffffff;
  --ink: #3a2a1e;
  --ink-soft: #6d5847;
  --ink-faint: #99836e;
  --honey: #e98a3b;
  --honey-deep: #c76f24;
  --honey-soft: #fbe7cd;
  --teal: #2e9c8e;
  --teal-deep: #1f7d71;
  --teal-soft: #e0f2ee;
  --blush: #e76a5e;
  --blush-soft: #fde4e0;
  --wa: #25d366;
  --wa-deep: #128c7e;
  --line: #eeddc5;

  --shadow-sm: 0 2px 8px rgba(74, 47, 26, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 47, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(74, 47, 26, 0.18);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 66px;
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--honey-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--honey); }

ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

::selection { background: var(--honey-soft); color: var(--ink); }

/* 2. Typography & layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, 1160px);
  margin-inline: auto;
}

.section { padding-block: clamp(3.5rem, 9vw, 6rem); position: relative; }
.section--alt { background: var(--sand); }
.section--tight { padding-block: clamp(2.25rem, 6vw, 3.5rem); }

/* soft paw-print wallpaper for special sections */
.section--paws::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/pattern-paws.webp") repeat;
  background-size: 340px;
  opacity: 0.28;
  pointer-events: none;
}
.section--paws > * { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
  background: var(--honey-soft);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.9rem;
}

.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-head h2 {
  font-size: clamp(1.7rem, 5.4vw, 2.6rem);
  margin: 0.8rem 0 0.7rem;
}
.section-head p { font-size: clamp(1rem, 2.6vw, 1.12rem); }

.divider-paws {
  display: flex;
  justify-content: center;
  padding-block: 0.4rem;
}
.divider-paws img {
  width: min(220px, 48vw);
  opacity: 0.55;
}

.grid { display: grid; gap: 1.25rem; }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: 1.5rem; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top 0.2s;
}
.skip-link:focus { top: 0; color: #fff; }

/* 3. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 241, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
  line-height: 1.05;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.main-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-actions .btn { padding: 0.55rem 1rem; font-size: 0.9rem; }
.header-actions .btn--whatsapp span { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--card);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 30, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(84vw, 340px);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  padding: calc(var(--header-h) + 1.5rem) 1.6rem 2rem;
  transform: translateX(102%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.25, 1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
}
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }
.nav-drawer.is-open::before { opacity: 1; }
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }

.nav-drawer-panel a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.65rem 0.4rem;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer-panel a:not(.btn):hover,
.nav-drawer-panel a[aria-current="page"] { color: var(--honey-deep); background: var(--honey-soft); padding-inline: 0.8rem; }
.nav-drawer-panel .drawer-cta { margin-top: 1.2rem; display: grid; gap: 0.7rem; }
.nav-drawer-panel .drawer-note {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

@media (min-width: 1024px) {
  .nav-toggle, .nav-drawer { display: none; }
  .main-nav { display: flex; align-items: center; gap: 0.25rem; }
  .main-nav a {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: var(--r-pill);
    transition: color 0.2s, background 0.2s;
  }
  .main-nav a:hover { color: var(--ink); background: var(--sand); }
  .main-nav a[aria-current="page"] { color: var(--honey-deep); background: var(--honey-soft); }
  .header-actions .btn--whatsapp span { display: inline; }
}

/* 4. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top,
      rgba(42, 26, 12, 0.82) 0%,
      rgba(42, 26, 12, 0.45) 34%,
      rgba(42, 26, 12, 0.08) 62%,
      rgba(42, 26, 12, 0.18) 100%);
}

.hero-content {
  width: min(100% - 2.5rem, 1160px);
  margin-inline: auto;
  padding-block: clamp(2.2rem, 7vw, 4.5rem);
  color: #fff;
  max-width: 1160px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 249, 241, 0.16);
  border: 1px solid rgba(255, 249, 241, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.hero-badge svg { width: 15px; height: 15px; fill: var(--blush); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 9vw, 4.3rem);
  margin: 1rem 0 0.9rem;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: #ffc98f;
}
.hero-sub {
  font-size: clamp(1.02rem, 3vw, 1.25rem);
  max-width: 44ch;
  color: rgba(255, 249, 241, 0.92);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-top: 1.7rem;
  padding: 0;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(255, 249, 241, 0.14);
  border: 1px solid rgba(255, 249, 241, 0.28);
  border-radius: var(--r-pill);
  padding: 0.38rem 0.85rem;
}
.hero-trust svg { width: 14px; height: 14px; fill: #ffc98f; }

/* 5. Sections
   -------------------------------------------------------------------------- */

/* stats strip */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding-block: 1.9rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  font-weight: 700;
  color: #ffc98f;
}
.stat span { font-size: 0.85rem; font-weight: 700; opacity: 0.85; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* split feature (photo + text) */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img { width: 100%; object-fit: cover; }
.split-media .floating-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.floating-tag img { width: 38px; height: 38px; }
.floating-tag b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 0.95rem; }
.floating-tag span { font-size: 0.78rem; font-weight: 700; color: var(--ink-faint); }

.split-body h2 { font-size: clamp(1.7rem, 5.4vw, 2.5rem); margin: 0.8rem 0 0.9rem; }
.split-body > p { margin-bottom: 1.1rem; }

.check-list { display: grid; gap: 0.7rem; padding: 0; margin: 1.3rem 0; }
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 700;
  color: var(--ink);
}
.check-list li small { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.check-list .check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-list .check svg { width: 13px; height: 13px; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
  .split--flip .split-media { order: 2; }
}

/* how it works steps */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.5rem 1.6rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1.1rem;
  left: 1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--honey);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.97rem; }

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-deep) 100%);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 7vw, 4rem) clamp(1.4rem, 5vw, 4rem);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/pattern-paws.webp") repeat;
  background-size: 300px;
  opacity: 0.14;
  mix-blend-mode: luminosity;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 6vw, 2.7rem); margin-bottom: 0.7rem; }
.cta-banner p { max-width: 52ch; margin: 0 auto 1.6rem; font-size: clamp(1rem, 2.8vw, 1.15rem); }
.cta-banner .btn--light:hover { color: var(--honey-deep); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* page hero for inner pages */
.page-hero {
  background:
    linear-gradient(rgba(58, 42, 30, 0.03), rgba(58, 42, 30, 0.03)),
    var(--sand);
  padding: clamp(2.6rem, 8vw, 4.5rem) 0 clamp(2.2rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/pattern-paws.webp") repeat;
  background-size: 340px;
  opacity: 0.25;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 7vw, 3.2rem); margin: 0.9rem 0 0.6rem; }
.page-hero p { max-width: 58ch; font-size: clamp(1rem, 2.8vw, 1.15rem); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--honey-deep); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.4rem; color: var(--ink-faint); }
.breadcrumb [aria-current] { color: var(--honey-deep); }

/* 6. Buttons, chips, badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.72rem 1.5rem;
  border-radius: var(--r-pill);
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn svg { width: 19px; height: 19px; flex: none; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--honey);
  color: #fff;
  box-shadow: 0 8px 20px rgba(201, 111, 36, 0.35);
}
.btn--primary:hover { background: var(--honey-deep); color: #fff; }

.btn--whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.32);
}
.btn--whatsapp:hover { background: var(--wa-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--ghost:hover { border-color: var(--honey); color: var(--honey-deep); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { color: var(--ink); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.btn--lg { padding: 0.9rem 1.9rem; font-size: 1.05rem; }

/* 7. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--honey-soft);
}

.svc-card { display: flex; flex-direction: column; }
.svc-card .svc-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: var(--honey-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.svc-card .svc-icon img { width: 52px; height: 52px; }
.svc-card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.97rem; flex: 1; }
.svc-card .svc-link {
  margin-top: 1rem;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.svc-card .svc-link svg { width: 15px; height: 15px; fill: currentColor; transition: transform 0.2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* detailed service rows (services page) */
.svc-detail {
  display: grid;
  gap: 1.3rem;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.svc-detail .svc-icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: var(--honey-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.svc-detail .svc-icon img { width: 58px; height: 58px; }
.svc-detail h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: 0.5rem; }
.svc-detail .svc-price {
  display: inline-block;
  margin-top: 0.3rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-pill);
}
.svc-detail ul { padding: 0; display: grid; gap: 0.55rem; margin-top: 0.9rem; }
.svc-detail ul li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; }
.svc-detail ul svg { flex: none; width: 17px; height: 17px; margin-top: 4px; fill: var(--teal); }
@media (min-width: 720px) {
  .svc-detail { grid-template-columns: auto 1fr; align-items: start; }
}

/* testimonials */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.testimonial .stars { display: flex; gap: 2px; }
.testimonial .stars svg { width: 17px; height: 17px; fill: #f5a623; }
.testimonial blockquote { font-size: 0.99rem; font-style: normal; padding: 0; }
.testimonial footer { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testimonial footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--honey-soft);
}
.testimonial footer b { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; }
.testimonial footer span { font-size: 0.83rem; font-weight: 700; color: var(--ink-faint); }

/* pricing */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 2.2rem;
}
.price-card--featured {
  border-color: var(--honey);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.price-card .plan-tag {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--honey);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.95rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; }
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.6rem 0 0.1rem;
}
.price-card .amount small { font-size: 1rem; font-weight: 600; color: var(--ink-faint); }
.price-card .per { font-size: 0.85rem; font-weight: 700; color: var(--ink-faint); }
.price-card ul {
  padding: 0;
  margin: 1.3rem 0 1.5rem;
  display: grid;
  gap: 0.55rem;
  text-align: left;
}
.price-card ul li { display: flex; gap: 0.55rem; font-size: 0.95rem; align-items: flex-start; }
.price-card ul svg { flex: none; width: 16px; height: 16px; margin-top: 4px; fill: var(--teal); }
.price-card .btn { margin-top: auto; }

.addon-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.addon-table th, .addon-table td { padding: 0.9rem 1.1rem; text-align: left; font-size: 0.96rem; }
.addon-table th { background: var(--sand); font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.addon-table tr + tr td { border-top: 1px solid var(--line); }
.addon-table td:last-child { font-weight: 800; color: var(--ink); white-space: nowrap; }

.note-box {
  margin-top: 1.5rem;
  background: var(--teal-soft);
  border: 1.5px solid rgba(46, 156, 142, 0.25);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  font-size: 0.93rem;
}
.note-box b { color: var(--teal-deep); }

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 0.8rem; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--honey-soft);
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-item summary .faq-icon svg { width: 13px; height: 13px; fill: currentColor; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); background: var(--honey); color: #fff; }
.faq-item .faq-body { padding: 0 1.25rem 1.2rem; font-size: 0.97rem; }
.faq-item .faq-body a { font-weight: 700; }

/* 8. Gallery & lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.gallery-grid button {
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 1;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-grid button:hover img { transform: scale(1.06); }
.gallery-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 12, 0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-grid button:hover::after { opacity: 1; }

@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .gallery-grid--wide { grid-template-columns: repeat(4, 1fr); } }

.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(94vw, 900px);
  width: auto;
}
.lightbox::backdrop { background: rgba(30, 20, 12, 0.88); }
.lightbox figure {
  margin: 0;
  position: relative;
  background: var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}
.lightbox figcaption {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 3.5rem;
}
.lightbox .lb-btn {
  position: absolute;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: rgba(255, 249, 241, 0.92);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox .lb-btn:hover { background: #fff; }
.lightbox .lb-btn svg { width: 20px; height: 20px; fill: currentColor; }
.lightbox .lb-close { top: 0.7rem; right: 0.7rem; }
.lightbox .lb-prev { left: 0.7rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 0.7rem; top: 50%; transform: translateY(-50%); }

/* 9. Forms & contact
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.3rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 1.05rem; }
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-field--full { grid-column: 1 / -1; }
}
.form-field label {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.form-field label .req { color: var(--blush); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { min-height: 108px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3.5px rgba(233, 138, 59, 0.18);
}
.form-field .hint { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.3rem; }
.form-error {
  display: none;
  background: var(--blush-soft);
  border: 1.5px solid rgba(231, 106, 94, 0.4);
  color: #a3382e;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.form-error.is-visible { display: block; }
.form-footnote { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.9rem; }

.contact-info { display: grid; gap: 1rem; }
.contact-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem;
}
.contact-tile .ct-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--honey-soft);
  color: var(--honey-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-tile .ct-icon svg { width: 23px; height: 23px; fill: currentColor; }
.contact-tile h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.contact-tile p { font-size: 0.95rem; }
.contact-tile a { font-weight: 800; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 330px; border: 0; display: block; }

/* 10. Footer, FAB, animations, accessibility
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #cdb9a5;
  padding: clamp(2.8rem, 7vw, 4.2rem) 0 1.4rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  margin-bottom: 2.4rem;
}
.footer-brand .brand-name, .footer-brand .brand-name small { color: var(--cream); }
.footer-brand .brand-name small { color: #ffc98f; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; margin-top: 0.9rem; }
.site-footer h3 {
  color: var(--cream);
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}
.footer-links { padding: 0; display: grid; gap: 0.5rem; }
.footer-links a {
  color: #cdb9a5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}
.footer-links a:hover { color: #ffc98f; }
.footer-contact { padding: 0; display: grid; gap: 0.75rem; font-size: 0.95rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { flex: none; width: 17px; height: 17px; margin-top: 3px; fill: #ffc98f; }
.footer-contact a { color: #cdb9a5; font-weight: 700; }
.footer-contact a:hover { color: #ffc98f; }

.footer-bottom {
  border-top: 1px solid rgba(205, 185, 165, 0.2);
  padding-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.84rem;
}
.footer-bottom a { color: #cdb9a5; }
.footer-bottom .made-with svg { width: 12px; height: 12px; fill: var(--blush); vertical-align: -1px; }

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
}

/* floating WhatsApp button */
.wa-fab {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(18, 140, 126, 0.45);
  transition: transform 0.2s, background 0.2s;
}
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-fab:hover { transform: scale(1.08); background: var(--wa-deep); }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.55);
  animation: fab-pulse 2.2s ease-out infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(0.82); opacity: 1; }
  70%, 100% { transform: scale(1.22); opacity: 0; }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* focus & motion */
:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2.5px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* 404 page */
.error-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: 3rem;
}
.error-page img { width: min(320px, 65vw); margin: 0 auto 1.4rem; border-radius: var(--r-lg); }
.error-page h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 0.6rem; }
.error-page p { max-width: 46ch; margin: 0 auto 1.6rem; }
.error-page .cta-actions { justify-content: center; }
