:root {
  --ink: #18212b;
  --muted: #5b6674;
  --paper: #fbfaf7;
  --white: #ffffff;
  --coral: #f26d5b;
  --coral-dark: #d85243;
  --mint: #dff4ec;
  --teal: #0d6b6d;
  --sky: #e9f3fa;
  --line: #dde3e8;
  --line-strong: #c9d7de;
  --shadow: 0 18px 44px rgba(25, 33, 43, 0.14);
  --soft-shadow: 0 12px 30px rgba(25, 33, 43, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(13, 107, 109, 0.34);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px 5vw;
  border-bottom: 1px solid rgba(24, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.nav-item.is-current > .nav-trigger,
.nav-trigger:hover,
.text-link:hover,
.destination-card a:hover,
.site-footer a:hover {
  color: var(--coral-dark);
}

.site-nav > a.is-active,
.nav-item.is-current > .nav-trigger,
.nav-item.is-open > .nav-trigger {
  background: rgba(242, 109, 91, 0.11);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
}

.chevron {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin 160ms ease;
}

.nav-item.is-open .chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  display: none;
  width: min(880px, calc(100vw - 32px));
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  text-align: left;
  transform: translateX(-50%);
}

.nav-item.is-open > .mega-menu,
.nav-item:hover > .mega-menu {
  display: grid;
}

.plan-menu {
  width: min(620px, calc(100vw - 32px));
}

.mega-intro {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 2px 0;
}

.mega-intro strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}

.mega-intro span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mega-intro a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

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

.mega-columns div,
.mega-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-columns h3 {
  margin: 0 0 4px;
  color: var(--coral-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-columns a,
.mega-list a {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.22;
}

.mega-columns a:hover,
.mega-list a:hover {
  background: var(--sky);
  color: var(--teal);
}

.mega-list a span {
  color: var(--coral-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-list a strong {
  font-size: 15px;
}

.header-action {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(13, 107, 109, 0.18);
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-action:hover {
  border-color: rgba(13, 107, 109, 0.5);
  background: #09595b;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 68% 22%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 30, 41, 0.88), rgba(18, 30, 41, 0.54) 48%, rgba(18, 30, 41, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 62vh;
  width: min(980px, 90vw);
  padding: 28px 0 28px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6c9;
}

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

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 76px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(44px, 5.4vw, 60px);
}

h2 {
  margin-bottom: 16px;
  font-size: 44px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 22px;
  font-size: 22px;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(242, 109, 91, 0.28);
}

.btn-primary:hover {
  background: var(--coral-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: rgba(13, 107, 109, 0.42);
  background: rgba(13, 107, 109, 0.06);
  color: var(--teal);
}

.trust-strip {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.trust-strip span {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.intent-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1500px, 90vw);
  padding: 0;
  margin: -34px auto 0;
  background: transparent;
}

.intent-strip a {
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 22px 24px;
  border: 1px solid rgba(24, 33, 43, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(25, 33, 43, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.intent-strip a:hover {
  border-color: rgba(13, 107, 109, 0.24);
  box-shadow: 0 18px 38px rgba(25, 33, 43, 0.13);
  transform: translateY(-2px);
}

.intent-strip span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intent-strip strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.06;
}

.intent-strip small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.intent-strip a:hover strong {
  color: var(--teal);
}

.quick-lead {
  display: grid;
  grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 46px 5vw 44px;
  background: var(--paper);
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
}

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 5vw;
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
  background: var(--white);
}

.assurance-strip a,
.assurance-strip div {
  display: grid;
  gap: 5px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(13, 107, 109, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.assurance-strip span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assurance-strip strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.08;
}

.assurance-strip small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.assurance-strip a:hover strong {
  color: var(--teal);
}

.quick-lead h2 {
  margin-bottom: 10px;
  font-size: 36px;
}

.quick-lead-copy p:not(.eyebrow) {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.quick-form,
.guide-form,
.quote-form {
  display: grid;
  gap: 14px;
}

.quick-form {
  grid-template-columns: minmax(170px, 1fr) minmax(150px, 0.75fr) minmax(110px, 0.45fr) minmax(190px, 1fr) auto;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(24, 33, 43, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(25, 33, 43, 0.08);
}

.quick-form .btn {
  min-width: 174px;
}

label span,
legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8df;
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 107, 109, 0.13);
}

.section {
  padding: 86px 5vw;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--teal);
}

.page-hero {
  padding: 56px 5vw 72px;
  background: linear-gradient(135deg, #fff 0%, #f8fbfc 52%, #e9f3fa 100%);
  border-bottom: 1px solid var(--line);
}

.compact-hero {
  padding-bottom: 48px;
}

.quote-hero {
  padding: 34px 5vw 38px;
}

.quote-hero h1 {
  font-size: clamp(42px, 5.4vw, 66px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 58px);
}

.seaworld-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
}

.dark-copy {
  color: var(--muted);
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.keyword-row span {
  padding: 8px 10px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.page-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

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

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

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

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

.content-narrow {
  max-width: 920px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.info-card:hover,
.experience-card:hover,
.seo-card:hover,
.destination-card:hover,
.steps article:hover,
.testimonial-grid article:hover,
.service-grid article:hover {
  border-color: rgba(13, 107, 109, 0.22);
  box-shadow: 0 16px 34px rgba(25, 33, 43, 0.1);
  transform: translateY(-2px);
}

.info-card h2 {
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.ticket-options-grid .info-card h2 {
  font-size: clamp(25px, 2vw, 32px);
}

.guide-options-grid .info-card h2 {
  font-size: clamp(25px, 2vw, 32px);
}

.seaworld-options-grid .info-card h2 {
  font-size: clamp(25px, 2vw, 32px);
}

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

.process-grid .info-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 30px;
}

.process-grid .info-card h2 {
  margin-bottom: 22px;
  font-size: 38px;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.info-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.process-grid .info-card li {
  font-size: 18px;
  line-height: 1.45;
}

.story-section {
  background: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: start;
}

.story-copy {
  max-width: 760px;
}

.story-copy .lede {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.12;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.experience-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.experience-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.lead-capture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf7f2 0%, #fff 100%);
}

.lead-capture h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.lead-capture p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lead-capture-form {
  display: grid;
  gap: 12px;
}

.lead-capture-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.lead-capture-form input,
.lead-capture-form select {
  min-height: 48px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 36px;
  align-items: start;
  background: var(--mint);
}

.quick-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-card h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.source-note {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 18px;
  color: var(--muted);
}

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

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

.related-card,
.seo-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-hub {
  display: grid;
  gap: 44px;
}

.hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.hub-intro-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(13, 107, 109, 0.16);
  border-radius: 8px;
  background: var(--mint);
}

.hub-intro-card h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.hub-intro-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hub-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.nav-hub-group {
  display: grid;
  gap: 18px;
}

.nav-hub-group h2 {
  margin-bottom: 0;
}

.related-card span,
.seo-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card strong,
.seo-card strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.08;
}

.related-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.36;
}

.related-card:hover {
  border-color: rgba(13, 107, 109, 0.24);
  box-shadow: 0 14px 30px rgba(25, 33, 43, 0.09);
}

.related-card:hover strong {
  color: var(--teal);
}

.seo-card {
  padding: 0;
  overflow: hidden;
}

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

.seo-card span,
.seo-card strong,
.seo-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.seo-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a {
  padding: 14px 16px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal);
  font-weight: 900;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 800;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

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

.destination-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(25, 33, 43, 0.07);
}

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

.destination-card div {
  padding: 18px;
}

.destination-card p,
.steps p,
.testimonial-grid p,
.quote-copy p,
.advisor-copy p,
.lead-magnet p {
  color: var(--muted);
}

.destination-card a,
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 900;
}

.advisor {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  background: var(--sky);
}

.advisor-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.advisor-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 34%;
}

.advisor-copy {
  max-width: 760px;
}

.advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.advisor-actions .btn {
  min-width: 178px;
}

.advisor-primary {
  box-shadow: 0 16px 28px rgba(242, 109, 91, 0.24);
}

.advisor-secondary {
  border-color: rgba(13, 107, 109, 0.28);
  color: var(--teal);
}

.advisor-secondary:hover {
  border-color: rgba(13, 107, 109, 0.5);
  background: rgba(255, 255, 255, 0.72);
}

.home-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 42px;
  align-items: center;
  background: var(--white);
}

.home-gallery-copy {
  max-width: 620px;
}

.home-gallery-copy p,
.instagram-copy p,
.gallery-showcase .section-heading p,
.gallery-cta p {
  color: var(--muted);
}

.gallery-actions,
.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.instagram-home-panel {
  display: grid;
  min-height: 260px;
  align-content: end;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(13, 107, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 109, 91, 0.88), rgba(13, 107, 109, 0.86)),
    var(--teal);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.instagram-home-panel span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-home-panel strong {
  max-width: 560px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

.home-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.home-gallery-strip img {
  width: 100%;
  height: clamp(190px, 22vw, 330px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.home-gallery-strip img:nth-child(1),
.home-gallery-strip img:nth-child(3) {
  margin-top: 28px;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(233, 243, 250, 0.94), rgba(251, 250, 247, 0.88)),
    url("assets/cyntia-castle.jpg") center 36% / cover;
}

.gallery-page .sticky-whatsapp {
  display: none;
}

.gallery-page-main {
  background: var(--white);
}

.instagram-gallery-section {
  padding: 72px 5vw 96px;
  background: var(--white);
}

.instagram-gallery-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.instagram-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.instagram-gallery-heading h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.instagram-gallery-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.instagram-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(25, 33, 43, 0.07);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.instagram-gallery-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-gallery-button:hover {
  border-color: rgba(13, 107, 109, 0.4);
  background: rgba(223, 244, 236, 0.5);
  transform: translateY(-1px);
}

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

.instagram-gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 28px rgba(25, 33, 43, 0.12);
  isolation: isolate;
}

.instagram-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.instagram-gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24, 33, 43, 0.04) 34%, rgba(24, 33, 43, 0.84) 100%);
  content: "";
}

.gallery-type {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(24, 33, 43, 0.16);
}

.gallery-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.gallery-overlay strong,
.gallery-overlay span,
.gallery-overlay em {
  display: block;
}

.gallery-overlay strong {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.gallery-overlay span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
}

.gallery-overlay em {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.instagram-gallery-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.instagram-live-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.92fr);
  gap: 44px;
  align-items: center;
  background: var(--white);
}

.instagram-copy {
  max-width: 620px;
}

.instagram-embed-shell {
  min-height: 450px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(13, 107, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 244, 236, 0.66), rgba(233, 243, 250, 0.9)),
    var(--sky);
  box-shadow: var(--soft-shadow);
}

