/* ===========================
   Travel Creations by Di
   Shared Stylesheet — Luxury Rebrand
   =========================== */

:root {
  --gold: #C5A059;
  --gold-light: #D4B472;
  --gold-dark: #A88740;
  --charcoal: #4A5259;
  --charcoal-dark: #2C3338;
  --cream: #FAF8F5;
  --warm-white: #FEFCF9;
  --ivory: #F0EBE3;
  --dark-text: #2C3338;
  --gray-text: #6B7280;
  --white: #ffffff;
  --border: #E8E2D9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
}

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

/* ===========================
   NAV
   =========================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Hamburger menu (CSS-only) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: transparent !important;
  color: var(--gold) !important;
  padding: 0.55rem 1.5rem;
  border: 1.5px solid var(--gold) !important;
  border-radius: 0;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* ===========================
   HERO (homepage)
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Legacy fallback (kept for any pages still using .hero-image) */
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 30, 58, 0.70) 0%,
    rgba(15, 30, 58, 0.35) 30%,
    rgba(15, 30, 58, 0.35) 70%,
    rgba(15, 30, 58, 0.78) 100%
  );
}

/* Respect reduced-motion — pause the video and fall back to poster */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero {
    background-image: url('./assets/video/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 8rem 2rem 4rem;
}

.hero-badge {
  display: inline-block;
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

.hero-logo {
  max-width: 380px;
  width: 80%;
  height: auto;
  margin: 0 auto 0.25rem;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 18px rgba(0,0,0,0.55));
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.75rem auto;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 14px rgba(0,0,0,0.55);
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,162,101,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray-text);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--charcoal-dark);
  min-height: 60vh;
  padding: 14rem 2rem 6rem;
}

.page-hero-image::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
  background: rgba(0,0,0,0.45);
  border-radius: 0;
}

.page-hero-image h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.page-hero-image p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.page-hero-hc {
  width: 100%;
  border-bottom: 1px solid var(--border);
  line-height: 0;
}

.hero-cover-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hill Country Insider — video hero */
.hc-hero-video {
  position: relative;
  width: 100%;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: normal;
}

.hc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 30, 58, 0.65) 0%,
    rgba(15, 30, 58, 0.25) 30%,
    rgba(15, 30, 58, 0.25) 70%,
    rgba(15, 30, 58, 0.72) 100%
  );
}

.hc-hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem 6rem;
  text-align: center;
}

.hc-hero-logo {
  max-width: 340px;
  width: 72%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,0.6));
}

@media (prefers-reduced-motion: reduce) {
  .hc-video {
    display: none;
  }
  .hc-hero-video {
    background-image: url('./assets/video/hc-insider/hc-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .hc-hero-video {
    min-height: 56vh;
  }
  .hc-hero-content {
    padding: 6rem 1.25rem 4rem;
  }
  .hc-hero-logo {
    max-width: 260px;
    width: 82%;
  }
}

/* ===========================
   DISNEY — feature image break
   =========================== */
.disney-feature-image {
  padding: 5rem 2rem;
  background: var(--white);
}

.disney-feature-figure {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(44, 51, 56, 0.14);
  position: relative;
}

.disney-feature-figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .disney-feature-image { padding: 3rem 1rem; }
}

/* ===========================
   DISNEY — 6-slide carousel hero
   =========================== */
.disney-hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.disney-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.disney-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: disney-carousel-fade 30s infinite;
  pointer-events: none;
}

.disney-slide-1 { animation-delay: 0s; }
.disney-slide-2 { animation-delay: 5s; }
.disney-slide-3 { animation-delay: 10s; }
.disney-slide-4 { animation-delay: 15s; object-position: center 22%; }
.disney-slide-5 { animation-delay: 20s; }
.disney-slide-6 { animation-delay: 25s; }

/* 30s cycle, each slide active for 5s = 16.67% of cycle.
   1s fade-in (3.33%), 3s hold + slow Ken Burns zoom, 1s fade-out. */
@keyframes disney-carousel-fade {
  0%      { opacity: 0; transform: scale(1.0); }
  3.33%   { opacity: 1; transform: scale(1.02); }
  13.33%  { opacity: 1; transform: scale(1.06); }
  16.67%  { opacity: 0; transform: scale(1.08); }
  100%    { opacity: 0; transform: scale(1.0); }
}

.disney-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(15, 30, 58, 0.55) 0%,
    rgba(15, 30, 58, 0.30) 35%,
    rgba(15, 30, 58, 0.30) 65%,
    rgba(15, 30, 58, 0.65) 100%
  );
}

.disney-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 920px;
}

.disney-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  line-height: 1.15;
}

.disney-hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
  opacity: 0.85;
}

.disney-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
  margin: 0;
}

