/* ===== Design tokens ===== */
:root {
  --orange-soda: #FA5B3D;   /* primary */
  --orange-soda-dark: #E04425;
  --orange-soft: #FFEDE7;
  --ink: #15110F;
  --ink-soft: #4b443f;
  --muted: #8a807a;
  --bg: #ffffff;
  --bg-alt: #fbf7f4;
  --line: #efe7e2;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -22px rgba(21, 17, 15, 0.28);
  --container: 1140px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-head: "Space Grotesk", var(--font-body);
}

/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-soda);
  margin-bottom: 14px;
}
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-lead { color: var(--ink-soft); margin-top: 16px; font-size: 1.08rem; }
.highlight { color: var(--orange-soda); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--orange-soda); color: #fff;
  box-shadow: 0 10px 26px -10px rgba(250, 91, 61, 0.7);
}
.btn-primary:hover { background: var(--orange-soda-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange-soda); color: var(--orange-soda); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  display: inline-block;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-weight: 600; color: var(--ink-soft); font-size: 0.97rem; }
.nav-links a:hover { color: var(--orange-soda); }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 110px 0 90px; background: var(--bg-alt); }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 22px; }
.hero-sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 56px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--ink); }
.stat span { color: var(--muted); font-size: 0.92rem; }
.hero-glow {
  position: absolute; top: -160px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(250,91,61,0.32), transparent 65%);
  border-radius: 50%; z-index: 1;
}

/* ===== Logos ===== */
.logos { padding: 40px 0; border-bottom: 1px solid var(--line); }
.logos-label { text-align: center; color: var(--muted); font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 44px; }
.logos-row span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #c3b9b2; }

/* ===== Services ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--orange-soft); color: var(--orange-soda); margin-bottom: 20px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); }

/* ===== Work ===== */
.work { background: var(--bg-alt); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work-item {
  background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.work-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-thumb { height: 200px; position: relative; }
.thumb-1 { background: linear-gradient(135deg, #FA5B3D, #ff9a76); }
.thumb-2 { background: linear-gradient(135deg, #2b2622, #5a504a); }
.thumb-3 { background: linear-gradient(135deg, #ffb199, #FA5B3D); }
.thumb-4 { background: linear-gradient(135deg, #3a322e, #FA5B3D); }
.work-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.9); color: var(--ink);
  font-size: 0.74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.work-body { padding: 24px 26px 28px; }
.work-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.work-body p { color: var(--ink-soft); margin-bottom: 16px; }
.work-metric { font-family: var(--font-head); font-weight: 700; color: var(--orange-soda); font-size: 1.1rem; }

/* ===== Process ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; counter-reset: step; }
.step { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line); position: relative; }
.step-num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--orange-soda); display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 20px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-text .btn { margin-top: 12px; }
.testimonial {
  background: var(--ink); color: #fff; padding: 40px; border-radius: var(--radius-lg);
  position: relative; box-shadow: var(--shadow);
}
.testimonial blockquote { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.45; margin-bottom: 24px; }
.testimonial figcaption strong { display: block; color: var(--orange-soda); }
.testimonial figcaption span { color: #bcb2ac; font-size: 0.92rem; }

/* ===== CTA ===== */
.cta { background: var(--bg-alt); }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: linear-gradient(135deg, var(--orange-soda), var(--orange-soda-dark));
  color: #fff; padding: 56px; border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -28px rgba(250,91,61,0.6);
}
.cta-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.cta-copy p { opacity: 0.92; }
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.14); border-radius: 14px; padding: 16px 18px;
}
.contact-ic {
  flex: none; width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: rgba(255,255,255,0.92); color: var(--orange-soda);
}
.contact-label {
  display: block; font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; opacity: 0.85; margin-bottom: 2px;
}
.contact-item a, .contact-item address {
  color: #fff; font-style: normal; font-weight: 600; font-size: 1.05rem; line-height: 1.4;
}
.contact-item a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cfc6bf; padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: #9a8f88; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-cols a { display: block; color: #b3a8a1; padding: 4px 0; font-size: 0.94rem; }
.footer-cols a:hover { color: var(--orange-soda); }
.footer-address { font-style: normal; color: #b3a8a1; font-size: 0.94rem; line-height: 1.7; margin-top: 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 0.88rem; color: #8a8079;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
}
.socials a:hover { background: var(--orange-soda); color: #fff; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; padding: 24px; border-bottom: 1px solid var(--line);
  }
  .section { padding: 64px 0; }
  .work-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-inner { padding: 36px 26px; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .logos-row { gap: 26px; }
}
