/* =====================================================================
   My Second Home — Dubai Luxury Pet Resort & Spa
   Design system: warm joyful-premium, editorial restraint, photography-led.
   Palette grounded in the brown wordmark logo + the actual photo palette
   (teal pool water, warm sand floors, sun-warm browns).
   ===================================================================== */

:root {
  /* ---- palette ------------------------------------------------------ */
  --paper:        #FAF6EE;   /* page bg — warm paper, picks up the logo's brown */
  --paper-soft:   #F2EBDD;   /* alternating section tint */
  --paper-line:   #E8DFCB;   /* warm hairline */
  --ink:          #1B2A2E;   /* primary text on light */
  --ink-soft:     #4A5A60;   /* secondary text */
  --slate:        #6E7C82;   /* tertiary */

  --brand-deep:   #0E3F47;   /* deep teal — dark hospitality surfaces */
  --brand:        #1F8FA3;   /* friendly aqua — pool water tone */
  --brand-tint:   #E0EEF1;   /* aqua wash */
  --coral:        #D85A3A;   /* warm coral — CTA */
  --coral-deep:   #B9472C;
  --sun:          #E8A352;   /* accent — sparingly */
  --brown:        #8B6F4A;   /* logo brown — wordmark, micro details */
  --cream:        #F5E9D2;   /* tint complement */
  --success:      #2E8B6F;

  --line:         rgba(27, 42, 46, 0.10);
  --line-strong:  rgba(27, 42, 46, 0.18);
  --shadow-sm:    0 1px 2px rgba(27,42,46,.06), 0 2px 6px rgba(27,42,46,.04);
  --shadow-md:    0 4px 12px rgba(27,42,46,.06), 0 12px 36px rgba(27,42,46,.08);
  --shadow-lg:    0 12px 28px rgba(27,42,46,.10), 0 32px 72px rgba(27,42,46,.14);

  /* ---- typography --------------------------------------------------- */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* fluid type ramp */
  --t-eyebrow:    11px;
  --t-body:       17px;
  --t-body-sm:    15px;
  --t-lead:       21px;
  --t-h6:         15px;
  --t-h5:         20px;
  --t-h4:         26px;
  --t-h3:         clamp(32px, 3vw, 44px);
  --t-h2:         clamp(44px, 5vw, 76px);
  --t-h1:         clamp(64px, 8vw, 132px);

  /* ---- rhythm ------------------------------------------------------- */
  --container:    1280px;
  --container-wide: 1440px;
  --pad-x:        clamp(20px, 4vw, 56px);
  --section-y:    clamp(72px, 9vw, 140px);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
}

/* density tweak */
[data-density="airy"]    { --section-y: clamp(96px, 11vw, 180px); }
[data-density="compact"] { --section-y: clamp(56px, 6vw, 96px); }

/* ---- reset / base -------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
hr { border: 0; height: 1px; background: var(--line); margin: 0; }

/* ---- layout helpers ----------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: calc(var(--section-y) * 0.55); padding-bottom: calc(var(--section-y) * 0.55); }
.bg-paper      { background: var(--paper); }
.bg-paper-soft { background: var(--paper-soft); }
.bg-brand-deep { background: var(--brand-deep); color: #ECF3F4; }
.bg-coral      { background: var(--coral); color: #FFF7F2; }

/* ---- type utilities ----------------------------------------------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; }
.display i, .display em { font-style: italic; color: var(--brand); }
.h1 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h1); line-height: 0.96; letter-spacing: -0.018em; }
.h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h2); line-height: 1.0;  letter-spacing: -0.014em; }
.h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h3); line-height: 1.08; letter-spacing: -0.012em; }
.h4 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); line-height: 1.18; letter-spacing: -0.008em; }
.h5 { font-family: var(--font-sans);    font-weight: 600; font-size: var(--t-h5); line-height: 1.25; letter-spacing: -0.005em; }
.lead { font-size: var(--t-lead); line-height: 1.5; color: var(--ink-soft); max-width: 56ch; }
.body { font-size: var(--t-body); line-height: 1.6; color: var(--ink-soft); }
.body-sm { font-size: var(--t-body-sm); line-height: 1.55; color: var(--ink-soft); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}
.bg-brand-deep .eyebrow { color: var(--sun); }
.muted { color: var(--slate); }
.italic-display { font-family: var(--font-display); font-style: italic; }

/* ---- buttons ------------------------------------------------------ */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  --bdr: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bdr);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary  { --bg: var(--coral); --fg: #FFF7F2; --bdr: var(--coral); }
.btn-primary:hover { --bg: var(--coral-deep); --bdr: var(--coral-deep); }
.btn-ink      { --bg: var(--ink); --fg: var(--paper); --bdr: var(--ink); }
.btn-ghost    { --bg: transparent; --fg: var(--ink); --bdr: var(--line-strong); }
.btn-ghost:hover { --bdr: var(--ink); }
.btn-light    { --bg: rgba(255,255,255,0.10); --fg: #fff; --bdr: rgba(255,255,255,0.30); }
.btn-light:hover { --bg: rgba(255,255,255,0.18); --bdr: rgba(255,255,255,0.55); }
.btn-cream    { --bg: var(--cream); --fg: var(--ink); --bdr: var(--cream); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* link with underline reveal */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 12px; }

/* chips / pills */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--paper-soft);
  color: var(--ink);
  border: 1px solid var(--paper-line);
}
.chip-light { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: #fff; }
.chip-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}
.chip-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF5252;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,82,82,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(255,82,82,0); }
}