@media (max-width: 768px) {
  .disney-hero { min-height: 62vh; }
  .disney-hero-title { font-size: 2.2rem; }
  .disney-hero-subtitle { font-size: 0.95rem; }
  .disney-hero-content { padding: 5rem 1.25rem 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .disney-slide {
    animation: none;
    opacity: 0;
  }
  .disney-slide-1 {
    opacity: 1;
    transform: scale(1.0);
  }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: white;
  border: 1.5px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal-dark);
  border: 1.5px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Non-hero contexts: secondary buttons get charcoal treatment */
.reviews-section .btn-secondary,
.about-section .btn-secondary {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.reviews-section .btn-secondary:hover,
.about-section .btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ===========================
   SECTIONS
   =========================== */
section { padding: 6rem 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section-header p {
  color: var(--gray-text);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===========================
   WHY USE AN ADVISOR
   =========================== */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.why-card:hover {
  background: var(--cream);
}

.why-card .card-icon {
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-card .card-icon svg {
  width: 36px;
  height: 36px;
}

.bridge-heading {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 1rem;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  font-weight: 300;
}

.why-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* ===========================
   DESTINATIONS
   =========================== */
.destinations-section {
  background: var(--cream);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* === Orphan card centering ===
   Only for grids that are uniformly 2-col across breakpoints. Applying
   `:nth-child(odd)` and `:nth-child(3n-2)` rules globally was too
   aggressive — it incorrectly fired on 4-col grids like .pillar-grid and
   2-col grids like .blog-grid, shifting cards that didn't need shifting.
   For non-uniform grids, the orphan rule belongs inside the matching
   media query. .sig-grid uses flex+justify-content: center, which
   handles any orphan count cleanly. */
.dest-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.75rem);
  justify-self: center;
}

.dest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(44,51,56,0.08);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  overflow: hidden;
}

.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(44,51,56,0.12);
}

.dest-photo {
  display: block;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.dest-photo.dest-disney      { background-image: url('./images/nanna-wagabond-boys-castle.jpg'); }
.dest-photo.dest-ocean       { background-image: url('https://images.unsplash.com/photo-1599640842225-85d111c60e6b?w=800&q=80'); }
.dest-photo.dest-river       { background-image: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=800&q=80'); }
.dest-photo.dest-sipsail     { background-image: url('./images/sip-sail-group.jpg'); }
.dest-photo.dest-hillcountry { background-image: url('./images/hill-country-fb-cover.jpg'); }
.dest-photo.dest-tropical    { background-image: url('./images/hawaii-sunset.jpg'); }

.dest-card-body {
  padding: 1.75rem 1.75rem 2rem;
  color: var(--charcoal);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card-body .dest-hook {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.dest-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.dest-card-body p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.78;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dest-card-body .dest-cta {
  display: inline-block;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.dest-card:hover .dest-cta {
  color: var(--gold-dark);
}

/* ===========================
   SIGNATURE COLLECTION (Hill Country)
   =========================== */
.sig-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.sig-grid > .sig-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 280px;
}

/* Explicit 2-col variant — used where the section is a 2x2 layout
   (e.g. Sip & Sail "2026 & 2027 Collections"). Apply both classes:
   <div class="sig-grid sig-grid-2col"> */
.sig-grid.sig-grid-2col > .sig-card {
  flex: 0 1 calc(50% - 0.75rem);
}

.sig-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.sig-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sig-card-body {
  padding: 1.5rem;
  text-align: center;
}

.sig-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.sig-card-ideal {
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.sig-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.sig-card-body .btn {
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .sig-grid > .sig-card { flex: 0 1 calc(50% - 0.75rem); }
}

@media (max-width: 600px) {
  .sig-grid > .sig-card { flex: 0 1 100%; }
  .sig-card-img { height: 200px; }
}

/* ===========================
   ABOUT (homepage section)
   =========================== */
.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 440px;
  background: url('./images/diane-meet-di-home.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.about-content p {
  color: var(--gray-text);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
}

.about-content .highlight {
  display: block;
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 1.5rem 0;
  line-height: 1.6;
  background: transparent;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews-section {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.review-author {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--charcoal-dark);
  text-align: center;
  color: white;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.cta-section h2 .script {
  color: var(--gold-light);
  font-size: 2.2rem;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.93rem;
  color: var(--gray-text);
  font-weight: 300;
}

.contact-item-text strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
  font-weight: 500;
}

.contact-item-text a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-text a:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s;
  background: var(--white);
  color: var(--dark-text);
  font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  align-self: flex-start;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: -0.5rem;
  letter-spacing: 0.05em;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 3rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 2rem;
}

footer .footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.35rem;
}

footer .footer-links {
  margin: 2rem 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

footer .footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  transition: color 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom p {
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.bio-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.bio-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--cream) url('./images/diane-profile-about.jpg') center/cover no-repeat;
  margin: 0 auto;
  border: 2px solid var(--gold);
}

.bio-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.bio-content .bio-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bio-content .bio-email {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.bio-content .bio-email a {
  color: var(--charcoal);
  text-decoration: none;
}

.bio-content p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.bio-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.bio-services span {
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

/* ===========================
   DISNEY PAGE
   =========================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar-card {
  background: var(--white);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: background 0.3s;
}

.pillar-card:hover {
  background: var(--cream);
}

.pillar-icon {
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
}

.pillar-icon svg {
  width: 36px;
  height: 36px;
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  font-weight: 300;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.3s, transform 0.3s;
}

.offer-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.offer-card .offer-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
}

.offer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.offer-card .offer-meta {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-top: 0.5rem;
}

.promo-banner {
  background: var(--charcoal-dark);
  color: white;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.promo-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.promo-banner p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dining-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.dining-card:hover {
  border-color: var(--gold);
}

.dining-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dining-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.dining-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.dining-card ul li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

.dining-card ul li::before {
  content: '— ';
  color: var(--gold);
  font-weight: 400;
}

/* ===========================
   CRUISING PAGE
   =========================== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
  font-weight: 400;
}

.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 0.75rem;
}

.article-content p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.article-content img {
  width: 100%;
  margin: 1.5rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.promo-card:hover {
  border-color: var(--gold);
}

.promo-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.promo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.promo-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  font-weight: 300;
}

/* ===========================
   BLOG
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  border-color: var(--gold);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.read-more {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.read-more:hover {
  color: var(--gold-dark);
}

/* Blog post page */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-meta {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.blog-post-meta span {
  margin-right: 1.5rem;
}

.blog-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.blog-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.blog-post-content img {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.blog-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.blog-post-content ul, .blog-post-content ol {
  color: var(--gray-text);
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.back-link:hover { color: var(--gold-dark); }

/* ===========================
   GALLERY
   =========================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.photo-grid img:hover {
  opacity: 0.85;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.story-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.story-card-body {
  padding: 1.5rem;
}

.story-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.story-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  font-weight: 300;
}

/* Property-organized gallery sections */
.gallery-property-section {
  padding: 4rem 0;
  scroll-margin-top: 88px;
}

.gallery-property-section.gallery-property-alt {
  background: var(--cream);
}

.gallery-property-section .section-header {
  margin-bottom: 2rem;
}

.gallery-property-photo {
  margin: 0 auto 2rem;
  max-width: 960px;
}

.gallery-property-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-cta {
  text-align: center;
}

.gallery-cta .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .gallery-property-section { padding: 3rem 0; }
  .gallery-property-photo img { aspect-ratio: 4 / 3; }
}

/* ===========================
   CONTACT PAGE — Action Cards
   =========================== */
.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.action-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.action-card:hover {
  border-color: var(--gold);
}

.action-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.action-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.action-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  font-weight: 300;
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 8rem 2rem 4rem;
}

.thankyou-content .icon-large {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.thankyou-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 400;
}

.thankyou-content p {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   SIP & SAIL PAGE
   =========================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.collection-card:hover {
  border-color: var(--gold);
}

.collection-card .card-date {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.collection-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.collection-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   FEATURED OFFERS
   =========================== */
.featured-offer {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.featured-offer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.featured-offer p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 300;
}

.featured-offer .offer-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

/* Inventory grid for cruising page */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.inventory-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.inventory-card:hover {
  border-color: var(--gold);
}

.inventory-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.inventory-card .card-date {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.inventory-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.inventory-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  font-weight: 300;
}

.inventory-card .status-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
}

/* ===========================
   RESPONSIVE
   =========================== */

/* --- Tablet --- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-2col { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
  .action-cards { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; text-align: center; }
  .bio-content .bio-services { justify-content: center; }
}

/* --- Pillar/offer mid-tablet --- */
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
}

/* --- Tablet & Mobile: hamburger nav --- */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }

  .nav-toggle-label { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .nav-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .nav-logo img { height: 42px; }
  .hero-logo { max-width: 260px; }
  footer .footer-logo img { height: 60px; }
  .page-hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 2rem; }

  .hero-content { padding-top: 6rem; }
  .hero-tagline { font-size: 0.95rem; }

  .page-hero { padding: 8rem 1.5rem 3rem; }
  .page-hero-image {
    min-height: 45vh;
    padding: 10rem 1.5rem 4rem;
  }

  .about-image { height: 280px; }
  .dest-photo { height: 200px; }
  .review-card h3 { font-size: 1rem; }

  footer .footer-links {
    gap: 1rem;
    font-size: 0.7rem;
  }

  .promo-banner h3 { font-size: 1.4rem; }
  .promo-banner { padding: 2rem 1.5rem; }

  .why-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    gap: 0;
  }
  .why-grid-2col { grid-template-columns: 1fr; }
  .why-card {
    border-bottom: 1px solid var(--border);
  }

  .reviews-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; text-align: center; }
  .bio-content .bio-services { justify-content: center; }
  .pillar-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    gap: 0;
  }
  .pillar-card {
    border-bottom: 1px solid var(--border);
  }
  .offer-grid { grid-template-columns: 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .action-cards { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }

  .cta-section h2 { font-size: 2rem; }
  .cta-section h2 .script { font-size: 1.6rem; }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.6rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .photo-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 1.25rem; }
  .dest-photo { height: 180px; }
}
