@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #0f0c08;
  --surface: #1a1410;
  --surface-2: #221c14;
  --accent: #f4a127;
  --accent-dim: rgba(244, 161, 39, 0.12);
  --text: #faf6f0;
  --text-2: #c8b8a4;
  --text-3: #8a7a6a;
  --border: #2e2418;
  --green: #4ade80;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(15,12,8,0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f0c08;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--accent-dim);
  border: 1px solid rgba(244, 161, 39, 0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── INSTAGRAM FEED MOCKUP ── */
.hero-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e8830a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: #0f0c08;
  flex-shrink: 0;
}
.feed-name {
  flex: 1;
}
.feed-handle {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.feed-tag {
  display: block;
  font-size: 11px;
  color: var(--green);
  margin-top: 1px;
}
.feed-check {
  flex-shrink: 0;
}

.feed-post {
  border-bottom: 1px solid var(--border);
}
.feed-post:last-of-type {
  border-bottom: none;
}
.feed-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.food-img-1 {
  background: linear-gradient(135deg, #2a1a0a 0%, #1a0f06 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 16px;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(244,161,39,0.15) 0%, transparent 70%),
    linear-gradient(135deg, #2a1a0a 0%, #1a0f06 100%);
}
.food-img-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244,161,39,0.3) 0%, transparent 60%);
}
.food-img-1::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(244,161,39,0.4) 0%, transparent 70%);
  top: 40%;
  left: 25%;
  border-radius: 50%;
  filter: blur(8px);
}
.food-img-2 {
  background: linear-gradient(135deg, #0a1a12 0%, #060e0a 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 16px;
  background-image:
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(74,222,128,0.12) 0%, transparent 70%),
    linear-gradient(135deg, #0a1a12 0%, #060e0a 100%);
}
.food-img-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 45%, rgba(74,222,128,0.2) 0%, transparent 50%);
}
.food-img-2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 90px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.25) 0%, transparent 70%);
  top: 30%;
  right: 30%;
  border-radius: 50%;
  filter: blur(6px);
}
.food-img-3 {
  background: linear-gradient(135deg, #1a100a 0%, #0f0a06 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 16px;
  background-image:
    radial-gradient(ellipse 60% 50% at 40% 50%, rgba(244,161,39,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #1a100a 0%, #0f0a06 100%);
}
.food-img-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 55%, rgba(244,161,39,0.25) 0%, transparent 55%);
}

.img-label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.6);
  color: var(--text-3);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  font-weight: 500;
}
.feed-caption {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.caption-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}
.caption-hashtags {
  font-size: 11px;
  color: var(--text-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feed-footer {
  padding: 12px 16px;
  text-align: center;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  background: var(--accent-dim);
}

/* ── PROOF ── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.proof-stat {
  text-align: center;
  padding: 0 40px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── FEATURES ── */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 64px;
  max-width: 640px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--surface-2);
}
.feature-card--main {
  grid-column: span 2;
}
.feature-card--accent {
  background: var(--accent-dim);
  border-color: rgba(244,161,39,0.2);
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}
.feature-detail {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  padding: 6px 12px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: inline-block;
}
.feature-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── PROCESS ── */
.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 100px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-connector {
  width: 60px;
  align-self: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-connector::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 300;
}

/* ── PRICING ── */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 100px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: var(--surface-2);
}
.pricing-popular {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--accent);
  color: #0f0c08;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
}
.pricing-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-3);
}
.pricing-for {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 32px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.pricing-compare {
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

/* ── CLOSING ── */
.closing {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}
.closing-mark {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
}
.footer-legal {
  font-size: 12px;
  color: var(--text-3);
  opacity: 0.6;
}

/* ── TIER 4 ── */
.tier4-block {
  margin-top: 48px;
}
.tier4-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.tier4-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #e8830a);
}
.tier4-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.tier4-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(244,161,39,0.2);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.tier4-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.tier4-price {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-align: right;
}
.tier4-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-3);
}
.tier4-subtitle {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
  font-style: italic;
}
.tier4-included {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.tier4-included span {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.tier4-included span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.tier4-extras {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.tier4-extras-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.tier4-extras-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tier4-extra-chip {
  background: var(--accent-dim);
  border: 1px solid rgba(244,161,39,0.2);
  color: var(--text-2);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
}
.tier4-extra-chip strong {
  color: var(--accent);
}
.tier4-note {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 24px;
}
.tier4-book-btn {
  display: inline-block;
  background: var(--accent);
  color: #0f0c08;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.tier4-book-btn:hover {
  opacity: 0.9;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--main {
    grid-column: span 1;
  }
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-divider { display: none; }
  .proof-stat { border-bottom: 1px solid var(--border); padding-bottom: 32px; }
  .proof-stat:last-child { border-bottom: none; }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .step-connector { display: none; }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .nav-tagline { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .features { padding: 60px 20px; }
  .process { padding: 0 20px 60px; }
  .pricing { padding: 0 20px 60px; }
  .closing-inner { padding: 60px 20px; }
  .proof-inner { padding: 40px 20px; }
  .nav-inner { padding: 14px 20px; }
}