:root {
  --bg: #FDFAF7;
  --fg: #1C1714;
  --muted: #8C7B6B;
  --border: #E5DDD4;
  --accent: #C45C26;
  --warm: #E8905A;
  --sage: #7A9E7E;
  --terra: #C4785A;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.brand-mark-sm {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 14px;
  background: var(--warm);
  color: white;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  padding: 80px 64px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.proof-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 32px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #1C1714;
}

.trattoria-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2D1F14 0%, #1C1714 40%, #0F0D0B 100%);
}

/* String lights */
.scene-string-lights {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  height: 60px;
}

.string-wire {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.bulb {
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: #FFB74D;
  box-shadow: 0 0 12px 4px rgba(255, 183, 77, 0.6), 0 0 24px 8px rgba(255, 183, 77, 0.3);
  top: 0;
}

.bulb-1 { left: 8%; animation: flicker 3s ease-in-out infinite; }
.bulb-2 { left: 23%; animation: flicker 3.5s ease-in-out infinite 0.5s; }
.bulb-3 { left: 38%; animation: flicker 2.8s ease-in-out infinite 1s; }
.bulb-4 { left: 53%; animation: flicker 4s ease-in-out infinite 0.3s; }
.bulb-5 { left: 68%; animation: flicker 3.2s ease-in-out infinite 0.8s; }
.bulb-6 { left: 83%; animation: flicker 3.8s ease-in-out infinite 1.2s; }

@keyframes flicker {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px 4px rgba(255,183,77,0.6), 0 0 24px 8px rgba(255,183,77,0.3); }
  50% { opacity: 0.7; box-shadow: 0 0 6px 2px rgba(255,183,77,0.3), 0 0 12px 4px rgba(255,183,77,0.15); }
}

/* Scene table */
.scene-table {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}

.table-surface {
  position: relative;
  background: #8B6914;
  border-radius: 8px;
  padding: 20px;
  height: 160px;
}

.tablecloth {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    #F5F0E8 0px,
    #F5F0E8 12px,
    #E8D4BC 12px,
    #E8D4BC 24px
  );
  border-radius: 6px;
}

.plate {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  bottom: 30px;
}

.plate-1 { left: 24px; }
.plate-2 { right: 24px; }

.plate-inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E5DDD4;
}

.wine-bottle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottle-body {
  width: 22px;
  height: 40px;
  background: #2D5016;
  border-radius: 4px 4px 6px 6px;
}

.bottle-neck {
  width: 10px;
  height: 14px;
  background: #2D5016;
  border-radius: 2px 2px 0 0;
  margin-bottom: -2px;
}

.bottle-label {
  position: absolute;
  top: 18px;
  width: 16px;
  height: 12px;
  background: #F5E6C8;
  border-radius: 2px;
}

