/* =========================================================
   VAMOS FAMILIA LP
   ========================================================= */

:root {
  --green-950: #06241e;
  --green-900: #0b382e;
  --green-700: #17634f;
  --blue-700: #245e7a;
  --terracotta-700: #b85224;
  --terracotta-500: #d87535;
  --gold-400: #e5b45a;
  --paper: #fffaf1;
  --sand: #f4ead9;
  --white: #ffffff;
  --ink: #15231f;
  --muted: #52635d;
  --line: #ded3c0;
  --shadow: 0 18px 50px rgba(7, 28, 24, 0.18);
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --max-w: 1160px;
  --max-w-narrow: 820px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.skip-link {
  position: absolute;
  top: -72px; left: 8px;
  line-height: 1.4;
  background: var(--green-950);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 300;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--max-w));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - 40px), var(--max-w-narrow));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid rgba(222, 211, 192, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max-w));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-950);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a:hover { color: var(--terracotta-700); }

.global-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--terracotta-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(184, 82, 36, 0.22);
}

.global-nav .nav-cta:hover { background: #98431e; color: #fff; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--green-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { left: 0; top: -6px; }
.nav-toggle-bar::after { left: 0; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 25, 21, 0.92) 0%, rgba(4, 25, 21, 0.73) 36%, rgba(4, 25, 21, 0.28) 68%, rgba(4, 25, 21, 0.10) 100%),
    linear-gradient(0deg, rgba(4, 25, 21, 0.70) 0%, rgba(4, 25, 21, 0.05) 46%);
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max-w));
  margin: 0 auto;
  padding: 58px 0 54px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  color: #fff9e8;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.3vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.85;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-stats {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 14px 18px;
  background: rgba(4, 25, 21, 0.50);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  color: #f0bd6f;
  font-size: 12px;
  font-weight: 900;
}

.hero-stats dd {
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(8, 24, 20, 0.20);
}

.btn-primary {
  background: var(--terracotta-700);
  color: #fff;
}

.btn-primary:hover { background: #98431e; }

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-950);
}

