/* ---------- Pure Water & Ice — 2026 redesign ---------- */

:root {
  color-scheme: light;
  --ink: #0E2226;
  --ink-2: #1c3a3f;
  --muted: #5B6E73;
  --paper: #FBFAF6;
  --paper-2: #F3EEE2;
  --water: #0E8B9A;
  --water-deep: #074652;
  --water-tint: #E1F1F3;
  --sky: #BFE3E8;
  --mist: #ECF6F7;
  --sun: #F2C45A;
  --coral: #E26A4E;
  --leaf: #2F7A55;
  --line: rgba(14, 34, 38, 0.10);
  --line-strong: rgba(14, 34, 38, 0.18);
  --shadow-sm: 0 2px 4px rgba(7, 70, 82, 0.06), 0 10px 24px -8px rgba(7, 70, 82, 0.10);
  --shadow-lg: 0 12px 40px -10px rgba(7, 70, 82, 0.18), 0 4px 12px rgba(7, 70, 82, 0.06);
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; font-family: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; font: inherit; }

.display {
  font-family: "Bricolage Grotesque", "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variation-settings: "wdth" 95;
  text-wrap: balance;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--water);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--water);
}

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  transform: translateY(-80px);
  background: var(--ink); color: var(--paper);
  padding: 10px 14px; border-radius: var(--r-pill);
  font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- HEADER ---------- */

.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--water) 0%, var(--water-deep) 100%);
  color: white;
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 10px rgba(7, 70, 82, 0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 16px; letter-spacing: -0.02em; }
.brand-text small { font-size: 11px; color: var(--muted); }

.desktop-nav { display: none; gap: 6px; }
.desktop-nav a {
  padding: 8px 12px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background 0.15s;
}
.desktop-nav a:hover { background: var(--mist); }

