:root {
  --navy: #0f172a;
  --warm-white: #f8fafc;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --amber: #f59e0b;
  --silver: #cbd5e1;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --whatsapp: #25d366;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 30px 80px rgba(15, 23, 42, 0.18);
  --radius: 8px;
  --container: min(1160px, calc(100% - 2rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--warm-white);
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0, var(--warm-white) 520px);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.narrow {
  max-width: 860px;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  margin-left: 12px;
  border-radius: 999px;
  background: var(--navy);
}

.site-nav {
  position: fixed;
  inset: 82px 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-strong);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--text);
  background: #eff6ff;
}

.nav-cta,
.button-primary {
  color: white !important;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--blue-dark) !important;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.language-switcher button.is-active {
  color: white;
  background: var(--navy);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
}

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

.button-secondary {
  color: var(--text);
  background: white;
  border-color: var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.cookie-banner .button-ghost,
.cookie-modal .button-ghost {
  color: var(--blue);
  background: transparent;
  border-color: transparent;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  color: white;
  background: var(--navy);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.66) 52%, rgba(15, 23, 42, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.95), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin: 0;
  padding: 0.36rem 0.7rem;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-availability .eyebrow,
.section-contact .eyebrow {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: clamp(2.75rem, 7vw, 6.2rem);
}

h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero-subhead {
  max-width: 760px;
  margin-top: 1.1rem;
  color: #f8fafc;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 800;
}

.hero-copy,
.section-heading p,
.content-panel p,
.availability-copy p,
.placeholder-panel p,
.contact-panel p,
.event-card p,
.pricing-card p,
.step-card p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 660px;
  margin-top: 0.8rem;
  color: #dbeafe;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.trustbar {
  position: relative;
  z-index: 2;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 0;
}

.trustbar span,
.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-alt {
  background: white;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  margin-top: 0.85rem;
  font-size: 1.04rem;
}

.section-intro {
  text-align: center;
}

.section-intro .section-heading {
  margin-inline: auto;
}

.split-layout,
.availability-layout,
.contact-panel {
  display: grid;
  gap: 1.5rem;
}

.content-panel,
.pricing-card,
.event-card,
.step-card,
.faq-item,
.placeholder-panel,
.availability-card,
.contact-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.content-panel,
.step-card,
.placeholder-panel,
.availability-copy,
.contact-panel {
  padding: clamp(1.25rem, 4vw, 2.1rem);
}

.content-panel p {
  margin-top: 1rem;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e2e8f0;
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-focus-top img,
.availability-image img {
  object-position: 50% 18%;
}

.portrait-frame {
  min-height: 420px;
}

.portrait-frame img {
  min-height: 420px;
  object-position: center;
}

.benefit-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.benefit-grid article {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.benefit-grid span {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--amber));
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.event-card,
.pricing-card {
  overflow: hidden;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.event-card:hover,
.pricing-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: var(--shadow-strong);
}

.event-card-image {
  aspect-ratio: 16 / 10;
  box-shadow: none;
  border-radius: 0;
}

.event-card div:last-child {
  padding: 1rem;
}

.event-card p,
.pricing-card p {
  margin-top: 0.55rem;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.16);
}

.pricing-image {
  aspect-ratio: 16 / 10;
  box-shadow: none;
  border-radius: 0;
}

.pricing-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem;
}

.pricing-body .button {
  margin-top: auto;
}

.price {
  color: var(--navy) !important;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

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

.feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #dbeafe;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.stepper-grid {
  display: grid;
  gap: 1rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--amber));
}

.step-card span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-card h3 {
  margin-top: 0.55rem;
}

.step-card p {
  margin-top: 0.55rem;
}

.section-availability,
.section-contact {
  color: white;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.26), transparent 42%),
    var(--navy);
}

.availability-layout {
  align-items: center;
}

.availability-copy p {
  margin-top: 1rem;
  color: #dbeafe;
}

.availability-copy .button {
  margin-top: 1.4rem;
}

.availability-card {
  overflow: hidden;
  background: white;
}

.availability-card > div:last-child {
  padding: 1.2rem;
}

.availability-image {
  aspect-ratio: 16 / 11;
  box-shadow: none;
  border-radius: 0;
}

.placeholder-panel {
  text-align: center;
}

.placeholder-panel .eyebrow {
  margin-inline: auto;
}

.placeholder-panel p:last-child {
  max-width: 680px;
  margin: 0.9rem auto 0;
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 1rem 1.15rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  padding: 0 1.15rem 1rem;
}

.contact-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-panel h2,
.availability-copy h2 {
  color: white;
}

.contact-panel p {
  margin-top: 0.85rem;
  color: #dbeafe;
}

.small-contact {
  font-size: 0.92rem;
}

.small-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 4rem 0 2.5rem;
  color: #cbd5e1;
  background: #0b1224;
}

.site-footer h3 {
  color: white;
  font-size: 1rem;
}

.site-footer p {
  margin-top: 1rem;
  color: #cbd5e1;
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 1.4rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0.85rem 0 0;
  list-style: none;
}

.footer-links a,
.footer-cookie-button {
  color: #cbd5e1;
}

.footer-links a:hover,
.footer-cookie-button:hover {
  color: white;
}

.footer-cookie-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.seo-locations {
  max-width: 460px;
  font-size: 0.86rem;
}

.footer-language {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-language .language-switcher {
  width: fit-content;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-strong);
}

.cookie-banner.is-hidden,
.cookie-modal.is-hidden {
  display: none;
}

.cookie-content {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.cookie-content h2,
.cookie-modal h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.cookie-content p,
.cookie-modal p,
.cookie-toggle small {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.55);
}

.cookie-modal-panel {
  position: relative;
  width: min(640px, 100%);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-strong);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  font-size: 1.5rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.cookie-toggle input {
  width: 22px;
  height: 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  min-width: 60px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  color: white;
  background: var(--whatsapp);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
  font-weight: 900;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(37, 211, 102, 0.36);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.has-cookie-banner .floating-whatsapp {
  bottom: 9.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .event-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .availability-layout,
  .contact-panel,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.05rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.56rem 0.7rem;
  }

  .site-nav .language-switcher {
    margin-left: 0.25rem;
  }

  .nav-cta {
    margin-left: 0.25rem;
  }

  .event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stepper-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .hero {
    min-height: 560px;
    align-items: flex-end;
    padding: 4.4rem 0 1.6rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.92) 62%, rgba(15, 23, 42, 0.98) 100%);
  }

  .hero-media img {
    object-position: 42% center;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.42rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-copy {
    margin-top: 0.6rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-nav .language-switcher {
    margin: 0.35rem 0;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }

  body.has-cookie-banner .floating-whatsapp {
    bottom: 10.5rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
