/* v2 */
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ── */
:root {
  --bg:           #ffffff;
  --bg-alt:       #f8fafc;
  --bg-footer:    #f1f5f9;
  --text:         #0f172a;
  --text-mid:     #475569;
  --text-light:   #64748b;
  --text-muted:   #94a3b8;
  --rule:         #e2e8f0;
  --rule-strong:  #cbd5e1;
  --accent:       #e8511a;
  --nav-dark:     #0f172a;

  --font-display: 'Calistoga', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-ui:      'Syne', system-ui, sans-serif;

  --max-w: 1160px;
  --pad-x: 40px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.header-logo {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.header-meta {
  text-align: center;
}

.header-descriptor {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover { color: var(--text); background: var(--bg-alt); }

.nav-cta {
  color: var(--bg);
  background: var(--nav-dark);
  margin-left: 6px;
}

.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ── Hero ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x) 72px;
}

.hero-inner { display: flex; flex-direction: column; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #fcd5c4;
  background: #fff8f6;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}

.hero-kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.025em;
  max-width: 640px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
}

.hero-heading em {
  font-style: italic;
  color: var(--text-mid);
}

.hero-body-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.3s;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.hero-body-sm {
  font-size: 16px;
  color: var(--text-light);
}

.hero-attrs {
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-alt);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.4s;
}

.hero-attr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
}

.hero-attr:last-child { border-bottom: none; }

.attr-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.attr-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--bg);
  background: var(--text);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.5s;
}

.hero-cta:hover { background: var(--accent); }

/* ── Hero image ── */
.hero-image-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  border-bottom: 1px solid var(--rule);
}

.hero-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ── Section label ── */
.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

/* ── Services ── */
.services-section {
  background: var(--bg-alt);
  padding: 72px var(--pad-x);
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.services-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}

.services-heading {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.15s, border-color 0.15s;
  cursor: default;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: var(--rule-strong);
}

.service-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--rule);
  margin-bottom: 16px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ── Engagement ── */
.engagement-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--pad-x);
  background: var(--bg);
}

.engagement-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.engagement-heading {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-top: 10px;
}

.engagement-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  max-width: 560px;
}

/* ── Contact ── */
.contact-section {
  background: var(--bg-alt);
  padding: 72px var(--pad-x);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
  margin-top: 10px;
  letter-spacing: -0.02em;
}

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

.contact-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
}

.contact-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  font-style: italic;
  transition: color 0.15s;
}

a.contact-value:hover { color: var(--accent); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--rule);
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-heading,
  .hero-body-row,
  .hero-attrs,
  .hero-cta { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  :root { --pad-x: 24px; }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-meta { display: none; }
  .header-nav { justify-content: flex-end; }

  .hero-body-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .engagement-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero { padding-top: 48px; }
  .hero-heading { font-size: 44px; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}
