/* Future Frames Advisory — landing page styles */

:root {
  --navy: #0D1F3C;
  --navy-2: #0A1830;
  --navy-soft: #1B3055;
  --gold: #C9A84C;
  --gold-soft: #D9BE6E;
  --ivory: #F7F3EA;
  --ivory-2: #EFE8D6;
  --paper: #FBF8F1;
  --ink: #0D1F3C;
  --muted: rgba(13, 31, 60, 0.62);
  --line: rgba(13, 31, 60, 0.14);
  --line-on-navy: rgba(247, 243, 234, 0.16);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

.serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(13, 31, 60, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-on-navy);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo .mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 700;
  font-family: Georgia, serif;
  font-size: 15px;
  position: relative;
}
.nav-logo .mark::before,
.nav-logo .mark::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--gold);
}
.nav-logo .mark::before { top: -1.5px; left: -1.5px; border-right: none; border-bottom: none; }
.nav-logo .mark::after  { bottom: -1.5px; right: -1.5px; border-left: none; border-top: none; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(247, 243, 234, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ivory); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 11px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-bg-photos {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photos .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease-out;
}
.hero-bg-photos .slide.active {
  opacity: 0.32;
  transform: scale(1);
}
.hero-bg-photos::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,31,60,0.96) 0%, rgba(13,31,60,0.78) 45%, rgba(13,31,60,0.45) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(13,31,60,0.7), transparent 60%);
}

.hero-inner-l {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow .line { width: 36px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: Georgia, serif;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--ivory);
}

.hero-title .rotator {
  display: inline-block;
  position: relative;
  color: var(--gold);
  font-style: italic;
  min-width: 1ch;
}
.hero-title .rotator::after {
  content: '';
  position: absolute;
  left: 0;
  right: 6px;
  bottom: 0.06em;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.rot-word {
  display: inline-block;
  transition: opacity .55s ease, transform .55s ease;
}
.rot-word.exit  { opacity: 0; transform: translateY(-14px); }
.rot-word.enter { opacity: 0; transform: translateY(14px); }

.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 243, 234, 0.82);
  max-width: 540px;
  margin: 0 0 44px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(201, 168, 76, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247, 243, 234, 0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn .arrow {
  width: 16px; height: 10px; position: relative;
  transition: transform .2s ease;
}
.btn .arrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(247, 243, 234, 0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-trust .divider { width: 30px; height: 1px; background: rgba(247, 243, 234, 0.25); }

/* ==================== HERO RIGHT VISUAL ==================== */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 580px;
}

.photo-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.photo-card {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  background: var(--navy-soft);
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover;
}

.photo-main {
  inset: 0 12% 8% 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.photo-main .ph-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.06);
  animation: kenburns 12s ease-in-out infinite alternate;
}
.photo-main .ph-img.active { opacity: 1; }

@keyframes kenburns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.photo-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  pointer-events: none;
}
.photo-overlay .label {
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
  background: rgba(13, 31, 60, 0.75);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.photo-overlay .progress {
  display: flex; gap: 6px;
  background: rgba(13, 31, 60, 0.75);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid rgba(247, 243, 234, 0.15);
}
.photo-overlay .pip {
  width: 18px; height: 2px;
  background: rgba(247, 243, 234, 0.25);
  transition: background .3s ease;
}
.photo-overlay .pip.active { background: var(--gold); }

.float-card {
  position: absolute;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 16px 18px;
  box-shadow: 0 22px 50px -15px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(13, 31, 60, 0.06);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-stat {
  top: 8%;
  right: 0;
  width: 200px;
  animation-delay: -2s;
}
.float-stat .value {
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
}
.float-stat .value sup { color: var(--gold); font-size: 22px; }
.float-stat .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

.float-country {
  bottom: 0;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  animation-delay: -4s;
}
.float-country .flag-row {
  display: flex; gap: 6px;
}
.float-country .meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.float-country .meta strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

.flag {
  width: 22px; height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* corner ornaments */
.corner-orn {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold);
  z-index: 3;
}
.corner-orn.tl { top: 110px; left: 26px; border-right: none; border-bottom: none; }
.corner-orn.br { bottom: 26px; right: 26px; border-left: none; border-top: none; }

/* ==================== MARQUEE ==================== */
.marquee {
  background: var(--navy-2);
  color: var(--ivory);
  padding: 22px 0;
  border-top: 1px solid var(--line-on-navy);
  border-bottom: 1px solid var(--line-on-navy);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(247, 243, 234, 0.85);
}
.marquee-item .star {
  color: var(--gold);
  font-style: normal;
  font-size: 14px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 16px 0 0;
  color: var(--navy);
}
.section-head h2 em {
  color: var(--gold);
}
.section-head .lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}

/* ==================== ABOUT ==================== */
.about {
  background: var(--paper);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ivory-2);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 30% center;
}
.about-photo .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13, 31, 60, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ivory);
  padding: 18px 22px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-photo .badge strong {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
  font-weight: 400;
}

