:root {
  --espresso: #291203;
  --orange: #FF6600;
  --amber: #FF8533;

  --bg: #FFFFFF;
  --surface: #F5EFE8;
  --surface-featured: #FFF3EA;
  --text: #291203;
  --text-muted: #7A5240;
  --border: rgba(41, 18, 3, 0.1);
  --border-strong: rgba(41, 18, 3, 0.2);

  --font-display: 'Futura', 'Century Gothic', 'Trebuchet MS', 'Lucida Sans Unicode', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED CONTAINER ── */
.container {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: auto;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-link:hover { color: var(--orange); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-decoration: none;
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 0.5em 1.25em;
  transition: background 0.18s, color 0.18s;
}
.nav-cta:hover { background: var(--orange); color: #fff; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--espresso);
  padding-top: clamp(4rem, 8vh, 8rem);
  padding-bottom: clamp(3rem, 6vh, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(41,18,3,0.92) 30%, rgba(41,18,3,0.55) 65%, rgba(41,18,3,0.25));
  pointer-events: none;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-heading .l-outline {
  display: inline;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.75);
  color: transparent;
}

.hero-heading .l-solid {
  display: inline;
  color: #fff;
}

.hero-heading .l-orange {
  display: inline;
  color: var(--orange);
}

.accent-bar {
  width: 64px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

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

.btn-primary {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--orange);
  text-decoration: none;
  padding: 0.8em 2em;
  border: 1px solid var(--orange);
  transition: background 0.18s, border-color 0.18s;
}
.btn-primary:hover { background: var(--amber); border-color: var(--amber); }

.btn-ghost {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  padding: 0.8em 2em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.18s;
}
.btn-ghost:hover { border-color: #fff; }

/* ── SERVICES ── */
.services {
  background: var(--bg);
}

.services-intro {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0;
  text-align: center;
}

.services-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.services-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.7;
  margin: 0 auto;
}

/* ── TABS ── */
.tab-bar {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 2rem;
}
.tab-bar::-webkit-scrollbar { display: none; }

.tab-bar .container {
  display: flex;
  justify-content: center;
}

.tab {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ── PANELS ── */
.panel { display: none; }
.panel.active { display: block; }

.panel .container {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.panel-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.panel-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.panel-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 480px;
  line-height: 1.65;
}

/* ── PACKAGE CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.card {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(41, 18, 3, 0.06);
  position: relative;
}

.card.featured {
  background: var(--bg);
  border: 2px solid var(--orange);
  box-shadow: 0 6px 28px rgba(255, 102, 0, 0.13);
  padding-top: 2.75rem;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--orange);
  padding: 0.35em 1.1em;
  border-radius: 20px;
  white-space: nowrap;
}

.card-tier {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.card-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.card-price {
  margin-bottom: 1rem;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.card.featured .price-amount { color: var(--orange); }

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.feature-list li:last-child { border-bottom: none; }

.check {
  color: var(--orange);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-weight: 700;
}

.card-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 1.7em 1.5em;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  margin-top: auto;
}
.card-cta:hover { border-color: var(--orange); color: var(--orange); }

.card.featured .card-cta {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  border-radius: 8px;
}
.card.featured .card-cta:hover { background: var(--amber); border-color: var(--amber); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
  text-wrap: balance;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.65;
  margin-top: 0.75rem;
}

.btn-dark {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: #fff;
  text-decoration: none;
  padding: 1em 2.5em;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.btn-dark:hover { background: var(--espresso); color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img { height: 28px; width: auto; }

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--orange); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-heading { font-size: clamp(2.5rem, 14vw, 100px); }
  .tab { padding: 1rem 1rem; font-size: 0.65rem; }
  footer .container { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
