/* ============================================================
   Tail Waggin' Pet Spa — Dubai Hills
   Design system + layout
   ============================================================ */

:root {
  /* Brand kit (teal/green + gold) with storefront energy accents */
  --bg: #f6faf5;
  --surface: #ffffff;
  --surface-2: #edf4ee;
  --surface-3: #e3eee6;
  --text: #15231e;
  --muted: #5d6d67;
  --primary: #1f9d7a;
  --primary-deep: #16785d;
  --primary-soft: #d6ece3;
  --secondary: #294f6b;
  --secondary-deep: #1d3a50;
  --accent: #f2b84b;
  --accent-deep: #d99a23;
  --energy-blue: #00a2ea;
  --energy-orange: #f0641c;
  --border: #d9e8e0;
  --border-strong: #c2d8cd;
  --focus: #1f9d7a;
  --shadow-sm: 0 1px 2px rgba(21, 35, 30, 0.06), 0 2px 8px rgba(21, 35, 30, 0.05);
  --shadow-md: 0 6px 18px rgba(21, 35, 30, 0.08), 0 2px 6px rgba(21, 35, 30, 0.05);
  --shadow-lg: 0 18px 50px rgba(21, 35, 30, 0.14), 0 6px 16px rgba(21, 35, 30, 0.08);
  --ff-display: "Manrope", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --header-h: 64px;
  --maxw: 1200px;
  --gut: clamp(18px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.num { font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section { padding-block: clamp(56px, 9vw, 116px); }
.section-head { max-width: 640px; margin-bottom: clamp(30px, 5vw, 52px); }
.section-head h2 { font-size: clamp(1.9rem, 5.5vw, 3.1rem); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--primary);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 15px 22px;
  min-height: 48px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--bg-btn);
  color: var(--fg-btn);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--accent { --bg-btn: var(--accent); --fg-btn: #3a2a06; }
.btn--accent:hover { background: var(--accent-deep); }
.btn--dark { --bg-btn: var(--secondary); --fg-btn: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--primary); color: var(--primary-deep); }
.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.34);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.6); }
.btn--block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(246, 250, 245, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 20px rgba(21,35,30,0.05);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__chip {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fffef9;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.brand__chip img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em; }
.brand__name span { font-size: 0.7rem; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }

.nav { display: none; }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 4px;
  position: relative;
  transition: color 0.15s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav a:hover { color: var(--primary-deep); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; align-items: center; gap: 12px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 16px 9px 18px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 44px;
}
.menu-toggle .bars { display: grid; gap: 3.5px; }
.menu-toggle .bars i { width: 17px; height: 2px; background: #fff; border-radius: 2px; display: block; }

@media (min-width: 940px) {
  .nav { display: flex; align-items: center; gap: 6px; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__top {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gut);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__close {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border-strong); background: var(--surface);
  font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--text);
}
.mobile-menu nav { display: flex; flex-direction: column; padding: 14px var(--gut); gap: 2px; }
.mobile-menu nav a {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu nav a span { color: var(--muted); font-size: 0.85rem; font-weight: 600; font-family: var(--ff-body); }
.mobile-menu__foot { padding: 18px var(--gut) calc(18px + env(safe-area-inset-bottom)); display: grid; gap: 10px; border-top: 1px solid var(--border); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(20px, 4vw, 40px); padding-bottom: clamp(40px, 7vw, 78px); }
.hero__grid { display: grid; gap: clamp(26px, 4vw, 44px); align-items: center; }

.hero__copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.5rem, 9vw, 4.6rem);
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.hero h1 .swash { color: var(--primary); }
.hero h1 .deserve {
  color: var(--energy-orange);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.hero__lead {
  margin-top: 20px;
  font-size: clamp(1.04rem, 2.4vw, 1.24rem);
  color: var(--muted);
  max-width: 30ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
}
.meta-chip svg { width: 17px; height: 17px; color: var(--primary); flex: none; }

/* Hero media collage */
.hero__media { position: relative; z-index: 1; }
.hero__media-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--surface-3);
}
.hero__media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-main::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(29,58,80,0.28));
  pointer-events: none;
}