/* ---- navbar ------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(250, 246, 238, 0.78);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.nav.is-scrolled { background: rgba(250, 246, 238, 0.94); border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center;
  gap: 32px;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-brand .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
}
.nav-brand .word { line-height: 1.05; }
.nav-brand .word small { display: block; font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown); margin-top: 2px; }

.nav-links {
  display: flex; align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity .15s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.branch-switch {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.branch-switch .pin {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); display: inline-block;
}
.branch-switch .caret { opacity: 0.5; font-size: 10px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* ---- HERO --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #0c2a30;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: opacity .9s ease, transform 8s ease;
  opacity: 0;
}
.hero-photo.is-active { opacity: 1; transform: scale(1.04); }
.hero-photo[data-photo="diving"]  { background-image: url('media/msh-dog-diving-pool.webp'); }
.hero-photo[data-photo="pool"]    { background-image: url('media/msh-pool-2.webp'); background-position: center 40%; }
.hero-photo[data-photo="park"]    { background-image: url('media/msh-dog-park-highres.webp'); }
.hero-photo[data-photo="water"]   { background-image: url('media/msh-daycare-water-fetch.webp'); }

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,32,36,0.55) 0%, rgba(11,32,36,0.18) 32%, rgba(11,32,36,0.18) 60%, rgba(11,32,36,0.78) 100%),
    linear-gradient(90deg, rgba(11,32,36,0.55) 0%, rgba(11,32,36,0.12) 50%, rgba(11,32,36,0) 100%);
  z-index: -1;
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: inherit;
  padding-top: 80px;
  padding-bottom: 64px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sun); }
.hero-eyebrow .label {
  font-family: var(--font-mono); font-size: 11.5px;
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.hero-eyebrow .rule { flex: 0 1 80px; height: 1px; background: rgba(255,255,255,0.35); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 i { font-style: italic; color: #FFD7AB; }
.hero-sub {
  max-width: 52ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 920px;
}
.hero-meta .item .label {
  font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
}
.hero-meta .item .value {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  color: #fff;
}
.hero-meta .item .value small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

.hero-photo-cycle {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  top: 96px;
  display: flex; gap: 6px;
  z-index: 5;
}
.hero-photo-cycle button {
  width: 26px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.hero-photo-cycle button.is-active { background: rgba(255,255,255,0.95); width: 36px; }

/* ---- TRUST STRIP -------------------------------------------------- */
.trust {
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 18px 0;
  overflow: hidden;
}
.trust-row {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-row .item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.trust-row .item strong { color: var(--ink); font-weight: 500; }
.trust-row .item .glyph { color: var(--brown); font-family: var(--font-display); font-size: 17px; line-height: 1; }

/* ---- MANIFESTO ---------------------------------------------------- */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.manifesto-quote i { font-style: italic; color: var(--brand-deep); }
.manifesto-attr {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-soft);
}
.manifesto-attr .line { flex: 0 0 32px; height: 1px; background: var(--line-strong); }
.manifesto-attr .who { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.manifesto-attr .role { font-size: 12.5px; color: var(--slate); display: block; font-weight: 400; }

.manifesto-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 44ch;
}
.manifesto-body p + p { margin-top: 16px; }
.manifesto-stats {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.manifesto-stats .stat {
  border-top: 1px solid var(--line-strong);
  padding-top: 12px;
}
.manifesto-stats .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}
.manifesto-stats .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 8px;
}
.manifesto-stats .note { font-size: 11.5px; color: var(--slate); margin-top: 4px; }

