/* ============================================================
   FISHTANK — Showcase PC Club
   Layout container:  F — alternating-bleed
     odd sections  -> boxed 1140px
     even sections -> full-bleed with 5vw inner padding
   Spacing scale:     airy  (128 / 72, 64 mobile)
   Do not mix container schemes inside the site.
   ============================================================ */

:root {
  /* palette */
  --c-bg: #f2f8f9;          /* light background (primary) */
  --c-bg-dark: #0f2e33;     /* depth, used sparingly */
  --c-ink: #0f2e33;         /* text on light */
  --c-ink-inv: #f2f8f9;     /* text on dark */
  --c-a1: #06b6d4;          /* water cyan */
  --c-a2: #fbbf24;          /* goldfish */

  /* tonal water layers (depth by tone, no shadows) */
  --c-water-1: #e4f1f3;
  --c-water-2: #d3e8ec;
  --c-water-3: #bfdfe4;
  --c-glass-line: rgba(6, 182, 212, 0.35);
  --c-glass-fill: rgba(255, 255, 255, 0.55);
  --c-glass-fill-dark: rgba(255, 255, 255, 0.06);

  /* fonts */
  --f-display: "Comfortaa", "Varela Round", sans-serif;
  --f-body: "Varela Round", "Comfortaa", sans-serif;

  /* radii */
  --r-card: 22px;
  --r-glass: 28px;
  --r-pill: 999px;

  /* borders */
  --b-glass: 1.5px solid var(--c-glass-line);

  /* spacing scale — airy + 8px inner steps */
  --sec-y: 128px;            /* section vertical rhythm (desktop) */
  --block-y: 72px;
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* container width for boxed (odd) sections */
  --w-container: 1140px;
}

@media (max-width: 768px) {
  :root { --sec-y: 64px; --block-y: 48px; }
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.14; margin: 0 0 var(--s-3); }
h1 { font-size: clamp(38px, 6vw, 76px); letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 4.5vw, 48px); }
h3 { font-size: clamp(19px, 2.4vw, 24px); }
p { margin: 0 0 var(--s-3); }
:focus-visible { outline: 3px solid var(--c-a1); outline-offset: 3px; border-radius: 6px; }

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

/* ---------- container schemes (alternating-bleed) ---------- */
.s { position: relative; padding-block: var(--sec-y); }
.s__inner { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--s-4); }
/* even = full-bleed with 5vw inner padding */
.s--bleed { padding-inline: 5vw; }
.s--bleed > .s__inner { max-width: none; padding-inline: 0; }

@media (max-width: 560px) {
  .s__inner { padding-inline: var(--s-3); }
  .s--bleed { padding-inline: var(--s-3); }
}

/* depth marks — playful navigation deeper down the page */
.depth-mark {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-a1);
  display: inline-block;
  margin-bottom: var(--s-2);
  opacity: 0.85;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-a1);
  font-family: var(--f-display);
  font-weight: 700;
  margin-bottom: var(--s-2);
  display: block;
}
.lead { font-size: clamp(17px, 2vw, 19px); max-width: 60ch; }

/* ---------- glass plate (motif 1) ---------- */
.glass {
  position: relative;
  background: var(--c-glass-fill);
  border: var(--b-glass);
  border-radius: var(--r-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
/* sheen strip that slides across on reveal (motif) */
.glass::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-14deg);
  pointer-events: none;
}
.glass.is-in::before { animation: sheen-slide 1.1s ease-out both; }
@keyframes sheen-slide { to { left: 120%; } }

/* ---------- species tag (motif 2) — like an aquarium plaque ---------- */
.tag {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--c-water-2);
  border: 1px solid var(--c-glass-line);
  color: var(--c-ink);
  transform: rotate(-2.4deg);
}
.tag em { font-style: italic; font-family: var(--f-body); font-weight: 400; opacity: 0.8; }
.reveal.is-in .tag { animation: tag-screw 0.6s cubic-bezier(.2,.9,.3,1.2) both; }
@keyframes tag-screw {
  from { transform: rotate(-9deg) scale(0.9); opacity: 0; }
  to   { transform: rotate(-2.4deg) scale(1); opacity: 1; }
}

