/* ============================================================
   TRAVEL BY BROOKE — Luxury Travel Advisory
   Designed to match Canva brand: warm cream, editorial serif,
   botanical accents, European summer aesthetic
   ============================================================ */

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

:root {
  --cream:       #FAF7EE;
  --cream-mid:   #F0EAD8;
  --cream-dark:  #E8DFC8;
  --warm-white:  #FFFDF7;
  --charcoal:    #1A1814;
  --brown:       #3D3730;
  --taupe:       #8B7D6B;
  --gold:        #C4A35A;
  --gold-light:  #E8D5B0;
  --sage:        #7A8C5E;
  --lemon:       #EDD96A;
  --sea:         #4872A8;
  --sea-light:   #BDD4EE;
  --sea-pale:    #EDF4FA;
  --navy:        #1B3A5C;
  --blush:       #E8BAAF;
  --blush-light: #FAE8E3;
  --terra:       #C47A5A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --nav-h: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,247,238,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(26,24,20,0.06);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-top {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.nav.hero-nav .nav-logo-top  { color: rgba(255,255,255,0.7); }
.nav.hero-nav .nav-logo-main { color: white; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color 0.2s;
}
.nav.hero-nav .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 0.65rem 1.6rem;
  transition: background 0.2s !important;
}
.nav.hero-nav .nav-cta {
  background: rgba(196,163,90,0.85) !important;
  border: none;
  color: var(--charcoal) !important;
}
.nav-cta:hover {
  background: var(--terra) !important;
  color: var(--cream) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav.hero-nav .hamburger span { background: white; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }

/* === Hero === */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1613395877344-13d4a8e0d49e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(196,163,90,0.05) 0%,
    rgba(30,15,5,0.10) 42%,
    rgba(18,8,3,0.62) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 960px;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35), 0 8px 60px rgba(0,0,0,0.2);
}
.hero-sub {
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 3rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--charcoal);
  padding: 1rem 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.btn-hero-primary:hover { background: var(--gold); color: var(--charcoal); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 1rem 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: white;
  opacity: 0.55;
}
.hero-scroll span { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-bar {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0) translateY(0); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* === Marquee Strip === */
.marquee {
  background: var(--blush-light);
  color: var(--navy);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  position: relative;
  border-top: 1px solid rgba(196,163,90,0.22);
  border-bottom: 1px solid rgba(196,163,90,0.22);
  z-index: 1;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 42s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  color: var(--navy);
}
.marquee-sep { color: var(--gold); margin: 0 0.4rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === Layout Helpers === */
.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 5vw, 4rem); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.rule-center { margin: 1.5rem auto; }
h2.display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.0;
}
h2.display em { font-style: italic; font-weight: 300; }

/* === About Preview === */
.about-preview {
  background: var(--warm-white);
  position: relative;
}
/* Scalloped top — warm-white semicircles lap over the blush marquee below */
.about-preview::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0; right: 0;
  height: 16px;
  background: radial-gradient(circle at 50% 100%, var(--warm-white) 14px, transparent 15px);
  background-size: 30px 16px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 10;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-frame {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid var(--gold-light);
  z-index: -1;
}
.about-script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--sea);
  display: block;
  margin-bottom: 0.5rem;
}
.about-text p {
  font-size: 1rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: gap 0.2s, color 0.2s;
}
.link-arrow::after { content: '→'; font-size: 1.1rem; letter-spacing: 0; }
.link-arrow:hover { color: var(--gold); gap: 1rem; }

/* === Services === */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--cream-mid);
  padding: clamp(2rem, 4vw, 3.5rem);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0E2035 100%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; }
.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.35s;
}
.service-card:hover .service-num { color: rgba(196,163,90,0.3); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
  transition: color 0.35s;
}
.service-card:hover .service-title { color: var(--cream); }
.service-desc {
  font-size: 0.875rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 2rem;
  transition: color 0.35s;
}
.service-card:hover .service-desc { color: rgba(250,247,238,0.65); }
.service-card:hover .link-arrow { color: var(--gold); border-color: var(--gold); }

/* === Partners === */
.partners { background: var(--cream-dark); text-align: center; }
.partners-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 3rem;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 4rem;
}
.partner-item {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  transition: color 0.2s;
}
.partner-item:hover { color: var(--navy); }

/* === Destinations === */
.destinations { background: var(--warm-white); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.dest-card { position: relative; overflow: hidden; cursor: pointer; }
.dest-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,8,3,0.90) 0%,
    rgba(27,58,92,0.22) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  transition: all 0.35s;
}
.dest-region {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}
.dest-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}
.dest-link {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s 0.05s;
}
.dest-card:hover .dest-link { opacity: 1; transform: translateY(0); }

