/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-navy: #1D3559;
  --color-navy-light: #2A4E7B;
  --color-sand: #C9A063;
  --color-sand-light: #E8D9B5;
  --color-cream: #FAF6EF;
  --color-graphite: #2B2B28;

  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Jost', 'Inter', sans-serif;

  --container-width: 1140px;
  --space-section: 6rem;
  --transition-soft: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-graphite);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-section) 0; }
.section--cream { background: var(--color-cream); }
.section--navy { background: var(--color-navy); color: var(--color-sand-light); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin: 0 0 1rem;
}
.eyebrow--center { text-align: center; }

.section__title {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
.section__title--center { text-align: center; max-width: 40rem; margin-left: auto; margin-right: auto; }
.section__lead {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 3rem;
  color: var(--color-graphite);
  opacity: 0.8;
}
.accent {
  color: var(--color-sand);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-sand);
  border-radius: 2px;
  transition: background-color var(--transition-soft), color var(--transition-soft), border-color var(--transition-soft);
  white-space: nowrap;
}
.btn__icon { width: 1rem; height: 1rem; fill: currentColor; flex-shrink: 0; }

.btn--outline {
  color: var(--color-sand-light);
  background: transparent;
}
.btn--outline:hover {
  background: var(--color-sand);
  color: var(--color-navy);
}
.btn--outline-light {
  color: var(--color-sand-light);
}
.btn--solid {
  background: var(--color-sand);
  color: var(--color-navy);
  border-color: var(--color-sand);
}
.btn--solid:hover {
  background: transparent;
  color: var(--color-sand-light);
}

/* ==========================================================================
   Sticky social
   ========================================================================== */
.sticky-social {
  position: fixed;
  z-index: 50;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sticky-social__link {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-sand);
  background: rgba(16, 30, 58, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  transition: background-color var(--transition-soft), transform var(--transition-soft);
}
.sticky-social__link:hover {
  background: var(--color-sand);
  transform: translateY(-2px);
}
.sticky-social__icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--color-sand-light);
}
.sticky-social__link:hover .sticky-social__icon { fill: var(--color-navy); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-sand-light);
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,30,58,0.55) 0%, rgba(16,30,58,0.75) 60%, rgba(16,30,58,0.95) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  max-width: 42rem;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin: 0 0 1.25rem;
}
.hero__name {
  font-size: 2.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.hero__slogan {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-sand-light);
  opacity: 0.9;
  margin: 0 0 2.5rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  color: var(--color-sand);
  opacity: 0.8;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll-icon { width: 1.3rem; height: 1.3rem; }

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  display: grid;
  gap: 2.5rem;
}
.about__photo-frame {
  padding: 0.6rem;
  border: 1px solid rgba(201, 160, 99, 0.6);
}
.about__photo { width: 100%; height: auto; }

.about__video-frame {
  margin-top: 2rem;
  padding: 0.5rem;
  border: 1px solid rgba(201, 160, 99, 0.6);
}
.about__video { width: 100%; height: auto; background: var(--color-navy); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
.stat {
  position: relative;
  padding: 1rem 0;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.25rem;
  color: var(--color-sand);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sand-light);
}

/* ==========================================================================
   Principles
   ========================================================================== */
.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.principle {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 160, 99, 0.35);
}
.principle__mark {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-sand);
  margin-bottom: 1.25rem;
}
.principle__title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.principle p { opacity: 0.85; }

/* ==========================================================================
   Tour teaser
   ========================================================================== */
.tour-teaser { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.tour-teaser__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 2.25rem;
  border: 1px solid rgba(201, 160, 99, 0.4);
}
.tour-teaser__title {
  font-size: 1.6rem;
  color: var(--color-sand-light);
  margin-bottom: 0.75rem;
}
.tour-teaser__lead {
  color: var(--color-sand-light);
  max-width: 36rem;
}
.tour-teaser .btn { flex-shrink: 0; }

@media (min-width: 768px) {
  .tour-teaser__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

/* ==========================================================================
   Widget
   ========================================================================== */
.widget-frame {
  background: #fff;
  border: 1px solid rgba(201, 160, 99, 0.6);
  padding: 1rem;
  min-height: 22rem;
}
.widget-frame__placeholder {
  height: 100%;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-graphite);
  opacity: 0.55;
  font-style: italic;
  border: 1px dashed rgba(201, 160, 99, 0.5);
  padding: 2rem;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta__inner {
  text-align: center;
  max-width: 38rem;
}
.cta__title {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-sand-light);
}
.cta__lead {
  color: var(--color-sand-light);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-navy);
  color: var(--color-sand-light);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(201, 160, 99, 0.25);
}
.footer__inner {
  text-align: center;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer__icon { width: 1.25rem; height: 1.25rem; fill: var(--color-sand-light); }
.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.footer__legal {
  font-size: 0.7rem;
  opacity: 0.6;
  max-width: 32rem;
  margin: 0 auto;
}

/* ==========================================================================
   Brand mark (logo)
   ========================================================================== */
.brand-mark {
  display: block;
  margin: 0 auto 1.4rem;
  width: 152px;
  height: 78px;
  border-radius: 50%;
  background: var(--color-cream);
  box-shadow: 0 6px 20px rgba(16, 30, 58, 0.35);
  padding: 10px 14px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer .brand-mark {
  width: 104px;
  height: 53px;
  margin-bottom: 1.1rem;
  padding: 7px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 768px) {
  :root { --space-section: 8rem; }

  .hero__name { font-size: 3.75rem; }
  .hero__slogan { font-size: 1.5rem; }
  .hero__actions { flex-direction: row; }

  .section__title { font-size: 2.6rem; }

  .about {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 4rem;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(201, 160, 99, 0.3);
  }

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

  .cta__title { font-size: 2.6rem; }
}

@media (min-width: 1200px) {
  .hero__name { font-size: 4.5rem; }
  .section__title { font-size: 3rem; }
  .principles { grid-template-columns: repeat(4, 1fr); }
  .stat__number { font-size: 3.75rem; }
}