/* ---------- bubble bullets (motif 3) ---------- */
.bubbles { list-style: none; padding: 0; margin: 0; }
.bubbles li {
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--s-2);
}
.bubbles li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.55em;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--c-a1);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(6,182,212,0.25));
}

/* ---------- wavy water divider (motif 4) ---------- */
.wave-divider { display: block; width: 100%; height: 46px; color: var(--c-a1); }
.wave-divider svg { width: 100%; height: 100%; display: block; }
.wave-divider .wave-path { animation: wave-bob 7s ease-in-out infinite; }
@keyframes wave-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(2px); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: var(--b-glass);
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease, background 0.2s ease;
  background: var(--c-glass-fill);
  color: var(--c-ink);
}
.btn--primary { background: var(--c-a1); color: #05363d; border-color: transparent; }
.btn--ghost { background: rgba(255,255,255,0.35); }
.btn:hover { transform: translateY(-2px); }
/* a bubble floats up off the button on hover (motif) */
.btn::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--c-a1);
  opacity: 0;
  pointer-events: none;
}
.btn:hover::after { animation: btn-bubble 0.7s ease-out; }
@keyframes btn-bubble {
  0% { opacity: 0.9; transform: translateY(0) scale(0.6); }
  100% { opacity: 0; transform: translateY(-34px) scale(1.1); }
}

/* ============================================================
   NAV  (nav-pill)
   ============================================================ */
.nav {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 9px 12px 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(242, 248, 249, 0.72);
  border: var(--b-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 8px;
}
.nav__logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-a2); flex: none; }
.nav__badge {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--c-a1);
  color: #05363d;
  white-space: nowrap;
}
.nav__links { display: flex; gap: var(--s-3); align-items: center; }
.nav__links a {
  font-size: 14.5px;
  font-family: var(--f-display);
  position: relative;
  padding: 4px 2px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--c-a1); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { padding: 10px 20px; }
.nav__toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: 14px; color: var(--c-ink);
  padding: 8px 10px;
}

@media (max-width: 900px) {
  .nav__badge { display: none; }
  .nav__links { gap: var(--s-2); }
}
@media (max-width: 760px) {
  .nav { padding: 9px 12px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(242, 248, 249, 0.96);
    border: var(--b-glass);
    border-radius: var(--r-glass);
    padding: var(--s-3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 6px; }
  .nav__cta { text-align: center; }
}

/* ============================================================
   HERO  (hero-split-media) + Bubble Rise animation
   ============================================================ */
.s-hero {
  padding-top: 132px;
  padding-bottom: var(--sec-y);
  background:
    radial-gradient(120% 80% at 15% 0%, var(--c-water-1), transparent 60%),
    linear-gradient(180deg, var(--c-bg), var(--c-water-2));
  position: relative;
  overflow: hidden;
}
.hero__grid {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--s-4);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__text { max-width: 42ch; }
.hero__title { font-size: clamp(30px, 4.4vw, 56px); }
.hero__title span { color: var(--c-a1); }
.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-top: var(--s-4); }
.hero__note { font-size: 13.5px; margin-top: var(--s-3); color: #3c6169; }

/* media with corner sheen + wavy water-level bottom mask */
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--r-glass);
  border: var(--b-glass);
  aspect-ratio: 1408 / 768;
  object-fit: cover;
  filter: saturate(1.02);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H100 V90 Q75 100 50 92 T0 90 Z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H100 V90 Q75 100 50 92 T0 90 Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-glass);
  background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, transparent 22%);
  pointer-events: none;
}

/* Bubble Rise background */
.tank {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.tank .bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.4);
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,0.8), rgba(6,182,212,0.16) 70%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  will-change: transform, opacity;
  animation: bubble-rise var(--dur, 16s) linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
