:root {
  color-scheme: dark;
  --bg: #faf7f2;
  --surface: rgba(15, 15, 15, 0.96);
  --surface-soft: rgba(254, 246, 236, 0.85);
  --text: #111111;
  --muted: #5e5a56;
  --accent: #1a1712;
  --gold: #bf9a5b;
  --border: rgba(17, 17, 17, 0.1);
  --gradient: linear-gradient(135deg, rgba(191,154,91,0.16), rgba(17,17,17,0.03));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  background: radial-gradient(circle at top, #ffffff 0%, #f5f1ec 35%, #e9e3d9 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.top-strip {
  background: #102c26;
  color: #fff;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.top-strip p {
  margin: 0;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.top-strip-phone {
  color: #f5e3c5;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: static;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: #ffffff;
  border-bottom: 1px solid rgba(191, 154, 91, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  padding: 0.3rem 0.5rem 0.3rem 0;
  margin-left: 0;
  background: transparent;
  border-radius: 999px;
}

.logo {
  width: 170px;
  filter: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  gap: 0.25rem;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.hero-section {
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: 3.5rem 0 5rem;
  background: var(--gradient);
}

.hero-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-copy h1,
.section h2 {
  font-size: clamp(2.3rem, 3.3vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-copy p {
  max-width: 560px;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: currentColor;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.08);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 0%, rgba(191, 154, 91, 0.12) 100%);
  pointer-events: none;
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.card-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.79rem;
  margin-bottom: 1rem;
}

.hero-card h2 {
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  margin: 0 0 1rem;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.85;
}

.section {
  padding: 6rem 0;
}

.section-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.feature-list,
.cards-grid {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.feature-item,
.program-card,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  padding: 1.7rem;
}

.feature-item h3,
.program-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
}

.feature-item p,
.program-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.programs-section {
  padding-top: 7.5rem;
}

.form-hero {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, rgba(191, 154, 91, 0.1), rgba(250, 247, 242, 0.95));
}

.form-hero .container {
  text-align: center;
}

.form-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: var(--accent);
}

.form-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.form-section {
  padding-bottom: 6rem;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.form-card p {
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.8;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field,
.file-upload,
.checkbox-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-field label,
.file-upload label,
.checkbox-field label {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.form-field input,
.file-upload input,
.form-field textarea {
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 16px;
  padding: 1rem 1rem;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}

.form-field input:focus,
.file-upload input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(191, 154, 91, 0.35);
  outline-offset: 2px;
}

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

.file-upload input {
  padding: 0.9rem 1rem;
}

.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--accent);
}

.checkbox-field label {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.form-card .btn {
  width: fit-content;
  margin-top: 1.5rem;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-field {
    flex-direction: column;
    align-items: flex-start;
  }
}


.programs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.programs-topbar .eyebrow {
  margin-bottom: 0.55rem;
}

.mentor-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(191, 154, 91, 0.12);
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(191, 154, 91, 0.22);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.mentor-pill:hover {
  transform: translateY(-1px);
  background: rgba(191, 154, 91, 0.18);
}

.cards-grid {
  grid-template-columns: 0.7fr 2fr;
}

.program-column {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.promo-card {
  background: linear-gradient(135deg, rgba(191, 154, 91, 0.2), rgba(191, 154, 91, 0.1));
  border: 2px solid rgba(191, 154, 91, 0.3);
  border-radius: 24px;
  padding: 0.65rem;
  text-align: center;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.promo-card:hover,
.promo-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.14);
  border-color: rgba(191, 154, 91, 0.24);
  background: linear-gradient(135deg, rgba(191, 154, 91, 0.25), rgba(191, 154, 91, 0.15));
}

.promo-card .old-price {
  margin: 0.35rem 0;
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: line-through;
}

.promo-card .new-price {
  margin: 0.5rem 0 1rem;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 800;
}

.promo-card .promo-text {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}

.promo-card .promo-description {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.promo-card .promo-price {
  margin: 1.2rem 0 0;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 800;
}

.tracking-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(3, 1fr);
}

.tracking-card {
  background: linear-gradient(135deg, rgba(191, 154, 91, 0.2), rgba(191, 154, 91, 0.1));
  border: 2px solid rgba(191, 154, 91, 0.3);
  border-radius: 24px;
  padding: 1.7rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  text-align: center;
}

.tracking-card h4 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.tracking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.tracking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.14);
  border-color: rgba(191, 154, 91, 0.24);
  background: linear-gradient(135deg, rgba(191, 154, 91, 0.25), rgba(191, 154, 91, 0.15));
}

.tracking-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.tracking-features li {
  margin-bottom: 0.5rem;
}

.tracking-features li:before {
  content: "• ";
  color: var(--gold);
  font-weight: bold;
  margin-right: 0.5rem;
}

.tracking-price {
  margin: 1.5rem 0 0 !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(191, 154, 91, 0.2);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.program-card {
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.14);
  border-color: rgba(191, 154, 91, 0.24);
  background: rgba(255, 255, 255, 0.98);
}

.program-card:active {
  transform: translateY(-2px);
}

.quote-section {
  padding: 4.5rem 0;
}

.quote-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 35px 80px rgba(17, 17, 17, 0.16);
}

.quote-card p {
  font-size: 1.45rem;
  line-height: 1.9;
  margin: 0 0 1.2rem;
}

.quote-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-inner,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    display: none;
  }

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

  .hero-section {
    padding-top: 4.5rem;
  }
}



/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 1.2rem);
  }

  .brand {
    margin-left: 0;
    padding: 0;
  }

  .logo {
    width: 120px;
  }

  .top-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding: 0.8rem 0;
  }

  .top-strip p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .header-inner {
    padding: 0.8rem 0;
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1,
  .section h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-copy p {
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .hero-card {
    padding: 1.4rem;
  }

  .cards-grid,
  .tracking-grid,
  .section-grid {
    grid-template-columns: 1fr !important;
  }

  .tracking-card,
  .program-card,
  .promo-card,
  .contact-card,
  .feature-item {
    padding: 1.2rem;
  }

  .tracking-features {
    font-size: 0.82rem;
  }

  .quote-card {
    padding: 1.6rem 1.2rem;
    border-radius: 24px;
  }

  .quote-card p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .section {
    padding: 4rem 0;
  }
}