.rating-card {
  position: absolute;
  left: -10px; bottom: 22px;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 13px;
  max-width: 250px;
}
.rating-card__score { font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; line-height: 1; color: var(--text); }
.rating-card__stars { display: flex; gap: 1px; color: var(--accent); }
.rating-card__stars svg { width: 14px; height: 14px; }
.rating-card small { display: block; color: var(--muted); font-size: 0.76rem; font-weight: 600; margin-top: 3px; }

.hero__inset {
  position: absolute;
  right: -14px; top: 24px;
  z-index: 3;
  width: 38%;
  max-width: 168px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-lg);
  background: var(--surface-3);
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; }

.hero__paw {
  position: absolute;
  z-index: 0;
  color: var(--primary-soft);
  opacity: 0.8;
}
.hero__paw--1 { top: -6px; right: 30%; width: 50px; transform: rotate(-12deg); }

@media (min-width: 860px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4vw, 56px); }
  .hero__media-main { aspect-ratio: 5 / 6; }
  .rating-card { left: -28px; }
  .hero__inset { right: -26px; width: 40%; }
}

/* ============================================================
   Reassurance strip (signature motif)
   ============================================================ */
.reassure {
  background: var(--secondary);
  color: #eaf2f5;
  position: relative;
  overflow: hidden;
}
.reassure::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(520px 320px at 88% -10%, rgba(31,157,122,0.32), transparent 60%),
    radial-gradient(420px 300px at 4% 120%, rgba(0,162,234,0.22), transparent 60%);
  pointer-events: none;
}
.reassure .wrap { position: relative; z-index: 1; }
.reassure__inner {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 64px);
}
.reassure__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.14);
}
.reassure__photo img { width: 100%; height: 100%; object-fit: cover; }
.reassure h2 { color: #fff; font-size: clamp(1.7rem, 4.5vw, 2.5rem); }
.reassure__lead { color: #c4d6df; margin-top: 14px; font-size: 1.05rem; }
.reassure__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.reassure__list li { display: flex; gap: 13px; align-items: flex-start; }
.reassure__list .tick {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(31,157,122,0.22); color: #6fe0bd;
  display: grid; place-items: center; margin-top: 1px;
}
.reassure__list .tick svg { width: 16px; height: 16px; }
.reassure__list b { font-family: var(--ff-display); font-weight: 700; color: #fff; display: block; font-size: 1.02rem; }
.reassure__list span { color: #b6cbd5; font-size: 0.92rem; }

@media (min-width: 860px) {
  .reassure__inner { grid-template-columns: 1.1fr 1fr; }
}

/* ============================================================
   Services — need-based explorer
   ============================================================ */
.services { background: var(--bg); }
.svc-layout { display: grid; gap: clamp(22px, 3vw, 38px); }
.svc-tabs { display: grid; gap: 10px; }
.svc-tab {
  display: flex; align-items: center; gap: 14px;
  width: 100%; text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
  font-family: inherit;
  color: var(--text);
}
.svc-tab:hover { border-color: var(--border-strong); transform: translateX(3px); }
.svc-tab.active { border-color: var(--primary); background: #fff; box-shadow: var(--shadow-md); }
.svc-tab.active .svc-tab__icon { background: var(--primary); color: #fff; }
.svc-tab__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary-deep);
  display: grid; place-items: center;
  transition: background 0.18s ease, color 0.18s ease;
}
.svc-tab__icon svg { width: 23px; height: 23px; }
.svc-tab__text b { font-family: var(--ff-display); font-weight: 700; font-size: 1.06rem; display: block; }
.svc-tab__text span { color: var(--muted); font-size: 0.88rem; }
.svc-tab__arrow { margin-left: auto; color: var(--border-strong); transition: color 0.18s, transform 0.18s; }
.svc-tab.active .svc-tab__arrow { color: var(--primary); transform: translateX(2px); }

.svc-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
}
.svc-panel__media { position: relative; aspect-ratio: 16 / 12; background: var(--surface-3); overflow: hidden; }
.svc-panel__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-panel__body { padding: clamp(22px, 4vw, 34px); }
.svc-panel__body h3 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); }
.svc-panel__body > p { color: var(--muted); margin-top: 12px; font-size: 1.02rem; }
.svc-feats { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.svc-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.97rem; }
.svc-feats .dot { flex: none; width: 20px; height: 20px; border-radius: 6px; background: var(--accent); color: #3a2a06; display: grid; place-items: center; margin-top: 2px; }
.svc-feats .dot svg { width: 13px; height: 13px; }
.svc-panel__note {
  margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--border-strong);
  font-size: 0.86rem; color: var(--muted);
}
.svc-fade { animation: svcFade 0.4s ease; }
@keyframes svcFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (min-width: 760px) {
  .svc-panel { grid-template-columns: 1fr 1fr; }
  .svc-panel__media { aspect-ratio: auto; height: 100%; }
}
@media (min-width: 980px) {
  .svc-layout { grid-template-columns: 0.82fr 1.18fr; align-items: start; }
}

/* offer ribbon */
.offer-note {
  margin-top: 26px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(100deg, var(--primary-soft), #fff);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
}
.offer-note .badge {
  font-family: var(--ff-display); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.08em;
  background: var(--accent); color: #3a2a06; padding: 6px 11px; border-radius: 999px; text-transform: uppercase;
}
.offer-note p { font-size: 0.96rem; color: var(--text); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--surface-2); }
.gal-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.gal-filter {
  font-family: var(--ff-display); font-weight: 700; font-size: 0.88rem;
  padding: 9px 16px; border-radius: 999px; min-height: 40px;
  border: 1.5px solid var(--border-strong); background: var(--surface); color: var(--text);
  cursor: pointer; transition: all 0.16s ease;
}
.gal-filter:hover { border-color: var(--primary); color: var(--primary-deep); }
.gal-filter.active { background: var(--text); color: #fff; border-color: var(--text); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.gal-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-3);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border: none; padding: 0;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item.tall { aspect-ratio: 1 / 1; }
.gal-item__tag {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(21,35,30,0.62); color: #fff;
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(6px); transition: all 0.2s ease;
}
.gal-item:hover .gal-item__tag, .gal-item:focus-visible .gal-item__tag { opacity: 1; transform: none; }
.gal-item.is-hidden { display: none; }

@media (min-width: 620px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gal-item.tall { grid-row: span 2; aspect-ratio: 3 / 4; }
  .gal-item.wide { grid-column: span 2; aspect-ratio: 16 / 10; }
}
@media (min-width: 1000px) {
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(13,22,19,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: min(94vw, 1080px);
  max-height: 84vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 20px;
  text-align: center; color: #dfece6; font-size: 0.9rem; font-weight: 500;
}
.lb-btn {
  position: absolute;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.15s ease;
}
.lb-btn:hover { background: rgba(255,255,255,0.24); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 42px; height: 42px; }
}

/* ============================================================
   About / Story
   ============================================================ */
.about { background: var(--bg); }
.about__grid { display: grid; gap: clamp(28px, 4vw, 52px); align-items: center; }
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about__media .a-img { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); background: var(--surface-3); }
.about__media .a-img img { width: 100%; height: 100%; object-fit: cover; }
.about__media .a-tall { grid-row: span 2; aspect-ratio: 3 / 4; }
.about__media .a-sq { aspect-ratio: 1 / 1; }
.about h2 { font-size: clamp(1.8rem, 4.6vw, 2.7rem); }
.about__body p { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.about__body p:first-of-type { color: var(--text); font-size: 1.12rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 16px; text-align: left; }
.stat b { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2rem); display: block; color: var(--primary-deep); }
.stat span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

.quote {
  margin-top: 30px;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(22px, 4vw, 32px);
  position: relative;
}
.quote__mark { font-family: var(--ff-display); font-size: 3rem; line-height: 0.6; color: var(--accent); }
.quote p { font-size: clamp(1.1rem, 2.6vw, 1.35rem); font-weight: 500; margin-top: 6px; font-style: italic; }
.quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.86rem; color: #b6cbd5; font-weight: 600; }

@media (min-width: 860px) {
  .about__grid { grid-template-columns: 1fr 1.05fr; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--secondary-deep); color: #e7eff2; }
.contact .eyebrow { color: #7fe3c4; }
.contact .eyebrow::before { background: var(--accent); }
.contact h2 { color: #fff; font-size: clamp(1.9rem, 5vw, 2.9rem); }
.contact__grid { display: grid; gap: clamp(26px, 4vw, 44px); }

.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 18px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-card .ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: rgba(31,157,122,0.24); color: #6fe0bd; display: grid; place-items: center;
}
.info-card .ic svg { width: 20px; height: 20px; }
.info-card h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.info-card p, .info-card a { color: #cddbe1; font-size: 0.98rem; margin-top: 4px; display: block; }
.info-card a:hover { color: #fff; text-decoration: underline; }
.info-stack { display: grid; gap: 12px; }

.map-panel {
  margin-top: 12px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 14px, rgba(255,255,255,0.06) 14px 28px);
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  text-align: center;
  position: relative;
}
.map-panel__inner { display: grid; gap: 10px; justify-items: center; padding: 20px; }
.map-panel .pin { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #3a2a06; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.map-panel b { font-family: var(--ff-display); color: #fff; font-size: 1rem; }
.map-panel span { color: #aebfc6; font-size: 0.85rem; max-width: 34ch; }

/* Form */
.enquiry {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.enquiry h3 { font-size: 1.4rem; }
.enquiry > p { color: var(--muted); font-size: 0.96rem; margin-top: 6px; }
.field { margin-top: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 7px; }
.field label .req { color: var(--energy-orange); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 0.98rem;
  padding: 13px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31,157,122,0.16);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--energy-orange); box-shadow: 0 0 0 3px rgba(240,100,28,0.14); }
.field .err { color: var(--energy-orange); font-size: 0.8rem; margin-top: 5px; display: none; font-weight: 600; }
.field .err.show { display: block; }
.field-row { display: grid; gap: 14px; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip-opt { position: relative; }
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px; min-height: 40px;
  border: 1.5px solid var(--border-strong); background: var(--bg);
  font-size: 0.88rem; font-weight: 600; cursor: pointer; margin: 0;
  transition: all 0.15s ease;
}
.chip-opt input:checked + label { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip-opt input:focus-visible + label { outline: 3px solid var(--focus); outline-offset: 2px; }

.form-success {
  display: none;
  text-align: center;
  padding: 12px 0;
}
.form-success.show { display: block; animation: svcFade 0.4s ease; }
.form-success .tickbig {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center;
}
.form-success .tickbig svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--muted); margin-top: 8px; }

@media (min-width: 920px) {
  .contact__grid { grid-template-columns: 1fr 1.05fr; align-items: start; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--text); color: #c8d3cf; padding-block: clamp(40px, 6vw, 64px) 0; }
.footer-top { display: grid; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 320px; }
.footer-brand .brand__name b { color: #fff; }
.footer-brand .brand__name span { color: #93a39d; }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; color: #93a39d; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.footer-col h5 { font-family: var(--ff-display); color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; color: #aab6b1; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #cdd6d2; }
.socials a:hover { background: var(--primary); color: #fff; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; padding-block: 22px calc(22px + var(--bottombar-space, 0px)); font-size: 0.8rem; color: #8a968f; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { font-size: 0.74rem; color: #6f7c76; max-width: 70ch; margin-top: 4px; }

@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1.4fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Mobile bottom action bar
   ============================================================ */
.bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(21,35,30,0.08);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.bottom-bar.show { transform: translateY(0); }
.bb-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 4px; border-radius: 12px; min-height: 52px; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.74rem;
  color: var(--text); border: none; background: transparent; cursor: pointer;
}
.bb-btn svg { width: 21px; height: 21px; }
.bb-btn--call { background: var(--primary); color: #fff; }
.bb-btn--enquire { background: var(--surface-2); color: var(--text); }
.bb-btn--dir { background: var(--surface-2); color: var(--text); }
@media (min-width: 940px) { .bottom-bar { display: none !important; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