@keyframes bubble-rise {
  0%   { transform: translate(0, 0) scale(0.7); opacity: 0; }
  8%   { opacity: 0.9; }
  50%  { transform: translate(var(--drift, 12px), -46vh) scale(1); }
  86%  { opacity: 0.9; }
  100% { transform: translate(calc(var(--drift, 12px) * -0.6), -92vh) scale(1.05); opacity: 0; }
}
/* the fish-dot swims across on a wavy path */
.tank .fish {
  position: absolute;
  top: 60%; left: -6%;
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--c-a2);
  transform: rotate(45deg);
  will-change: transform;
  animation: fish-swim 20s linear infinite;
  opacity: 0.9;
}
@keyframes fish-swim {
  0%   { transform: translate(0, 0) rotate(45deg); }
  25%  { transform: translate(30vw, -5vh) rotate(35deg); }
  50%  { transform: translate(58vw, 4vh) rotate(52deg); }
  75%  { transform: translate(84vw, -4vh) rotate(38deg); }
  100% { transform: translate(112vw, 2vh) rotate(45deg); }
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

/* ============================================================
   Section backgrounds / alternation helpers
   ============================================================ */
.s--dark {
  background: var(--c-bg-dark);
  color: var(--c-ink-inv);
}
.s--dark .eyebrow, .s--dark .depth-mark { color: var(--c-a2); }
.s--dark .glass { background: var(--c-glass-fill-dark); border-color: rgba(6,182,212,0.5); }
.s--dark .tag { background: rgba(6,182,212,0.16); color: var(--c-ink-inv); border-color: rgba(6,182,212,0.5); }
.s--tint { background: linear-gradient(180deg, var(--c-bg), var(--c-water-1)); }

.section-head { max-width: 60ch; margin-bottom: var(--block-y); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Stations: zone cards (roomy 2-up, feature spans full width) ---------- */
.zones { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
.zone { padding: 0; display: flex; flex-direction: column; }
.zone__media { position: relative; }
.zone__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.zone__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.35) 0%, transparent 26%);
}
.zone__body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.zone__body h3 { margin: 6px 0 0; }
.zone__count { font-family: var(--f-display); font-weight: 700; color: var(--c-a1); font-size: 15px; }
.zone--frame .zone__media { border-bottom: 2px solid var(--c-a1); }
.zone--frame .zone__media::before {
  content: ""; position: absolute; inset: 10px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 10px; pointer-events: none;
  background: linear-gradient(160deg, rgba(6,182,212,0.14), transparent 55%);
}

/* the showcase row is the feature — spans both columns as a wide horizontal card */
.zone--frame {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}
.zone--frame .zone__media {
  flex: 0 0 46%;
  display: flex;
}
.zone--frame .zone__media img { height: 100%; aspect-ratio: auto; }
.zone--frame .zone__body {
  flex: 1;
  justify-content: center;
  padding: clamp(24px, 3vw, 44px);
}
.zone--frame .zone__body h3 { font-size: clamp(22px, 2.8vw, 30px); }

@media (max-width: 860px) {
  .zones { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .zone--frame { flex-direction: column; }
  .zone--frame .zone__media { flex: none; }
  .zone--frame .zone__media img { height: auto; aspect-ratio: 1 / 1; }
  .zone--frame .zone__body { padding: var(--s-4); justify-content: flex-start; }
}

/* ---------- Hardware spec grid ---------- */
.spec-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-5); align-items: start; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.spec { padding: var(--s-3) var(--s-4); }
.spec dt { font-family: var(--f-display); font-weight: 700; color: var(--c-a1); font-size: 14px; margin-bottom: 4px; }
.spec dd { margin: 0; font-size: 15px; }
@media (max-width: 760px) { .spec-grid { grid-template-columns: 1fr; } .spec-list { grid-template-columns: 1fr; } }

