/* ============================================================
   Северно Черноморие — морско & лятно оформление
   Palette: дълбоко море, тюркоаз, пясък, слънце
   Fonts: Raleway (заглавия) · Inter (текст) · Caveat (акценти)
   ============================================================ */

:root {
  --sea-deep: #08334f;
  --sea: #0e5d80;
  --sea-mid: #0f86a6;
  --aqua: #17b3c9;
  --turquoise: #22c1a7;
  --foam: #f3fbfc;
  --white: #ffffff;
  --sand: #fbf1dd;
  --sand-2: #f5e4bd;
  --sun: #ffc531;
  --sun-2: #ffa824;
  --coral: #ff6b5e;
  --coral-soft: #ffe6e1;
  --ink: #0d3a52;
  --body: #45606f;
  --mute: #7b95a3;
  --line: #dbe9ef;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -18px rgba(13, 90, 128, 0.35);
  --shadow-lg: 0 30px 60px -20px rgba(13, 90, 128, 0.45);
  --ease: cubic-bezier(.22, .8, .28, 1);
  --font-display: 'Raleway', 'Montserrat', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.2; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-head p { margin-top: 12px; font-size: 1.05rem; }
.wave-under { width: 84px; height: 14px; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-sun {
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-2) 100%);
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(255, 165, 36, .6);
}
.btn-sun:hover { box-shadow: 0 20px 40px -12px rgba(255, 165, 36, .75); }
.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .65);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .24); }
.btn-white {
  background: var(--white);
  color: var(--sea-deep);
  box-shadow: 0 14px 30px -12px rgba(8, 51, 79, .45);
}
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -18px rgba(8, 51, 79, .5);
  padding: 8px 0;
}
.nav-wrap { display: flex; align-items: center; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; flex: none; filter: drop-shadow(0 6px 10px rgba(0,0,0,.18)); }
.brand-logo svg { width: 100%; height: 100%; overflow: visible; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .01em;
  transition: color .3s var(--ease);
}
.brand-tag {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  transition: color .3s var(--ease);
}
.site-header.is-scrolled .brand-name { color: var(--ink); }
.site-header.is-scrolled .brand-tag { color: var(--mute); }

/* logo animation */
.logo-rays { transform-origin: 26px 26px; animation: spin 22s linear infinite; }
.logo-wave { animation: waveShift 3.6s linear infinite; }
.logo-wave-2 { animation-duration: 5s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes waveShift { to { transform: translateX(-52px); } }

/* nav */
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list > li { position: relative; }
.nav-list > li > a,
.drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255, 255, 255, .92);
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { transform: scaleX(1); }
.site-header.is-scrolled .nav-list > li > a,
.site-header.is-scrolled .drop-btn { color: var(--ink); }
.nav-list > li > a:hover,
.drop-btn:hover { color: var(--sun); }
.site-header.is-scrolled .nav-list > li > a:hover,
.site-header.is-scrolled .drop-btn:hover { color: var(--coral); }

.drop-btn .caret { transition: transform .3s var(--ease); font-size: .7em; }
.has-drop:hover .caret, .has-drop.open .caret { transform: rotate(180deg); }

.drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-drop:hover .drop-menu, .has-drop.open .drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop-menu a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--body);
  transition: background .2s, color .2s, padding-left .25s var(--ease);
}
.drop-menu a:hover { background: var(--foam); color: var(--sea-mid); padding-left: 18px; }
.drop-menu .dm-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  color: var(--sun-2);
  flex: none;
}

.header-phone { font-size: .92rem; padding: 10px 18px; }
.header-phone .ico { font-size: 1.05em; }

