/* =========================================================
   Homepage — pixel-aligned to Figma hands-down-diving-home
   ========================================================= */

:root {
  --hdd-purple: #6f4bb3;
  --hdd-purple-soft: #eee9f7;
  --hdd-green: #078b61;
  --hdd-mint: #8bc6ad;
  --hdd-navy: #1b122c;
  --hdd-overlay: rgba(19, 12, 34, 0.85);
  --hdd-text: #1b122c;
  --hdd-muted: #625772;
  --hdd-footer-muted: #c8bedc;
  --hdd-border: #eee9f7;
  --hdd-gray-bg: #f9fafb;
  --hdd-pad-x: 64px;
  --hdd-section-y: 120px;
  --hdd-container: 1312px;
  --hdd-header-h: 70px;
}

/* Header — white bar, 88px (Figma) */
.hdd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee9f7;
  backdrop-filter: none;
  box-shadow: none;
}

.hdd-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(27, 18, 44, 0.06);
}

.hdd-header__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 64px;
  min-height: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-sizing: border-box;
}

.hdd-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hdd-header__logo img {
  height: 108px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.hdd-header__logo:hover img {
  transform: scale(1.03);
}

.hdd-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hdd-nav a {
  color: var(--hdd-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--hdd-font-sans);
  position: relative;
  transition: color 0.25s ease;
}

.hdd-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #6f4bb3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.hdd-nav .current-menu-item > a,
.hdd-nav .current_page_item > a,
.hdd-nav a:hover {
  color: var(--hdd-purple);
  font-weight: 700;
}

.hdd-nav .current-menu-item > a::after,
.hdd-nav .current_page_item > a::after,
.hdd-nav a:hover::after {
  transform: scaleX(1);
}

.hdd-header__actions .hdd-btn {
  min-height: auto;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
}

/* ---------- HERO (3:17) ---------- */
.hdd-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 761px;
  overflow: hidden;
  color: #fff;
}

.hdd-hero__media {
  position: absolute;
  inset: 0;
}

.hdd-hero__video,
.hdd-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdd-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hdd-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hdd-overlay);
}

.hdd-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px var(--hdd-pad-x) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  box-sizing: border-box;
}

.hdd-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hdd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--hdd-mint);
  font-family: var(--hdd-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hdd-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--hdd-font-serif);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  text-align: center;
}

