@font-face {
  font-family: "Quint Cverto";
  src: url("assets/fonts/QuintCverto-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Mooncrowd";
  src: url("assets/fonts/MOONCROWD.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Miegha";
  src: url("assets/fonts/Miegha-Italic.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

:root {
  --navy: #002147;
  --navy-2: #00172f;
  --navy-3: #07355f;
  --gold: #f6dc98;
  --gold-bright: #fff4c7;
  --gold-mid: #d7aa54;
  --gold-deep: #9b6a2c;
  --metallic-gold: linear-gradient(135deg, #8f6428 0%, #d7aa54 18%, #fff4c7 38%, #f6dc98 52%, #b98235 74%, #7b511f 100%);
  --ivory: #fbf7ef;
  --white: #ffffff;
  --mist: #e8f1f3;
  --ink: #10213b;
  --muted: #5f6d7a;
  --line: rgba(0, 33, 71, 0.12);
  --shadow: 0 24px 70px rgba(0, 23, 47, 0.16);
  --serif: "Prata", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 23, 47, 0.84), rgba(0, 23, 47, 0.38) 72%, transparent);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
body.sub-page .site-header {
  padding-block: 12px;
  background: rgba(0, 23, 47, 0.96);
  box-shadow: 0 14px 36px rgba(0, 23, 47, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 58px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22));
}

.brand-text {
  display: grid;
  line-height: 1.05;
  padding-top: 10px;
}

.brand-text span,
.footer-brand span {
  font-family: "Miegha", "Mooncrowd", "Quint Cverto", var(--serif);
  font-size: clamp(1.22rem, 1.8vw, 1.68rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-block: 8px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--metallic-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-gold {
  color: var(--navy);
  background: var(--metallic-gold);
  box-shadow: 0 14px 32px rgba(155, 106, 44, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-ghost {
  color: var(--gold);
  border-color: rgba(229, 195, 139, 0.54);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn-large {
  min-height: 50px;
  padding-inline: 24px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(229, 195, 139, 0.46);
  border-radius: 2px;
  background: rgba(0, 33, 71, 0.36);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: center;
  padding: clamp(104px, 13vh, 132px) clamp(20px, 6vw, 84px) clamp(34px, 6vw, 60px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.88), rgba(0, 33, 71, 0.57) 45%, rgba(0, 23, 47, 0.28)),
    linear-gradient(0deg, rgba(0, 23, 47, 0.62), transparent 44%),
    url("https://cdn.pixabay.com/photo/2021/04/26/18/10/map-6209684_1280.jpg") center / cover;
}

.hero::after {
  position: absolute;
  right: clamp(24px, 8vw, 110px);
  bottom: clamp(28px, 5vw, 54px);
  width: min(460px, 38vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold-deep), transparent);
}

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

.hero-promise {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: clamp(42px, 6vw, 70px);
  z-index: 2;
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 8px 12px;
  border: 0;
  color: var(--gold-bright);
  background: rgba(0, 23, 47, 0.6);
  box-shadow: 0 10px 30px rgba(0, 23, 47, 0.18);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  background: var(--metallic-gold);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Miegha", var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.85rem, 6.8vw, 6rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 3.9vw, 4rem);
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.hero-subhead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 84px);
}

.about-section,
.included-section,
.faq-list,
.faq-education {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.about-copy p,
.section-heading p,
.services-copy p,
.contact-card p,
.page-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.steps-grid article,
.included-grid article,
.testimonial-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.07);
}

.offers-section,
.testimonials-section {
  color: var(--white);
  background: var(--navy);
}

.offers-section h2,
.testimonials-section h2 {
  color: var(--white);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading > div {
  max-width: 760px;
}

.section-heading p {
  width: min(430px, 100%);
}

.offers-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.about-plan-section {
  background: var(--ivory);
}

.about-plan-section h2 {
  color: var(--navy);
}

.about-plan-section .section-heading p {
  color: var(--muted);
}

.about-plan-section .chooser-card {
  border-color: rgba(0, 33, 71, 0.18);
  background: rgba(0, 33, 71, 0.14);
}

.about-plan-section .chooser-card div {
  background: rgba(0, 23, 47, 0.92);
}

.about-plan-section .chooser-card span {
  color: var(--gold);
}

.about-plan-section .chooser-card h3,
.about-plan-section .chooser-card p {
  color: var(--white);
}

.centered {
  justify-content: center;
  text-align: center;
}

.experience-hero {
  min-height: 56vh;
  padding: 170px clamp(20px, 6vw, 84px) 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.9), rgba(0, 33, 71, 0.58)),
    var(--hero-image) center / cover;
}

.experience-hero h1 {
  margin-bottom: 18px;
}

.experience-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  background: var(--ivory);
}

.experience-section > div:first-child p,
.experience-details p {
  color: var(--muted);
}

.experience-details {
  display: grid;
  gap: 16px;
}

.experience-details article {
  padding: 26px;
  border: 1px solid rgba(155, 106, 44, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.06);
}

.experience-details h3 {
  margin-bottom: 10px;
}

.experience-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destination-hero {
  min-height: 62vh;
  padding: 170px clamp(20px, 6vw, 84px) 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.92), rgba(0, 33, 71, 0.58)),
    var(--hero-image) center / cover;
}