.btn-wide {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  color: var(--terracotta-700);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

/* Sections */
.trust-strip {
  background: var(--green-950);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid p {
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid p:last-child { border-right: 1px solid rgba(255, 255, 255, 0.12); }

.trust-grid strong {
  display: block;
  color: #fff5d7;
  font-size: 16px;
  line-height: 1.5;
}

.trust-grid span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  padding: 96px 0;
}

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

.section-deep {
  background:
    linear-gradient(145deg, var(--green-950), var(--green-900) 62%, #154636);
  color: #fff;
}

.section-eyebrow {
  margin-bottom: 12px;
  color: var(--terracotta-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-deep .section-eyebrow { color: #f0bd6f; }

.section h2 {
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-deep h2 { color: #fff; }

.section-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.section-deep .section-lead,
.section-deep p { color: rgba(255, 255, 255, 0.83); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: center;
}

.split .section-lead { margin-top: 22px; margin-bottom: 24px; }

.truth-list {
  display: grid;
  gap: 16px;
}

.mini-card,
.feature-card,
.program-card,
.day-card,
.faq-item {
  border-radius: 8px;
}

.mini-card {
  position: relative;
  padding: 24px 26px 24px 74px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(7, 28, 24, 0.06);
}

.mini-card span {
  position: absolute;
  left: 24px;
  top: 25px;
  color: var(--terracotta-700);
  font-weight: 900;
}

.mini-card h3 {
  color: var(--green-950);
  font-size: 18px;
  line-height: 1.45;
}

.mini-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.story-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: #123a30;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story p:not(.section-eyebrow) {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
}

.quote-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 8px 8px 0;
}

.quote-box p {
  margin: 0 !important;
  color: #fff8e8 !important;
  font-weight: 700;
}

/* Program */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.program-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.program-card.featured {
  position: relative;
  background: #fff;
  border: 2px solid var(--terracotta-500);
  box-shadow: 0 18px 42px rgba(184, 82, 36, 0.12);
}

.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.program-tag,
.program-capacity {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.program-tag {
  background: var(--green-900);
  color: #fff;
}

.program-card.featured .program-tag { background: var(--terracotta-700); }

.program-capacity {
  background: #e8f0ee;
  color: var(--green-900);
}

.program-card h3 {
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.3;
}

.program-for {
  margin-top: 8px;
  color: var(--terracotta-700);
  font-size: 14px;
  font-weight: 900;
}

.program-card ul {
  margin-top: 22px;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta-500);
  box-shadow: 0 0 0 4px rgba(216, 117, 53, 0.14);
}

/* Parent features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(7, 28, 24, 0.06);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #dfece8;
  color: var(--green-900);
  font-weight: 900;
}

.feature-card h3 {
  color: var(--green-950);
  font-size: 20px;
  line-height: 1.4;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

/* Itinerary */
.itinerary {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}

.itinerary h2 { margin-bottom: 34px; }

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

.day-card {
  min-height: 218px;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8e2df;
  border-top: 5px solid var(--blue-700);
}

.day-card span {
  display: block;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
}

.day-card strong {
  display: block;
  margin-top: 14px;
  color: var(--green-950);
  font-size: 18px;
  line-height: 1.45;
}

.day-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Timeline */
.timeline {
  max-width: 850px;
  margin-top: 36px;
  list-style: none;
  counter-reset: step;
}

.timeline > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 34px 72px;
}

.timeline > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-500);
  color: #fff;
  font-weight: 900;
}

.timeline > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 53px;
  bottom: 5px;
  width: 2px;
  background: rgba(255, 255, 255, 0.23);
}

.timeline h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.timeline p {
  margin-top: 7px;
  font-size: 15px;
}

.disclaimer {
  max-width: 850px;
  margin-top: 6px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.disclaimer h3 {
  color: #ffe0ae;
  font-size: 15px;
  line-height: 1.5;
}

.disclaimer p {
  margin-top: 8px;
  font-size: 14px;
}

/* Price */
.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.price-table th,
.price-table td {
  text-align: left;
  vertical-align: top;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.price-table tr:last-child th,
.price-table tr:last-child td { border-bottom: 0; }

.price-table thead th {
  background: var(--green-950);
  color: #fff;
  font-size: 14px;
}

.price-table tbody th {
  width: 150px;
  color: var(--green-950);
  background: var(--paper);
}

.price-table td { color: var(--muted); }

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

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 21px 58px 21px 24px;
  color: var(--green-950);
  font-weight: 900;
  line-height: 1.55;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terracotta-700);
  font-size: 25px;
  line-height: 1;
}

.faq-item[open] summary::after { content: "-"; }

.faq-body {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
}

.faq-body p + p { margin-top: 10px; }

/* Contact */
.contact-section {
  background:
    linear-gradient(140deg, rgba(6, 36, 30, 0.97), rgba(23, 99, 79, 0.94)),
    url("../assets/images/hero-family-andalusia.png") center / cover;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

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

.contact-copy h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 50px);
}

.contact-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 2;
}

.contact-points {
  margin-top: 28px;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 25px;
  margin-top: 12px;
  color: #fff6df;
  font-weight: 700;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-400);
}

.contact-form {
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 20px;
  border: 0;
}

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

.form-row label,
.form-row legend {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 900;
}

.req { color: var(--terracotta-700); }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfc7b7;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
}

.form-row textarea { resize: vertical; }

.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #c83522;
  box-shadow: 0 0 0 3px rgba(200, 53, 34, 0.12);
}

.check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.check input {
  width: 19px;
  height: 19px;
  accent-color: var(--terracotta-700);
}

.form-status:empty { display: none; }

.form-status {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #edf5f2;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 700;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 42px 0;
  background: #041914;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
}