@media (max-width: 880px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ---- SECTION HEADERS --------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .left .eyebrow { display: block; margin-bottom: 14px; }
.section-head .left h2 { max-width: 18ch; text-wrap: balance; margin: 0; }
.section-head .right { max-width: 38ch; padding-bottom: 8px; }
.section-head .right p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head .right { padding-bottom: 0; }
}

/* ---- SERVICES ----------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--paper-line);
}
.svc {
  position: relative;
  background: var(--paper);
  padding: 22px 22px 24px;
  display: flex; flex-direction: column;
  transition: background .2s ease;
  min-height: 380px;
}
.svc:hover { background: #FCFAF4; }
.svc-img {
  aspect-ratio: 4 / 3;
  background: var(--paper-soft) center/cover no-repeat;
  border-radius: 10px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.svc-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.svc-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  color: var(--brown);
  font-weight: 500;
}
.svc-name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin: 8px 0 10px;
  color: var(--ink);
}
.svc-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.svc-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.svc-price {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.svc-price b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  margin-right: 2px;
}
.svc-price .confirm { color: var(--slate); font-style: italic; font-size: 11.5px; }
.svc-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease;
}
.svc:hover .svc-arrow { transform: translateX(3px) rotate(-12deg); background: var(--coral); }

@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } .svc { min-height: 320px; } }

/* ---- WEBCAM BAND -------------------------------------------------- */
.webcam {
  position: relative;
  overflow: hidden;
}
.webcam::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 30%, rgba(31,143,163,0.18), transparent 60%);
  pointer-events: none;
}
.webcam-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.webcam-copy h2 { max-width: 14ch; text-wrap: balance; margin: 16px 0 24px; }
.webcam-copy p { color: rgba(255,255,255,0.78); max-width: 42ch; margin: 0 0 16px; font-size: 16.5px; line-height: 1.6; }
.webcam-copy .eyebrow { color: var(--sun); }
.webcam-copy .ctas { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.webcam-board {
  background: #07262C;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.webcam-board-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 4px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.webcam-board-head .left { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.webcam-board-head .dots { display: flex; gap: 5px; }
.webcam-board-head .dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.webcam-board-head .right { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; }
.webcam-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cam {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #000 center/cover no-repeat;
  border-radius: 10px;
  overflow: hidden;
}
.cam::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, transparent 65%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.cam .cam-head {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.cam .live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px;
  background: rgba(255,0,0,0.92);
  border-radius: 4px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.cam .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.4s ease-in-out infinite; }
.cam .timecode { background: rgba(0,0,0,0.55); padding: 3px 7px; border-radius: 3px; font-size: 10px; letter-spacing: 0.10em; }
.cam .cam-foot {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2;
  color: #fff;
}
.cam .cam-foot .name { font-family: var(--font-display); font-size: 18px; line-height: 1.1; }
.cam .cam-foot .branch { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; margin-top: 2px; }
.cam .cam-foot .suite { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; opacity: 0.85; padding: 3px 7px; border: 1px solid rgba(255,255,255,0.35); border-radius: 3px; }

.webcam-board-foot {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.webcam-board-foot .play {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--sun);
}

@media (max-width: 960px) {
  .webcam-grid { grid-template-columns: 1fr; }
}

/* ---- SUITES ------------------------------------------------------- */
.suites-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.suite {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.suite:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.suite .photo {
  aspect-ratio: 3 / 4;
  background: var(--paper-soft) center/cover no-repeat;
}
.suite .meta {
  padding: 16px 14px 18px;
}
.suite .tier {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}
.suite .name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  margin: 6px 0 6px;
}
.suite .cap {
  font-size: 12px;
  color: var(--slate);
}
.suite .price {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.suite .price b { font-family: var(--font-display); font-weight: 400; font-size: 17px; color: var(--ink); margin-right: 2px; }
.suite-flag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
}

@media (max-width: 1200px) { .suites-rail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .suites-rail { grid-template-columns: repeat(2, 1fr); } }

/* ---- FACILITY ----------------------------------------------------- */
.facility {
  position: relative;
  min-height: clamp(540px, 70vh, 760px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #0c2a30;
  display: flex; align-items: center;
}
.facility::before {
  content: "";
  position: absolute; inset: 0;
  background:
    url('media/msh-dog-park-highres.webp') center/cover no-repeat;
  z-index: -2;
}
.facility::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,30,34,0.92) 0%, rgba(7,30,34,0.6) 50%, rgba(7,30,34,0.25) 100%),
    linear-gradient(180deg, rgba(7,30,34,0.45) 0%, transparent 30%, rgba(7,30,34,0.6) 100%);
  z-index: -1;
}
.facility-inner { max-width: 560px; }
.facility h2 { margin: 18px 0 24px; }
.facility .lead { color: rgba(255,255,255,0.82); max-width: 50ch; }
.facility-stats {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.20);
  padding-top: 22px;
}
.facility-stats .stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  color: #fff;
}
.facility-stats .stat .label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.facility-stats .stat .src {
  margin-top: 4px;
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 760px) {
  .facility-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---- REQUIREMENTS ------------------------------------------------- */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.req-list {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 8px 4px;
}
.req-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.req-item:last-child { border-bottom: 0; }
.req-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand-deep);
  line-height: 1;
}
.req-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
}
.req-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 4px;
}
.req-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--success);
  display: grid; place-items: center;
  color: #fff;
}

