/* ============================================================
   DK Water — "Splash" (Partake-inspired brand skin)
   navy #032259 (ink) · azure #00ABDF (interaction + water)
   Fira Sans Condensed 900 (display) · Commissioner (body)
   IBM Plex Mono (labels) · paper base + tints, hard shadows.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cyan: #00ABDF;
  --cyan-dark: #0285BC;
  --cyan-deep: #0272A6;
  --navy: #032259;
  --navy-deep: #021A45;
  --wave: #54C6E8;
  --slate: #54698E;
  --ink: #0E2A54;
  --body: #3D4F72;
  --line: rgba(3, 34, 89, 0.12);
  --ice: #F2FAFE;
  --paper: #F2F8FB;
  --tint-1: #DDF1FA;
  --tint-2: #E3EDF6;
  --tint-3: #CDEFF9;
  --white: #FFFFFF;
  --hard: 4px 4px 0 rgba(3, 34, 89, 0.16);
  --hard-lg: 8px 8px 0 var(--navy);
  --font: 'Commissioner', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fira Sans Condensed', 'Commissioner', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --r-photo: 24px;
  --r-ctl: 12px;
}

/* Hebrew: Fira Condensed/Commissioner/Plex Mono lack Hebrew — Heebo carries it */
html[lang='he'] {
  --font: 'Heebo', 'Commissioner', sans-serif;
  --mono: 'Heebo', 'IBM Plex Mono', monospace;
  --font-display: 'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--navy); color: var(--white); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 28px; }

.mono { font-family: var(--mono); letter-spacing: 0.02em; }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.ms-fill { font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24; }

/* ---------- Eyebrow (chip) / section headers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  box-shadow: 3px 3px 0 rgba(3, 34, 89, 0.18);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: eyebrow-blink 2.4s infinite;
}
@keyframes eyebrow-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.section { padding: 104px 0; position: relative; }

.section-header { max-width: 660px; margin-bottom: 56px; }
.section-header.left { text-align: start; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.section-desc { margin-top: 14px; font-size: 1.06rem; max-width: 56ch; }

.on-dark .section-label { color: var(--wave); }
.on-dark .section-title { color: var(--white); }
.on-dark .section-desc { color: rgba(255, 255, 255, 0.82); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.78rem 1.5rem;
  border-radius: var(--r-ctl);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn .material-symbols-rounded { font-size: 1.1em; transition: transform 0.25s ease; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--hard);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(3, 34, 89, 0.22); }
.btn-primary:hover .material-symbols-rounded { transform: translateX(3px); }
.btn-primary:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(3, 34, 89, 0.22); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn-lg { padding: 1rem 1.8rem; font-size: 1rem; }

[dir='rtl'] .btn .material-symbols-rounded { transform: scaleX(-1); }
[dir='rtl'] .btn:hover .material-symbols-rounded { transform: scaleX(-1) translateX(3px); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.nav-logo img { height: 42px; width: auto; transition: height 0.3s ease; }
.nav.is-scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  padding: 8px 13px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 13px;
  bottom: 3px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--cyan-deep); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 0.62rem 1.25rem; font-size: 0.88rem; }

/* Language switcher */
.lang-switch { position: relative; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: var(--r-ctl);
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--mono);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.lang-btn:hover { border-color: var(--cyan); }
.lang-btn .material-symbols-rounded { font-size: 18px; color: var(--cyan-deep); }
.lang-chevron { transition: transform 0.25s ease; }
.lang-btn[aria-expanded='true'] .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 160px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(3, 34, 89, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.lang-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-option {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-option:hover { background: var(--ice); color: var(--cyan-deep); }
.lang-option.active { color: var(--cyan-deep); font-weight: 700; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  border-radius: var(--r-ctl);
  border: 1.5px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background: var(--paper);
  overflow: hidden;
}

/* Bubble canvas layer */
.water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Accent word: solid cyan + hand-drawn wave underline (no gradient text) */
.hero-title-accent {
  color: var(--cyan);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  inset-inline: -2%;
  bottom: -0.12em;
  height: 0.16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M2 10 C 30 2, 55 13, 82 8 S 135 2, 160 9 S 190 12, 198 6' fill='none' stroke='%2300ABDF' stroke-width='5' stroke-linecap='round' opacity='0.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-desc {
  max-width: 52ch;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 40px; }

.hero-trust {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  max-width: 340px;
  line-height: 1.45;
}

/* Hero product panel (Splash) */
.hero-visual { position: relative; }

.panel-card {
  position: relative;
  background: linear-gradient(160deg, var(--tint-1), var(--tint-2));
  border: 2px solid var(--navy);
  border-radius: 28px;
  padding: 3.2rem 2.6rem 2.4rem;
  box-shadow: var(--hard-lg);
}

.trio {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4rem;
}
.trio img {
  height: 225px;
  width: auto;
  filter: drop-shadow(0 18px 30px rgba(3, 34, 89, 0.25));
  transition: transform 0.25s ease;
}
.trio .trio-big { height: 290px; z-index: 2; }
.trio img:hover { transform: translateY(-10px) rotate(-1.5deg); }

.panel-tags {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.panel-tags span {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--navy);
}

/* EST 2013 rotating-text stamp */
.stamp {
  position: absolute;
  top: -38px;
  inset-inline-end: -30px;
  width: 118px;
  height: 118px;
  transform: rotate(-8deg);
  animation: stamp-in 1s cubic-bezier(0.2, 1.4, 0.4, 1) both 0.3s;
}
@keyframes stamp-in {
  from { transform: scale(0) rotate(-90deg); }
  to { transform: scale(1) rotate(-8deg); }
}
.stamp-ring {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.5;
  stroke-dasharray: 6 7;
}
.stamp-text {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  fill: var(--navy);
}
.stamp-inner {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  fill: var(--cyan);
}

/* Hero photo card (about hero) */
.photo-card {
  border-radius: var(--r-photo);
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: var(--hard-lg);
}
.photo-card-lg { aspect-ratio: 4 / 4.6; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Stats (light, about page) ---------- */

.stats-section { padding: 90px 0 40px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: start;
  gap: 28px;
}

.stat-item { padding: 6px 0 6px 22px; border-inline-start: 2px solid var(--line); }
.stat-item:hover { border-color: var(--cyan); }

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.stat-label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
}

/* ---------- Proof band (navy, home) ---------- */

.proof {
  position: relative;
  background: var(--navy);
  padding: 96px 0 90px;
  text-align: center;
  overflow: hidden;
  border-block: 2px solid var(--navy);
}
.proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 240px at 15% 0%, rgba(0, 171, 223, 0.22), transparent),
    radial-gradient(600px 240px at 85% 100%, rgba(0, 171, 223, 0.18), transparent);
  pointer-events: none;
}
.proof .container { position: relative; z-index: 1; }

.proof-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.005em;
}
.proof-num {
  display: inline-block;
  color: var(--cyan);
  font-size: 1.15em;
  font-variant-numeric: tabular-nums;
}
.proof-unit { color: var(--white); }

.proof-sub {
  margin-top: 1rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #b9d6ea;
}

.proof .stats-grid {
  margin-top: 3rem;
  text-align: center;
  gap: 0;
}
.proof .stat-item {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.proof .stat-item:first-child { border-inline-start: 0; }
.proof .stat-item:hover { border-color: var(--cyan); }
.proof .stat-number { color: var(--cyan); }
.proof .stat-label { color: #9fc3dc; }

/* ---------- Services bento ---------- */

.bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

.bento-tile {
  position: relative;
  border-radius: var(--r-photo);
  overflow: hidden;
  min-height: 320px;
  border: 2px solid var(--navy);
  box-shadow: var(--hard);
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bento-tile:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 rgba(3, 34, 89, 0.2); }
.bento-tile:first-child { grid-row: span 2; min-height: 100%; }

.bento-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.bento-tile:hover img { transform: scale(1.05); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 26, 69, 0.88) 0%, rgba(2, 26, 69, 0.35) 45%, rgba(2, 26, 69, 0.05) 75%);
}

/* cursor spotlight */
.bento-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 171, 223, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.bento-tile:hover::after { opacity: 1; }

.bento-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 26px 28px;
  color: var(--white);
}
.bento-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wave);
  margin-bottom: 8px;
}
.bento-body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.bento-body p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); max-width: 44ch; }

