:root {
  --bg: #FAF8F5;
  --ink: #1C1917;
  --muted: #6B6460;
  --accent: #C4603A;
  --sage: #7A9E7E;
  --surface: #F2EEE9;
  --border: #E2DED8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius: 4px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background: var(--accent);
  color: white;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  color: var(--accent);
  font-size: 0.8rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink); }

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* HERO */
.hero {
  padding: var(--space-xl) 2rem var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}
.btn-primary:hover {
  background: #b0522e;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
}
.browser-frame {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(28, 25, 23, 0.12), 0 4px 16px rgba(28, 25, 23, 0.06);
  overflow: hidden;
  border: 1px solid var(--border);
}
.browser-bar {
  background: var(--surface);
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.dot:first-child { background: #ff5f57; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #28c840; }
.browser-content {
  padding: 1.5rem;
}
.template-preview { display: flex; flex-direction: column; gap: 0.75rem; }
.tp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.tp-logo {
  width: 60px; height: 14px;
  background: var(--ink);
  border-radius: 3px;
}
.tp-links { display: flex; gap: 0.5rem; }
.tp-link { width: 40px; height: 8px; background: var(--border); border-radius: 2px; }
.tp-hero-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: 6px;
  padding: 0.75rem;
}
.tp-headline-block { display: flex; flex-direction: column; gap: 0.4rem; justify-content: center; }
.tp-h1 { height: 18px; width: 85%; background: var(--ink); border-radius: 3px; }
.tp-h2 { height: 10px; width: 60%; background: var(--muted); border-radius: 2px; }
.tp-cta { height: 20px; width: 70%; background: var(--accent); border-radius: 3px; margin-top: 0.5rem; }
.tp-img-block {
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, #e8896a 50%, var(--sage) 100%);
  border-radius: 4px;
}
.tp-features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.tp-card { height: 48px; background: var(--border); border-radius: 4px; }

.price-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  box-shadow: 0 4px 16px rgba(28,25,23,0.2);
}
.price-from {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 300;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  padding: 2rem 2.5rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* WHO FOR */
.who-for {
  background: var(--ink);
  padding: var(--space-xl) 2rem;
}
.who-for-inner { max-width: 1200px; margin: 0 auto; }
.who-for-header { margin-bottom: 3rem; }
.who-for-header .section-label { color: var(--sage); }
.who-for-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.persona-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.persona-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.persona-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.persona-icon svg { width: 100%; height: 100%; }
.persona-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}
.persona-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* FEATURES */
.features { padding: var(--space-xl) 2rem; }
.features-inner { max-width: 900px; margin: 0 auto; }
.features-header { margin-bottom: 3.5rem; }
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.features-list { display: flex; flex-direction: column; gap: 0; }
.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.feature-row:first-child { border-top: 1px solid var(--border); }
.feature-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
}
.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.feature-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* GALLERY */
.gallery {
  padding: var(--space-xl) 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header { margin-bottom: 3rem; }
.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.gallery-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.category-block { display: flex; flex-direction: column; gap: 1rem; }
.category-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.cat-icon { color: var(--accent); font-size: 0.5rem; }
.template-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.template-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.template-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28,25,23,0.1);
}
.tc-screenshot {
  height: 140px;
  position: relative;
  overflow: hidden;
}
.tc-restaurant-a { background: linear-gradient(160deg, #1a1210 0%, #c4603a 100%); }
.tc-restaurant-b { background: linear-gradient(135deg, #2d1f1a 0%, #7a9e7e 100%); }
.tc-restaurant-c { background: linear-gradient(135deg, #0f1a2e 0%, #d4a853 100%); }
.tc-salon-a { background: linear-gradient(135deg, #2a1f28 0%, #c47a8a 100%); }
.tc-salon-b { background: linear-gradient(135deg, #1f2a24 0%, #9ec87a 100%); }
.tc-service-a { background: linear-gradient(135deg, #1a1f2e 0%, #4a7ab8 100%); }
.tc-service-b { background: linear-gradient(135deg, #2e1a1a 0%, #b8844a 100%); }
.tc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.tc-preview-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.tc-info {
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tc-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.tc-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.gallery-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.gallery-cta p { color: var(--muted); font-size: 0.9rem; }

/* MANIFESTO */
.manifesto {
  padding: var(--space-xl) 2rem;
  background: var(--bg);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  margin-bottom: 4rem;
  padding-left: 2rem;
  border-left: 4px solid var(--accent);
}
.manifesto-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
}
.manifesto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.manifesto-why h2, .manifesto-how h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.manifesto-why p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.manifesto-why p:last-child { margin-bottom: 0; }
.how-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.how-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step strong { font-size: 0.9rem; color: var(--ink); margin-bottom: 0.2rem; display: block; }
.how-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* CLOSING */
.closing {
  padding: var(--space-xl) 2rem;
  background: var(--ink);
}
.closing-inner { max-width: 1000px; margin: 0 auto; }
.closing-headline {
  text-align: center;
  margin-bottom: 2rem;
}
.closing-headline p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.closing-sub {
  font-style: italic;
  color: var(--accent) !important;
  margin-top: 0.5rem;
}
.closing-promise {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.closing-promise p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.closing-prices {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.price-tier {
  flex: 1;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-tier:first-child {
  border-radius: 10px 0 0 10px;
  background: rgba(196,96,58,0.15);
  border-color: rgba(196,96,58,0.3);
}
.price-tier:last-child {
  border-radius: 0 10px 10px 0;
}
.price-tier-divider { width: 1px; background: rgba(255,255,255,0.1); }
.tier-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.tier-price { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: white; }
.tier-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--ink); }
.footer-copy p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.footer-legal { opacity: 0.6; margin-top: 0.25rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .who-for-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-categories { grid-template-columns: 1fr; }
  .manifesto-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing-prices { flex-direction: column; }
  .price-tier:first-child { border-radius: 10px; }
  .price-tier:last-child { border-radius: 10px; }
  .price-tier-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .feature-row { grid-template-columns: 50px 1fr; gap: 1rem; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: var(--space-lg) 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { padding: 1.5rem; }
  .tp-features-row { grid-template-columns: repeat(3, 1fr); }
  .closing-prices { gap: 1rem; }
  .price-tier { padding: 1.5rem; }
}