.destination-hero.hero-position-lower {
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.92), rgba(0, 33, 71, 0.58)),
    var(--hero-image) center 84% / cover;
}

.destination-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
}

.destination-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.destination-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  margin-top: clamp(34px, 6vw, 66px);
}

.destination-meta div {
  padding: 16px;
  border: 1px solid rgba(246, 220, 152, 0.28);
  background: rgba(0, 23, 47, 0.64);
  backdrop-filter: blur(12px);
}

.destination-meta span,
.detail-list span,
.amenity-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-meta strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 1rem;
}

.destination-detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  background: var(--ivory);
}

.about-audience-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.about-audience-section .section-kicker,
.about-audience-section h2,
.about-audience-section h3,
.about-audience-section .destination-overview p,
.about-audience-section .amenity-grid p,
.about-audience-section .amenity-grid ul,
.about-audience-section .amenity-grid li {
  color: var(--white);
}

.about-audience-section .section-kicker {
  -webkit-text-fill-color: currentColor;
  background: none;
  color: var(--gold);
}

.about-audience-section .amenity-grid article {
  border-color: rgba(246, 220, 152, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.about-audience-section .amenity-summary span,
.about-audience-section .amenity-grid strong {
  color: var(--gold-bright);
}

.destination-overview p,
.detail-list p,
.amenity-grid p {
  color: var(--muted);
}

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

.amenity-grid article,
.detail-list article {
  padding: 22px;
  border: 1px solid rgba(155, 106, 44, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.06);
}

.amenity-grid h3 {
  margin: 8px 0 0;
  font-size: 1.2rem;
}

.amenity-summary {
  grid-column: 1 / -1;
}

.amenity-grid p {
  margin: 10px 0 0;
  font-size: 0.96rem;
}

.amenity-grid ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.detail-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-list p {
  margin: 8px 0 0;
}

.detail-list-hero {
  width: min(1040px, 100%);
  margin-top: clamp(34px, 5vw, 58px);
}

.detail-list-hero article {
  border-color: rgba(246, 220, 152, 0.28);
  background: rgba(0, 23, 47, 0.68);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.detail-list-hero p {
  color: rgba(255, 255, 255, 0.78);
}

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

.beach-destination-grid > article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(155, 106, 44, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.06);
}

.beach-destination-grid > article > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.beach-destination-grid > article > img.image-position-lower {
  object-position: center 82%;
}

.beach-destination-grid > article > img.image-position-mid-lower {
  object-position: center 68%;
}

.beach-destination-grid > article > img.image-position-slight-lower {
  object-position: center 58%;
}

.beach-destination-grid > article > img.image-position-more-lower {
  object-position: center 76%;
}

.beach-destination-grid > article > img.image-position-extra-lower {
  object-position: center 94%;
}

.beach-destination-grid > article > img.image-position-higher {
  object-position: center 34%;
}

.beach-destination-grid > article > img.image-position-extra-higher {
  object-position: center 16%;
}

.beach-destination-grid > article > span {
  display: block;
  margin: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 34px) 0;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beach-destination-grid h3 {
  margin: 8px clamp(24px, 3vw, 34px) 10px;
}

.beach-destination-grid p {
  margin-right: clamp(24px, 3vw, 34px);
  margin-left: clamp(24px, 3vw, 34px);
  color: var(--muted);
}

.sample-resort {
  color: var(--navy);
}

.sample-resort strong {
  color: var(--gold-deep);
}

.destination-meta-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc(100% - clamp(48px, 6vw, 68px));
  margin: auto clamp(24px, 3vw, 34px) clamp(24px, 3vw, 34px);
  padding-top: 18px;
}

.destination-meta-inline div {
  background: rgba(0, 33, 71, 0.05);
  border-color: rgba(155, 106, 44, 0.16);
  backdrop-filter: none;
}

.destination-meta-inline span {
  color: var(--gold-deep);
}

.destination-meta-inline strong {
  color: var(--navy);
}

.destination-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.chooser-hero {
  min-height: 62vh;
  padding: 170px clamp(20px, 6vw, 84px) 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.92), rgba(0, 33, 71, 0.58)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2200&q=84") center / cover;
}

