/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #faf9f7;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c07a3a;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: #555;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: #c07a3a;
  color: #fff;
  border-color: #c07a3a;
}
.btn-primary:hover { background: #a0622e; border-color: #a0622e; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-secondary:hover { background: #1a1a1a; color: #fff; }
.btn-outline {
  background: transparent;
  color: #c07a3a;
  border-color: #c07a3a;
}
.btn-outline:hover { background: #c07a3a; color: #fff; }
.btn-cafe-cta {
  background: #2d6a4f;
  color: #fff;
  border-color: #2d6a4f;
}
.btn-cafe-cta:hover { background: #1b4332; border-color: #1b4332; transform: translateY(-1px); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e4de;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.logo-mark { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #444;
  transition: color 0.15s;
}
.nav-links a:hover { color: #c07a3a; }

/* ===== LANG TOGGLE ===== */
.lang-btn {
  background: none;
  border: 1px solid #d4cfc7;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #888;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.lang-btn:hover { border-color: #c07a3a; color: #c07a3a; }
.lang-active {
  color: #c07a3a !important;
  border-color: #c07a3a !important;
}
.nav-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.lang-sep { color: #ccc; }

/* ===== TAGLINE BAND ===== */
.tagline-band {
  background: #1a1a1a;
  color: #c07a3a;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ===== DUAL HERO ===== */
.hero-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}
.hero-brand {
  background: #faf9f7;
  border-right: 1px solid #e8e4de;
}
.hero-cafe {
  background: #1a1a1a;
  color: #fff;
}
.hero-cafe .hero-sub { color: #aaa; }
.hero-cafe .hero-body { color: #888; }
.hero-side-inner {
  max-width: 440px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}
.hero-badge-brand {
  background: #f0ebe2;
  color: #8b6914;
}
.hero-badge-cafe {
  background: rgba(45, 106, 79, 0.2);
  color: #74c69d;
  border: 1px solid rgba(116, 198, 157, 0.3);
}
.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero-cafe .hero-headline { color: #fff; }
.hero-sub {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.hero-body {
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cafe .hero-body { color: #888; }
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-cafe .hero-ctas .btn-secondary {
  color: #fff;
  border-color: #555;
}
.hero-cafe .hero-ctas .btn-secondary:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

/* ===== DIRECTORY ===== */
.directory {
  background: #f0ebe2;
  padding: 5rem 1.5rem;
  text-align: center;
}
.directory-badge-row {
  margin-bottom: 1.5rem;
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #d4cfc7;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2d6a4f;
}
.directory .section-title { color: #1a1a1a; }
.directory .section-sub { margin: 0 auto 2rem; color: #666; max-width: 480px; }
.directory-areas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.areas-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}
.areas-list {
  font-size: 0.9375rem;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.directory-cta { margin-top: 0; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.how-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 3rem;
}
.how-col-brand {
  background: #fff;
  border-right: 1px solid #e8e4de;
}
.how-col-cafe {
  background: #f8f6f2;
}
.how-col-inner {
  max-width: 400px;
  width: 100%;
}
.how-col .section-label { color: #888; }
.how-col .section-title { font-size: 1.75rem; color: #1a1a1a; }
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c07a3a;
  font-family: 'Inter', monospace;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.2rem;
  min-width: 28px;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 5rem 1.5rem;
  text-align: center;
  background: #fff;
}
.pricing .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.pricing-audience-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.disclaimer-box {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}
.disclaimer-box-inner {
  background: #fff8f0;
  border: 1.5px solid #f0d9b5;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.disclaimer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92400e;
  margin-bottom: 0.35rem;
}
.disclaimer-box-inner p {
  font-size: 0.875rem;
  color: #5c3a14;
  line-height: 1.55;
  margin: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.pricing-grid-brand { }
.pricing-card {
  background: #faf9f7;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #ece8e0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.pricing-featured {
  border: 2px solid #c07a3a;
  background: #faf6f0;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c07a3a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 1rem;
  letter-spacing: 0.05em;
}
.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 0.5rem;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.15rem; }
.price-currency { font-size: 1.5rem; font-weight: 600; color: #1a1a1a; }
.price-amount { font-size: 3rem; font-weight: 700; color: #1a1a1a; line-height: 1; }
.price-period { font-size: 0.9rem; color: #888; margin-left: 0.25rem; }
.pricing-desc { font-size: 0.875rem; color: #666; margin-bottom: 0.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin: 0.25rem 0 0.75rem; }
.pricing-features li {
  font-size: 0.875rem;
  color: #444;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c07a3a;
  font-weight: 700;
}

/* Café pricing block */
.pricing-cafe-block {
  max-width: 1100px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.pricing-cafe-earnings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.earnings-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #74c69d;
}
.earnings-split {
  font-size: 0.9rem;
  color: #888;
}
.pricing-cafe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 640px;
}
.pricing-cafe-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #ddd;
}
.cafe-feature-check {
  color: #74c69d;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: #f0ebe2;
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-inner { max-width: 540px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.cta-inner p { font-size: 1rem; color: #555; margin-bottom: 2rem; }
.cta-role-btns {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.role-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid #d4cfc7;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: #666;
}
.role-btn.active,
.role-btn:hover { color: #c07a3a; border-color: #c07a3a; }
.cta-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: flex; gap: 0.75rem; }
.cta-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid #d4cfc7;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.cta-form input:focus { border-color: #c07a3a; }
.form-note { font-size: 0.8125rem; color: #888; margin-top: 0.5rem; }
.form-success {
  background: #fff;
  border: 1px solid #c07a3a;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #c07a3a;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
  margin-bottom: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-brand .logo-mark { font-size: 1.75rem; padding-top: 0.1rem; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: #888;
  margin-top: 0.25rem;
  font-style: italic;
}
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: #aaa; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8125rem; color: #666; }
.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-lang-btn {
  background: none;
  border: 1px solid #444;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #666;
  transition: all 0.15s;
}
.footer-lang-btn:hover { border-color: #c07a3a; color: #c07a3a; }
.footer-lang-btn.lang-active { color: #c07a3a; border-color: #c07a3a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-dual { grid-template-columns: 1fr; }
  .hero-side { padding: 3rem 1.5rem; }
  .hero-headline { font-size: 2.25rem; }
  .how-it-works { grid-template-columns: 1fr; }
  .how-col { padding: 3rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .directory-areas { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}