/* ---------- How it works (3 steps) ---------- */

.how-section { background: var(--tint-2); }

.how-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  inset-inline: 4%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

.how-step { position: relative; padding-top: 68px; }
.how-num {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cyan);
  background: var(--tint-2);
  padding-inline-end: 14px;
  line-height: 52px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.how-step p { font-size: 0.93rem; }

/* ---------- Gallery: layout grid (click to expand) ---------- */

.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-tile {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--r-photo);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy);
  text-align: start;
  transition: box-shadow 0.4s ease;
}
.grid-tile:hover { box-shadow: 0 18px 50px rgba(3, 34, 89, 0.25); }

.grid-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.4s ease;
}
.grid-tile:hover img { transform: scale(1.06); }

.grid-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 26, 69, 0.85), rgba(2, 26, 69, 0.08) 55%);
  transition: background 0.4s ease;
}

.grid-tile-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 22px 24px;
  color: var(--white);
}
.grid-tile-body h3 {
  font-family: var(--font);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  color: var(--white);
}
.grid-tile-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.grid-tile:hover .grid-tile-body p,
.grid-tile.is-open .grid-tile-body p { opacity: 1; transform: translateY(0); }

.grid-tile-open {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 17px;
  transition: transform 0.35s ease, background 0.35s ease;
}
.grid-tile:hover .grid-tile-open { background: var(--cyan); }
.grid-tile.is-open .grid-tile-open { transform: rotate(90deg); }

