/* TITAN — Su Altı & İnşaat Hizmetleri */

:root {
  --void: #04070c;
  --deep: #071019;
  --abyss: #0b1826;
  --panel: #0d1a28;
  --foam: #eaf1f7;
  --muted: #90a2b3;
  --gold: #c9a227;
  --gold-bright: #e3c657;
  --spark: #3ecfff;
  --wa: #25d366;
  --wa-dark: #128c4a;
  --line: rgba(201, 162, 39, 0.25);
  --hairline: rgba(234, 241, 247, 0.09);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.75rem;
  --pad-x: clamp(1.25rem, 4.5vw, 4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(16, 55, 85, 0.5), transparent 60%),
    linear-gradient(180deg, var(--void) 0%, var(--deep) 45%, #050b12 100%);
  background-color: var(--void);
  color: var(--foam);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 600; }

#bubbles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.72;
}

main, .site-header, .site-footer { position: relative; z-index: 2; }

/* ---------- Depth gauge ---------- */

.depth-meter {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  pointer-events: none;
}

@media (min-width: 1100px) {
  .depth-meter { display: flex; }
}

.depth-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--spark);
  min-width: 3.5rem;
  text-align: center;
}

.depth-track {
  position: relative;
  width: 2px;
  height: 38vh;
  background: linear-gradient(180deg, rgba(62, 207, 255, 0.5), rgba(201, 162, 39, 0.35));
  border-radius: 2px;
}

.depth-track::before,
.depth-track::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 8px;
  height: 1.5px;
  background: rgba(234, 241, 247, 0.4);
}

.depth-track::before { top: 0; }
.depth-track::after { bottom: 0; }

.depth-diver {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070d14;
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(62, 207, 255, 0.22);
  transition: top 0.15s linear;
}

.depth-diver img {
  width: 118%;
  height: 118%;
  object-fit: cover;
  object-position: 50% 42%;
}