.chooser-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.chooser-actions,
.chooser-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.chooser-section {
  background: var(--ivory);
}

.chooser-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.chooser-intro p,
.chooser-card p,
.chooser-cta p {
  color: var(--muted);
}

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

.chooser-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(246, 220, 152, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chooser-card:hover,
.chooser-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 23, 47, 0.22);
}

.chooser-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.chooser-card div {
  padding: 22px;
}

.chooser-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chooser-card h3 {
  color: var(--white);
  margin: 8px 0 10px;
}

.chooser-card p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.chooser-cta {
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.chooser-cta > div {
  max-width: 780px;
}

.chooser-cta h2 {
  color: var(--white);
}

.chooser-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.services-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.services-copy {
  max-width: 640px;
}

.service-photo-strip {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr 0.82fr;
  gap: 14px;
  min-height: 430px;
}

.service-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-photo-strip img:nth-child(1),
.service-photo-strip img:nth-child(3) {
  margin-top: 42px;
  height: calc(100% - 84px);
}

.steps-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.steps-section h2 {
  color: var(--white);
}

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

.steps-grid article {
  padding: 30px;
  border-color: rgba(246, 220, 152, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.steps-grid h3 {
  color: var(--white);
}

.steps-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.steps-grid p,
.included-grid p,
.testimonial-grid p,
.faq-list p {
  color: var(--muted);
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.78);
}

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

.included-grid article {
  padding: 28px;
}

.included-grid h3::before {
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  content: "";
  background: var(--metallic-gold);
}

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

.testimonial-grid article {
  min-height: 250px;
  padding: 28px;
  color: var(--white);
  border-color: rgba(229, 195, 139, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.testimonial-grid p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.testimonial-byline {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}

.testimonial-byline strong {
  color: var(--gold);
  font-weight: 800;
}

.testimonial-byline span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
}

.stars {
  margin-bottom: 20px;
  color: var(--gold);
  background: var(--metallic-gold);
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: 0.08em;
  -webkit-text-fill-color: transparent;
}

.faq-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
}

.faq-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--white);
}

.home-faq-section,
.featured-journeys-section,
.related-links-section {
  background: var(--ivory);
}

.home-faq-section {
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(44px, 6vw, 68px);
}

.home-faq-section .section-heading {
  margin-bottom: 12px;
}

.home-faq-list {
  display: grid;
  gap: 14px;
  padding-top: 2px;
}

.home-faq-card {
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 6px 0 2px;
  background: transparent;
}

.home-faq-actions {
  display: flex;
  justify-content: flex-start;
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
  margin-top: 8px;
}

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

