/* ============================================================
   Seatrout Guide, static rebuild v2
   Deep Baltic teal + foam green + sand. Lexend / Russo One.
   Animations: hero drift, scroll reveal, wave divider, marquee.
   ============================================================ */

@font-face {
  font-family: "Lexend";
  src: url("../assets/fonts/Lexend-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Russo One";
  src: url("../assets/fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --sea-950: #06151a;
  --sea-900: #0a242c;
  --sea-800: #0f3a45;
  --sea-700: #145566;
  --foam: #64d851;
  --foam-bright: #7ae068;
  --foam-deep: #32733b;
  --sand: #e8e2d6;
  --sand-muted: #aeb8ba;
  --mist: #f4f7f8;
  --white: #ffffff;
  --ink: #122027;
  --ink-soft: #3d4d54;
  --line: rgba(255, 255, 255, 0.12);
  --line-light: #e4e9eb;
  --shadow: 0 24px 60px rgba(6, 21, 26, 0.35);
  --shadow-card: 0 12px 40px rgba(18, 32, 39, 0.08);
  --radius: 20px;
  --max: 1140px;
  --font-body: "Lexend", system-ui, sans-serif;
  --font-display: "Russo One", "Lexend", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--foam);
  color: var(--sea-950);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--foam);
  color: var(--sea-950);
  padding: 0.75rem 1rem;
  border-radius: 0 0 10px 0;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background:
    radial-gradient(ellipse 120% 60% at 85% -10%, rgba(20, 85, 102, 0.55), transparent 60%),
    linear-gradient(170deg, var(--sea-950) 0%, var(--sea-900) 50%, #0b3a30 100%);
  color: var(--sand);
}

.section-tint {
  background: #eaf0f1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--foam-deep);
  font-weight: 700;
  margin: 0 0 0.9rem;
}

.section-dark .eyebrow {
  color: var(--foam);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  margin: 0 0 1.1rem;
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin: 0 0 1rem;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 40rem;
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .lead {
  color: rgba(232, 226, 214, 0.85);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.2s, box-shadow 0.25s;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--foam);
  color: var(--sea-950);
  box-shadow: 0 12px 32px rgba(100, 216, 81, 0.3);
}

.btn-primary:hover {
  background: var(--foam-bright);
  box-shadow: 0 16px 40px rgba(100, 216, 81, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--sand);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-arrow {
  transition: transform 0.25s var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(6, 21, 26, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(6, 21, 26, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo img {
  height: 30px;
  width: auto;
}

.nav {
  display: none;
  gap: 1.6rem;
  align-items: center;
}

.nav a {
  position: relative;
  color: rgba(232, 226, 214, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--foam);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover {
  color: var(--white);
}

.nav .nav-cta {
  background: var(--foam);
  color: var(--sea-950);
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.nav .nav-cta::after {
  display: none;
}

.nav .nav-cta:hover {
  background: var(--foam-bright);
  transform: translateY(-1px);
  color: var(--sea-950);
}

.lang {
  display: flex;
  gap: 0.3rem;
}

.lang a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(232, 226, 214, 0.7);
  padding: 0.3rem 0.45rem;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}

.lang a.is-active,
.lang a:hover {
  color: var(--sea-950);
  background: var(--foam);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 940px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.nav-mobile > div {
  overflow: hidden;
}

.nav-mobile.is-open {
  grid-template-rows: 1fr;
  background: rgba(6, 21, 26, 0.96);
  backdrop-filter: blur(16px);
}

.nav-mobile a {
  display: block;
  color: var(--sand);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: max(92svh, 620px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--sea-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  animation: heroDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1%, -2%, 0);
  }
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 21, 26, 0.5) 0%, rgba(6, 21, 26, 0.25) 35%, rgba(6, 21, 26, 0.93) 100%),
    radial-gradient(ellipse at 75% 15%, rgba(100, 216, 81, 0.16), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 9rem 0 6.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foam);
  border: 1px solid rgba(100, 216, 81, 0.4);
  background: rgba(100, 216, 81, 0.08);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--foam);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(100, 216, 81, 0.55);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(100, 216, 81, 0);
  }
}

.hero h1 {
  max-width: 15ch;
}

.hero .lead {
  color: rgba(232, 226, 214, 0.9);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero entrance: animate ONLY transform, never opacity.
   Opacity < 1 at first paint makes Lighthouse report NO_LCP (the full-bleed
   hero <img> is treated as a backdrop and excluded from LCP). */
.hero [data-hero] {
  opacity: 1;
  transform: translateY(18px);
  animation: riseIn 0.8s var(--ease-out) forwards;
}

.hero [data-hero="1"] { animation-delay: 0.05s; }
.hero [data-hero="2"] { animation-delay: 0.15s; }
.hero [data-hero="3"] { animation-delay: 0.25s; }
.hero [data-hero="4"] { animation-delay: 0.35s; }
.hero [data-hero="5"] { animation-delay: 0.5s; }

@keyframes riseIn {
  to {
    transform: translateY(0);
  }
}

/* Belt-and-suspenders: never show the Aplany floating button on this site.
   Booking opens via in-page CTAs that forward-click the (hidden) widget. */
.aplany-embed-btn {
  display: none !important;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stat {
  display: grid;
  gap: 0.1rem;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--foam);
  font-variant-numeric: tabular-nums;
}

.stat span {
  font-size: 0.82rem;
  color: rgba(232, 226, 214, 0.75);
}

/* wave divider */
.wave {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
}

.wave path {
  fill: var(--mist);
}

.wave--to-dark path {
  fill: var(--sea-950);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: none;
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 880px) {
  .intro-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.intro-copy p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.intro-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.intro-figure:hover img {
  transform: scale(1.045);
}

.intro-figure figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.intro-figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(6, 21, 26, 0.65));
}

/* ---------- Services ---------- */
.services {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 820px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
}

.service {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.service:hover {
  border-color: rgba(100, 216, 81, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.service::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--foam), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(100, 216, 81, 0.12);
  border: 1px solid rgba(100, 216, 81, 0.3);
  margin-bottom: 1.1rem;
  color: var(--foam);
}

.price-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(50, 115, 59, 0.1);
  border: 1px solid rgba(50, 115, 59, 0.22);
  color: var(--foam-deep);
  flex-shrink: 0;
}

.price-icon .icon {
  width: 22px;
  height: 22px;
}

.service h3 {
  font-size: 1.3rem;
  color: var(--white);
}

.service > p {
  color: var(--sand-muted);
  margin: 0 0 1.4rem;
}

.packages {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.package {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  transition: border-color 0.25s, background 0.25s;
}

.package:hover {
  border-color: rgba(100, 216, 81, 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.package strong {
  color: var(--white);
  font-size: 0.95rem;
}

.package span {
  color: var(--sand-muted);
  font-size: 0.87rem;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.price-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

/* Keeps both panels' CTAs bottom-aligned regardless of list length */
.price-cta {
  margin: 1.5rem 0 0;
  padding-top: 0;
  margin-top: auto;
}

.price-cta .btn {
  width: 100%;
}

.price-panel .note {
  margin-bottom: 1.5rem;
}

.price-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(18, 32, 39, 0.14);
}

.price-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed #dde5e7;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-list .amount {
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.note {
  margin: 1.25rem 0 0;
  font-size: 0.86rem;
  color: #5a6b72;
  padding: 0.8rem 1rem;
  background: #f2f7f3;
  border-left: 3px solid var(--foam);
  border-radius: 0 10px 10px 0;
}

/* ---------- Testimonials carousel ---------- */
.carousel {
  position: relative;
  margin-top: 2.5rem;
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.carousel-arrows {
  display: flex;
  gap: 0.6rem;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #cfd9db;
  background: var(--white);
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s, transform 0.2s var(--ease-out);
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--foam);
  border-color: var(--foam);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonials {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 1.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.testimonials::-webkit-scrollbar {
  display: none;
}

.testimonials.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.testimonial {
  flex: 0 0 min(84vw, 340px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.carousel-progress {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #c3ced1;
  cursor: pointer;
  transition: background 0.25s, width 0.25s var(--ease-out);
}

.carousel-dot.is-active {
  width: 26px;
  background: var(--foam-deep);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(18, 32, 39, 0.13);
}

.testimonial-photo {
  overflow: hidden;
}

.testimonial-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.testimonial:hover .testimonial-photo img {
  transform: scale(1.06);
}

.testimonial-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.stars {
  color: #f5b301;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.testimonial blockquote {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.testimonial details summary {
  cursor: pointer;
  color: var(--foam-deep);
  font-weight: 700;
  font-size: 0.84rem;
  list-style: none;
  margin-top: 0.25rem;
}

.testimonial details summary::-webkit-details-marker {
  display: none;
}

.testimonial details[open] summary {
  display: none;
}

.testimonial-body h3 {
  margin: 0;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a8a8e;
}

.story-open {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin-top: auto;
  align-self: flex-start;
  cursor: pointer;
  color: var(--foam-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.84rem;
}

.story-open:hover,
.story-open:focus-visible {
  color: var(--sea-800);
}

.story-dialog {
  padding: 0;
  border: none;
  background: transparent;
  width: min(880px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 2rem);
}

.story-dialog::backdrop {
  background: rgba(6, 21, 26, 0.72);
  backdrop-filter: blur(8px);
}

.story-dialog[open] {
  animation: story-in 0.28s var(--ease-out);
}

@keyframes story-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.story-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: min(560px, calc(100vh - 2.5rem));
  max-height: min(560px, calc(100vh - 2.5rem));
}

.story-dialog-media {
  background: var(--sea-900);
}

.story-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.story-dialog-copy {
  padding: 1.7rem 3.2rem 1.8rem 1.8rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.story-dialog-copy h3 {
  margin: 0;
}

.story-dialog-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.story-dialog-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.story-dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 32, 39, 0.12);
}

.story-dialog-close:hover,
.story-dialog-close:focus-visible {
  background: var(--foam);
}

@media (max-width: 720px) {
  .story-dialog-panel {
    grid-template-columns: 1fr;
  }

  .story-dialog-media img {
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }

  .story-dialog-copy {
    padding: 1.25rem 1.2rem 1.4rem;
  }
}

/* ---------- Sponsor (single) ---------- */
.sponsor-strip {
  padding: 2.2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line-light);
}

.sponsor-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sponsor-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3a8;
}

.sponsor-single img {
  height: 40px;
  width: auto;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }
}

.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(100, 216, 81, 0.14), transparent 45%);
  pointer-events: none;
}

.about-copy p {
  color: rgba(232, 226, 214, 0.85);
  margin: 0 0 1rem;
}

.guide-sign {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foam);
  margin-top: 1.5rem;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.faq-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}

.faq-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 0.3rem 1.25rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item[open] {
  border-color: rgba(100, 216, 81, 0.5);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1.05rem 2rem 1.05rem 0;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--foam-deep);
  transition: rotate 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
  rotate: 45deg;
}

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ---------- Booking ---------- */
.book-wrap {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 920px) {
  .book-wrap {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.book-side .lead {
  margin-top: 1rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  color: var(--sand-muted);
}

.contact-line a {
  color: var(--foam);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-line a:hover {
  color: var(--foam-bright);
}

.book-panel {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.form-grid {
  display: grid;
  gap: 1.05rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sand);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  padding: 0.85rem 1rem;
  font: inherit;
  transition: border-color 0.2s, outline-color 0.2s;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364d851' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(100, 216, 81, 0.5);
  outline-offset: 1px;
  border-color: transparent;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.83rem;
  color: var(--sand-muted);
  margin: 0.5rem 0 0;
}

.form-status {
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.form-status--ok {
  background: rgba(100, 216, 81, 0.15);
  border: 1px solid rgba(100, 216, 81, 0.45);
  color: var(--foam);
}

.form-status--err {
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #f0a0a0;
}

/* Honeypot: visually hidden, off-screen for bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sea-950);
  color: var(--sand-muted);
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-brand strong {
  display: block;
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.footer-inner a:hover {
  color: var(--foam);
}

.social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  white-space: nowrap;
}

.social svg {
  flex-shrink: 0;
  display: block;
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.7rem;
  color: #25d366;
  font-weight: 600;
}

.wa-badge:hover {
  color: #5ce08a;
}

.wa-badge svg {
  display: block;
  flex-shrink: 0;
}

.made-by {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

.made-by a {
  color: var(--sand-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.made-by a:hover {
  color: var(--foam);
}

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--foam);
  color: var(--sea-950);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(6, 21, 26, 0.35);
  opacity: 0;
  translate: 0 12px;
  pointer-events: none;
  transition: opacity 0.3s, translate 0.3s var(--ease-out), background 0.2s;
}

.to-top.is-visible {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--foam-bright);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
