/* =====================================================
   BREEZY TOUR & TRAVEL — Coastal Luxury Editorial
   Redesign: Editorial Luxury · Asymmetric Bento
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Jost:wght@300;400;500;600&display=swap');

/* ─── Custom Properties ─── */
:root {
  --navy:        #0B1D35;
  --navy-mid:    #162840;
  --navy-light:  #1E3A52;
  --teal:        #1A6878;
  --teal-light:  #26889B;
  --gold:        #C8A96E;
  --gold-light:  #D9BE8C;
  --gold-pale:   #EDD9A3;
  --sand:        #E4CFA0;
  --cream:       #FAF7F0;
  --cream-dark:  #F0E9D8;
  --text-dark:   #1A2235;
  --text-mid:    #3D4D62;
  --text-light:  #6B7D91;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:        1200px;
  --max-w-text:   760px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.32, 0.72, 0, 1);
  --transition:   0.45s var(--ease);
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-slow: 0.7s var(--ease-spring);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay — fixed, pointer-events-none */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

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

/* ─── Layout Utilities ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container--narrow {
  max-width: var(--max-w-text);
}

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition:
    background 0.5s var(--ease-spring),
    padding 0.5s var(--ease-spring),
    backdrop-filter 0.5s var(--ease-spring);
}

.site-nav.scrolled {
  background: rgba(11, 29, 53, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Mobile nav overlay — sibling to <nav>, outside its stacking context */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 29, 53, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  align-items: center;
  justify-content: center;
}

.mobile-nav.open { display: flex; }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav-close:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

.mobile-nav-close span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--white);
  position: absolute;
}

.mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }

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

.mobile-nav-links li {
  opacity: 0;
  transform: translateY(16px);
}

.mobile-nav.open .mobile-nav-links li {
  animation: staggerReveal 0.6s var(--ease-spring) forwards;
}

.mobile-nav.open .mobile-nav-links li:nth-child(1) { animation-delay: 0.08s; }
.mobile-nav.open .mobile-nav-links li:nth-child(2) { animation-delay: 0.14s; }
.mobile-nav.open .mobile-nav-links li:nth-child(3) { animation-delay: 0.20s; }
.mobile-nav.open .mobile-nav-links li:nth-child(4) { animation-delay: 0.26s; }
.mobile-nav.open .mobile-nav-links li:nth-child(5) { animation-delay: 0.32s; }
.mobile-nav.open .mobile-nav-links li:nth-child(6) { animation-delay: 0.38s; }
.mobile-nav.open .mobile-nav-links li:nth-child(7) { animation-delay: 0.44s; }

.mobile-nav-links a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover { color: var(--white); }

.mobile-nav-links .nav-cta a {
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.55rem 1.6rem;
  border-radius: 100px;
}

.mobile-nav-links .nav-cta a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

.nav-logo-img-white {
  height: 20px;
}

.nav-logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after { width: 100%; }

/* Focus ring — accessibility */
.nav-links a:focus-visible,
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav-links .nav-cta a {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(200, 169, 110, 0.5);
  color: var(--gold);
  border-radius: 100px;
  letter-spacing: 0.14em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition-fast);
}

.nav-links .nav-cta a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.nav-links .nav-cta a:active {
  transform: scale(0.97);
}

.nav-links .nav-cta a::after { display: none; }

/* Mobile Nav Toggle — Hamburger morph */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 102;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.5s var(--ease-spring), opacity 0.3s var(--ease);
  position: absolute;
  left: 4px;
}

.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(26, 104, 120, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(200, 169, 110, 0.12) 0%, transparent 45%),
    url('/images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 80%, rgba(200, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUpBlur 1s var(--ease-spring) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUpBlur 1.1s var(--ease-spring) 0.4s forwards;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  max-width: 42ch;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUpBlur 1.1s var(--ease-spring) 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUpBlur 1s var(--ease-spring) 0.8s forwards;
}

.hero-badge { display: none; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg { width: 100%; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.4s var(--ease-out-expo),
    color 0.4s var(--ease-out-expo),
    border-color 0.4s var(--ease-out-expo),
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
  white-space: nowrap;
  position: relative;
}

.btn:active {
  transform: scale(0.97);
}

/* Button-in-Button trailing icon pattern */
.btn-arrow {
  padding-right: 1rem;
}

.btn-arrow::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6h8M7 3l3 3-3 3' stroke='%230B1D35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.btn--gold.btn-arrow::after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6h8M7 3l3 3-3 3' stroke='%230B1D35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: rgba(11, 29, 53, 0.1);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  border-radius: 100px;
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,169,110,0.3);
}

.btn--gold:hover.btn-arrow::after {
  transform: translate(2px, -1px) scale(1.05);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  border-radius: 100px;
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,29,53,0.25);
  border-radius: 100px;
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  border-radius: 100px;
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.btn-phone:hover { color: var(--white); }

.btn-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color var(--transition), background var(--transition);
}

