/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --green:      #0f2d1a;
  --green-mid:  #1a4228;
  --green-light:#2a6040;
  --gold:       #b8860b;
  --gold-light: #d4a017;
  --gold-pale:  #f0d080;
  --cream:      #f5f0e8;
  --cream-dark: #e8e0d0;
  --white:      #ffffff;
  --text-light: #c8c0b0;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--green);
  color: var(--cream);
  overflow-x: hidden;
  cursor: default;
}

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

/* ── Scroll animations ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(15, 45, 26, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span { color: var(--gold-light); }

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

.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green) !important;
  background: var(--gold-light);
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-pale) !important; transform: translateY(-1px); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15,45,26,0.72) 0%,
      rgba(15,45,26,0.50) 40%,
      rgba(15,45,26,0.82) 80%,
      rgba(15,45,26,0.99) 100%),
    url('/images/hero.jpg.jpg');
  background-size: cover;
  background-position: 85% 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--green) 0%, transparent 100%);
}

.hero-landscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  opacity: 0.15;
  background:
    radial-gradient(ellipse 120% 60% at 20% 100%, #2a6040 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 60% 100%, #1a4228 0%, transparent 55%),
    radial-gradient(ellipse 100% 55% at 85% 100%, #2a6040 0%, transparent 60%);
}

.hero-pin {
  position: absolute;
  right: 12%;
  bottom: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.25;
}
.hero-pin-flag {
  width: 28px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  margin-bottom: 2px;
}
.hero-pin-stick {
  width: 1.5px;
  height: 90px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 60px;
  margin-top: 80px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideUp 1s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeSlideUp 1.1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  text-shadow: 0 4px 24px rgba(0,0,0,0.65), 0 1px 6px rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dark);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 1.1s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}

.hero-tagline strong {
  color: var(--gold-pale);
  font-style: normal;
  font-weight: 500;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp 1s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeSlideUp 1s 1.0s cubic-bezier(0.16,1,0.3,1) forwards;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeSlideUp 1s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--gold-light);
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.3);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 232, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp 1s 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

/* ── Gold rule divider ─────────────────────────────────────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 64px;
  max-width: 200px;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Section base ──────────────────────────────────────────────────────────── */
section {
  position: relative;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

/* ── What We Do ────────────────────────────────────────────────────────────── */
.services {
  padding: 120px 60px;
  background: var(--green);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-left {}
.services-left .section-title { margin-bottom: 32px; }
.services-left .section-body { margin-bottom: 48px; max-width: 460px; }

.services-quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1.5;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184, 134, 11, 0.12);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1);
}

.service-item:hover {
  background: rgba(184, 134, 11, 0.06);
  border-color: rgba(184, 134, 11, 0.3);
  transform: translateY(-2px);
}

.service-item:hover::before { height: 100%; }

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── Destinations ──────────────────────────────────────────────────────────── */
.destinations {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-mid) 100%);
}

.destinations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.destinations-header .section-body { max-width: 400px; }

.destinations-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 3px;
  padding: 4px;
  align-self: start;
}

.dest-tab {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.dest-tab.active {
  background: var(--gold);
  color: var(--green);
}

.dest-tab:not(.active):hover { color: var(--cream); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--green-mid);
  display: block;
  text-decoration: none;
  color: inherit;
}

.dest-card.featured {
  grid-row: auto;
  aspect-ratio: 3/4;
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.dest-card:hover .dest-card-bg { transform: scale(1.05); }

.dest-card.ireland .dest-card-bg { background-image: url('/images/ireland.jpg.jpg'); }
.dest-card.scotland .dest-card-bg { background-image: url('/images/scotland.jpg.jpg'); }
.dest-card.california .dest-card-bg { background-image: url('/images/pebblebeach.jpg.jpg'); }
.dest-card.oregon .dest-card-bg { background-image: url('/images/bandondunes.jpg.jpg'); }
.dest-card.portugal .dest-card-bg { background-image: url('/images/portugal.jpg.jpg'); }
.dest-card.dominican .dest-card-bg { background-image: url('/images/iStock-2227392298.jpg'); }

.dest-card-art {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  overflow: hidden;
}

.dest-card-art svg {
  width: 100%;
  height: 100%;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.95) 0%, rgba(10,20,12,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(10,20,12,0.98) 0%, rgba(10,20,12,0.4) 60%, rgba(10,20,12,0.1) 100%);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
}

.dest-region {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dest-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.dest-card.featured .dest-name { font-size: 1.4rem; }

.dest-courses {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}

.dest-card:hover .dest-courses {
  opacity: 1;
  transform: translateY(0);
}

.dest-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,134,11,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  font-size: 0.8rem;
}

.dest-card:hover .dest-arrow {
  opacity: 1;
  transform: translateY(0);
  background: rgba(184,134,11,0.2);
}