.depth-floor {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  z-index: 50;
  transition: border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

/* Blur on a sibling layer — not the header itself — so the mobile
   overlay stays viewport-fixed after scroll (backdrop-filter on an
   ancestor would trap position:fixed descendants in the header box). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(4, 7, 12, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header.is-scrolled::before {
  opacity: 1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 51;
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  appearance: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.25s, box-shadow 0.25s, transform 0.25s;
}

.lang-btn-tr {
  background: #c0392b;
  color: #fff;
}

.lang-btn-en {
  background: var(--gold);
  color: #111;
}

.lang-btn:not(.is-active) { opacity: 0.55; }
.lang-btn.is-active { box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28); }
.lang-btn:hover { opacity: 1; }

.lang-more { position: relative; }

.lang-globe {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #f4f6f8;
  color: #111;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.lang-globe:hover { transform: scale(1.06); }

.lang-globe.is-active,
.lang-globe[aria-expanded="true"] {
  box-shadow: 0 0 0 2px var(--gold);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 10.5rem;
  padding: 0.35rem 0;
  border-radius: 8px;
  border: 1px solid rgba(234, 241, 247, 0.16);
  background: rgba(12, 18, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 60;
}

.lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 0.55rem;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(12, 18, 26, 0.92);
}

.lang-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.9rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(234, 241, 247, 0.06);
  color: var(--foam);
  font-family: var(--font-body);
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
}

.lang-item:last-child { border-bottom: none; }
.lang-item:hover,
.lang-item.is-active { background: rgba(234, 241, 247, 0.06); }

.lang-flag {
  width: 1.25rem;
  height: 0.88rem;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.lang-flag svg { display: block; width: 100%; height: 100%; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 51;
}

.logo-img {
  width: auto;
  height: 3.55rem;
  border-radius: 0;
  background: transparent;
}

@media (min-width: 901px) {
  :root { --header-h: 5.5rem; }
  .logo-img { height: 5rem; }
  .logo-sub { font-size: 0.66rem; max-width: 8.4rem; }
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 7.2rem;
  line-height: 1.3;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }

html[data-lang="en"] .logo-sub,
html[data-lang="es"] .logo-sub,
html[data-lang="de"] .logo-sub,
html[data-lang="fr"] .logo-sub,
html[data-lang="ru"] .logo-sub {
  letter-spacing: 0.1em;
}

.site-nav { display: flex; align-items: center; gap: 1.9rem; }

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.site-nav a:hover { color: var(--foam); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--wa);
  border-radius: 999px;
  color: var(--wa) !important;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover { background: var(--wa); color: #04140b !important; }

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 51;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 1.5px;
  background: var(--foam);
  margin: 0.36rem auto;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header-end { gap: 0.2rem; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    gap: 2.1rem;
    background: rgba(4, 7, 12, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a { font-size: 1.4rem; letter-spacing: 0.14em; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--void);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.25);
}

.btn-gold:hover { background: var(--gold-bright); }

.btn-wa {
  border-color: var(--wa);
  color: var(--wa);
  background: rgba(37, 211, 102, 0.06);
}

.btn-wa:hover {
  background: var(--wa);
  color: #04140b;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) var(--pad-x) 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  animation: hero-zoom 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.09) translateX(-1.5%); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.92) 0%, rgba(4, 7, 12, 0.62) 42%, rgba(4, 7, 12, 0.15) 75%, rgba(4, 7, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.45) 0%, transparent 30%, transparent 60%, var(--void) 100%);
}

.hero-content { max-width: 40rem; }

.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 1.1rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 17vw, 11.5rem);
  line-height: 0.85;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 90px rgba(201, 162, 39, 0.25);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.tag-rule {
  width: 2.5px;
  height: 1.4em;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-lead {
  color: #c3d2de;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 30rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px rgba(4, 7, 12, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}

.scroll-hint i {
  width: 1.5px;
  height: 2.3rem;
  background: linear-gradient(180deg, var(--spark), transparent);
  animation: hint-drop 2s ease-in-out infinite;
}

@keyframes hint-drop {
  0% { transform: scaleY(0.35); opacity: 0; transform-origin: top; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: top; }
}

@media (max-width: 900px) {
  .hero-actions { display: none; }
  .hero-bg img { object-position: 88% 58%; }

  .band {
    min-height: 0;
    padding: 3.2rem var(--pad-x) 0.35rem;
  }

  .about {
    padding: 0.35rem var(--pad-x) 4.2rem;
    gap: 1.5rem;
  }

  .about-visual img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 700px) {
  .hero { padding-bottom: 7.5rem; }
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(201, 162, 39, 0.04);
  padding: 0.9rem 0;
  position: relative;
  z-index: 2;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.marquee.is-dragging { cursor: grabbing; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: rgba(234, 241, 247, 0.75);
  white-space: nowrap;
}

.marquee-track b {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ---------- Sections shared ---------- */

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.05rem;
}

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }

/* ---------- Services ---------- */

.services {
  padding: clamp(5rem, 11vw, 8.5rem) var(--pad-x);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

@media (min-width: 1200px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  padding: 1.8rem 1.5rem 1.6rem;
  background: linear-gradient(165deg, rgba(13, 26, 40, 0.85), rgba(7, 16, 25, 0.95));
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease), box-shadow 0.45s;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(62, 207, 255, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(62, 207, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.service-card:hover::after { opacity: 1; }

.service-num {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  color: rgba(201, 162, 39, 0.22);
  transition: color 0.35s;
}

.service-card:hover .service-num { color: rgba(62, 207, 255, 0.4); }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--gold);
  margin-bottom: 1.1rem;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.service-card:hover .service-icon {
  color: var(--spark);
  border-color: rgba(62, 207, 255, 0.5);
  background: rgba(62, 207, 255, 0.08);
}

.service-icon svg { width: 1.6rem; height: 1.6rem; }

.service-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
  padding-right: 2.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Operation band ---------- */

.band {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x) clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-media {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  overflow: hidden;
}

.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.75) 0%, rgba(4, 7, 12, 0.25) 40%, rgba(4, 7, 12, 0.88) 100%);
}