.req-copy h2 { margin: 16px 0 20px; }
.req-copy p { font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); max-width: 44ch; }
.req-copy .assess {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--brand-tint);
  border-radius: var(--radius);
  border-left: 3px solid var(--brand);
}
.req-copy .assess h4 { margin: 0 0 6px; font-family: var(--font-display); font-size: 18px; }
.req-copy .assess p { font-size: 14px; margin: 0; color: var(--ink-soft); }

@media (max-width: 880px) {
  .req-grid { grid-template-columns: 1fr; }
}

/* ---- PRESS -------------------------------------------------------- */
.press {
  padding: 56px 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}
.press-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.press-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}
.press-logos {
  display: flex; align-items: center; gap: clamp(28px, 4vw, 64px); flex-wrap: wrap;
}
.press-logos .logo {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  opacity: 0.7;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.press-logos .logo.mono { font-family: var(--font-mono); font-size: clamp(13px, 1.4vw, 17px); letter-spacing: 0.04em; text-transform: uppercase; }
.press-logos .logo.bold { font-weight: 700; font-family: var(--font-sans); }

@media (max-width: 720px) {
  .press-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- BRANCHES ----------------------------------------------------- */
.branches {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.branch-tabs {
  display: flex; flex-direction: column;
  gap: 6px;
}
.branch-tab {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.branch-tab:hover { background: var(--paper); }
.branch-tab.is-active { background: var(--paper); border-color: var(--paper-line); box-shadow: var(--shadow-sm); }
.branch-tab .branch-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}
.branch-tab .branch-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 4px;
}
.branch-tab .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.branch-tab.is-active .arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.branch-detail {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.branch-photo {
  aspect-ratio: 16 / 7;
  background: var(--paper-soft) center/cover no-repeat;
  position: relative;
}
.branch-photo .pin {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.92);
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.branch-photo .pin::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.branch-detail-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 28px 32px 32px;
}
.branch-detail-body .col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 10px;
  font-weight: 500;
}
.branch-detail-body .col p, .branch-detail-body .col .row {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.branch-detail-body .col .row + .row { margin-top: 6px; }
.branch-detail-body .col .flag {
  display: inline-block;
  font-size: 10.5px;
  font-style: italic;
  color: var(--slate);
  margin-top: 6px;
}
.branch-actions {
  grid-column: 1 / -1;
  display: flex; gap: 10px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .branches { grid-template-columns: 1fr; }
  .branch-detail-body { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .branch-detail-body { grid-template-columns: 1fr; }
}

/* ---- REVIEWS PLACEHOLDER ----------------------------------------- */
.reviews-placeholder {
  background: var(--paper);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.reviews-placeholder .glyph {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--brand-deep);
  margin-bottom: 16px;
}
.reviews-placeholder h3 { margin: 0 0 14px; }
.reviews-placeholder p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 24px; }
.reviews-placeholder .micronote {
  margin-top: 22px;
  font-size: 12px;
  color: var(--slate);
  font-style: italic;
}

/* ---- ABOUT TEASER ------------------------------------------------- */
.about-teaser {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-teaser h2 { margin: 16px 0 24px; }
.about-teaser p { color: rgba(255,255,255,0.78); font-size: 16.5px; line-height: 1.6; max-width: 46ch; }
.about-teaser p + p { margin-top: 14px; }
.about-founders {
  margin-top: 32px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.founder-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
}
.founder-pill em { font-style: italic; color: var(--sun); font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; margin-left: 8px; }
.about-photo {
  aspect-ratio: 4 / 5;
  background: center/cover no-repeat;
  background-image: url('media/msh-dog-park-2.webp');
  border-radius: var(--radius-lg);
  filter: saturate(1.05);
}
@media (max-width: 880px) { .about-teaser { grid-template-columns: 1fr; } .about-photo { aspect-ratio: 16 / 11; } }

/* ---- BOOK CTA BAND ----------------------------------------------- */
.book-band {
  position: relative;
  overflow: hidden;
}
.book-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('media/msh-dogs-group.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.book-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.book-band h2 { margin: 0; color: #FFF7F2; max-width: 16ch; text-wrap: balance; }
.book-band p { color: rgba(255,247,242,0.85); max-width: 40ch; font-size: 17px; line-height: 1.55; margin: 20px 0 0; }
.book-band-cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.book-band .phone-row {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,247,242,0.85);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.book-band .phone-row a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); }
@media (max-width: 800px) { .book-band-inner { grid-template-columns: 1fr; } }

/* ---- FOOTER ------------------------------------------------------ */
.footer {
  color: rgba(236,243,244,0.78);
  padding-top: 88px; padding-bottom: 40px;
}
.footer a { color: rgba(236,243,244,0.78); }
.footer a:hover { color: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .nav-brand { color: #fff; margin-bottom: 24px; }
.footer-brand .nav-brand .word { color: #fff; }
.footer-brand .nav-brand .word small { color: var(--sun); }
.footer-brand .nav-brand .mark { background: var(--coral); color: #fff; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; max-width: 36ch; color: rgba(236,243,244,0.65); }
.footer-col h6 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(236,243,244,0.55);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* ---- MOBILE BOTTOM BAR ------------------------------------------ */
.mbb {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--paper-line);
  padding: 10px;
  display: none;
  gap: 8px;
  z-index: 40;
}
.mbb .btn { flex: 1; justify-content: center; padding: 12px; font-size: 13.5px; }
@media (max-width: 720px) { .mbb { display: flex; } body { padding-bottom: 64px; } }

/* ---- WHATSAPP FAB ------------------------------------------------ */
.wa-fab {
  position: fixed;
  right: clamp(16px, 2.5vw, 32px);
  bottom: clamp(16px, 2.5vw, 32px);
  z-index: 30;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.04); }
@media (max-width: 720px) { .wa-fab { bottom: 80px; right: 16px; } }

/* ---- TWEAKS PANEL ------------------------------------------------ */
.tweaks-panel {
  position: fixed;
  right: 24px; top: 96px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  font-size: 13px;
  display: none;
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h6 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 6px;
  font-weight: 500;
}
.tweaks-panel .tweak-head {
  display: flex; justify-content: space-between; align-items: start;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tweaks-panel .tweak-head .title { font-family: var(--font-display); font-size: 20px; line-height: 1; }
.tweaks-panel .tweak-head button { color: var(--slate); font-size: 14px; }
.tweak-row { margin-bottom: 14px; }
.tweak-row > h6 { margin-bottom: 8px; }
.swatch-row { display: flex; gap: 6px; }
.swatch {
  flex: 1;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--paper-line);
  cursor: pointer;
  overflow: hidden;
  display: flex;
}
.swatch.is-active { outline: 2px solid var(--ink); outline-offset: 2px; }
.swatch span { flex: 1; }
.seg {
  display: flex;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 3px;
  gap: 3px;
}
.seg button {
  flex: 1;
  padding: 6px 8px;
  font-size: 12px;
  border-radius: 5px;
  color: var(--ink-soft);
}
.seg button.is-active { background: var(--ink); color: var(--paper); }

/* Tweaks toggle button (corner) */
.tweaks-toggle {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  display: none; /* hidden by default — shown when host enables Tweaks */
}
.tweaks-toggle.is-visible { display: grid; }

/* ---- misc accessibility -----------------------------------------*/
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brand); color: #fff; }
