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

:root {
  --bg: #faf6f0;
  --bg-alt: #f0ebe2;
  --surface: #ffffff;
  --ink: #0e0e0e;
  --ink-mid: #3a3530;
  --ink-light: #6b635a;
  --ink-faint: #9e9488;
  --accent: #d4622a;
  --accent-hover: #b8531e;
  --accent-dim: rgba(212,98,42,0.08);
  --border: #e4ddd3;
  --shadow: rgba(14,14,14,0.06);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --max-w: 1200px;
  --section-pad: 96px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

em { font-style: italic; color: var(--accent); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; gap: 10px; max-width: var(--max-w); margin: 0 auto; }

.nav-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  border-radius: 6px;
}

.nav-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,98,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {}

.hero-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero Visual — Desk Illustration */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.desk-illustration { position: relative; }

.desk-frame {
  background: linear-gradient(145deg, #f5ede2, #ede3d5);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px 20px;
  width: 100%;
  max-width: 380px;
  box-shadow:
    0 2px 8px var(--shadow),
    0 24px 48px rgba(14,14,14,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.desk-surface { background: #fff; border-radius: 10px; padding: 20px; min-height: 240px; position: relative; }

.desk-items { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }

/* Diary */
.diary {
  grid-column: 1; grid-row: 1;
  background: var(--ink);
  border-radius: 6px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.diary-line { height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; }
.diary-line--short { width: 60%; }
.diary-line--medium { width: 80%; }

/* Laptop */
.laptop {
  grid-column: 2 / 4; grid-row: 1;
  background: #e8e2d9;
  border-radius: 8px;
  padding: 12px 12px 0;
  display: flex;
  flex-direction: column;
}
.laptop-screen {
  background: var(--ink);
  border-radius: 5px 5px 0 0;
  padding: 12px;
}
.screen-lines { display: flex; flex-direction: column; gap: 5px; }
.screen-line { height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.screen-line--accent { background: rgba(212,98,42,0.7); }
.screen-line--short { width: 60%; }
.laptop-base {
  height: 6px;
  background: #d5cec3;
  border-radius: 0 0 3px 3px;
  margin: 0 4px;
}

/* Plant */
.plant {
  grid-column: 1; grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.plant-pot {
  width: 28px; height: 18px;
  background: #c4936a;
  border-radius: 3px 3px 5px 5px;
}
.plant-leaf {
  width: 18px; height: 22px;
  border-radius: 50% 50% 50% 50%;
  background: #6a9e6b;
  margin-top: -4px;
}
.plant-leaf--1 { transform: rotate(-15deg); }
.plant-leaf--2 { transform: rotate(0deg); height: 28px; }
.plant-leaf--3 { transform: rotate(15deg); }

/* Mug */
.mug {
  grid-column: 2; grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mug-body {
  width: 22px; height: 20px;
  background: #f5f0ea;
  border-radius: 3px 3px 4px 4px;
  border: 1.5px solid var(--border);
}
.mug-steam {
  width: 14px; height: 12px;
  border: 1px dashed rgba(180,170,155,0.5);
  border-radius: 50%;
  margin-top: 2px;
}

/* Clipboard */
.clipboard {
  grid-column: 3; grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clipboard-board {
  width: 32px; height: 40px;
  background: #f5ede2;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 5px;
}
.clipboard-clip {
  width: 16px; height: 6px;
  background: #c4b8a8;
  border-radius: 2px;
  margin-bottom: -1px;
}
.clipboard-lines { display: flex; flex-direction: column; gap: 3px; }
.cb-line { height: 3px; background: #ddd5c8; border-radius: 1px; }
.cb-line--done { background: var(--accent); opacity: 0.5; }

/* Pencil set */
.pencil-set {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex; gap: 4px;
}
.pencil {
  width: 4px; height: 28px;
  border-radius: 1px 1px 2px 2px;
}
.pencil-1 { background: var(--accent); }
.pencil-2 { background: var(--ink-light); }

/* Coffee stain */
.coffee-stain {
  position: absolute;
  bottom: 12px; left: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(180,160,130,0.25);
  background: transparent;
}

.desk-shadow {
  height: 8px;
  background: linear-gradient(to bottom, rgba(14,14,14,0.06), transparent);
  border-radius: 0 0 12px 12px;
  margin-top: 8px;
}

.desk-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(212,98,42,0.12) 0%, transparent 70%);
  filter: blur(8px);
}

/* Floating tags */
.floating-tags { position: absolute; inset: 0; pointer-events: none; }

.tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 10px; font-weight: 500;
  color: var(--ink-mid);
  white-space: nowrap;
  box-shadow: 0 2px 8px var(--shadow);
}
.tag-1 { top: -10px; right: -20px; }
.tag-2 { top: 40%; right: -30px; }
.tag-3 { bottom: 20%; right: -25px; }
.tag-4 { bottom: 5%; left: -25px; }
.tag-5 { top: 30%; left: -30px; }

/* Hero Stats */
.hero-stats {
  max-width: var(--max-w);
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat {}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px; color: var(--ink-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* === MANIFESTO === */
.manifesto {
  padding: var(--section-pad) 40px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.manifesto-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }

.manifesto-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: #f5ede0;
  line-height: 1.4;
  max-width: 800px;
}

.manifesto-text .highlight {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.manifesto-bg-art {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.art-circle {
  border-radius: 50%;
  border: 1px solid rgba(212,98,42,0.15);
  position: absolute;
}
.art-circle--1 { width: 400px; height: 400px; top: -200px; right: 0; }
.art-circle--2 { width: 250px; height: 250px; top: -125px; right: 75px; border-color: rgba(212,98,42,0.08); }

.art-cross {
  position: absolute;
  top: -40px; right: 140px;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(212,98,42,0.3), transparent);
}

/* === SERVICES === */
.services {
  padding: var(--section-pad) 40px;
  background: var(--bg);
}

.services-header {
  max-width: var(--max-w);
  margin: 0 auto 72px;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: #fdfcfa; }

.service-card--featured {
  grid-column: 1;
  background: var(--ink);
  color: var(--bg);
}

.service-card--featured .sc-number { color: rgba(250,246,240,0.25); }
.service-card--featured .sc-title { color: #f5ede0; }
.service-card--featured .sc-desc { color: rgba(245,237,224,0.65); }
.service-card--featured .sc-includes li { color: rgba(245,237,224,0.6); }
.service-card--featured .sc-price { color: var(--accent); }

.sc-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.sc-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sc-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 24px;
}

.sc-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.sc-includes li {
  font-size: 13px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}

.sc-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 1px;
  background: var(--accent);
}

.sc-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-faint);
}

/* === PROCESS === */
.process {
  padding: var(--section-pad) 40px;
  background: var(--bg-alt);
}

.process-header {
  max-width: var(--max-w);
  margin: 0 auto 80px;
}

.process-timeline {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 22px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.ts-marker { position: relative; z-index: 1; margin-bottom: 28px; }

.ts-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--ink-faint);
  margin: 0 auto;
}
.ts-dot--active { border-color: var(--ink); }
.ts-dot--accent { border-color: var(--accent); }

.ts-content {}

.ts-week {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.ts-title {
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ts-desc {
  font-size: 14px; color: var(--ink-light);
  line-height: 1.65;
}

/* === PRINCIPLES === */
.principles {
  padding: var(--section-pad) 40px;
  background: var(--bg);
}

.principles-header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
}

.principles-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.principle {}

.principle-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.principle-title {
  font-size: 18px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.principle-text {
  font-size: 14px; color: var(--ink-light);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 140px 40px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,98,42,0.12);
  border: 1px solid rgba(212,98,42,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 36px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.closing-badge span {
  font-size: 12px; font-weight: 500;
  color: #e8a070;
  letter-spacing: 0.05em;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #f5ede0;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 17px;
  color: rgba(245,237,224,0.55);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.closing-vision {
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.closing-vision p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(245,237,224,0.35);
  line-height: 1.6;
}

.closing-bg { position: absolute; inset: 0; pointer-events: none; }

.closing-orb {
  border-radius: 50%;
  position: absolute;
}

.closing-orb--1 {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,98,42,0.06) 0%, transparent 60%);
}

.closing-orb--2 {
  width: 400px; height: 400px;
  top: 20%; right: 10%;
  background: radial-gradient(circle, rgba(212,98,42,0.04) 0%, transparent 70%);
}

.closing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* === FOOTER === */
.footer {
  padding: 64px 40px;
  background: #080808;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  border-radius: 5px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: #f5ede0;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245,237,224,0.4);
  margin-bottom: 24px;
}

.footer-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(245,237,224,0.3);
  margin-bottom: 12px;
}

.footer-sep { color: rgba(245,237,224,0.2); }

.footer-copy {
  font-size: 11px; color: rgba(245,237,224,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: 1 / -1; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 24px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline-line { display: none; }

  .manifesto, .services, .process, .principles, .closing, .footer { padding-left: 24px; padding-right: 24px; }

  .nav { padding: 16px 24px; }

  .section-title br { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
}