/* ---------- Rates ---------- */
.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.rate { padding: var(--s-5) var(--s-4); text-align: center; }
.rate__name { font-family: var(--f-display); font-weight: 700; font-size: 20px; margin-bottom: 6px; }
.rate__price { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 4vw, 42px); color: var(--c-a1); line-height: 1; }
.rate__price small { font-size: 14px; color: inherit; opacity: 0.7; font-weight: 400; }
.rate__meta { font-size: 14px; margin-top: var(--s-2); opacity: 0.85; }
.rate--feature { border-color: var(--c-a2); }
.rate--feature .rate__price { color: var(--c-ink); }
.rate-note { margin-top: var(--s-4); font-size: 14px; text-align: center; opacity: 0.85; }
@media (max-width: 760px) { .rates { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ---------- Behind the Glass band ---------- */
.glassband { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.glassband__media img {
  width: 100%; border-radius: var(--r-glass); border: var(--b-glass);
  aspect-ratio: 3 / 2; object-fit: cover;
}
.glassband__media { position: relative; }
.glassband__media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-glass);
  background: linear-gradient(115deg, rgba(255,255,255,0.4), transparent 24%); pointer-events: none;
}
@media (max-width: 820px) { .glassband { grid-template-columns: 1fr; } }

/* ---------- Glass diary ---------- */
.diary { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.entry { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.entry h3 { font-size: 19px; margin: 6px 0 0; }
.entry__date { font-family: var(--f-display); font-weight: 700; font-size: 12.5px; letter-spacing: 1px; color: var(--c-a1); text-transform: uppercase; }
@media (max-width: 860px) { .diary { grid-template-columns: 1fr; } }

/* ---------- Floor gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.gallery figure { margin: 0; position: relative; border-radius: var(--r-card); overflow: hidden; border: var(--b-glass); }
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.32), transparent 26%); pointer-events: none;
}
.gallery figcaption {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: 12px; letter-spacing: 0.6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(15,46,51,0.72); color: var(--c-ink-inv);
}
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--c-glass-line); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(17px, 2.2vw, 20px); color: var(--c-ink);
  padding: var(--s-4) 40px var(--s-4) 0; position: relative;
}
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px; border-radius: 50%;
  border: 1.5px solid var(--c-a1);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(6,182,212,0.2));
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__q::after { transform: scale(1.35); background: var(--c-a1); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq__a p { padding-bottom: var(--s-4); margin: 0; }

/* ============================================================
   FORM — Dive in (dark "sea floor")
   ============================================================ */
.form-wrap { max-width: 640px; margin-inline: auto; }
.form-card { padding: clamp(24px, 4vw, 48px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: 0.4px; }
.field input, .field select {
  font-family: var(--f-body); font-size: 15.5px;
  padding: 12px 14px; border-radius: 14px;
  border: 1.5px solid rgba(6,182,212,0.5);
  background: rgba(255,255,255,0.08);
  color: var(--c-ink-inv);
  position: relative;
}
.field input::placeholder { color: rgba(242,248,249,0.55); }
.field select option { color: #0f2e33; }
/* focus sheen strip across the input */
.field { position: relative; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-a1);
  background:
    linear-gradient(105deg, transparent 40%, rgba(6,182,212,0.18) 50%, transparent 60%) rgba(255,255,255,0.08);
  background-size: 300% 100%;
  animation: field-sheen 0.7s ease-out;
}
@keyframes field-sheen { from { background-position: 120% 0; } to { background-position: -40% 0; } }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#formStatus { margin-top: var(--s-3); font-family: var(--f-display); font-weight: 700; font-size: 14.5px; }
#formStatus.success { color: var(--c-a2); }
#formStatus.error { color: #ff8f8f; }
.form-actions { margin-top: var(--s-4); }

/* ============================================================
   FOOTER  (footer-map-contact)
   ============================================================ */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); padding-block: var(--block-y); }
.footer__inner { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--s-4); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1.1fr 0.9fr; gap: var(--s-5); }
.footer__brand-name { font-family: var(--f-display); font-weight: 700; font-size: 24px; display: flex; align-items: center; gap: 8px; }
.footer__brand-name .nav__logo-dot { background: var(--c-a2); }
.footer__slogan { opacity: 0.85; margin-top: var(--s-2); max-width: 34ch; }
.footer h4 { font-family: var(--f-display); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--c-a1); margin-bottom: var(--s-2); }
.footer address { font-style: normal; opacity: 0.9; line-height: 1.9; }
.footer__contact p { margin: 0 0 var(--s-2); }
.footer__contact-label {
  display: block;
  font-family: var(--f-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--c-a1); opacity: 0.9;
}
.footer__contact a:hover { color: var(--c-a1); }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a:hover { color: var(--c-a1); }
.footer__bottom {
  max-width: var(--w-container); margin: var(--s-6) auto 0; padding: var(--s-4) var(--s-4) 0;
  border-top: 1px solid rgba(6,182,212,0.28);
  display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: space-between; align-items: center;
  font-size: 13.5px; opacity: 0.85;
}
.footer__disclaimer {
  width: 100%;
  font-family: var(--f-display); font-weight: 700; font-size: 14.5px;
  color: var(--c-a2); letter-spacing: 0.3px;
  margin-bottom: var(--s-2);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: 60;
  width: min(680px, calc(100% - 24px));
  display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: var(--r-glass);
  background: rgba(242, 248, 249, 0.92);
  border: var(--b-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cookie[hidden] { display: none; }
.cookie.is-in { animation: cookie-rise 0.5s cubic-bezier(.2,.8,.3,1) both; }
@keyframes cookie-rise { from { opacity: 0; transform: translate(-50%, 24px); } to { opacity: 1; transform: translate(-50%, 0); } }
.cookie__icon { width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,0.95), rgba(6,182,212,0.3));
  border: 1.5px solid var(--c-a1); }