.journey-link-card,
.related-links-grid a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(155, 106, 44, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.journey-link-card:hover,
.journey-link-card:focus-visible,
.related-links-grid a:hover,
.related-links-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(155, 106, 44, 0.34);
  box-shadow: 0 22px 48px rgba(0, 33, 71, 0.1);
}

.journey-link-card span {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-link-card strong,
.related-links-grid a {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.9), rgba(0, 33, 71, 0.66));
}

.quote-section {
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.quote-form {
  display: grid;
  gap: 28px;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(155, 106, 44, 0.24);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.quote-form.is-submitted > :not(.form-status) {
  display: none;
}

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

.quote-form label,
.quote-form fieldset {
  min-width: 0;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span,
.quote-form legend {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 33, 71, 0.16);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(246, 220, 152, 0.3);
}

.quote-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form legend {
  margin-bottom: 14px;
}

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

.radio-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 33, 71, 0.14);
  background: var(--white);
}

.radio-grid input[type="radio"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold-deep);
}

.radio-grid span {
  position: relative;
  top: 2px;
  letter-spacing: 0.04em;
}

.radio-other {
  grid-column: span 2;
}

.radio-other input[type="text"] {
  min-height: 38px;
  padding-block: 8px;
}

.full-field {
  display: grid;
}

.quote-form button {
  justify-self: start;
}

.form-status {
  display: none;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(155, 106, 44, 0.24);
  color: var(--navy);
  background: rgba(246, 220, 152, 0.2);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(126, 44, 44, 0.28);
  color: #7e2c2c;
  background: rgba(126, 44, 44, 0.08);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(229, 195, 139, 0.36);
  background: rgba(0, 23, 47, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-card h2,
.contact-card p {
  color: var(--white);
}

.contact-card p {
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-info {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(229, 195, 139, 0.22);
}

.contact-info span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info a {
  color: var(--white);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: var(--gold);
}

.contact-action {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  color: var(--white);
  border: 1px solid rgba(229, 195, 139, 0.34);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.contact-action span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-action-primary {
  color: var(--navy);
  border-color: rgba(246, 220, 152, 0.5);
  background: var(--metallic-gold);
  box-shadow: 0 14px 32px rgba(155, 106, 44, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.contact-action-primary span {
  color: rgba(0, 33, 71, 0.72);
}

.contact-action:hover,
.contact-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(246, 220, 152, 0.65);
}

.brand-announcement {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.brand-announcement.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.brand-announcement-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 38, 0.76);
  backdrop-filter: blur(9px);
}

.brand-announcement-card {
  position: relative;
  width: min(94vw, 620px);
  padding: clamp(34px, 5vw, 54px);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(246, 220, 152, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.96)),
    var(--ivory);
  box-shadow: 0 32px 90px rgba(0, 18, 38, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.brand-announcement.is-visible .brand-announcement-card {
  transform: translateY(0) scale(1);
}

.brand-announcement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 7px;
  background: var(--metallic-gold);
}

.brand-announcement-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(0, 33, 71, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.brand-announcement-close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  background: var(--navy);
}

.brand-announcement-close span:first-child {
  transform: rotate(45deg);
}

.brand-announcement-close span:last-child {
  transform: rotate(-45deg);
}

.brand-announcement-logo {
  width: 86px;
  margin: 0 auto 18px;
}

.brand-announcement-card .section-kicker {
  margin-bottom: 12px;
  color: var(--gold-mid);
  background: none;
  font-size: 0.76rem;
  -webkit-text-fill-color: currentColor;
}

.brand-announcement-card h2,
.brand-announcement-card h3 {
  max-width: 520px;
  margin: 0 auto 16px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.82rem, 4.6vw, 3.12rem);
  font-weight: 400;
  line-height: 0.96;
}

.brand-announcement-card h3 span {
  display: block;
}

.brand-announcement-title-intro {
  font-size: 0.7em;
  padding-bottom: 15px;
}

.brand-announcement-card p:not(.section-kicker) {
  max-width: 500px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.brand-announcement-points {
  display: inline-block;
  padding-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 44px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-2);
}

.footer-brand {
  justify-self: center;
  color: var(--white);
}

.footer-brand span {
  padding-top: 10px;
}

.footer-column {
  display: grid;
  gap: 7px;
}

.footer-column a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.footer-column h3 {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-contact {
  justify-items: end;
  text-align: right;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.social-links a {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(246, 220, 152, 0.36);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--navy);
  background: var(--metallic-gold);
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.page-hero {
  min-height: 58vh;
  padding: 170px clamp(20px, 6vw, 84px) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.9), rgba(0, 33, 71, 0.54)),
    url("https://images.unsplash.com/photo-1500835556837-99ac94a94552?auto=format&fit=crop&w=2000&q=84") center / cover;
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.9), rgba(0, 33, 71, 0.56)),
    url("assets/faq-woman-planning.jpg") center 50% / cover;
}

.terms-hero {
  min-height: 48vh;
  padding-top: 150px;
  padding-bottom: 50px;
  background:
    linear-gradient(90deg, rgba(0, 23, 47, 0.9), rgba(0, 33, 71, 0.56)),
    url("assets/faq-woman-planning.jpg") center 50% / cover;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
  padding-top: clamp(18px, 3vw, 34px);
}

.faq-education {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(12px, 2vw, 24px);
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
}

.faq-education article {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(155, 106, 44, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.07);
}

.faq-education h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.65rem);
}

