:root {
  --teal: #1e4d4e;
  --teal-dark: #0f2e2f;
  --teal-light: #2a6364;
  --orange: #d4622b;
  --orange-light: #e8854f;
  --cream: #faf8f5;
  --warm-gray: #f0ece6;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --border: #e0dcd6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── NAV ── */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(15, 46, 47, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  transition: filter 0.3s;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--orange-light);
}

.nav-links a.cta-link {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-links a.cta-link:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.76);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      rgba(7, 24, 25, 0.84) 0%,
      rgba(7, 24, 25, 0.68) 18%,
      rgba(7, 24, 25, 0.36) 38%,
      rgba(7, 24, 25, 0.12) 60%,
      rgba(7, 24, 25, 0.00) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7, 24, 25, 0.62) 0%,
      rgba(7, 24, 25, 0.32) 28%,
      rgba(7, 24, 25, 0.12) 58%,
      rgba(7, 24, 25, 0.00) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  padding: 138px 48px 76px 32px;
  margin-left: auto;
  margin-right: 7%;
  text-align: left;
}

.hero-spacer {
  display: none;
}

.hero h1 {
  margin: 0 0 30px;
  font-size: clamp(4rem, 6.5vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: left;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
}

.hero-title-stacked {
  width: fit-content;
}

.hero-title-stacked span {
  color: var(--white);
}

.hero-title-stacked span:last-child {
  color: var(--orange-light);
}

.hero-line-white {
  color: var(--white);
}

.hero-line-orange {
  color: var(--orange-light);
}

.hero-body {
  max-width: 500px;
  margin: 0;
  text-align: left;
}

.hero-body p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 300;
  line-height: 1.72;
  margin: 0 0 20px;
}

.hero-body p.hero-structure {
  display: block;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 44px;
  margin-top: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 98, 43, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 2;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── PHOTO SECTIONS ── */

.photo-section {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
  color: white;
}

.photo-section .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.photo-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 46, 47, 0.75);
}

.photo-section .content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── WHY SECTION ── */

.why-section {
  padding: 100px 32px;
  background: var(--white);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--teal);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.why-card {
  padding: 40px 28px;
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── PROGRAMS ── */

.programs-section {
  padding: 100px 32px;
  background: var(--cream);
}

.programs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.program-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.program-header {
  color: var(--white);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.program-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 46, 47, 0.3) 0%, rgba(15, 46, 47, 0.5) 100%);
}

.program-header h3,
.program-header .subtitle {
  position: relative;
  z-index: 2;
}

.program-header::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.program-header h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.program-header .subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 300;
}

.program-body {
  padding: 32px;
}

.program-body > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.program-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.stat {
  padding: 16px;
  background: var(--cream);
  border-radius: 6px;
  text-align: center;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 700;
}

.program-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.program-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.program-features li:last-child {
  border-bottom: none;
}

.program-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.program-bottom-line {
  padding: 20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.program-bottom-line strong {
  color: var(--orange-light);
}

/* ── QUOTE BANNER ── */

.quote-banner {
  position: relative;
  padding: 100px 32px;
  overflow: hidden;
}

.quote-banner .bg {
  position: absolute;
  inset: 0;
  background-image: url(quote-banner.jpg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.quote-banner .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 77, 78, 0.8), rgba(15, 46, 47, 0.9));
}

.quote-banner .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-attr {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* ── HOW IT WORKS ── */

.how-section {
  padding: 100px 32px;
  background: var(--white);
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(30, 77, 78, 0.2);
}

.step h3 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── ABOUT ── */

.about-section {
  padding: 100px 32px;
  background: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-label {
  text-align: left;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-image: url(about-beefy-returns.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 28px 24px;
  background: var(--cream);
  border-radius: 8px;
}

.founder-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.founder-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 2px;
}

.founder-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.founder-info a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.85rem;
}

/* ── CONTACT CTA ── */

.contact-section {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  overflow: hidden;
}

.contact-section .bg {
  position: absolute;
  inset: 0;
  background-image: url(hero-bg.jpg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.contact-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 46, 47, 0.7), rgba(15, 46, 47, 0.85));
}

.contact-section .content {
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
}

.contact-section .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 32px 24px;
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--orange-light);
  text-decoration: none;
  font-size: 0.9rem;
  word-break: break-all;
}

.contact-card a:hover {
  color: white;
}

/* ── FOOTER ── */

.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  max-width: 340px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.6;
}

.disclaimer {
  font-size: 0.7rem;
  line-height: 1.6;
  opacity: 0.4;
  margin-top: 16px;
  max-width: 900px;
}

/* ── ANIMATIONS ── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SKIP LINK */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--orange);
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ── TABLET RESPONSIVE ── */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 46, 47, 0.98);
    padding: 24px 32px;
    gap: 16px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links a {
    padding: 12px 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: 90vh;
    min-height: 90svh;
    justify-content: center;
  }

  .hero-content {
    max-width: 620px;
    width: min(620px, 92vw);
    margin: 0 auto;
    padding: 132px 24px 66px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 4.3rem);
    line-height: 0.94;
    text-align: center;
  }

  .hero-title-stacked {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-body {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-body p {
    font-size: 0.95rem;
  }

  .hero-cta {
    margin-top: 24px;
  }

  .why-grid,
  .programs-grid,
  .founders {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .photo-section .bg,
  .quote-banner .bg {
    background-attachment: scroll;
  }

  .contact-card a {
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    line-height: 28px;
    word-break: break-word;
    font-size: 0.85rem;
  }

  .footer-col a {
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ── LARGE PHONE / SMALL TABLET HERO FIX ── */

@media (min-width: 601px) and (max-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: center;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-content {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 140px 36px 72px;
    text-align: center;
  }

  .hero h1 {
    text-align: center;
    margin: 0 auto 26px;
    font-size: clamp(3.2rem, 8vw, 4.5rem);
    line-height: 0.94;
  }

  .hero-title-stacked {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-body {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-body p {
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-cta {
    display: block;
    width: fit-content;
    max-width: 360px;
    margin: 28px auto 0;
    text-align: center;
  }
}

/* ── MOBILE RESPONSIVE ── */

@media (max-width: 600px) {
  .hero {
    min-height: 92vh;
    min-height: 92svh;
    justify-content: center;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-content {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    padding: 132px 28px 58px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.3rem);
    line-height: 0.96;
    margin: 0 auto 24px;
    text-align: center;
  }

  .hero-title-stacked {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-body {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-body p {
    font-size: 0.9rem;
    line-height: 1.58;
    text-align: center;
  }

  .hero-cta {
    display: block;
    width: 100%;
    max-width: 370px;
    margin: 34px auto 0;
    text-align: center;
    padding: 14px 22px;
  }

  .steps,
  .program-stats {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}