:root {
  --ink: #222831;
  --muted: #5d6672;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --sea: #18a8d4;
  --sea-dark: #007ec3;
  --orange: #f59b00;
  --orange-dark: #d67f00;
  --sun: #fff7e6;
  --mint: #eef8fc;
  --line: #e4e8ee;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

#ocasiones,
#experiencias,
#contacto {
  scroll-margin-top: 112px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(34, 40, 49, 0.54);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer,
.modal-actions {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: min(104px, 24vw);
  height: auto;
  border-radius: 8px;
}

.nav-links {
  gap: 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.16);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(24, 168, 212, 0.34);
  background: var(--mint);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(20px, 6vw, 76px) 40px;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

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

.hero-scrim {
  background: rgba(34, 40, 49, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero .eyebrow {
  animation-delay: 80ms;
}

.hero h1 {
  animation-delay: 160ms;
}

.hero-copy {
  animation-delay: 240ms;
}

.hero-actions {
  animation-delay: 320ms;
}

.eyebrow,
.section-kicker,
.card-topline,
.modal-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd58d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5.1vw, 3.45rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.25vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  font-family: var(--font-body);
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.button-quiet {
  color: var(--sea-dark);
  border: 1px solid rgba(24, 168, 212, 0.28);
  background: transparent;
}

.occasion-section,
.trust-section,
.experience-band,
.reviews-section,
.split-section,
.lead-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.occasion-section {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  margin-bottom: 28px;
}

.section-heading .section-kicker {
  margin-bottom: 0;
  line-height: 1;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p,
.split-section p,
.lead-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.occasion-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--sun);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.occasion-card:nth-child(2),
.occasion-card:nth-child(4) {
  background: var(--mint);
}

.occasion-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 168, 212, 0.42);
}

.occasion-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: var(--sea-dark);
  font-size: 0.76rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.occasion-card strong {
  display: block;
  margin: 18px 0 14px;
  font-family: var(--font-body);
  font-size: 1.28rem;
  line-height: 1.18;
  font-weight: 700;
}

.occasion-card small {
  color: var(--orange-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-section { background: var(--paper); }

.reviews-section {
  background: var(--surface);
}

.facebook-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.facebook-review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.facebook-review-card:hover,
.facebook-review-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(24, 168, 212, 0.42);
}

.facebook-review-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--sea-dark);
  background: var(--mint);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.facebook-review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.18;
}

.facebook-review-card p {
  flex: 1;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.facebook-review-card small {
  color: var(--orange);
  font-size: 1.02rem;
  letter-spacing: 1px;
}

.facebook-review-card time {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.facebook-review-card em {
  display: block;
  margin-top: 18px;
  color: var(--sea-dark);
  font-style: normal;
  font-weight: 700;
}

.reviews-cta {
  margin-top: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  padding: 24px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--sea-dark);
  background: var(--mint);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.trust-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.experience-band {
  background: var(--paper);
}

.catalog-group + .catalog-group {
  margin-top: clamp(34px, 6vw, 64px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(24, 168, 212, 0.42);
}

.catalog-card.featured {
  border-color: rgba(245, 155, 0, 0.34);
}

.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mint);
}

#embarcaciones .card-media {
  position: relative;
}

#embarcaciones .card-image {
  aspect-ratio: 16 / 9;
  border-bottom-left-radius: 24px;
}

#embarcaciones .card-corner {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  width: clamp(148px, 48%, 214px);
  height: auto;
  pointer-events: none;
}

#embarcaciones .card-duration {
  position: absolute;
  left: 8px;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(34, 40, 49, 0.24);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  line-height: 1;
  transform: translateY(1px);
}

.card-body,
.card-price,
.card-note,
.card-meta,
.catalog-card .text-button {
  margin-left: 22px;
  margin-right: 22px;
}

.card-body {
  flex: 1;
  padding-top: 22px;
}

.catalog-card p {
  color: var(--muted);
}

.card-price {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.card-price span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-price strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1;
  font-weight: 700;
}

