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

:root {
  --yellow:   #F4C542;
  --olive:    #6B8E23;
  --sage:     #A8B88A;
  --brown:    #7A4E2D;
  --dark:     #3D2B1F;
  --cream:    #FFF6DC;
  --orange:   #C96B2C;

  --text:     #3D2B1F;
  --text-mid: #7A4E2D;
  --bg:       #FFF6DC;

  --max: 1060px;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

a { text-decoration: none; color: inherit; }

/* ─── Layout helpers ────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--dark);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(61,43,31,0.25);
}
.btn-primary:hover {
  background: #2a1c12;
  box-shadow: 0 6px 20px rgba(61,43,31,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,107,44,0.3);
}
.btn-orange:hover {
  background: #b35a22;
  box-shadow: 0 6px 20px rgba(201,107,44,0.4);
}

/* ─── Nav ───────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,246,220,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,78,45,0.12);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.nav-logo span {
  color: var(--orange);
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 0;
  background: linear-gradient(135deg, #F4C542 0%, #C96B2C 55%, #3D2B1F 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,246,220,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(244,197,66,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 120px 32px 96px;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,246,220,0.75);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,246,220,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ─── Manifesto ─────────────────────────────────────────────────── */
.manifesto {
  background: #fff;
  border-bottom: 1px solid rgba(122,78,45,0.1);
}

.manifesto h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 28px;
}

.manifesto-lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.manifesto-questions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.manifesto-questions li {
  font-size: 1.05rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.manifesto-questions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.manifesto-close {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ─── Services ──────────────────────────────────────────────────── */
.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

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

.service-card {
  background: #fff;
  border: 1px solid rgba(122,78,45,0.1);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(61,43,31,0.1);
  transform: translateY(-3px);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.service-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.service-card .service-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 8px;
}

.service-list li {
  font-size: 0.9rem;
  color: #6b5a4e;
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--sage);
  font-size: 1.2em;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.88rem;
  padding: 10px 20px;
}

/* ─── How we work ───────────────────────────────────────────────── */
.how {
  background: #fff;
  border-top: 1px solid rgba(122,78,45,0.08);
  border-bottom: 1px solid rgba(122,78,45,0.08);
}

.how-header {
  margin-bottom: 56px;
}

.how-header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(122,78,45,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.how-card {
  background: #fff;
  padding: 40px;
}

.how-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.how-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── Details callout ───────────────────────────────────────────── */
.details {
  background: var(--cream);
  border-top: 1px solid rgba(122,78,45,0.08);
  border-bottom: 1px solid rgba(122,78,45,0.08);
}

.details-inner {
  max-width: 640px;
  margin: 0 auto;
}

.details h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 40px;
}

.details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid rgba(107,142,35,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.details-list li {
  font-size: 1rem;
  color: var(--text);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(107,142,35,0.15);
  position: relative;
  padding-left: 44px;
}

.details-list li:last-child { border-bottom: none; }

.details-list li::before {
  content: counter(detail-counter);
  counter-increment: detail-counter;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--olive);
  background: rgba(107,142,35,0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-list {
  counter-reset: detail-counter;
}

.details-close {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  padding-left: 4px;
}

/* ─── Work ──────────────────────────────────────────────────────── */
#work {
  background: #fff;
}

.work-header {
  margin-bottom: 48px;
}

.work-header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 10px;
}

.work-header p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.work-card {
  background: #fff;
  border: 1px solid rgba(122,78,45,0.1);
  border-radius: 14px;
  padding: 32px;
}

.work-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.work-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Who ───────────────────────────────────────────────────────── */
.who {
  background: var(--cream);
  border-top: 1px solid rgba(122,78,45,0.08);
}

.who-header {
  margin-bottom: 48px;
}

.who-header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

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

.who-card {
  background: var(--cream);
  border: 1px solid rgba(122,78,45,0.1);
  border-radius: 14px;
  padding: 32px;
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Better way ────────────────────────────────────────────────── */
.better {
  background: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(122,78,45,0.08);
}

.better-inner {
  max-width: 600px;
  margin: 0 auto;
}

.better h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

.better p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Final CTA ─────────────────────────────────────────────────── */
.final-cta {
  background: var(--cream);
  border-top: 1px solid rgba(122,78,45,0.1);
  padding: 96px 0;
}

.final-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  line-height: 1.15;
}

.final-cta-right p {
  font-size: 1rem;
  color: rgba(61,43,31,0.72);
  margin-bottom: 10px;
  line-height: 1.7;
}

.final-cta-right p strong {
  color: var(--dark);
}

.final-cta-right .btn {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,246,220,0.55);
  padding: 48px 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand span { color: var(--orange); }

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,246,220,0.4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,246,220,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-links a:hover { color: var(--yellow); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,246,220,0.3);
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .services-grid,
  .how-grid,
  .work-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 2.2rem; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