/* expanded state: tile spans 2x2 */
.grid-tile.is-open { z-index: 3; grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.grid-tile.is-open .grid-tile-body h3 { font-size: 1rem; }
.grid-tile.is-open .grid-tile-body p { opacity: 1; transform: none; font-size: 1rem; }
.grid-tile.is-open .grid-tile-overlay {
  background: linear-gradient(to top, rgba(2, 26, 69, 0.92), rgba(2, 26, 69, 0.15) 60%);
}

/* non-expanded tiles dim while one is open */
.layout-grid.has-open .grid-tile:not(.is-open) img { opacity: 0.45; }

.gallery-more { margin-top: 34px; }

/* ---------- Product tiles in layout grid ---------- */

.grid-product {
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--hard);
}
.grid-product:hover { box-shadow: 6px 6px 0 rgba(3, 34, 89, 0.2); }
.grid-product .grid-tile-overlay { display: none; }
.grid-product .grid-tile-open { background: rgba(3, 34, 89, 0.12); color: var(--navy); }
.grid-product:hover .grid-tile-open { background: var(--navy); color: #fff; }

.grid-product .tile-tint { position: absolute; inset: 0; }
.tile-tint.zaros { background: var(--tint-1); }
.tile-tint.kaliana { background: var(--tint-2); }

.grid-product img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62%;
  height: 68%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 14px 28px rgba(3, 34, 89, 0.2));
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.grid-product:hover img { transform: translateY(-6px) scale(1.04); }

.tile-brand {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--cyan-deep);
  margin-bottom: 4px;
}
.grid-product .grid-tile-body h3 { color: var(--navy); font-size: 1.05rem; letter-spacing: 0; text-transform: none; }
.grid-product .grid-tile-body p {
  color: var(--body);
  opacity: 0;
  max-width: 38ch;
  font-size: 0.88rem;
}
.grid-product.is-open .grid-tile-body p { opacity: 1; }

/* ---------- Coverage photo band ---------- */

.coverage-band {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

.coverage-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.coverage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 26, 69, 0.92) 0%, rgba(2, 26, 69, 0.65) 55%, rgba(2, 26, 69, 0.3) 100%);
}

.coverage-inner { position: relative; z-index: 2; }

.coverage-towns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.town-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}
.town-pill .material-symbols-rounded { color: var(--wave); font-size: 19px; }
.town-pill:hover { background: var(--cyan); transform: translateY(-3px); }
.town-pill:hover .material-symbols-rounded { color: var(--white); }

.coverage-note {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- CTA (azure band) ---------- */

.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--cyan);
  border-block: 2px solid var(--navy);
  overflow: hidden;
  text-align: start;
}