.btn-phone:hover .btn-phone-icon {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

/* ─── Services Section ─── */
.services {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.section-header h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: var(--navy);
  margin-top: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 50ch;
  margin: 1.25rem auto 0;
  line-height: 1.85;
}

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

.service-card {
  background: var(--white);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(11,29,53,0.08);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.75rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.service-vendors {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-display);
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

/* ─── Quote Section ─── */
.quote-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: clamp(14rem, 28vw, 26rem);
  color: rgba(255,255,255,0.025);
  position: absolute;
  top: -3rem;
  left: -1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(26,104,120,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.quote-text blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.quote-text blockquote strong {
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

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

.quote-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.quote-body p:last-child { margin-bottom: 0; }

/* ─── Stats Band ─── */
.stats {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-dark);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  max-width: 20ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ─── Tours Section ─── */
.tours {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

/* Double-Bezel Tour Cards */
.tour-card {
  position: relative;
  overflow: visible;
  transition: transform 0.5s var(--ease-out-expo);
}

.tour-card:hover {
  transform: translateY(-5px);
}

/* Outer shell */
.tour-card-shell {
  background: rgba(11,29,53,0.03);
  border-radius: 1.75rem;
  padding: 6px;
  border: 1px solid rgba(11,29,53,0.05);
  box-shadow: 0 4px 20px rgba(11,29,53,0.04);
  transition: box-shadow 0.5s var(--ease-out-expo);
}

.tour-card:hover .tour-card-shell {
  box-shadow: 0 20px 50px rgba(11,29,53,0.1);
}

/* Inner core */
.tour-card-core {
  background: var(--white);
  border-radius: calc(1.75rem - 6px);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
}

.tour-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.tour-card-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.025) 40px,
    rgba(255,255,255,0.025) 41px
  );
}

.tour-card-body {
  padding: 1.75rem 2rem 2rem;
}

.tour-dates {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.tour-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.25rem;
}

.tour-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--cream);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--cream-dark);
}

/* ─── Memberships ─── */
.memberships {
  padding: 4rem 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.memberships-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.membership-item {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0.5rem 2rem;
  position: relative;
  transition: color 0.4s var(--ease-out-expo);
}

.membership-item + .membership-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.membership-item:hover { color: var(--gold); }

/* ─── Contact CTA ─── */
.contact-cta {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 48ch;
  line-height: 1.85;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.cta-contact-item:hover { color: var(--teal); }

.cta-contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: clamp(4rem, 8vw, 7rem) 0 2.5rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 4.5rem;
}

.footer-brand .nav-logo-wordmark {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin-top: 1.25rem;
  max-width: 36ch;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-line {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-line a { transition: color var(--transition-fast); }
.footer-contact-line a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
}

.footer-insurance {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── Page Layout (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(26,104,120,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.012) 60px,
    rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-style: italic;
  color: var(--white);
  margin-top: 0.75rem;
  max-width: 20ch;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.25rem;
  max-width: 50ch;
  line-height: 1.8;
}

.page-content {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.page-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.page-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 68ch;
}

.page-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
}

.page-content ul li::marker { color: var(--gold); }

.page-content strong { font-weight: 500; color: var(--text-dark); }

/* Vendor showcase */
.vendor-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 3rem 0;
}

.vendor-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(11,29,53,0.06),
    0 12px 48px rgba(11,29,53,0.06);
  min-height: 360px;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.vendor-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(11,29,53,0.08),
    0 24px 64px rgba(11,29,53,0.1);
}

.vendor-logo-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

.vendor-logo-panel--rm {
  background: #0C1F4A;
}

.vendor-logo-panel--cm {
  background: #006B8F;
}

.vendor-logo-img {
  max-width: 200px;
  max-height: 100px;
  width: 100%;
  object-fit: contain;
}

.vendor-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}

.vendor-logo-panel--cm .vendor-logo-fallback {
  color: #ffffff;
  font-size: 1.8rem;
}

.cm-trident {
  font-size: 1.2em;
}

.vendor-photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.vendor-photo-panel--cm-fallback {
  background:
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 55%, transparent 100%),
    linear-gradient(135deg, #00293D 0%, #004E72 35%, #0087AA 65%, #00BBCC 100%);
}

.vendor-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.vendor-feature:hover .vendor-photo-panel img {
  transform: scale(1.03);
}

.vendor-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
}

.vendor-photo-caption h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.vendor-photo-caption p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
}

@media (max-width: 680px) {
  .vendor-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vendor-logo-panel {
    padding: 2.5rem 1.5rem;
    min-height: 180px;
  }
}

/* Forms — Double-Bezel cards */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.form-card {
  position: relative;
  background: rgba(11,29,53,0.03);
  border-radius: 1.5rem;
  padding: 6px;
  border: 1px solid rgba(11,29,53,0.05);
  transition: box-shadow 0.5s var(--ease-out-expo);
}

.form-card:hover {
  box-shadow: 0 16px 48px rgba(11,29,53,0.08);
}

.form-card-inner {
  background: var(--white);
  border-radius: calc(1.5rem - 6px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.form-card-svg {
  color: var(--navy);
  opacity: 0.35;
  margin-bottom: 0.25rem;
}

.form-card--featured {
  border-color: rgba(200,169,110,0.3);
}

.form-card--featured .form-card-svg {
  color: var(--gold);
  opacity: 0.7;
}

.form-card--featured .form-card-inner {
  background: linear-gradient(180deg, rgba(200,169,110,0.04) 0%, var(--white) 40%);
}

.form-card-date {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.form-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  max-width: none;
}

/* Contact form */
.contact-form-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform var(--transition-fast);
}

.contact-detail-item:hover .contact-detail-icon {
  transform: scale(1.08);
}

.contact-detail-text {
  padding-top: 0.2rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}

.contact-detail-text a, .contact-detail-text span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.contact-detail-text a:hover { color: var(--teal); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(11,29,53,0.06);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  border-radius: 0.75rem;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,29,53,0.06);
}

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

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

/* ─── Section Tours Listing ─── */
.tours-section-listing {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* ─── Animations ─── */
@keyframes fadeUpBlur {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-reveal utility — enhanced with blur */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease-spring),
    transform 0.8s var(--ease-spring),
    filter 0.8s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (min-width: 1025px) {
  .mobile-nav { display: none !important; }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .quote-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-contacts { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tours-grid { grid-template-columns: 1fr; }
  .memberships-inner { gap: 0.25rem; }
  .membership-item { padding: 0.5rem 1rem; }
}

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