.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s, background 0.15s;
}
.header-cta:hover { background: var(--water-deep); transform: translateY(-1px); }
.header-cta .arr { transition: transform 0.2s; }
.header-cta:hover .arr { transform: translate(2px, -2px); }

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--water-deep); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-secondary { background: rgba(255,255,255,0.95); color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { background: white; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line-strong); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-water { background: var(--water); color: white; }
.btn-water:hover { background: var(--water-deep); transform: translateY(-1px); }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  padding: 18px;
}
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 22px 22px 26px;
  display: flex; flex-direction: column;
  gap: 20px;
  color: white;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(14, 139, 154, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(8, 84, 96, 0.7) 0%, transparent 60%),
    linear-gradient(160deg, #062d36 0%, #074652 60%, #042128 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.05) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 64%, rgba(255,255,255,0.04) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 88%, rgba(255,255,255,0.04) 0 1px, transparent 2px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(4, 33, 40, 0.55) 75%, rgba(4, 33, 40, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 3; }

/* mosaic drop */
.hero-mosaic {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 340px;
  aspect-ratio: 1 / 1.18;
  margin: 4px auto 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.drop {
  width: 100%; height: 100%;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M50 4 C 28 32, 8 60, 8 84 A 42 42 0 0 0 92 84 C 92 60, 72 32, 50 4 Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M50 4 C 28 32, 8 60, 8 84 A 42 42 0 0 0 92 84 C 92 60, 72 32, 50 4 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55));
  position: relative;
}
.drop::after {
  content: "";
  position: absolute;
  top: 10%; left: 22%;
  width: 22%; height: 18%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.drop img {
  width: 100%; height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.5s ease;
}
.drop:hover img { transform: scale(1.06); }
.drop-tag {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 28px);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  z-index: 3;
}
.hero-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  width: 100%;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  max-width: 100%;
  white-space: nowrap;
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6FE2A4;
  box-shadow: 0 0 0 3px rgba(111, 226, 164, 0.25);
}
.hero h1.display {
  font-size: clamp(38px, 9vw, 64px);
  margin-bottom: 14px;
}
.hero-copy {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 38ch;
  margin-bottom: 22px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 22px;
  display: flex; gap: 16px; align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-trust-stat strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-trust-stat span {
  font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }
.hero-stars { display: inline-flex; gap: 1px; color: var(--sun); font-size: 13px; line-height: 1; }

/* ---------- SECTIONS ---------- */

.section {
  padding: 64px 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-tight { padding: 40px 22px; }
.section-head {
  margin-bottom: 28px;
  max-width: 620px;
}
.section-head h2.display {
  font-size: clamp(28px, 5.5vw, 42px);
  margin-top: 12px;
  color: var(--ink);
}
.section-head p.lede {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
  max-width: 50ch;
}

/* ---------- PRODUCTS ---------- */

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.product-card {
  position: relative;
  background: white;
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.product-card.featured {
  background: linear-gradient(160deg, var(--water-deep) 0%, #0a5d6a 100%);
  color: white;
  border-color: transparent;
}
.product-card.featured .product-price strong { color: white; }
.product-card.featured .product-meta { color: rgba(255,255,255,0.7); }
.product-card.featured .product-desc { color: rgba(255,255,255,0.78); }
.product-card .product-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 18px;
}
.product-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--water-tint);
  color: var(--water-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.product-card.featured .product-icon {
  background: rgba(255,255,255,0.12);
  color: white;
}
.product-tag {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--sun);
  color: var(--ink);
}
.product-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.product-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.product-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.product-card.featured .product-price { border-top-color: rgba(255,255,255,0.16); }
.product-price strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.product-card.featured .product-price strong { color: white; }
.product-meta { font-size: 12px; color: var(--muted); }
.price-from {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  align-self: center;
  margin-right: 2px;
}
.product-card.featured .price-from { color: rgba(255,255,255,0.7); }
.product-card.featured .product-meta { color: rgba(255,255,255,0.78); }

/* ---------- PACKAGES ---------- */

.section-packages {
  background: var(--paper-2);
  border-radius: var(--r-xl);
  width: calc(100% - 36px);
  margin: 18px auto;
  padding: 56px 22px;
  max-width: calc(1180px - 36px);
}

.pkg-tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.7);
  padding: 5px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.pkg-tab {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.pkg-tab.active {
  background: var(--ink);
  color: var(--paper);
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.pkg-card {
  position: relative;
  background: white;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pkg-card.popular {
  border-color: var(--water);
  box-shadow: 0 0 0 3px var(--water-tint);
}
.pkg-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pkg-popular-tag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--water);
  color: white;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pkg-savings-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(226, 106, 78, 0.12);
  color: var(--coral);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
}
.pkg-price {
  display: flex; align-items: baseline; gap: 6px;
}
.pkg-price strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 44px; font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pkg-price .per { color: var(--muted); font-size: 14px; }
.pkg-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
}
.pkg-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
}
.pkg-features li {
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-features li::before {
  content: "";
  width: 16px; height: 16px;
  background: var(--water-tint);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230E8B9A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l2.8 2.8 6.2-6.6'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-fine-print {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  padding-top: 8px;
}
.pkg-fine-print strong { color: var(--ink); }

/* ---------- CALCULATOR ---------- */

.calc-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.calc-controls { display: flex; flex-direction: column; gap: 18px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  display: flex; justify-content: space-between; align-items: center;
}
.calc-field label .val {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px; font-weight: 600; color: var(--water-deep);
}
.calc-field input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--mist);
  border-radius: var(--r-pill);
  outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--water);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(7, 70, 82, 0.25);
  cursor: pointer;
  transition: transform 0.1s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--water);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(7, 70, 82, 0.25);
  cursor: pointer;
}
.calc-radio { display: flex; gap: 6px; }
.calc-radio label {
  flex: 1;
  padding: 11px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  text-align: center;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  display: block;
}
.calc-radio input { position: absolute; opacity: 0; pointer-events: none; }
.calc-radio label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.calc-result {
  background: linear-gradient(160deg, var(--water-deep) 0%, #0a5d6a 100%);
  border-radius: var(--r-md);
  padding: 22px;
  color: white;
  display: flex; flex-direction: column; gap: 14px;
}
.calc-result-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.calc-result-row:last-child { border-bottom: 0; padding-bottom: 0; }
.calc-result-row .label {
  font-size: 13px; color: rgba(255,255,255,0.72);
}
.calc-result-row .value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
}
.calc-result-row.hero-row .value {
  font-size: 36px;
  color: #BFE9A8;
}
.calc-foot {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--mist);
  border-radius: var(--r-sm);
  font-size: 13px; color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 10px;
}