.instagram-embed-shell .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}

.instagram-embed-shell iframe {
  max-width: 100% !important;
  min-width: 0 !important;
}

.gallery-showcase {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--soft-shadow);
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 33, 43, 0.05), rgba(24, 33, 43, 0.68));
  content: "";
}

.gallery-card span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
  line-height: 1.04;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.gallery-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.gallery-cta {
  background: var(--mint);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 18px;
}

.proof-row div {
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.proof-row strong {
  display: block;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.method {
  background: var(--paper);
}

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

.steps article,
.testimonial-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 36px;
  align-items: center;
  background: var(--mint);
}

.guide-form {
  padding: 24px;
  border: 1px solid rgba(13, 107, 109, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.testimonials {
  background: var(--white);
}

.services {
  background: var(--sky);
}

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

.service-grid article {
  padding: 24px;
  border: 1px solid rgba(13, 107, 109, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.service-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

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

.testimonial-grid p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}

.testimonial-grid span {
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  background: var(--paper);
}

.quote-wizard-section {
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 100px;
  align-self: start;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.quote-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-wizard {
  gap: 18px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(13, 107, 109, 0.14);
  border-radius: 8px;
  background: #f7fbfb;
}

.wizard-progress span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.wizard-progress span.is-active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(13, 107, 109, 0.18);
}

.wizard-progress span.is-complete {
  background: rgba(13, 107, 109, 0.1);
  color: var(--teal);
}

.quote-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.quote-step[hidden] {
  display: none;
}

.quote-step > legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.04;
}

.step-help {
  grid-column: 1 / -1;
  margin: -4px 0 4px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.48;
}

.choice-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.choice-panel legend {
  padding: 0 6px;
}

.choice-panel label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 11px 12px;
  border: 1px solid rgba(13, 107, 109, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.choice-panel input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.wizard-actions .btn {
  min-width: 150px;
}

.full {
  grid-column: 1 / -1;
}

.channel-field {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.channel-field legend {
  padding: 0 6px;
}

.channel-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.channel-field input {
  width: auto;
  min-height: auto;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.form-status.is-error {
  color: #b23a31;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2fr);
  gap: 42px;
  padding: 48px 5vw;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  min-width: 0;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.footer-nav h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sticky-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  min-width: 58px;
  height: 58px;
  padding: 0 15px;
  border-radius: 999px;
  background: #25d366;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
  font-weight: 900;
  font-size: 15px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.sticky-whatsapp svg {
  width: 28px;
  height: 28px;
  flex: none;
  fill: currentColor;
}

.sticky-whatsapp-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 220ms ease, margin-left 220ms ease;
}

.sticky-whatsapp:hover,
.sticky-whatsapp:focus-visible {
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.42);
  transform: translateY(-2px);
}

.sticky-whatsapp:hover .sticky-whatsapp-text,
.sticky-whatsapp:focus-visible .sticky-whatsapp-text {
  max-width: 180px;
  margin-left: 10px;
}

.mobile-bottom-nav {
  display: none;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding: 10px 0 4px;
  }

  .site-nav.is-open > a,
  .site-nav.is-open .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .site-nav.is-open .nav-item {
    position: static;
  }

  .site-nav.is-open .mega-menu {
    position: static;
    width: 100%;
    margin: 0 0 10px;
    padding: 16px;
    grid-template-columns: 1fr;
    box-shadow: none;
    transform: none;
  }

  .site-nav.is-open .nav-item:not(.is-open) > .mega-menu {
    display: none;
  }

  .site-nav.is-open .nav-item.is-open > .mega-menu {
    display: grid;
  }

  .site-nav.is-open .mega-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .quick-lead,
  .hub-intro,
  .advisor,
  .home-gallery,
  .lead-magnet,
  .quote,
  .page-hero-grid,
  .story-layout,
  .lead-capture,
  .instagram-live-section,
  .split-band {
    grid-template-columns: 1fr;
  }

  .quick-form,
  .assurance-strip,
  .destination-grid,
  .steps,
  .testimonial-grid,
  .service-grid,
  .content-grid,
  .experience-grid,
  .related-grid,
  .gallery-grid,
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-step,
  .choice-panel {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .instagram-gallery-section {
    padding: 62px 4vw 84px;
  }

  .instagram-gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .instagram-gallery-button {
    width: fit-content;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .sticky-whatsapp {
    display: none;
  }

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

@media (min-width: 981px) and (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    gap: 2px;
    font-size: 12px;
  }

  .site-nav > a,
  .nav-trigger {
    min-height: 40px;
    padding: 0 8px;
  }

  .header-action {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 8px 18px;
  }

  body {
    padding-bottom: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 18px;
  }

  .site-nav.is-open .mega-columns {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-content {
    min-height: 66vh;
  }

  .hero-content {
    width: auto;
    padding: 48px 18px 64px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 18px;
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .hero-actions .btn {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 310px);
    gap: 4px;
  }

  .section,
  .quick-lead,
  .assurance-strip {
    padding: 54px 18px;
  }

  .intent-strip {
    grid-template-columns: 1fr;
    width: auto;
    padding: 0 18px;
    margin: -22px auto 0;
  }

  .intent-strip a {
    min-height: auto;
    padding: 20px;
  }

  .quick-form,
  .assurance-strip,
  .destination-grid,
  .steps,
  .testimonial-grid,
  .service-grid,
  .content-grid,
  .experience-grid,
  .related-grid,
  .seo-grid,
  .proof-row,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 38px 18px 48px;
  }

  .page-visual img {
    height: 380px;
  }

  .process-grid .info-card {
    min-height: auto;
    padding: 24px;
  }

  .process-grid .info-card h2 {
    font-size: 31px;
  }

  .process-grid .info-card li {
    font-size: 16px;
  }

  .hero-bg {
    object-position: 55% 32%;
  }

  .advisor-photo img {
    height: 420px;
  }

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

  .home-gallery-strip img {
    height: 220px;
  }

  .home-gallery-strip img:nth-child(1),
  .home-gallery-strip img:nth-child(3) {
    margin-top: 0;
  }

  .instagram-embed-shell {
    min-height: 380px;
    padding: 14px;
  }

  .instagram-gallery-section {
    padding: 50px 18px 74px;
  }

  .instagram-gallery-heading {
    gap: 18px;
    margin-bottom: 22px;
  }

  .instagram-gallery-heading h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .instagram-gallery-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .instagram-gallery-button {
    width: 100%;
    white-space: normal;
  }

  .instagram-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .gallery-overlay strong {
    font-size: 18px;
  }

  .gallery-overlay span {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card.large,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
    min-height: 0;
  }

  .quote-form,
  .guide-form {
    padding: 18px;
  }

  .wizard-progress {
    gap: 5px;
    padding: 5px;
  }

  .wizard-progress span {
    min-height: 40px;
    padding: 7px 6px;
    font-size: 11px;
  }

  .quote-step,
  .choice-panel {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wizard-actions .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .sticky-whatsapp {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(24, 33, 43, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 24px rgba(25, 33, 43, 0.1);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    display: grid;
    min-height: 58px;
    place-items: center;
    padding: 6px 4px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    border-top: 3px solid transparent;
  }

  .mobile-bottom-nav a.is-active {
    border-top-color: var(--coral);
    background: rgba(242, 109, 91, 0.08);
    color: var(--coral-dark);
  }

  body.nav-open .mobile-bottom-nav {
    display: none;
  }
}


  /* Cyntia: ocultar textos instructivos/de ayuda (reversible: borrar este bloque) */
.step-help { display: none !important; }
.quote-copy > p:not(.eyebrow) { display: none !important; }
.quote-copy .check-list { display: none !important; }

/* === Cyntia: accesibilidad y micro-interacciones (reversible: borrar este bloque) === */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--teal) !important; outline-offset: 2px; border-radius: 4px; }
.btn { transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.seo-card { transition: transform .25s ease, box-shadow .25s ease; }
.seo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ===== Selector de idioma ES/EN (header) ===== */
.site-header {
  grid-template-columns: auto 1fr auto auto;
}

.lang-switch {
  justify-self: end;
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.lang-switch .lang-current,
.lang-switch a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
}

.lang-switch .lang-current {
  background: var(--teal);
  color: var(--white);
}

.lang-switch a {
  color: var(--ink);
  transition: background 160ms ease, color 160ms ease;
}

.lang-switch a:hover {
  background: var(--sky);
  color: var(--teal);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .lang-switch .lang-current,
  .lang-switch a {
    padding: 8px 11px;
    font-size: 12px;
  }
}

/* ===== Mejoras CRO: WhatsApp en hero + preview del lead magnet ===== */
.btn-whatsapp {
  gap: 8px;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: currentColor;
}

.lead-magnet-preview {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.lead-magnet-preview strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}

.lead-magnet-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.lead-magnet-preview li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
}

.lead-magnet-preview li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 5px;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.form-reassurance {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .lead-magnet-preview {
    padding: 16px 18px;
  }
}

/* ===== Asistente virtual con IA ===== */
.ai-chat-launcher {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 0 18px 0 8px;
  border: 1px solid rgba(13, 107, 109, 0.25);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.ai-chat-launcher:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.ai-chat-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mint);
  flex: none;
}

.ai-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-chat-avatar.is-fallback svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.ai-chat-avatar.lg {
  width: 48px;
  height: 48px;
}

.ai-chat-avatar.sm {
  width: 30px;
  height: 30px;
}

.ai-chat-avatar.sm.is-fallback svg {
  width: 18px;
  height: 18px;
}

.ai-chat-panel[hidden] {
  display: none;
}

.ai-chat-panel {
  position: fixed;
  left: 20px;
  bottom: 90px;
  z-index: 35;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 40px));
  height: min(600px, calc(100dvh - 120px));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--teal);
  color: var(--white);
}

.ai-chat-headtext {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ai-chat-headtext strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.ai-chat-headtext small {
  font-size: 11.5px;
  line-height: 1.35;
  opacity: 0.85;
}

.ai-chat-close {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  flex: none;
}

.ai-chat-close svg {
  width: 16px;
  height: 16px;
}

.ai-chat-log {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.ai-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.ai-chat-row.is-user {
  justify-content: flex-end;
}

.ai-chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.ai-chat-row.is-assistant .ai-chat-bubble {
  border-bottom-left-radius: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.ai-chat-row.is-user .ai-chat-bubble {
  border-bottom-right-radius: 4px;
  background: var(--teal);
  color: var(--white);
}

.ai-chat-row.is-thinking .ai-chat-bubble {
  color: var(--muted);
  font-style: italic;
}

.ai-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 10px;
}

.ai-chat-chip {
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.ai-chat-chip:hover {
  background: var(--mint);
}

.ai-chat-form {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.ai-chat-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
}

.ai-chat-send {
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
}

.ai-chat-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  background: var(--white);
}

.ai-chat-action {
  flex: 1;
  padding: 9px 10px;
  border: 1px solid rgba(13, 107, 109, 0.28);
  border-radius: 10px;
  text-align: center;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease;
}

.ai-chat-action:hover {
  background: var(--mint);
}

@media (max-width: 1080px) {
  .ai-chat-launcher {
    left: 14px;
    bottom: 74px;
    height: 52px;
    padding: 0 14px 0 6px;
    font-size: 14px;
  }

  .ai-chat-panel {
    left: 12px;
    right: 12px;
    bottom: 134px;
    width: auto;
    height: min(540px, calc(100dvh - 200px));
  }
}
