:root {
  --near-black: #1C1917;
  --warm-dark:  #292524;
  --warm-mid:   #44403C;
  --amber:      #D97706;
  --amber-dark: #B45309;
  --amber-mid:  #F59E0B;
  --yellow:     #FCD34D;
  --yellow-light: #FDE68A;
  --cream:      #FFFBF0;
  --cream-card: #FFFFFF;
  --cream-alt:  #FEF9EE;
  --text-primary:   #1C1917;
  --text-secondary: #57534E;
  --text-muted:     #78716C;
  --text-faint:     #A8A29E;
  --border:     rgba(217, 119, 6, 0.22);
  --border-hover: rgba(217, 119, 6, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
  background: rgba(28, 25, 23, 0.96);
  backdrop-filter: blur(16px);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(217, 119, 6, 0.4);
}

.brand-text {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-weight: 500;
  color: var(--amber);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  color: #CBD5E1;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

/* ─────────────────────────────────────────────
   NAV DROPDOWN
───────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.15s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--amber);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 25, 23, 0.97);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 10px;
  padding: 18px 0 6px;
  min-width: 210px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--amber);
  background: rgba(217, 119, 6, 0.08);
}

@media (max-width: 768px) {
  .nav-dropdown-toggle { display: none; }
  .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    backdrop-filter: none;
  }
  .nav-dropdown-menu a { padding: 0; }
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 14px 22px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--amber), var(--amber-mid));
  color: #FFFFFF;
  font-weight: 800;
}

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

.btn-primary:hover {
  box-shadow: 0 0 22px rgba(217, 119, 6, 0.45);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--amber);
  background: var(--cream-card);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--cream-alt);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.page-hero {
  padding: 88px 0 42px;
  background: var(--cream);
}

.overline {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.hero-grid.single {
  grid-template-columns: 1fr;
}

.page-title {
  margin: 0 0 18px;
  color: var(--near-black);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-intro {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 18px;
}

.hero-card,
.section-card,
.faq-item,
.profile-card {
  border: 1px solid var(--border);
  background: var(--cream-card);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
}

.hero-card,
.section-card,
.profile-card {
  padding: 28px;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--cream-alt);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─────────────────────────────────────────────
   EYEBROW / BULLET LISTS
───────────────────────────────────────────── */
.eyebrow-list,
.bullet-list,
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eyebrow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.eyebrow-list li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text-secondary);
  background: var(--cream-alt);
  font-size: 14px;
}

/* ─────────────────────────────────────────────
   PAGE SECTIONS
───────────────────────────────────────────── */
.page-section {
  padding: 28px 0 36px;
  background: var(--cream);
}

.page-section:nth-child(even) {
  background: var(--cream-alt);
}

.section-heading {
  margin: 0 0 10px;
  color: var(--near-black);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
}

/* ─────────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.legal-card {
  padding: 36px;
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--near-black);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
  font-size: 16px;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-card a {
  color: var(--amber);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 14px;
  background: rgba(255, 251, 240, 0.92);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  text-align: left;
  vertical-align: top;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.legal-table th {
  color: var(--near-black);
  font-weight: 700;
  background: rgba(252, 211, 77, 0.16);
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.section-copy {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────
   EXAMPLE OUTPUTS
───────────────────────────────────────────── */
.example-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(252, 211, 77, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(255, 251, 240, 0.74)),
    var(--cream-card);
  box-shadow: 0 10px 34px rgba(28, 25, 23, 0.07);
}

.example-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-panel .section-heading {
  margin-bottom: 12px;
}

.example-panel .section-copy {
  margin-bottom: 16px;
}

.example-disclaimer {
  max-width: 760px;
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--amber);
  color: var(--text-muted);
  font-size: 14px;
}

.example-actions {
  display: grid;
  gap: 12px;
}

/* ─────────────────────────────────────────────
   GRIDS
───────────────────────────────────────────── */
.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.section-card h3,
.profile-card h3 {
  margin: 0 0 10px;
  color: var(--near-black);
  font-size: 22px;
}

.section-card p,
.profile-card p {
  margin: 0;
  color: var(--text-secondary);
}

.bullet-list {
  display: grid;
  gap: 12px;
}

.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-secondary);
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-mid));
  flex: 0 0 auto;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  margin: 0;
  padding: 22px 24px;
  color: var(--near-black);
  font-weight: 700;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--near-black);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
}

.faq-more {
  margin-top: 20px;
  color: var(--text-secondary);
}

.faq-more a {
  color: var(--amber);
  font-weight: 700;
}

.faq-more a:hover {
  color: var(--amber-dark);
}

/* ─────────────────────────────────────────────
   PRICE BADGE
───────────────────────────────────────────── */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(217,119,6,0.1), rgba(245,158,11,0.08));
  border: 1px solid var(--border);
  border-radius: 12px;
}

.price-badge .price-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.price-badge .price-value {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--amber);
}

.price-badge .price-hero-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: var(--amber);
  padding: 3px 8px;
  border-radius: 99px;
  margin-left: 4px;
}

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  margin: 24px 0 60px;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(252,211,77,0.06)),
              var(--cream-card);
}

.cta-banner h2 {
  margin: 0 0 12px;
  color: var(--near-black);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.cta-banner p {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────
   PROFILE / ABOUT
───────────────────────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.profile-photo {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-box {
  margin-top: 20px;
  padding: 22px;
  border-left: 3px solid var(--amber);
  border-radius: 0 14px 14px 0;
  background: var(--cream-alt);
  color: var(--text-secondary);
  font-style: italic;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid rgba(217, 119, 6, 0.15);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.4);
  flex-shrink: 0;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-tagline {
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-contact span {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(217, 119, 6, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--amber);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid,
  .profile-grid,
  .example-panel,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .page-hero {
    padding-top: 64px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card,
  .section-card,
  .profile-card,
  .example-panel,
  .cta-banner {
    padding: 22px;
  }

  .page-title {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }
}