/* === Stripe pattern — removed, kept for safety === */
.stripe-bg {
  background-image: none !important;
}

/* === Quote / Testimonials === */
.testimonials {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 30rem;
  color: rgba(196,163,90,0.06);
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.testimonial-wrap { max-width: 820px; margin: 0 auto; position: relative; }
.quote-open {
  font-family: var(--font-display);
  font-size: 9rem;
  color: var(--gold);
  opacity: 0.55;
  line-height: 0.4;
  margin-bottom: 1.75rem;
  display: block;
}
.quote-body {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 2.5rem;
}
.quote-author {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.t-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--taupe);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.t-dot.active { background: var(--gold); }

/* === Newsletter === */
.newsletter {
  background: var(--blush-light);
  text-align: center;
  position: relative;
}
/* Navy drips from testimonials above — scalloped top edge */
.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 20px;
  background: radial-gradient(circle at 50% 0%, var(--navy) 17px, transparent 18px);
  background-size: 32px 20px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.newsletter-sub {
  font-size: 0.85rem;
  color: var(--taupe);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.nl-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}
.nl-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold-light);
  border-right: none;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--brown);
  outline: none;
}
.nl-input::placeholder { color: var(--taupe); }
.nl-input:focus { border-color: var(--gold); }
.nl-btn {
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--terra); color: var(--cream); }
.nl-note { font-size: 0.7rem; color: var(--taupe); margin-top: 0.85rem; }

/* === Footer === */
.footer {
  background: linear-gradient(165deg, #18304A 0%, #0D1B2A 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 12% 88%, rgba(196,163,90,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 88% 8%, rgba(72,114,168,0.11) 0%, transparent 48%),
    radial-gradient(ellipse 35% 40% at 55% 50%, rgba(196,122,90,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-script);
  font-size: 3rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250,247,238,0.5);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(250,247,238,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(196,163,90,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(250,247,238,0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* === Inner Page Hero === */
.page-hero {
  height: 55vh;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,8,3,0.72) 0%, rgba(196,163,90,0.06) 100%);
}
.page-hero-content {
  position: relative;
  color: white;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.page-hero-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.btn-dark { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* === Fade Animations === */
.fade { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade.visible { opacity: 1; transform: none; }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

/* === Shop Cards === */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.shop-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-mid);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 40px rgba(26,24,20,0.06);
}
.shop-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card-body { padding: 1.75rem; }
.shop-card-region {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.shop-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.shop-card-desc { font-size: 0.85rem; color: var(--taupe); line-height: 1.7; margin-bottom: 1.5rem; }
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
}

/* === Blog === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.blog-card { cursor: pointer; }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s;
}
.blog-card:hover .blog-card-img { opacity: 0.9; }
.blog-card-cat {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.blog-card-excerpt { font-size: 0.875rem; color: var(--taupe); line-height: 1.7; margin-bottom: 1.25rem; }
.blog-card-meta { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--taupe); text-transform: uppercase; }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 0.95rem; color: var(--taupe); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail { margin-bottom: 1rem; }
.contact-detail-label { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 0.9rem; color: var(--brown); }
.form-group { margin-bottom: 1.5rem; }
.form-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brown); display: block; margin-bottom: 0.5rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--cream-dark);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* === About Page Extras === */
.about-full { max-width: 680px; }
.about-full p { font-size: 1rem; color: var(--taupe); line-height: 1.9; margin-bottom: 1.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { padding: 2.5rem 2rem; background: var(--cream-mid); text-align: center; border-top: 2px solid var(--gold); }
.value-icon { font-family: var(--font-display); font-size: 3.5rem; color: var(--terra); margin-bottom: 1rem; }
.value-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.85rem; color: var(--taupe); line-height: 1.7; }

/* === Bespoke Luxury Enhancements === */

/* Custom cursor */
.cursor-ring {
  width: 30px; height: 30px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.22,1,0.36,1), height 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, opacity 0.2s;
  will-change: left, top;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-active * { cursor: none !important; }
.cursor-ring.expand { width: 54px; height: 54px; border-color: var(--sea); opacity: 0.5; }

/* Hero word entrance */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  animation: heroWordIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Destination card 3D tilt */
.dest-card { will-change: transform; }
.dest-card:hover { box-shadow: 0 28px 70px rgba(26,24,20,0.2); }

/* Testimonials warm grain scatter */
.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,163,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(72,114,168,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.testimonial-wrap { z-index: 1; position: relative; }

/* Testimonial crossfade */
.testimonial-item { display: none; }
.testimonial-item.active {
  display: block;
  animation: tFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes tFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* Page enter */
body { animation: pageEnter 0.55s ease 0.05s both; }
@keyframes pageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* === Responsive === */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-frame { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--gold-light); }
  .shop-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