/* language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 14px;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--white);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.lang-switch:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--sea-deep);
  transform: translateY(-1px);
}
.site-header.is-scrolled .lang-switch {
  border-color: var(--sea);
  color: var(--ink);
  background: var(--foam);
}
.site-header.is-scrolled .lang-switch:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; border-radius: 12px;
  background: rgba(255,255,255,.14);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  backdrop-filter: blur(6px);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.site-header.is-scrolled .nav-toggle { background: var(--foam); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(255, 197, 49, .22), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(34, 193, 167, .25), transparent 60%),
    linear-gradient(158deg, var(--sea-deep) 0%, var(--sea) 46%, var(--sea-mid) 78%, var(--aqua) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 45%);
  pointer-events: none;
}
.hero-sun {
  position: absolute;
  top: 9%; right: 8%;
  width: clamp(120px, 16vw, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ffe9a8, var(--sun) 55%, rgba(255, 197, 49, 0) 72%);
  filter: blur(.4px);
  animation: sunPulse 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sunPulse { 0%,100% { transform: scale(1); opacity: .95; } 50% { transform: scale(1.06); opacity: 1; } }

.hero-clouds i {
  position: absolute;
  display: block;
  height: 26px;
  width: 120px;
  background: rgba(255, 255, 255, .5);
  border-radius: 999px;
  filter: blur(9px);
  opacity: 0;
  animation: drift 40s linear infinite;
}
.hero-clouds i:nth-child(1) { top: 16%; left: -140px; animation-duration: 46s; }
.hero-clouds i:nth-child(2) { top: 30%; left: -140px; animation-duration: 62s; animation-delay: -20s; transform: scale(1.4); }
.hero-clouds i:nth-child(3) { top: 12%; left: -160px; animation-duration: 74s; animation-delay: -40s; transform: scale(.8); }
@keyframes drift {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: .55; }
  92% { opacity: .55; }
  100% { transform: translateX(calc(100vw + 320px)); opacity: 0; }
}

.hero-inner { position: relative; z-index: 3; padding: 130px 0 150px; max-width: 900px; }
.hero.center .hero-inner { margin-inline: auto; text-align: center; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--sun), var(--sun-2));
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(255, 165, 36, .7);
  margin-bottom: 22px;
}
.hero-kicker .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); animation: dot 1.6s ease infinite; }
@keyframes dot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.4); opacity: .5; } }

.hero h1 {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  text-shadow: 0 4px 30px rgba(8, 51, 79, .35);
}
.hero h1 .hl { color: var(--sun); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(255, 197, 49, .35);
  border-radius: 4px;
  z-index: -1;
}
.hero-sub { margin: 20px 0 32px; font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255, 255, 255, .92); max-width: 620px; }
.hero.center .hero-sub { margin-inline: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-anim { animation: fadeUp .9s var(--ease) both; }
.hero-anim-1 { animation-delay: .12s; }
.hero-anim-2 { animation-delay: .24s; }
.hero-anim-3 { animation-delay: .36s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* hero waves */
.hero-waves { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 2; width: 100%; height: 120px; pointer-events: none; }
.hero-waves svg { width: 200%; height: 100%; display: block; }
.hero-wave-1 { fill: rgba(251, 241, 221, .34); animation: slideWave 12s linear infinite; }
.hero-wave-2 { fill: rgba(255, 255, 255, .55); animation: slideWave 9s linear infinite; }
.hero-wave-3 { fill: rgba(255, 255, 255, .95); animation: slideWave 14s linear infinite; }
@keyframes slideWave { to { transform: translateX(-50%); } }

/* generic section wave divider */
.wave-divider { display: block; width: 100%; height: 60px; margin: -2px 0; }
.wave-divider.top { transform: rotate(180deg); }
.wave-divider .fill-sand { fill: var(--sand); }
.wave-divider .fill-white { fill: var(--white); }
.wave-divider .fill-foam { fill: var(--foam); }

/* ---------- Sand / alternating backgrounds ---------- */
.bg-sand { background: var(--sand); }
.bg-foam { background: var(--foam); }
.bg-deep { background: linear-gradient(160deg, var(--sea-deep), var(--sea)); color: #fff; }

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(135deg, var(--sun), var(--sun-2));
  color: var(--ink);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 40px; padding-left: 40px; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 800; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; }
.marquee i { font-style: normal; color: rgba(13, 58, 82, .5); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Facts chips ---------- */
.facts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .9rem;
  backdrop-filter: blur(6px);
  animation: fadeUp .9s var(--ease) both;
}
.fact b { font-family: var(--font-display); color: var(--sun); font-weight: 800; }
.facts.plain .fact { background: var(--foam); border-color: var(--line); color: var(--body); }
.facts.plain .fact b { color: var(--sea-mid); }