.cta-bubbles { position: absolute; inset: 0; pointer-events: none; }
.cta-bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.05) 60%);
  animation: cta-rise linear infinite;
}
.cta-bubble.b-1 { left: 8%; width: 22px; height: 22px; animation-duration: 11s; }
.cta-bubble.b-2 { left: 22%; width: 14px; height: 14px; animation-duration: 14s; animation-delay: -4s; }
.cta-bubble.b-3 { left: 55%; width: 26px; height: 26px; animation-duration: 12s; animation-delay: -7s; }
.cta-bubble.b-4 { left: 74%; width: 16px; height: 16px; animation-duration: 15s; animation-delay: -2s; }
.cta-bubble.b-5 { left: 88%; width: 20px; height: 20px; animation-duration: 10s; animation-delay: -6s; }
@keyframes cta-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.8; }
  85% { opacity: 0.8; }
  100% { transform: translateY(-78vh) translateX(30px); opacity: 0; }
}

.cta-content { position: relative; z-index: 2; max-width: 640px; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta-desc { font-size: 1.12rem; margin-bottom: 36px; color: rgba(3, 34, 89, 0.85); font-weight: 500; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }
.cta-note {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(3, 34, 89, 0.7);
}

/* ---------- Contact (4 tappable cards) ---------- */

.contact-section { padding-bottom: 140px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 24px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 22px;
  box-shadow: var(--hard);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 rgba(3, 34, 89, 0.2); }

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon .material-symbols-rounded { color: var(--cyan-deep); font-size: 26px; }
.contact-card-icon.wa { background: #25D366; border-color: #25D366; }
.contact-card-icon.vb { background: #7360F2; border-color: #7360F2; }
.contact-card-icon.wa img, .contact-card-icon.vb img { width: 26px; height: 26px; filter: brightness(0) invert(1); }

.contact-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
}
.contact-card-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0;
  word-break: break-word;
}

/* ---------- About page ---------- */

.about-hero { min-height: 88vh; }

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.story-p { font-size: 1.14rem; line-height: 1.75; margin-bottom: 22px; max-width: 56ch; }
.story-p:first-of-type { margin-top: 34px; }

.story-photo {
  position: relative;
  border-radius: var(--r-photo);
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: var(--hard-lg);
}
.story-photo img { aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%; }

.values-section { background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-item { border-top: 2px solid var(--navy); padding-top: 22px; }
.value-item:hover { border-top-color: var(--cyan); }
.value-num { display: block; font-family: var(--mono); font-size: 0.8rem; color: var(--cyan-deep); margin-bottom: 12px; }
.value-item h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.value-item p { font-size: 0.96rem; }

/* Team */
.team-section { padding-top: 20px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--hard);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 rgba(3, 34, 89, 0.2); }

.team-photo {
  aspect-ratio: 1;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder {
  font-size: 64px;
  color: var(--wave);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.team-info { padding: 20px 22px 24px; }
.team-info h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0;
}
.team-role { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--cyan-deep); margin: 4px 0 10px; }
.team-story { font-size: 0.9rem; }
.team-tbd { color: var(--slate); }

.band-section { padding: 120px 0; }
.band-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.band-photo {
  border-radius: var(--r-photo);
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: var(--hard-lg);
}
.band-photo img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.band-photo--product { background: #000; }
.band-photo--product img { object-fit: contain; }

.band-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--navy);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.band-desc { font-size: 1.1rem; margin-bottom: 30px; }

/* ---------- Products page ---------- */

.products-hero { min-height: 62vh; }

.brand-heading {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  border-top: 3px solid var(--navy);
  padding-top: 18px;
  margin: 64px 0 28px;
}
.brand-heading:first-of-type { margin-top: 0; }

.pcard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pcard-grid-4 { grid-template-columns: repeat(4, 1fr); }

.pcard {
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--hard);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pcard:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 rgba(3, 34, 89, 0.2); }

.pcard-photo {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.zaros-grid .pcard-photo { background: var(--tint-1); }
.kaliana-grid .pcard-photo { background: var(--tint-2); }
.pcard-photo img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(3, 34, 89, 0.18));
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.pcard:hover .pcard-photo img { transform: scale(1.06) translateY(-3px); }