.hdd-hero__desc {
  margin: 0;
  max-width: 880px;
  color: var(--hdd-footer-muted);
  font-family: var(--hdd-font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.hdd-hero__actions {
  display: flex;
  justify-content: center;
}

.hdd-btn--hero {
  min-height: auto;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
}

.hdd-hero__features {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hdd-hero__features-line {
  width: min(1200px, 100%);
  height: 1px;
  background: rgba(238, 233, 247, 0.2);
}

.hdd-hero__features-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hdd-hero__features-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(238, 233, 247, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.hdd-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hdd-mint);
  flex-shrink: 0;
}

/* ---------- DESTINATIONS (3:46) ---------- */
.hdd-destinations {
  background: var(--hdd-gray-bg);
  padding: 32px 48px;
  height: auto;
  min-height: 264px;
  box-sizing: border-box;
}

.hdd-destinations__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hdd-destinations__eyebrow {
  margin: 0;
  color: var(--hdd-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hdd-destinations__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  height: 176px;
}

.hdd-destinations__card {
  position: relative;
  display: block;
  height: 176px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.hdd-destinations__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdd-destinations__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.44));
  border-radius: 12px;
  pointer-events: none;
}

.hdd-destinations__name {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  font-family: var(--hdd-font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

/* ---------- ABOUT (3:73) ---------- */
.hdd-about {
  background: #fff;
  padding: var(--hdd-section-y) var(--hdd-pad-x);
}

.hdd-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: none;
}

.hdd-about__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hdd-eyebrow--green {
  color: var(--hdd-green) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.hdd-about__heading {
  margin: 0;
  color: var(--hdd-navy);
  font-family: var(--hdd-font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
}

.hdd-about__desc {
  margin: 0;
  color: var(--hdd-muted);
  font-size: 16px;
  line-height: 1.6;
}

.hdd-about__stats {
  display: flex;
  gap: 48px;
  padding-top: 16px;
}

.hdd-stat__num {
  display: block;
  font-family: var(--hdd-font-serif);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
}

.hdd-stat__num--green { color: var(--hdd-green); }
.hdd-stat__num--purple { color: var(--hdd-purple); }

.hdd-stat__label {
  color: var(--hdd-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hdd-about__media {
  height: 540px;
}

.hdd-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* ---------- MODES (3:88) ---------- */
.hdd-modes {
  background: var(--hdd-purple-soft);
  padding: var(--hdd-section-y) var(--hdd-pad-x);
}

.hdd-modes__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hdd-modes__header,
.hdd-journey__header,
.hdd-different__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hdd-modes__title,
.hdd-journey__title,
.hdd-different__title {
  margin: 0;
  max-width: 720px;
  color: var(--hdd-navy);
  font-family: var(--hdd-font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.hdd-modes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hdd-modes__card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-shadow: none;
}

.hdd-modes__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.hdd-modes__copy {
  text-align: left;
  width: 100%;
}

.hdd-modes__copy h3 {
  margin: 0 0 12px;
  font-family: var(--hdd-font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--hdd-navy);
}

.hdd-modes__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hdd-muted);
}

/* ---------- FEATURED (3:321) ---------- */
.hdd-featured {
  background: #fff;
  padding: var(--hdd-section-y) var(--hdd-pad-x);
}

.hdd-featured__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hdd-featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hdd-featured__title {
  margin: 10px 0 0;
  font-family: var(--hdd-font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--hdd-navy);
}

.hdd-featured__all {
  color: var(--hdd-green);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.hdd-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hdd-featured-card {
  background: transparent;
  min-height: 0;
  border-radius: 0;
  overflow: visible;
}

.hdd-featured-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.hdd-featured-card__media {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.09);
}

.hdd-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdd-featured-card__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 160px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hdd-featured-card__badge {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hdd-featured-card__title {
  margin: 0;
  color: #fff;
  font-family: var(--hdd-font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.hdd-featured-card__more {
  color: var(--hdd-green);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- JOURNEY (3:133) ---------- */
.hdd-journey {
  background: var(--hdd-purple-soft);
  padding: var(--hdd-section-y) var(--hdd-pad-x);
}

.hdd-journey__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hdd-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hdd-journey__step {
  background: #fff;
  border: 1px solid rgba(111, 75, 179, 0.13);
  border-radius: 16px;
  padding: 24px;
  min-height: 166px;
  box-sizing: border-box;
}

.hdd-journey__label {
  display: block;
  margin-bottom: 20px;
  color: var(--hdd-purple);
  font-size: 14px;
  font-weight: 700;
}

.hdd-journey__step h3 {
  margin: 0 0 12px;
  font-family: var(--hdd-font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--hdd-navy);
}

.hdd-journey__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hdd-muted);
}

/* ---------- STORY / VIDEO (3:125) ---------- */
.hdd-story {
  background: var(--hdd-navy);
  padding: var(--hdd-section-y) var(--hdd-pad-x);
  display: flex;
  justify-content: center;
  min-height: 0;
}

.hdd-story__frame {
  position: relative;
  width: min(1200px, 100%);
  height: 680px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hdd-story__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdd-story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 12, 34, 0.4);
  z-index: 1;
}

.hdd-story__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: #fff;
}

.hdd-story__play {
  width: 96px;
  height: 96px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: inherit;
  padding: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hdd-story__play:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.28);
}

.hdd-story__play-inner {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  background: #fff;
  color: var(--hdd-navy);
  display: grid;
  place-items: center;
}

.hdd-story__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hdd-story__title {
  margin: 0;
  font-family: var(--hdd-font-serif);
  font-size: 40px;
  font-weight: 400;
}

/* ---------- DIFFERENT (3:174) ---------- */
.hdd-different {
  background: #fff;
  padding: var(--hdd-section-y) var(--hdd-pad-x);
}

.hdd-different__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hdd-different__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hdd-different__card {
  background: #fff;
  border: 1px solid rgba(111, 75, 179, 0.13);
  border-radius: 24px;
  padding: 32px;
}

.hdd-different__check {
  display: block;
  margin-bottom: 24px;
  width: 20px;
  height: 20px;
}

.hdd-different__card h3 {
  margin: 0 0 12px;
  font-family: var(--hdd-font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--hdd-navy);
}

.hdd-different__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hdd-muted);
}

/* Testimonials / IG refinements */
.hdd-testimonials {
  background: var(--hdd-purple-soft) !important;
  padding: var(--hdd-section-y) var(--hdd-pad-x) !important;
}

.hdd-testimonials .hdd-container,
.hdd-instagram .hdd-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hdd-testimonials .hdd-eyebrow,
.hdd-instagram .hdd-eyebrow {
  color: var(--hdd-green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
  text-align: center;
}

.hdd-testimonials .hdd-section__title,
.hdd-instagram .hdd-section__title {
  margin: 0 auto 64px;
  max-width: 720px;
  text-align: center;
  font-family: var(--hdd-font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  color: var(--hdd-navy);
}

.hdd-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}

.hdd-testimonials__card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}

.hdd-testimonials__card .hdd-stars {
  color: #eab112;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.hdd-testimonials__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--hdd-navy);
}

.hdd-testimonials__card cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--hdd-navy);
}

.hdd-instagram {
  padding: var(--hdd-section-y) var(--hdd-pad-x) !important;
  text-align: center;
  background: #fff;
}