/* ---------- Cards grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.attraction-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px -14px rgba(8, 51, 79, .3);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.attraction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-media { position: relative; height: 210px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.attraction-card:hover .card-media img { transform: scale(1.09); }
.card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 51, 79, .1), rgba(8, 51, 79, .45));
}
.card-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 900;
  font-size: .78rem; color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.card-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 700;
  font-size: .7rem; letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  background: rgba(13, 90, 128, .85);
  border-radius: 999px;
  padding: 5px 12px;
  backdrop-filter: blur(4px);
}
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.18rem; font-weight: 800; }
.card-loc { display: flex; align-items: center; gap: 6px; font-size: .84rem; color: var(--mute); }
.card-loc .ico { color: var(--coral); }
.card-body p { font-size: .94rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--sea-mid);
  margin-top: 4px;
}
.card-link .arr { transition: transform .25s var(--ease); }
.attraction-card:hover .card-link .arr { transform: translateX(6px); }

/* ---------- Route strip ---------- */
.route-panel {
  background: linear-gradient(160deg, var(--sea-deep), var(--sea));
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(26px, 4vw, 48px);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.route-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: .5;
  pointer-events: none;
}
.route-panel h3 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 4px; position: relative; }
.route-panel .kicker { font-family: var(--font-script); font-size: 1.5rem; color: var(--sun); position: relative; }
.route-track {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px 10px;
  position: relative;
}
.route-stop {
  position: relative;
  padding-top: 34px;
}
.route-stop::before {
  content: '';
  position: absolute; top: 12px; left: 0; right: 0;
  border-top: 2px dashed rgba(255, 255, 255, .45);
  animation: dashMove 3s linear infinite;
}
@keyframes dashMove { to { background-position: 12px 0; } }
.route-stop::after {
  content: '';
  position: absolute; top: 4px; left: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe9a8, var(--sun) 65%);
  box-shadow: 0 0 0 5px rgba(255, 197, 49, .18);
  animation: pulseRing 2.4s ease infinite;
}
@keyframes pulseRing { 0%,100% { box-shadow: 0 0 0 4px rgba(255,197,49,.2); } 50% { box-shadow: 0 0 0 9px rgba(255,197,49,.08); } }
.route-stop:first-child::before { display: none; }
.route-stop .rs-num { font-family: var(--font-display); font-weight: 800; font-size: .7rem; color: var(--sun); letter-spacing: .1em; }
.route-stop .rs-name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #fff; line-height: 1.25; }
.route-stop .rs-sub { font-size: .76rem; color: rgba(255, 255, 255, .7); }

/* ---------- Prose ---------- */
.prose { max-width: 820px; }
.prose p { margin-bottom: 18px; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose h3 { font-size: 1.35rem; margin: 30px 0 12px; }

.highlight {
  background: linear-gradient(160deg, var(--foam), #e9f7fa);
  border: 1px solid #cfeaf1;
  border-left: 5px solid var(--aqua);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin: 28px 0;
}
.highlight h3 { color: var(--sea); font-size: 1.15rem; margin-bottom: 6px; }
.highlight p { margin: 0; }

.feature-list { display: grid; gap: 12px; margin: 22px 0; }
.feature-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature-list li:hover { transform: translateX(6px); border-color: var(--aqua); box-shadow: var(--shadow); }
.feature-list li::before {
  content: '✓';
  position: absolute; left: 14px; top: 13px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--turquoise), var(--aqua));
  color: #fff;
  font-weight: 800; font-size: .8rem;
  border-radius: 50%;
}