.card-price small,
.card-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.card-note {
  margin-top: 9px;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.card-meta span {
  border: 1px solid rgba(24, 168, 212, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--sea-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-meta span:first-child {
  border-color: rgba(245, 155, 0, 0.34);
  color: var(--orange-dark);
  background: var(--sun);
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 22px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  color: #fff;
  background: var(--sea-dark);
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.catalog-card .text-button {
  background: #0f8fd0;
}

.text-button:hover {
  background: var(--sea);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background: var(--surface);
}

.boat-list {
  display: grid;
  gap: 14px;
}

.boat-list div {
  padding: 22px;
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: var(--surface);
}

.boat-list span {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.boat-list strong {
  display: block;
  margin: 8px 0 5px;
  font-size: 1.1rem;
}

.boat-list p {
  margin: 0;
  font-size: 0.96rem;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background: var(--sea-dark);
  color: #fff;
}

.lead-copy {
  position: sticky;
  top: 110px;
}

.lead-copy .section-kicker {
  color: #ffd58d;
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.1);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 13px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #ffd58d;
}

.lead-form select option {
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.wide,
.wide-fact {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 30px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.footer-nav a {
  color: var(--sea-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.legal-page {
  background: var(--surface);
}

.legal-hero {
  padding: 132px clamp(20px, 6vw, 76px) 48px;
  background: var(--paper);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 8px 0 14px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.legal-hero p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.legal-hero small {
  color: var(--sea-dark);
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 860px;
  padding: 54px clamp(20px, 6vw, 76px) 82px;
}

.legal-content article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.legal-content p + p {
  margin-top: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: #16a75c;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
  animation: iconPulseSoft 4.8s ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  background: #129653;
  animation-play-state: paused;
}

.whatsapp-icon {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.detail-page {
  background: var(--paper);
}

.detail-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.detail-header .header-cta {
  border-color: rgba(24, 168, 212, 0.34);
  background: var(--mint);
  color: var(--ink);
}

.detail-hero,
.detail-section,
.detail-decision,
.detail-mid-cta,
.detail-cta {
  padding-left: clamp(20px, 6vw, 76px);
  padding-right: clamp(20px, 6vw, 76px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 136px;
  padding-bottom: clamp(54px, 8vw, 96px);
  background: var(--surface);
}

.detail-hero-copy {
  max-width: 720px;
}

.detail-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sea-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.detail-hero h1 {
  margin-bottom: 20px;
  color: var(--ink);
}

.detail-hero p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
  line-height: 1.58;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-media {
  margin: 0;
}

.detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--mint);
}

.detail-section {
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.detail-decision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(18px, 3vw, 26px);
  padding-bottom: clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.detail-list div,
.detail-includes-card,
.detail-support-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
}

.detail-decision div {
  padding: 0 clamp(16px, 3vw, 28px);
  border-left: 1px solid var(--line);
}

.detail-decision div:first-child {
  padding-left: 0;
  border-left: 0;
}

.detail-decision span,
.route-steps span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-decision strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

.detail-decision p,
.detail-split p,
.detail-list p,
.route-copy p:not(.section-kicker),
.route-steps p,
.route-note li,
.policies-copy p:not(.section-kicker),
.policies-list p,
.detail-mid-cta p,
.detail-cta p {
  color: var(--muted);
}

.detail-decision p,
.detail-list p,
.detail-support-grid p,
.route-steps p {
  margin-bottom: 0;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background: var(--surface);
}

.detail-essentials {
  background: var(--paper);
}

.detail-essentials.has-include-items {
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 36px);
}

.detail-essentials .detail-list {
  align-self: stretch;
}

.detail-essentials.has-include-items .detail-essentials-copy {
  max-width: 760px;
}

.detail-split h2 {
  max-width: 720px;
}

.detail-split > div > p:not(.section-kicker) {
  max-width: 680px;
  font-size: 1.05rem;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list strong,
.detail-includes-card > strong,
.detail-support-grid > div > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.detail-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.include-item {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(24, 168, 212, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: var(--paper);
}

.include-icon {
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  width: 38px;
  min-width: 38px;
  max-width: 38px;
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--sea-dark);
  background: var(--mint);
}

.include-icon svg {
  display: block;
  width: 22px;
  max-width: 22px;
  height: 22px;
  max-height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.include-item strong {
  margin: 0 0 2px;
  font-size: 0.92rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.include-item small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.detail-route {
  background: var(--paper);
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(360px, 1.12fr) minmax(220px, 0.5fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.route-copy,
.route-note {
  padding: clamp(22px, 3vw, 34px);
}

.route-copy {
  align-self: center;
}

.route-copy h2 {
  max-width: 420px;
  margin-bottom: 12px;
}

.route-copy p:not(.section-kicker) {
  max-width: 390px;
  font-size: 1.02rem;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.route-steps article {
  padding: clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-steps article:nth-child(-n + 2) {
  border-top: 0;
}

.route-steps article:nth-child(odd) {
  border-left: 0;
}

.route-steps strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.route-steps p {
  font-size: 0.93rem;
  line-height: 1.5;
}

.route-note {
  align-self: center;
}

.route-note strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.08rem;
}

.route-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-note li {
  position: relative;
  padding-left: 18px;
  font-size: 0.93rem;
  line-height: 1.45;
}

.route-note li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sea);
}

.detail-location {
  background: var(--surface);
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 2.6vw, 24px);
  background: var(--paper);
}

.location-map {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.location-summary {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: clamp(4px, 1vw, 10px) 0;
}

.location-summary h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.location-primary {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.location-primary:hover,
.location-primary:focus-visible {
  border-color: rgba(24, 168, 212, 0.42);
  background: var(--mint);
  transform: translateY(-2px);
}

.location-primary span,
.location-alternatives > span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.location-primary strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.location-primary p,
.location-primary small,
.location-alternative small {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.location-primary small {
  margin-top: 6px;
  color: var(--sea-dark);
  font-weight: 700;
}

.location-primary em {
  margin-top: 8px;
  color: var(--orange-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
}

.location-alternatives {
  display: grid;
  gap: 10px;
}

.location-alternative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.location-alternative {
  min-width: 0;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.location-alternative:hover {
  border-color: rgba(24, 168, 212, 0.42);
  background: var(--mint);
  transform: translateY(-2px);
}

.location-alternative strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.location-alternative small {
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.detail-policies {
  background: var(--paper);
}

.policies-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px) 0;
}

.policies-copy {
  max-width: 420px;
}

.policies-copy h2 {
  margin-bottom: 10px;
}

.policies-copy p:not(.section-kicker) {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.policies-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.policies-list article {
  min-width: 0;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--line);
}

.policies-list article:first-child {
  border-top: 0;
}

.policies-list article.is-weather {
  background: var(--mint);
}

.policies-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--sea-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.policies-list article.is-weather span {
  color: var(--orange-dark);
}

.policies-list p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.detail-gallery {
  position: relative;
  z-index: 0;
  background: var(--surface);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  column-gap: clamp(28px, 6vw, 76px);
  row-gap: 0;
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.gallery-heading .section-kicker {
  grid-column: 1 / -1;
}

.gallery-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.gallery-heading p:not(.section-kicker) {
  max-width: 420px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: minmax(auto, 15vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
}

.gallery-count-1 .gallery-grid {
  display: block;
  grid-template-columns: 1fr;
}

.gallery-count-1 .gallery-item {
  min-height: 0;
}

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

.gallery-count-2 .gallery-item {
  min-height: clamp(320px, 36vw, 480px);
}

.gallery-count-many .gallery-item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-count-many .gallery-item:nth-child(4n + 4) {
  grid-column: span 2;
}

.gallery-count-many .gallery-item:nth-child(5n + 5) {
  grid-row: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count-1 .gallery-item img {
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(228, 232, 238, 0.82);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.detail-mid-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: clamp(28px, 5vw, 46px);
  padding-bottom: clamp(28px, 5vw, 46px);
  color: #fff;
  background: var(--sea-dark);
}

.detail-mid-cta .section-kicker {
  color: #ffd58d;
}

.detail-mid-cta h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.detail-mid-cta p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.detail-mid-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.detail-mid-cta .button-quiet {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: transparent;
}

.detail-faq {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--paper);
}

.faq-heading {
  position: static;
}

.faq-heading h2 {
  max-width: 520px;
}

.faq-heading p:not(.section-kicker) {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.faq-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.faq-item summary span {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(24, 168, 212, 0.34);
  border-radius: 8px;
  color: var(--sea-dark);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  border-color: rgba(245, 155, 0, 0.44);
  color: var(--orange-dark);
}

.faq-item p {
  margin: -4px 20px 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  overflow-wrap: anywhere;
}

.detail-cta {
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(52px, 8vw, 92px);
  color: #fff;
  background: var(--sea-dark);
}

.detail-cta .section-kicker {
  color: #ffd58d;
}

.detail-cta h2 {
  max-width: 720px;
}

.detail-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 40, 49, 0.78);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-panel h2 {
  max-width: 640px;
  margin-bottom: 16px;
}

.modal-panel > p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.modal-facts div,
.modal-tone {
  border: 1px solid rgba(24, 168, 212, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
}

.modal-facts dt,
.modal-tone span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal-facts dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 600;
}

.modal-tone p {
  margin: 8px 0 0;
  color: var(--muted);
}

.modal-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@keyframes iconPulseSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

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

@media (max-width: 1024px) {
  .facebook-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facebook-review-card {
    min-height: 260px;
  }

  .facebook-review-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .facebook-review-card:nth-child(3) p {
    max-width: 760px;
  }
}

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

  .section-heading,
  .split-section,
  .lead-section,
  .detail-hero,
  .detail-split,
  .gallery-heading,
  .detail-policies,
  .detail-mid-cta,
  .detail-faq {
    grid-template-columns: 1fr;
  }

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

  .gallery-count-many .gallery-item.is-featured,
  .gallery-count-many .gallery-item:nth-child(4n + 4),
  .gallery-count-many .gallery-item:nth-child(5n + 5) {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .occasion-grid,
  .trust-grid,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .lead-copy {
    position: static;
  }

  .detail-decision {
    grid-template-columns: 1fr;
  }

  .detail-decision div {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-decision div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .detail-decision div:last-child {
    padding-bottom: 0;
  }

  .route-panel {
    grid-template-columns: 1fr;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 300px;
  }

  .policies-panel {
    grid-template-columns: 1fr;
  }

  .route-steps {
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .route-note {
    border-top: 1px solid var(--line);
  }

  .detail-mid-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
    gap: 10px;
  }

  .brand-logo {
    width: 94px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 94svh;
    padding: 104px 18px 34px;
  }

  .hero-scrim {
    background: rgba(34, 40, 49, 0.68);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9.6vw, 2.45rem);
  }

  .hero-actions .button,
  .lead-form .button,
  .detail-actions .button,
  .detail-mid-actions .button,
  .detail-cta .button {
    width: 100%;
  }

  .occasion-section,
  .trust-section,
  .experience-band,
  .reviews-section,
  .split-section,
  .lead-section,
  .detail-section,
  .detail-decision,
  .detail-mid-cta,
  .detail-cta {
    padding: 52px 18px;
  }

  .detail-hero {
    padding: 110px 18px 52px;
  }

  .trust-section {
    padding-top: 0;
  }

  .facebook-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .facebook-review-card {
    width: 100%;
    min-height: auto;
    padding: 18px;
  }

  .facebook-review-card:nth-child(3) {
    grid-column: auto;
  }

  .facebook-review-card strong {
    margin-top: 14px;
    font-size: 1.12rem;
  }

  .facebook-review-card p {
    margin-bottom: 14px;
  }

  .facebook-review-card em {
    margin-top: 14px;
  }

  .reviews-cta .button {
    width: 100%;
  }

  .occasion-grid,
  .trust-grid,
  .catalog-grid,
  .gallery-grid,
  .route-steps,
  .lead-form,
  .modal-facts {
    grid-template-columns: 1fr;
  }

  .location-summary .button {
    width: 100%;
  }

  .location-panel {
    padding: 14px;
  }

  .location-alternative-grid {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 240px;
  }

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

  .detail-support-grid {
    grid-template-columns: 1fr;
  }

  .route-steps article,
  .route-steps article:nth-child(odd),
  .route-steps article:nth-child(-n + 2) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .route-steps article:first-child {
    border-top: 0;
  }

  .trust-item,
  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .occasion-card {
    min-height: 150px;
  }

  .card-body,
  .card-price,
  .card-note,
  .card-meta,
  .catalog-card .text-button {
    margin-left: 18px;
    margin-right: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .modal {
    align-items: end;
    padding: 12px;
  }

  .modal-panel {
    max-height: 88vh;
  }

  .modal-actions .button {
    width: 100%;
  }
}
