/* ══════════════════════════════════════════════════════════
   DISCOVER SILK ROAD — Main Stylesheet
   Breakpoints: 480 | 768 | 1024 | 1280 | 1440
   ══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ────────────────────────────────── */
:root {
  /* Colour palette */
  --clr-green:       #3a5a40;
  --clr-green-light: #4d7a55;
  --clr-green-dark:  #253b2b;
  --clr-cream:       #f5f0e8;
  --clr-cream-dark:  #ede7db;
  --clr-dark:        #1a2318;
  --clr-white:       #ffffff;
  --clr-text:        #2c3a2e;
  --clr-text-light:  #5a6e5c;
  --clr-border:      #d8d0c4;
  --clr-gold:        #b8975a;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w: 1280px;
  --section-py: clamp(4rem, 8vw, 7rem);
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  300ms;

  /* Nav */
  --nav-h: 72px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img { height: auto; }

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

p, h1, h2, h3, h4 { overflow-wrap: break-word; }

ul[role="list"] { list-style: none; }

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

button { cursor: pointer; border: none; background: none; }

/* ─── Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--section-py);
}

.section--cream { background-color: var(--clr-cream); }
.section--dark  { background-color: var(--clr-dark); color: var(--clr-white); }

/* ─── Section headers ───────────────────────────────────── */
.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: var(--sp-3);
}

.section__eyebrow--light { color: var(--clr-gold); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: var(--sp-4);
}

.section--dark .section__title { color: var(--clr-white); }

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--clr-white);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--clr-white);
}

.btn--filled {
  background: var(--clr-green);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-green);
}
.btn--filled:hover {
  background: var(--clr-green-dark);
  border-color: var(--clr-green-dark);
  box-shadow: 0 4px 20px rgba(58, 90, 64, 0.4);
}

.btn--outline-dark {
  border: 1.5px solid var(--clr-green);
  color: var(--clr-green);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--clr-green);
  color: var(--clr-white);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.site-header.is-scrolled .nav__link,
.site-header.is-scrolled .nav__logo { color: var(--clr-dark); }

.site-header.is-scrolled .nav__link--cta {
  background: var(--clr-green);
  color: var(--clr-white);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--clr-white);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav__link {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--dur) var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__link:hover { color: var(--clr-white); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  color: var(--clr-white);
  z-index: 110;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-header.is-scrolled .nav__toggle { color: var(--clr-dark); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--clr-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(15, 25, 15, 0.4) 0%,
    rgba(15, 25, 15, 0.25) 40%,
    rgba(15, 25, 15, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: calc(var(--nav-h) + 2rem) 5rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--dur) var(--ease);
}
.hero__scroll:hover { color: var(--clr-white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   TOURS
═══════════════════════════════════════════════════════════ */
.tours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--sp-6);
}

.tour-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  box-shadow: 0 16px 48px rgba(30, 50, 30, 0.12);
  transform: translateY(-4px);
}

.tour-card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.tour-card:hover .tour-card__img { transform: scale(1.05); }

.tour-card__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--clr-gold);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.tour-card__body {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}

.tour-card__duration {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
}

.tour-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-dark);
  line-height: 1.2;
}

.tour-card__desc {
  font-size: 0.9375rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  flex: 1;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-2);
}

.tour-card__price {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}
.tour-card__price strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-dark);
}

/* ═══════════════════════════════════════════════════════════
   DESTINATIONS
═══════════════════════════════════════════════════════════ */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.dest-card { border-radius: var(--radius-lg); overflow: hidden; }

.dest-card__link { display: block; position: relative; }

.dest-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.dest-card:hover .dest-card__img { transform: scale(1.07); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,20,0.75) 0%, transparent 55%);
  transition: opacity var(--dur) var(--ease);
}

.dest-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--clr-white);
}

.dest-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.dest-card__arrow {
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.dest-card:hover .dest-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.destinations__more {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
  aspect-ratio: 4/5;
}

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 46%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--clr-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 1;
}

.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  padding-block: 2rem;
}

.about__text {
  color: var(--clr-text-light);
  line-height: 1.8;
  font-size: 1.0625rem;
  margin-bottom: var(--sp-5);
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  margin-block: var(--sp-8);
  list-style: none;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--clr-green);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.8125rem;
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--sp-4);
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item--wide  { grid-column: span 2; }
.gallery__item--tall  { grid-row: span 2; }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(20,35,20,0.8), transparent);
  color: var(--clr-white);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-6);
}

.testimonial {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-6);
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-green);
  opacity: 0.15;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.75;
  flex: 1;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.testimonial__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--clr-green);
}

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

.testimonial__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--clr-dark);
  font-size: 0.9375rem;
}

.testimonial__origin {
  font-size: 0.8125rem;
  color: var(--clr-text-light);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact__title { font-size: clamp(2rem, 4vw, 3rem); }

.contact__text {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-block: var(--sp-6);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  list-style: none;
  margin-bottom: var(--sp-8);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

.contact__detail svg { flex-shrink: 0; color: var(--clr-gold); }
.contact__detail a { color: rgba(255,255,255,0.8); transition: color var(--dur) var(--ease); }
.contact__detail a:hover { color: var(--clr-white); }

.contact__social {
  display: flex;
  gap: var(--sp-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.social-link:hover {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: var(--clr-white);
}

/* Form */
.contact__form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  backdrop-filter: blur(8px);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.form__input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--clr-white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  width: 100%;
}

.form__input::placeholder { color: rgba(255,255,255,0.35); }

.form__input:focus {
  border-color: var(--clr-green-light);
  background: rgba(255,255,255,0.12);
}

.form__input:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select option { background: var(--clr-dark); color: var(--clr-white); }

.form__textarea { resize: vertical; min-height: 7rem; }

.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: calc(var(--sp-2) * -1);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-16) var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: var(--sp-12);
}

.footer__logo { color: var(--clr-white); }

.footer__tagline {
  margin-top: var(--sp-3);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-serif);
  font-style: italic;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
}

.footer__nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__nav a, .footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--clr-white); }

.footer__contact {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 900px
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    aspect-ratio: 4/3;
    max-width: 560px;
    margin-inline: auto;
  }

  .about__img-accent {
    right: -0.5rem;
    bottom: -1rem;
  }

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px (Tablet)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  :root { --nav-h: 64px; }

  /* Nav mobile */
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--sp-5);
    padding: var(--sp-16) var(--sp-8);
    background: var(--clr-dark);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 105;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--clr-white);
  }

  .nav__link--cta {
    margin-top: var(--sp-4);
    background: var(--clr-green);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 1rem;
  }

  /* Backdrop */
  .nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 104;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }

  .nav__backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Destinations */
  .destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery__item--wide  { grid-column: span 2; }
  .gallery__item--tall  { grid-row: span 1; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px (Mobile)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-inline: auto;
  }

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

  .dest-card__img-wrap { aspect-ratio: 3/2; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery__item--wide,
  .gallery__item--tall { grid-column: span 1; grid-row: span 1; }

  .about__img-accent { display: none; }

  .contact__form-wrap { padding: var(--sp-6) var(--sp-5); }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@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;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOCUS VISIBLE (Accessibility)
═══════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--clr-green-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