.faq-education p {
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-education strong {
  color: var(--navy);
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 33, 71, 0.07);
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 24px 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-list p {
  margin: 0;
  padding: 0 26px 26px;
}

.terms-section {
  display: grid;
  gap: 12px;
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background: var(--ivory);
}

.terms-section article {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(155, 106, 44, 0.2);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.06);
}

.terms-section h2 {
  margin-bottom: 8px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.terms-section p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

  .primary-nav,
  .header-actions {
    position: fixed;
    right: 18px;
    left: 18px;
    display: none;
    background: rgba(0, 23, 47, 0.98);
  }

  .primary-nav {
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid rgba(229, 195, 139, 0.26);
  }

  .header-actions {
    top: 394px;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding: 0 20px 20px;
  }

  body.nav-open .primary-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  .header-actions .btn {
    flex: 1;
  }

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

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

@media (max-width: 780px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-logo {
    width: 48px;
    height: 43px;
  }

  .brand-text span {
    font-size: 1.32rem;
  }

  .footer-brand span {
    font-size: 1.15rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 112px;
    padding-bottom: 108px;
    padding-inline: 20px;
  }

  .hero-promise {
    right: 20px;
    bottom: 40px;
    left: 20px;
    max-width: none;
    padding: 8px 10px;
    font-size: 0.76rem;
    text-align: center;
  }

  .hero-actions,
  .section-heading,
  .faq-cta,
  .contact-card,
  .site-footer {
    display: grid;
  }

  .hero-actions,
  .faq-cta {
    align-items: stretch;
  }

  .about-grid,
  .services-section,
  .faq-education,
  .experience-section,
  .destination-detail-section,
  .chooser-intro,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .chooser-grid,
  .journey-link-grid,
  .related-links-grid,
  .destination-meta,
  .beach-destination-grid,
  .amenity-grid,
  .detail-list,
  .steps-grid,
  .included-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-photo-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-photo-strip img,
  .service-photo-strip img:nth-child(1),
  .service-photo-strip img:nth-child(3) {
    height: 260px;
    margin-top: 0;
  }

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

  .radio-other {
    grid-column: auto;
    display: grid;
    align-items: stretch;
  }

  .footer-brand,
  .footer-column,
  .footer-contact {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
    order: 1;
  }

  .footer-brand span {
    font-size: 1.42rem;
  }

  .footer-contact {
    order: 2;
    font-size: 1rem;
  }

  .footer-contact h3 {
    font-size: 0.9rem;
  }

  .site-footer > .footer-column:not(.footer-contact) {
    order: 3;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .page-hero {
    padding-top: 138px;
  }
}