/* ---------- Info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 10px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 8px 26px -18px rgba(8, 51, 79, .3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--aqua), var(--turquoise));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card:hover::before { transform: scaleX(1); }
.info-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #e6f7fa, #f4fdf9);
  margin-bottom: 16px;
  transition: transform .3s var(--ease);
}
.info-card:hover .info-icon { transform: rotate(-8deg) scale(1.08); }
.info-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.info-card p { font-size: .93rem; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; margin: 34px 0 8px; }
.stat {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 26px -18px rgba(8, 51, 79, .3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  background: linear-gradient(135deg, var(--sea), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-label { font-size: .86rem; color: var(--mute); margin-top: 6px; }
.bg-deep .stat { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.bg-deep .stat-number { background: linear-gradient(135deg, var(--sun), var(--sun-2)); -webkit-background-clip: text; background-clip: text; }
.bg-deep .stat-label { color: rgba(255,255,255,.8); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px -16px rgba(8, 51, 79, .4);
}
.gallery-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(8, 51, 79, .75));
  color: #fff; font-size: .84rem;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-item.tall img { height: 300px; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 40, 60, .92);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(960px, 94vw); max-height: 84vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; font-size: 1.4rem; cursor: pointer;
  background: rgba(255,255,255,.15); color: #fff;
  transition: background .25s;
}
.lightbox .lb-close:hover { background: var(--coral); }

/* ---------- Info table ---------- */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(8, 51, 79, .3);
}
.info-table th {
  text-align: left;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--sand), var(--sand-2));
  border-bottom: 1px solid var(--line);
  width: 210px;
}
.info-table td { padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.info-table tr:last-child td { border-bottom: 0; }
.info-table tr:hover td { background: var(--foam); }

/* ---------- Pager ---------- */
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.pager a {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 8px 26px -18px rgba(8, 51, 79, .3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pager a:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--aqua); }
.pager a.next { justify-content: flex-end; text-align: right; }
.pager .p-dir { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); font-family: var(--font-display); font-weight: 800; }
.pager .p-name { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.pager .p-arrow { font-size: 1.4rem; color: var(--aqua); flex: none; }
.pager a.next .p-arrow { order: 2; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(165deg, var(--sea-deep), var(--sea));
  color: rgba(255, 255, 255, .85);
  margin-top: 40px;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: .4;
  pointer-events: none;
}
.footer-top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 70px 0 40px; }
.footer-brand p { margin-top: 16px; font-size: .95rem; max-width: 360px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,.6); }
.footer-col h4 { color: var(--sun); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 800; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .95rem; transition: color .2s, padding-left .25s var(--ease); }
.footer-col a:hover { color: var(--sun); padding-left: 6px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.footer-contact .ico { color: var(--sun); flex: none; }
.footer-cta {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.6);
}
.footer-bottom a:hover { color: var(--sun); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.94); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- Scroll-to-top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--aqua), var(--sea-mid));
  color: #fff; font-size: 1.2rem;
  box-shadow: 0 14px 30px -12px rgba(15, 134, 166, .7);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Breadcrumb strip ---------- */
.crumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 20px 0 0; font-size: .88rem; color: var(--mute);
}
.crumb a:hover { color: var(--sea-mid); }
.crumb .sep { color: var(--sun-2); }

/* ---------- Media queries ---------- */
@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(330px, 86vw);
    background: linear-gradient(175deg, var(--sea-deep), var(--sea));
    padding: 96px 26px 30px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    box-shadow: -30px 0 60px rgba(8, 40, 60, .4);
    z-index: 998;
  }
  .site-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a, .drop-btn {
    color: rgba(255,255,255,.92);
    font-size: 1.05rem;
    justify-content: space-between;
    width: 100%;
    padding: 12px 8px;
  }
  .nav-list > li > a::after { display: none; }
  .drop-menu {
    position: static;
    transform: none !important;
    min-width: 0;
    background: rgba(255,255,255,.07);
    box-shadow: none;
    padding: 6px;
    margin: 4px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height .4s var(--ease), padding .3s;
  }
  .has-drop.open .drop-menu { max-height: 900px; padding: 8px; }
  .drop-menu a { color: rgba(255,255,255,.85); }
  .drop-menu a:hover { background: rgba(255,255,255,.12); color: #fff; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-phone { display: none; }
  .header-phone.nav { display: inline-flex; }
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 997;
    background: rgba(8, 40, 60, .5);
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 200px; }
  .pager { grid-template-columns: 1fr; }
  .pager a.next { justify-content: flex-start; text-align: left; }
  .pager a.next .p-arrow { order: 0; }
  .hero { min-height: 560px; }
  .facts { gap: 8px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .brand-tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
