/* ---------- Root design tokens ---------- */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --line: #eaeaea;
  --accent: #111111;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

/* Force light theme always - no dark mode */
html {
  color-scheme: light;
}

/* ---------- Base reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

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

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header ---------- */
.header { text-align: center; padding: 64px 0 40px; }
.logo-container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.logo-wrapper { display: grid; place-items: center; }
.logo { width: 450px; height: 450px; object-fit: contain; filter: drop-shadow(var(--shadow-sm)); }
.brand-name { font-size: 2.6rem; font-weight: 800; letter-spacing: 0.02em; text-transform: none; }

/* ---------- Hero ---------- */
.main-content { flex: 1; padding: 24px 0 0; }
.hero { text-align: center; margin: 0 auto 72px; max-width: 860px; }
.hero-headline { font-size: 3.4rem; line-height: 1.1; font-weight: 800; letter-spacing: -0.01em; }
.highlight-word { position: relative; display: inline-block; }
.highlight-word::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; background: rgba(0,0,0,0.08); border-radius: 6px; z-index: -1; }
.hero-subtitle { margin: 18px auto 28px; color: var(--muted); font-size: 1.2rem; max-width: 680px; font-weight: 400; }

/* CTA */
.hero-cta { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-button { display: inline-block; text-decoration: none; padding: 14px 22px; border-radius: 12px; font-weight: 600; transition: transform .15s ease, box-shadow .15s ease; }
.cta-button.primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.cta-button.secondary { background: var(--surface); color: var(--text); border: 1px solid var(--line); }
.cta-button:hover { transform: translateY(-2px); }
.cta-button.primary:hover { box-shadow: var(--shadow-lg); }
.cta-button.secondary:hover { background: rgba(0,0,0,0.02); }

/* ---------- Capabilities ---------- */
.capabilities { margin: 84px auto; max-width: 980px; }
.section-header { text-align: center; margin-bottom: 28px; }
.section-title { font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.capability-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.capability-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.capability-icon { font-size: 2rem; margin-bottom: 10px; }
.capability-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.capability-description { color: var(--muted); font-size: .98rem; }

/* ---------- Dividers ---------- */
.divider { text-align: center; margin: 64px 0; font-size: 1.4rem; color: var(--muted); letter-spacing: 0.5em; }

/* ---------- Philosophy ---------- */
.philosophy { margin: 64px 0; }
.philosophy-content { max-width: 860px; margin: 0 auto; }
.philosophy-headline { font-size: 1.8rem; line-height: 1.3; margin-bottom: 24px; font-weight: 800; text-align: center; }
.philosophy-list { list-style: none; max-width: 720px; margin: 0 auto; }
.philosophy-list li { margin-bottom: 16px; color: var(--muted); font-size: 1.05rem; line-height: 1.5; }
.philosophy-list li strong { color: var(--text); font-weight: 600; }

/* ---------- Work Section ---------- */
.work { margin: 64px 0; }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 920px; margin: 0 auto; }
.work-item { text-align: center; }
.work-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.work-description { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* ---------- Story Section ---------- */
.story { margin: 64px 0; }
.story-content { max-width: 720px; margin: 0 auto; text-align: center; }
.story-headline { font-size: 1.6rem; line-height: 1.3; margin-bottom: 16px; font-weight: 800; }
.story-text { color: var(--muted); font-size: 1.1rem; line-height: 1.6; }

/* ---------- Contact footer ---------- */
.contact-section { border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: auto; }
.contact-content { text-align: center; max-width: 900px; margin: 0 auto; }
.contact-headline { font-size: 1.6rem; font-weight: 800; }
.contact-subtitle { color: var(--muted); margin: 6px 0 18px; }
.contact-actions { display: flex; justify-content: center; margin-bottom: 18px; }
.contact-button { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); color: var(--text); text-decoration: none; transition: background .2s ease, transform .15s ease; box-shadow: var(--shadow-sm); }
.contact-button:hover { transform: translateY(-2px); background: rgba(0,0,0,0.035); }
.contact-icon { font-size: 1.1rem; }

.social-links { display: flex; justify-content: center; gap: 18px; margin: 18px 0 24px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--muted); border-radius: 50%; border: 1px solid var(--line); text-decoration: none; transition: color .2s ease, background-color .2s ease, transform .15s ease; }
.social-link:hover { color: var(--text); background-color: rgba(0,0,0,0.04); transform: translateY(-2px); }

.footer-note { color: var(--muted); font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-headline { font-size: 3rem; }
  .brand-name { font-size: 2.2rem; }
}

@media (max-width: 700px) {
  .logo { width: 300px; height: 300px; }
  .hero-headline { font-size: 2.4rem; }
  .philosophy-headline { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .page-wrapper { padding: 0 16px; }
  .header { padding: 44px 0 28px; }
  .logo { width: 250px; height: 250px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .work-grid { grid-template-columns: 1fr; }
  .divider { margin: 48px 0; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