.footer-brand {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.footer-copy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-disclaimer {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.9;
}

.footer-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

/* Legal sub pages */
.legal-main {
  padding: 64px 0 88px;
  background: var(--paper);
  min-height: 60vh;
}

.legal-main h1 {
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.4;
}

.legal-updated {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.legal-body { margin-top: 36px; }

.legal-body h2 {
  margin: 36px 0 12px;
  color: var(--green-950);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 4px solid var(--terracotta-500);
}

.legal-body p,
.legal-body li {
  color: var(--ink);
  font-size: 15px;
  line-height: 2;
}

.legal-body ul,
.legal-body ol { padding-left: 1.4em; margin-top: 8px; }

.legal-note {
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--sand);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.legal-table-wrap {
  margin-top: 8px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  line-height: 1.9;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td { border-bottom: 0; }

.legal-table th {
  width: 200px;
  white-space: nowrap;
  color: var(--green-950);
  background: var(--paper);
  font-weight: 700;
}

.legal-table td { color: var(--ink); }

.legal-back {
  display: inline-flex;
  margin-top: 44px;
  color: var(--terracotta-700);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.placeholder {
  background: #fdeeda;
  border-radius: 4px;
  padding: 0 4px;
  font-weight: 700;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .legal-table { min-width: 0; }
  .legal-table th {
    width: 105px;
    white-space: normal;
    padding: 12px 12px;
    font-size: 13px;
  }
  .legal-table td { padding: 12px 14px; font-size: 14px; }
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--terracotta-700);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.26);
}

/* Responsive */
@media (max-width: 980px) {
  .global-nav ul { gap: 14px; }
  .global-nav a { font-size: 13px; }
  .section-head,
  .split,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-copy { position: static; }
  .itinerary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 70px; }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 18px; }
  .brand-sub { display: none; }
  .nav-toggle { display: block; }
  .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .global-nav.is-open { display: block; }
  .global-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }
  .global-nav a {
    min-height: 46px;
    padding: 0 4px;
    font-size: 16px;
  }
  .global-nav .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
  .hero {
    min-height: auto;
  }
  .hero-image {
    object-position: 60% center;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 25, 21, 0.90) 0%, rgba(4, 25, 21, 0.74) 58%, rgba(4, 25, 21, 0.36) 100%),
      linear-gradient(0deg, rgba(4, 25, 21, 0.76) 0%, rgba(4, 25, 21, 0.10) 55%);
  }
  .hero-inner {
    padding: 70px 0 82px;
  }
  .hero h1 {
    font-size: clamp(32px, 8.8vw, 34px);
  }
  .hero-stats,
  .trust-grid,
  .program-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 11px 16px;
  }
  .hero-stats dt {
    flex: 0 0 3em;
  }
  .hero-stats dd { margin-top: 0; }
  .trust-grid p,
  .trust-grid p:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .section {
    padding: 72px 0;
  }
  .story-grid { gap: 34px; }
  .contact-grid { gap: 32px; }
  .floating-cta { display: inline-flex; }
}

@media (max-width: 560px) {
  .container,
  .container-narrow,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--max-w));
  }
  .hero-eyebrow {
    max-width: 100%;
    min-height: 0;
    padding: 7px 11px;
    font-size: 12px;
  }
  .hero-lead {
    line-height: 1.85;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-stats div {
    padding: 15px 16px;
  }
  .section-head {
    gap: 18px;
    margin-bottom: 30px;
  }
  .mini-card {
    padding: 22px;
  }
  .mini-card span {
    position: static;
    display: block;
    margin-bottom: 8px;
  }
  .program-card,
  .feature-card,
  .contact-form {
    padding: 24px 20px;
  }
  .program-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .itinerary-grid,
  .form-row-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .day-card {
    min-height: 0;
  }
  .timeline > li {
    padding-left: 58px;
  }
  .timeline > li::before {
    width: 40px;
    height: 40px;
  }
  .timeline > li:not(:last-child)::after {
    left: 19px;
    top: 47px;
  }
}

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