/* ---------- FIRST VISIT ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  counter-reset: step;
}
.step {
  display: flex; gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--water-tint);
  color: var(--water-deep);
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px; font-weight: 600;
}
.step-body h4 {
  margin: 0 0 4px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */

.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  position: relative;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s;
}
.faq-q .icon::before { width: 10px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 10px; }
.faq-item.open .faq-q .icon { background: var(--ink); color: white; border-color: var(--ink); }
.faq-item.open .faq-q .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  font-size: 15px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-right: 44px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ---------- GALLERY ---------- */

.gallery-tabs {
  display: flex; gap: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.gallery-tab {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: white;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.gallery-tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  grid-auto-rows: 140px;
}
.gallery-grid .tile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--mist);
  border: 0;
  padding: 0;
  text-align: left;
  min-width: 0;
}
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.04); }
.gallery-grid .tile.tall { grid-row: span 2; }
.gallery-grid .tile.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(7, 70, 82, 0.85));
  color: white;
  font-size: 12px; font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-grid .tile:hover .gallery-caption { opacity: 1; }

.section-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.section-count {
  color: var(--muted);
  font-size: 14px;
}
.section-actions .btn[hidden] { display: none; }

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 33, 40, 0.86);
}
.photo-lightbox[hidden] { display: none; }
.photo-lightbox img {
  max-width: min(1080px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}
.photo-lightbox p {
  margin-top: 12px;
  max-width: min(680px, 92vw);
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  text-align: center;
}
.photo-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}
body.modal-open { overflow: hidden; }

/* ---------- REVIEWS ---------- */

.reviews-head {
  display: flex; flex-direction: column; gap: 22px;
  margin-bottom: 28px;
}
.rating-block {
  display: flex; align-items: center; gap: 16px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.rating-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px; font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.rating-detail { font-size: 13px; color: var(--muted); }
.rating-detail .stars { color: var(--sun); font-size: 15px; letter-spacing: 1px; }

.rating-distribution {
  display: grid;
  gap: 8px;
  padding: 16px;
  margin-bottom: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.rating-row {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}
.rating-row strong {
  color: var(--ink);
  text-align: right;
  font-size: 12px;
}
.rating-bar {
  height: 8px;
  overflow: hidden;
  border-radius: var(--r-pill);
  background: var(--mist);
}
.rating-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sun), #f0a23b);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.review-card {
  padding: 22px;
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: var(--sun); font-size: 14px; letter-spacing: 1px; }
.review-text { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.owner-response {
  padding: 12px;
  border-radius: var(--r-sm);
  background: var(--mist);
  color: var(--ink-2);
  font-size: 13px;
}
.owner-response strong {
  display: block;
  margin-bottom: 4px;
  color: var(--water-deep);
}
.review-meta {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-tint), var(--sky));
  color: var(--water-deep);
  display: grid; place-items: center;
  font-weight: 600; font-size: 14px;
  font-family: "Bricolage Grotesque", sans-serif;
}
.review-meta-text { display: flex; flex-direction: column; line-height: 1.2; }
.review-meta-text strong { font-size: 14px; }
.review-meta-text span { font-size: 12px; color: var(--muted); line-height: 1.35; }

/* ---------- LOYALTY ---------- */

.loyalty-wrap {
  background: linear-gradient(160deg, #0a5d6a 0%, var(--water-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 40px 24px;
  margin: 18px;
  position: relative;
  overflow: hidden;
  max-width: calc(1180px - 36px);
}
.loyalty-wrap::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  right: -100px; top: -100px;
  background: radial-gradient(circle at center, rgba(242, 196, 90, 0.25), transparent 70%);
  border-radius: 50%;
}
.loyalty-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.loyalty-copy h2.display { font-size: clamp(28px, 6vw, 40px); margin-bottom: 12px; }
.loyalty-copy p { color: rgba(255,255,255,0.78); margin-bottom: 20px; font-size: 16px; }