.about-text h3 {
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 18px 0 28px;
  color: var(--navy);
}
.about-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-pillars-mini {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.about-pillars-mini > div {
  flex: 1;
  padding: 22px 0 0;
  border-right: 1px solid var(--line);
  padding-right: 18px;
  margin-right: 18px;
}
.about-pillars-mini > div:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.about-pillars-mini .num {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 14px;
  font-style: italic;
}
.about-pillars-mini .pname {
  font-family: Georgia, serif;
  font-size: 17px;
  color: var(--navy);
  margin-top: 4px;
  line-height: 1.25;
}

/* ==================== PILLARS ==================== */
.pillars {
  background: var(--navy);
  color: var(--ivory);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.pillars-inner { max-width: 1280px; margin: 0 auto; }
.pillars .section-head h2 { color: var(--ivory); }
.pillars .section-head h2 em { color: var(--gold); font-style: italic; }
.pillars .section-head .lede { color: rgba(247, 243, 234, 0.7); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247, 243, 234, 0.12);
  border: 1px solid rgba(247, 243, 234, 0.12);
}
.pillar-card {
  background: var(--navy);
  padding: 44px 36px 40px;
  position: relative;
  transition: background .35s ease;
  cursor: pointer;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.pillar-card:hover { background: var(--navy-soft); }
.pillar-card:hover .pillar-photo { opacity: 0.18; }

.pillar-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 0;
}
.pillar-card > * { position: relative; z-index: 1; }

.pillar-num {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.pillar-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold);
}
.pillar-card h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.pillar-card p {
  color: rgba(247, 243, 234, 0.7);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pillar-list li {
  font-size: 13px;
  color: rgba(247, 243, 234, 0.85);
  padding: 10px 0;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.pillar-link {
  margin-top: auto;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.pillar-link .arrow { width: 14px; height: 9px; }

/* ==================== STATS ==================== */
.stats {
  background: var(--ivory);
  padding: 120px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner { max-width: 1280px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.stat {
  border-top: 1.5px solid var(--navy);
  padding-top: 22px;
  position: relative;
}
.stat .value {
  font-family: Georgia, serif;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat .value sup {
  color: var(--gold);
  font-size: 0.5em;
  font-style: italic;
  margin-left: 4px;
}
.stat .label {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

/* ==================== DESTINATIONS ==================== */
.destinations {
  background: var(--paper);
  padding: 120px 40px;
}
.destinations-inner { max-width: 1280px; margin: 0 auto; }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.destination {
  background: var(--paper);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .3s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.destination:hover { background: var(--ivory); }
.destination .photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  filter: grayscale(0.2);
  transition: filter .3s ease, transform .5s ease;
}
.destination:hover .photo { filter: grayscale(0); transform: scale(1.02); }

.destination .flag-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.destination h4 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.destination .desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
.destination .visa {
  margin-top: auto;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--navy);
  color: var(--ivory);
  padding: 120px 40px;
  overflow: hidden;
}
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials .section-head h2 { color: var(--ivory); }
.testimonials .section-head h2 em { color: var(--gold); font-style: italic; }
.testimonials .section-head .lede { color: rgba(247, 243, 234, 0.7); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: rgba(247, 243, 234, 0.04);
  border: 1px solid rgba(247, 243, 234, 0.1);
  padding: 36px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s ease, background .3s ease;
}
.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(247, 243, 234, 0.06);
}
.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 18px;
  height: 28px;
}
.testimonial .quote {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ivory);
  margin: 0 0 28px;
  flex: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 243, 234, 0.1);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.testimonial .avatar-mono {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.02em;
  border: 1px solid rgba(247, 243, 234, 0.2);
}
.testimonial .who strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--ivory);
  font-size: 15px;
  font-weight: 400;
}
.testimonial .who span {
  font-size: 12px;
  color: rgba(247, 243, 234, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonial .pillar-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ==================== FOUNDER ==================== */
.founder {
  background: var(--ivory);
  padding: 120px 40px;
  border-top: 1px solid var(--line);
}
.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.founder-photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--ivory-2);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.founder-photo .corner-tl, .founder-photo .corner-br {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
}
.founder-photo .corner-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.founder-photo .corner-br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.founder-quote {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 18px 0 32px;
}
.founder-quote em { color: var(--gold); }
.founder-meta {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 18px;
}
.founder-meta .name {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--navy);
}
.founder-meta .role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.founder-meta .signature {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: -0.01em;
}

/* ==================== CTA ==================== */
.cta-banner {
  background: var(--navy);
  color: var(--ivory);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.12), transparent 60%);
}
.cta-banner-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: Georgia, serif;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 18px 0 22px;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
  color: rgba(247, 243, 234, 0.7);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto 38px;
  max-width: 540px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy-2);
  color: rgba(247, 243, 234, 0.7);
  padding: 80px 40px 36px;
  border-top: 1px solid var(--line-on-navy);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { color: var(--ivory); margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 0 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-on-navy);
  border-radius: 4px;
  display: grid; place-items: center;
  color: var(--ivory);
  text-decoration: none;
  font-size: 14px;
  transition: all .2s ease;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer h4 {
  font-family: Georgia, serif;
  color: var(--ivory);
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: 0;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer ul a {
  color: rgba(247, 243, 234, 0.65);
  text-decoration: none;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line-on-navy);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247, 243, 234, 0.45);
  letter-spacing: 0.04em;
}

/* ==================== WHATSAPP ==================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 60;
  cursor: pointer;
  transition: transform .2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==================== REVEAL ANIM ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { height: 460px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav { padding: 14px 24px; }
  .section { padding: 80px 24px; }
  .pillars, .stats, .destinations, .testimonials, .founder { padding: 80px 24px; }
}