.wine-glass {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glass-1 { left: 90px; }
.glass-2 { right: 90px; }

.glass-bowl {
  width: 20px;
  height: 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.glass-stem {
  width: 2px;
  height: 18px;
  background: rgba(255,255,255,0.25);
}

.glass-base {
  width: 16px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

.wine-surface {
  position: absolute;
  top: 4px;
  left: 2px;
  right: 2px;
  height: 6px;
  background: #722F37;
  border-radius: 0 0 6px 6px;
}

.candle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 55px;
}

.candle-1 { left: 40%; }
.candle-2 { left: 60%; }

.candle-flame {
  width: 6px;
  height: 12px;
  background: radial-gradient(ellipse at bottom, #FFE066 0%, #FF8C00 60%, transparent 100%);
  border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
  animation: candleflicker 1.5s ease-in-out infinite alternate;
  margin-bottom: -2px;
}

.candle-body {
  width: 8px;
  height: 24px;
  background: #F5F0E8;
  border-radius: 2px;
}

@keyframes candleflicker {
  0% { transform: scaleX(1) scaleY(1); }
  100% { transform: scaleX(0.8) scaleY(0.9); }
}

.bread-basket {
  position: absolute;
  right: 80px;
  bottom: 60px;
  display: flex;
  gap: -6px;
}

.bread-roll {
  width: 20px;
  height: 16px;
  background: #D4A843;
  border-radius: 50%;
  margin-left: -4px;
  box-shadow: inset -3px -3px 4px rgba(0,0,0,0.15);
}

.bread-roll:first-child { margin-left: 0; }

.table-shadow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 12px;
  background: rgba(0,0,0,0.3);
  filter: blur(8px);
  border-radius: 50%;
}

/* Bokeh */
.scene-ambient {
  position: absolute;
  inset: 0;
}

.ambient-bokeh {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 183, 77, 0.08);
}

.bokeh-1 { width: 200px; height: 200px; top: 5%; right: -5%; animation: float 6s ease-in-out infinite; }
.bokeh-2 { width: 120px; height: 120px; top: 20%; left: 10%; animation: float 8s ease-in-out infinite 2s; }
.bokeh-3 { width: 80px; height: 80px; bottom: 15%; right: 20%; animation: float 5s ease-in-out infinite 1s; }
.bokeh-4 { width: 60px; height: 60px; bottom: 30%; left: 5%; animation: float 7s ease-in-out infinite 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

/* Wall */
.scene-wall {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(139,105,76,0.15) 100%);
}

.wall-bricks {
  position: absolute;
  top: 25%;
  right: 10%;
  opacity: 0.3;
}

.brick-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}

.brick {
  width: 28px;
  height: 14px;
  background: rgba(139,105,76,0.4);
  border-radius: 1px;
}

.brick-wide { width: 48px; }
.brick-narrow { width: 20px; }

.vine {
  position: absolute;
  top: 20%;
  right: 15%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vine-2 { right: 25%; top: 35%; }

.vine-leaf {
  width: 16px;
  height: 10px;
  background: rgba(122, 158, 126, 0.5);
  border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
}

.vine-stem {
  width: 2px;
  height: 30px;
  background: rgba(122, 158, 126, 0.3);
  margin-left: 7px;
}

/* PAIN SECTION */
.pain {
  padding: 80px 64px;
  background: var(--fg);
  color: white;
}

.pain-inner {
  max-width: 800px;
}

.pain-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  line-height: 1.4;
  color: #F5F0E8;
}

.quote-mark {
  font-size: 80px;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 16px;
  font-family: 'Fraunces', serif;
}

/* SERVICES */
.services {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 1100px;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: white;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(196, 92, 38, 0.08);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #FDFAF7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.service-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(196, 92, 38, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* PROCESS */
.process {
  padding: 96px 64px;
  background: #F7F1E8;
  border-bottom: 1px solid var(--border);
}

.process-inner {
  max-width: 1100px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

.process-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}

.process-card:last-child {
  border-right: none;
}

.process-number {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.process-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.process-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.process-emoji {
  margin-top: 20px;
}

.emoji-dot {
  width: 32px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.3;
}

.process-aside {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.aside-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.aside-attr {
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  opacity: 0.6;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 64px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-deco {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}

.manifesto-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 20px;
}

.manifesto-rule {
  width: 64px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 48px auto 0;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
  background: var(--fg);
  color: white;
}

.closing-inner {
  max-width: 800px;
}

.closing-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: #F5F0E8;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 560px;
}

.closing-detail {
  display: flex;
  align-items: center;
  gap: 0;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--warm);
}

.detail-sep {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.15);
  margin: 0 40px;
}

/* FOOTER */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 24px; }
  .hero-visual { height: 300px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { border-right: none; border-bottom: 1px solid var(--border); }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .pain { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-wrap: wrap; }
  .proof-divider { margin: 0 20px; }
  .closing-detail { flex-wrap: wrap; gap: 24px; }
  .detail-sep { display: none; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .proof-divider { display: none; }
  .hero-proof { flex-wrap: wrap; gap: 20px; }
  .proof-item { flex: 1 1 45%; }
}