.hdd-instagram .hdd-section__subtitle {
  margin: 12px auto 0;
  max-width: 720px;
  color: var(--hdd-muted);
  font-size: 16px;
  line-height: 1.6;
}

.hdd-instagram__fallback {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.hdd-instagram__fallback img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.hdd-section--lavender {
  background: var(--hdd-purple-soft);
}

/* Newsletter — Figma 3:233 */
.hdd-newsletter {
  background: #3a3151;
  padding: 64px;
  text-align: center;
}

.hdd-newsletter .hdd-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hdd-newsletter__title {
  margin: 0;
  font-family: var(--hdd-font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.hdd-newsletter__text {
  margin: 16px 0 0;
  color: var(--hdd-footer-muted);
  font-size: 16px;
  line-height: 1.5;
}

.hdd-newsletter__form {
  display: flex;
  gap: 12px;
  width: min(520px, 100%);
  margin: 0;
  align-items: center;
}

.hdd-newsletter__form input[type="email"] {
  flex: 1;
  min-height: auto;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(238, 233, 247, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
}

.hdd-newsletter__form input::placeholder {
  color: var(--hdd-footer-muted);
}

.hdd-newsletter__form .hdd-btn {
  min-height: auto;
  padding: 14px 32px;
  font-size: 14px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Footer — Figma 35:64 */
.hdd-footer {
  background: var(--hdd-navy);
  padding: 120px var(--hdd-pad-x) 48px;
}

.hdd-footer .hdd-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hdd-footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 80px;
}

.hdd-footer__brand {
  width: 360px;
  max-width: 100%;
}

.hdd-footer__brand img {
  height: 78px;
  width: auto;
  max-width: 197px;
  margin-bottom: 24px;
}

.hdd-footer__brand p {
  margin: 0;
  color: var(--hdd-footer-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hdd-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.hdd-footer__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(238, 233, 247, 0.28);
  background: rgba(238, 233, 247, 0.08);
  color: #fff;
  font-family: var(--hdd-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hdd-footer__social {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hdd-footer__social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(238, 233, 247, 0.28);
  background: rgba(238, 233, 247, 0.08);
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hdd-footer__social-link:hover {
  background: var(--hdd-purple, #6f4bb3);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.hdd-footer__bottom {
  justify-content: center;
  text-align: center;
}

.hdd-footer h3 {
  margin: 0 0 16px;
  color: var(--hdd-mint);
  font-family: var(--hdd-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hdd-footer__cta h3 {
  color: #fff;
  font-family: var(--hdd-font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  margin-bottom: 24px;
}

.hdd-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hdd-footer__links a {
  color: var(--hdd-footer-muted);
  font-size: 14px;
}

.hdd-footer__cta {
  width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hdd-footer__cta .hdd-btn {
  width: 100%;
  min-height: auto;
  padding: 12px 24px;
  font-size: 14px;
}

.hdd-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 233, 247, 0.15);
  color: var(--hdd-footer-muted);
  font-size: 12px;
  text-align: center;
}

.hdd-footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hdd-footer__legal a {
  color: var(--hdd-footer-muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  :root { --hdd-pad-x: 32px; }
  .hdd-destinations__grid,
  .hdd-modes__grid,
  .hdd-journey__grid,
  .hdd-different__grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .hdd-destinations__card { height: 160px; }
  .hdd-about__inner,
  .hdd-featured__grid,
  .hdd-testimonials__grid { grid-template-columns: 1fr; }
  .hdd-about__media { height: 360px; }
  .hdd-hero__features-list { justify-content: center; }
  .hdd-story__frame { height: 420px; }
  .hdd-instagram__fallback { grid-template-columns: repeat(3, 1fr); }
  .hdd-footer__grid { flex-wrap: wrap; }
  .hdd-newsletter__form { flex-direction: column; width: 100%; }
  .hdd-newsletter__form .hdd-btn { width: 100%; }
}

@media (max-width: 768px) {
  :root { --hdd-pad-x: 20px; --hdd-section-y: 72px; }
  .hdd-header__inner { padding-inline: 20px; }
  .hdd-header__nav { display: none; }
  .hdd-header__toggle { display: inline-flex; }
  .hdd-header__actions .hdd-btn { display: none; }
  .hdd-hero__inner { padding-top: 80px; gap: 48px; }
  .hdd-destinations__grid { grid-template-columns: repeat(2, 1fr); }
  .hdd-modes__grid,
  .hdd-journey__grid,
  .hdd-different__grid,
  .hdd-featured__grid,
  .hdd-testimonials__grid { grid-template-columns: 1fr; }
  .hdd-featured__header { flex-direction: column; align-items: flex-start; }
  .hdd-featured-card__media { height: 360px; }
  .hdd-hero__features-list li { white-space: normal; }
  .hdd-instagram__fallback { grid-template-columns: repeat(2, 1fr); }
  .hdd-footer__bottom { flex-direction: column; align-items: flex-start; }
}