.band-content { max-width: 44rem; }

.band-text {
  color: #c3d2de;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  max-width: 32rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px rgba(4, 7, 12, 0.8);
}

.band-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}

.band-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.band-stats strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--foam);
  line-height: 1;
}

.band-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- About ---------- */

.about {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  padding: clamp(1.2rem, 3.5vw, 2.5rem) var(--pad-x) clamp(5rem, 11vw, 8.5rem);
  align-items: center;
}

@media (min-width: 980px) {
  .about { grid-template-columns: 0.95fr 1.05fr; }
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  will-change: transform;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
}

.about-copy strong { color: var(--gold-bright); }

/* ---------- Contact ---------- */

.contact {
  padding: clamp(5rem, 11vw, 8.5rem) var(--pad-x) clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  max-width: 60rem;
}

.address-btn {
  width: 100%;
  text-align: left;
  background: linear-gradient(135deg, rgba(13, 26, 40, 0.92), rgba(7, 16, 25, 0.97));
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--foam);
  padding: 1.6rem 1.6rem 1.45rem;
  cursor: pointer;
  font-family: inherit;
  display: grid;
  gap: 0.65rem;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.address-btn:hover {
  border-color: var(--spark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.address-label {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.address-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

.address-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.3rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spark);
}

.map-chooser {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: rgba(4, 7, 12, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.map-chooser.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.map-chooser-panel {
  width: min(100%, 26rem);
  padding: 1.7rem 1.5rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(13, 26, 40, 0.98), rgba(7, 16, 25, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.map-chooser-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.map-chooser-addr {
  color: var(--foam);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.map-chooser-actions {
  display: grid;
  gap: 0.7rem;
}

.map-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: rgba(234, 241, 247, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.map-opt:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  transform: translateY(-1px);
}

.map-opt-apple:hover {
  border-color: var(--spark);
  background: rgba(62, 207, 255, 0.08);
}

.map-chooser-close {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.map-chooser-close:hover { color: var(--foam); }

.contact-people,
.contact-channels {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .contact-people,
  .contact-channels { grid-template-columns: 1fr 1fr; }
}

.person {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: rgba(13, 26, 40, 0.5);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.person:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
  transform: translateY(-3px);
}

.person-name {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.person-phone {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: 0.06em;
}

.person-handle {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  letter-spacing: 0.02em;
  word-break: break-word;
}

.person-action {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.wa-panel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(18, 140, 74, 0.25), rgba(37, 211, 102, 0.12));
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: var(--wa);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.wa-panel:hover {
  transform: translateY(-3px);
  border-color: var(--wa);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.18);
}

.wa-panel-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--foam);
}

.wa-panel-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.wa-panel-text span {
  font-size: 0.85rem;
  color: var(--muted);
}

.wa-panel-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--wa);
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 2rem var(--pad-x) calc(2rem + 4.2rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 901px) {
  .site-footer { padding-bottom: 2rem; }
  .footer-brand img { height: 4.2rem; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img { width: auto; height: 3.2rem; border-radius: 0; background: transparent; }
.footer-sub { font-size: 0.7rem; letter-spacing: 0.06em; }

/* ---------- Quick bar (mobile) & FAB (desktop) ---------- */

.quickbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 162, 39, 0.3);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.quickbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quickbar-call {
  background: linear-gradient(180deg, #0d1a28, #081220);
  color: var(--gold-bright);
}

.quickbar-wa {
  background: linear-gradient(180deg, #128c4a, #0c6b38);
  color: #eafff2;
}

@media (min-width: 901px) {
  .quickbar { display: none; }
}

.fab-wa {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 60;
  width: 3.6rem;
  height: 3.6rem;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--wa), var(--wa-dark));
  color: #04140b;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.fab-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.45);
}

@media (min-width: 901px) {
  .fab-wa { display: flex; }
}

/* ---------- Motion safety ---------- */

html.i18n-pending body { visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-bg img,
  .scroll-hint i {
    animation: none !important;
  }
}