.cookie__text { flex: 1 1 240px; font-size: 14px; margin: 0; }
.cookie__text a { color: #0a7d92; text-decoration: underline; }
.cookie__actions { display: flex; gap: var(--s-2); }
.cookie__actions .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 560px) { .cookie__actions { width: 100%; } .cookie__actions .btn { flex: 1; justify-content: center; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
/* depth marks "sink" in */
.depth-mark { transform: translateY(-10px); opacity: 0; transition: transform 0.7s cubic-bezier(.2,.7,.2,1), opacity 0.7s ease; }
.reveal.is-in .depth-mark { transform: translateY(0); opacity: 0.85; }

/* ============================================================
   LEGAL PAGES (tank-notes)
   ============================================================ */
.legal { padding-top: 132px; padding-bottom: var(--sec-y); background: linear-gradient(180deg, var(--c-bg), var(--c-water-1)); min-height: 60vh; }
.legal__inner { max-width: 760px; margin-inline: auto; padding-inline: var(--s-4); }
.legal__plate { padding: clamp(24px, 4vw, 44px); margin-bottom: var(--s-6); text-align: center; }
.legal__plate h1 { font-size: clamp(32px, 5vw, 54px); margin-bottom: var(--s-2); }
.legal__plate p { margin: 0; opacity: 0.85; }
.legal h2 { margin-top: var(--s-6); font-size: clamp(22px, 3vw, 30px); }
.legal h2:first-of-type { margin-top: 0; }
.legal__meta { font-size: 13.5px; color: var(--c-a1); font-family: var(--f-display); font-weight: 700; letter-spacing: 0.5px; }
.legal-back { display: inline-block; margin-top: var(--s-5); font-family: var(--f-display); font-weight: 700; color: #0a7d92; }

/* ============================================================
   Reduced motion — quiet everything
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .depth-mark { opacity: 0.85; transform: none; }
  .tank { display: none; }
  .glass::before { display: none; }
  .cookie { opacity: 1; }
}