.loyalty-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.loyalty-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.loyalty-card-head .lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}
.loyalty-card-head .badge {
  background: var(--sun);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
}
.loyalty-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.loyalty-card-num {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
}
.loyalty-card-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.22);
}
.stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.28);
  display: grid; place-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.stamp.filled {
  background: var(--sun);
  color: var(--ink);
  border: 0;
  font-weight: 600;
}

/* ---------- VISIT ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.visit-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
  height: 320px;
  position: relative;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.visit-info {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 22px;
}
.visit-info h3.display {
  font-size: 22px;
  margin-bottom: 4px;
}
.visit-info address {
  font-style: normal;
  font-size: 15px;
  color: var(--muted);
}
.visit-hours {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.visit-hours .row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
}
.visit-hours .row.today {
  font-weight: 600;
  color: var(--water-deep);
}
.visit-hours .row.today .day::before {
  content: "● ";
  color: var(--leaf);
}
.visit-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(47, 122, 85, 0.10);
  color: var(--leaf);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  align-self: flex-start;
}
.visit-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47, 122, 85, 0.25);
}
.visit-quick {
  display: flex; gap: 8px;
}
.visit-quick a { flex: 1; }

.visit-detail {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.visit-detail .row {
  display: flex; gap: 12px;
}
.visit-detail .row .lbl {
  width: 90px; flex-shrink: 0; color: var(--muted);
  text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; font-weight: 600;
  padding-top: 2px;
}

/* ---------- FOOTER ---------- */

.site-footer {
  padding: 48px 22px 110px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.site-footer .brand-mark { margin: 0 auto 12px; }
.site-footer .footer-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; font-weight: 600;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.site-footer p { font-size: 13px; margin-bottom: 6px; }
.site-footer a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.footer-links {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
}
.footer-links a { text-decoration: none; opacity: 0.7; }
.footer-links a:hover { opacity: 1; }
.footer-note { margin-top: 22px; font-size: 12px; opacity: 0.55; }

/* ---------- MOBILE STICKY BAR ---------- */

.mobile-bar {
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  z-index: 40;
  display: flex;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  padding: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600;
  display: inline-flex; justify-content: center; align-items: center; gap: 6px;
  transition: background 0.15s;
}
.mobile-bar a.primary {
  background: var(--water);
}
.mobile-bar a:hover { background: rgba(255,255,255,0.08); }
.mobile-bar a.primary:hover { background: var(--water-deep); }
.mobile-bar svg { width: 16px; height: 16px; }

/* ---------- DESKTOP ---------- */

@media (min-width: 720px) {
  .desktop-nav { display: inline-flex; }
  .hero { padding: 22px; }
  .hero-card {
    padding: 56px 56px 48px;
    min-height: 640px;
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }
  .hero-content { flex: 1; min-width: 0; }
  .hero-mosaic {
    margin: 0;
    flex-shrink: 0;
    width: 40%;
    max-width: 420px;
  }
  .hero h1.display { font-size: clamp(48px, 6vw, 72px); }
  .hero-copy { font-size: 18px; }
  .section { padding: 88px 36px; }
  .section-packages { width: calc(100% - 72px); margin: 22px auto; padding: 72px 56px; }
  .loyalty-wrap { margin: 22px 36px; padding: 72px 56px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .calc-grid { grid-template-columns: 1.2fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; grid-auto-rows: 180px; }
  .section-actions { flex-direction: row; align-items: center; justify-content: space-between; }
  .review-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .visit-grid { grid-template-columns: 1.4fr 1fr; gap: 22px; }
  .visit-map { height: 100%; min-height: 420px; }
  .loyalty-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .reviews-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .rating-block { flex-shrink: 0; }
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 64px; }
}

@media (min-width: 1024px) {
  .hero-card { min-height: 700px; padding: 72px 72px 64px; }
  .hero-mosaic { max-width: 480px; width: 44%; }
}

/* utility */
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap-sm { gap: 10px; }
.gap-md { gap: 18px; }
.mt-lg { margin-top: 36px; }