.pcard h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 14px 18px 2px;
  letter-spacing: 0;
}
.pcard p { font-size: 0.84rem; padding: 0 18px 16px; }

.lineup-note {
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

/* ---------- Footer ---------- */

.footer { position: relative; background: var(--navy); }

.footer-wave {
  position: absolute;
  bottom: 100%;
  inset-inline: 0;
  width: 100%;
  height: 90px;
  display: block;
}

.footer-body { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 44px;
  padding: 80px 28px 56px;
}

.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 46px; width: auto; }

.footer-tagline { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; max-width: 300px; margin-bottom: 14px; }
.footer-made { color: var(--wave); font-size: 0.85rem; font-weight: 600; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin-bottom: 11px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover { color: var(--wave); transform: translateX(3px); }
[dir='rtl'] .footer-col a:hover { transform: translateX(-3px); }
.footer-col .material-symbols-rounded { font-size: 17px; color: var(--cyan); opacity: 0.9; font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); background: var(--navy-deep); }
.footer-bottom-inner { padding: 20px 28px; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

/* ---------- Brand buttons: WhatsApp + Viber ---------- */

.brand-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.brand-btn img { width: 26px; height: 26px; filter: brightness(0) invert(1); display: block; }
.brand-btn.wa { background: #25D366; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4); }
.brand-btn.vb { background: #7360F2; box-shadow: 0 8px 22px rgba(115, 96, 242, 0.4); }
.brand-btn:hover { transform: translateY(-3px) scale(1.06); }
.brand-btn.wa:hover { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55); }
.brand-btn.vb:hover { box-shadow: 0 14px 34px rgba(115, 96, 242, 0.55); }

.float-stack {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Reveal animations (hidden only when JS is active) ---------- */

.js-anim .fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-anim .fade-in.is-visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; }
  .panel-card { padding: 2.6rem 1.8rem 1.8rem; }
  .stamp { width: 96px; height: 96px; top: -28px; inset-inline-end: -8px; }

  .bento { grid-template-columns: 1fr; }
  .bento-tile:first-child { grid-row: auto; min-height: 380px; }

  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 34px; }
  .how-grid::before { display: none; }

  .layout-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-photo img { aspect-ratio: 16 / 10; }
  .band-section .container { grid-template-columns: 1fr; gap: 40px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .pcard-grid, .pcard-grid-4 { grid-template-columns: repeat(3, 1fr); }

  .proof .stat-item { padding: 0 1rem; }
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    top: 74px;
    inset-inline: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(3, 34, 89, 0.18);
    padding: 18px 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { padding: 13px 16px; font-size: 1rem; border-radius: 8px; }
  .nav-link:hover { background: var(--ice); }
  .nav-link::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .hero { padding: 120px 0 70px; min-height: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .proof { padding: 70px 0 64px; }
  .proof .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
  .proof .stat-item { border-inline-start: 0; padding: 0; }
  .proof .stat-item:nth-child(even) { border-inline-start: 1px solid rgba(255, 255, 255, 0.16); padding-inline-start: 14px; }

  .panel-card { padding: 2rem 1rem 1.4rem; border-radius: 22px; }
  .trio img { height: 155px; }
  .trio .trio-big { height: 200px; }
  .stamp { width: 84px; height: 84px; top: -24px; inset-inline-end: -4px; }

  .how-grid { grid-template-columns: 1fr; }

  .layout-grid { grid-template-columns: 1fr; }
  .grid-tile { aspect-ratio: 16 / 11; }
  .grid-tile.is-open { grid-column: auto; grid-row: auto; aspect-ratio: 16 / 11; }
  .grid-product img { width: 56%; height: 62%; }

  .contact-cards { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 60px; }

  .float-stack { bottom: 16px; inset-inline-end: 16px; }
  .brand-btn { width: 48px; height: 48px; }

  .team-grid { grid-template-columns: 1fr; }
  .pcard-grid, .pcard-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .btn-lg { padding: 0.9rem 1.4rem; font-size: 0.95rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trio img { height: 130px; }
  .trio .trio-big { height: 170px; }
  .contact-cards { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */

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