/* ── The Experience ────────────────────────────────────────────────────────── */
.experience {
  padding: 120px 60px;
  background: var(--cream);
}

.experience-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.experience .section-label { color: var(--green-light); }
.experience .section-label::before { background: var(--green-light); }
.experience .section-title { color: var(--green); }
.experience .section-title em { color: var(--gold); }
.experience .section-body { color: #5a5040; }
.experience .gold-rule::before,
.experience .gold-rule::after { background: linear-gradient(to right, transparent, var(--green-light), transparent); }
.experience .gold-rule-diamond { background: var(--green-light); }

.experience-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.experience-header .section-label {
  justify-content: center;
}
.experience-header .section-label::before { display: none; }

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

.step {
  background: white;
  padding: 44px 32px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(15,45,26,0.08);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: #6a6050;
}

.experience-promise {
  background: var(--green);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.promise-text {
  flex: 1;
}

.promise-heading {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 20px;
}

.promise-heading em {
  font-style: italic;
  color: var(--gold-pale);
}

.promise-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.promise-divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  flex-shrink: 0;
}

.promise-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── For Whom ──────────────────────────────────────────────────────────────── */
.for-whom {
  padding: 120px 60px;
  background: var(--green-mid);
}

.for-whom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.for-whom-left .section-title { margin-bottom: 32px; }
.for-whom-left .section-body { margin-bottom: 48px; }

.client-profiles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.client-profile {
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.1);
  border-left: 3px solid transparent;
  transition: border-left-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}

.client-profile:hover {
  border-left-color: var(--gold);
  background: rgba(184,134,11,0.05);
  transform: translateX(4px);
}

.client-type {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.client-desc {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.4;
}

.client-detail {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.for-whom-visual {
  position: relative;
}

.scorecard {
  background: var(--cream);
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.scorecard::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(184,134,11,0.3);
  pointer-events: none;
}

.scorecard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15,45,26,0.15);
}

.scorecard-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scorecard-logo span { color: var(--gold); }

.scorecard-subtitle {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7a60;
  text-align: right;
}

.itinerary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itin-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15,45,26,0.08);
}

.itin-item:last-child { border-bottom: none; padding-bottom: 0; }

.itin-day {
  font-family: var(--serif);
  font-size: 0.8rem;
  color: #8a7a60;
  font-weight: 500;
}

.itin-detail {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 400;
}

.itin-detail span {
  display: block;
  font-size: 0.73rem;
  color: #8a7a60;
  font-weight: 300;
  margin-top: 2px;
}

.itin-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: white;
  flex-shrink: 0;
  margin-left: auto;
}

.scorecard-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sf-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7a60;
}

.sf-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}

/* ── Mike Jones ────────────────────────────────────────────────────────────── */
.founder {
  padding: 120px 60px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '19';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 30vw;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: center;
}

.founder-portrait {
  position: relative;
  aspect-ratio: 3/4;
  background-color: var(--green-mid);
  background-image: url('/images/mike-jones-headshot.jpg');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.portrait-frame {
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid rgba(184,134,11,0.25);
  pointer-events: none;
}

.founder-content {}
.founder-content .section-title { margin-bottom: 8px; }

.founder-name-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.founder-bio {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 40px;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream);
}

.credential::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Contact / CTA ─────────────────────────────────────────────────────────── */
.contact {
  padding: 120px 60px;
  background: var(--cream);
}

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

.contact .section-label { justify-content: center; }
.contact .section-label::before { display: none; }
.contact .section-label { color: var(--green-light); }
.contact .section-title { color: var(--green); margin-bottom: 20px; }
.contact .section-title em { color: var(--gold); }
.contact .section-body { color: #6a6050; margin-bottom: 60px; }

.contact-form {
  background: white;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(15,45,26,0.1);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--gold), var(--green));
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a6050;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--green);
  background: var(--cream);
  border: 1px solid rgba(15,45,26,0.15);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

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

.form-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: var(--green);
  border: none;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,45,26,0.25);
}

.form-note {
  font-size: 0.78rem;
  color: #8a7a60;
  margin-top: 20px;
  font-style: italic;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--green);
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(184,134,11,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 28px;
}

.footer-contact-item {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 6px;
}

.footer-contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold-pale); }

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--cream);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: #4a5a48;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,134,11,0.1);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-inner,
  .destinations-header,
  .for-whom-inner,
  .founder-inner { grid-template-columns: 1fr; gap: 50px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.featured { grid-row: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .experience-promise { flex-direction: column; gap: 40px; }
  .promise-divider { width: 80px; height: 1px; }
  .promise-stats { flex-direction: row; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 28px; margin-top: 100px; }
  .hero-scroll { left: 28px; }
  section { padding: 80px 28px !important; }
  .services-grid,
  .dest-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
  }
  .footer-inner .footer-links {
    align-items: center;
  }
  .footer-inner > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contact-form { padding: 32px 24px; }
}