/* ---------- tokens ---------- */
:root{
  --surface: #FFFFFF;
  --page: #F5F6F7;
  --ink: #FFFFFF;
  --ink-deep: #5C7282;
  --paper: #F5F6F7;
  --paper-text: #16181A;
  --text: #16181A;
  --text-dim: #55606A;
  --gold: #E6AC35;
  --gold-deep: #C9922A;
  --rust: #5C7282;
  --line-on-ink: rgba(22,24,26,0.12);
  --line-on-paper: rgba(22,24,26,0.12);

  --font-head: "Roboto Slab", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

p{ margin: 0 0 1em; }

a{ color: inherit; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus{ left: 12px; top: 12px; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-block;
  padding: 13px 24px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn-gold{
  background: var(--gold);
  color: #1A1400;
}
.btn-gold:hover{ background: var(--gold-deep); }

.btn-outline{
  background: transparent;
  border-color: rgba(22,24,26,0.28);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--gold-deep); }

.btn-small{ padding: 9px 18px; font-size: 14px; }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line-on-ink);
}
.header-row{
  display: flex;
  align-items: center;
  gap: 28px;
  height: 84px;
}
.logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img{
  height: 52px;
  width: auto;
  display: block;
}

.main-nav{
  display: flex;
  gap: 26px;
  margin-right: auto;
}
.main-nav a{
  text-decoration: none;
  font-size: 15px;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.main-nav a:hover{ color: var(--text); }

.header-row > .btn{ margin-left: 0; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span{
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* ---------- hero ---------- */
.hero{
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--line-on-ink);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow{
  color: var(--rust);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero h1{
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 22px;
}
.hero-lede{
  font-size: 18px;
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tag{
  display: flex;
  justify-content: center;
}
.tag-svg{
  width: 100%;
  max-width: 240px;
  height: auto;
  animation: tag-in 900ms ease-out both;
}
@keyframes tag-in{
  from{ opacity: 0; transform: scale(0.85) rotate(-6deg); }
  to{ opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ---------- about ---------- */
.about{ padding: 76px 0; border-bottom: 1px solid var(--line-on-ink); }
.about-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.about-lead{
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  max-width: 20ch;
  margin: 0;
}
.about-body p{
  color: var(--text-dim);
  font-size: 16px;
  max-width: 56ch;
}
.about-body p:last-child{ margin-bottom: 0; }

/* ---------- work ---------- */
.work{ padding: 88px 0; border-bottom: 1px solid var(--line-on-ink); }
.work h2{ font-size: 1.8rem; margin-bottom: 40px; }
.work-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-ink);
  border: 1px solid var(--line-on-ink);
}
.work-card{
  background: var(--surface);
  padding: 30px 26px;
}
.work-icon{
  width: 26px;
  height: 26px;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.work-tab{
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 16px;
  margin-bottom: 12px;
}
.work-card p:last-child{
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- process ---------- */
.process{ padding: 88px 0; border-bottom: 1px solid var(--line-on-ink); }
.process h2{ font-size: 1.8rem; margin-bottom: 44px; }
.process-flow{
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step{ flex: 1; }
.process-step h3{
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.process-step p{
  color: var(--text-dim);
  font-size: 15px;
  max-width: 32ch;
  margin-bottom: 0;
}
.process-line{
  height: 1px;
  background: var(--line-on-ink);
  margin: 16px 24px 0;
  flex: 0 0 40px;
  align-self: flex-start;
}

/* ---------- cta ---------- */
.cta{
  padding: 96px 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line-on-ink);
}
.cta-inner{ max-width: 620px; margin: 0 auto; }
.cta h2{ font-size: 2rem; }
.cta p{ color: var(--text-dim); font-size: 17px; }
.cta .hero-actions{ justify-content: center; margin: 26px 0 22px; }
.cta-note{ font-size: 14px; color: var(--text-dim); }
.cta-note a{ color: var(--gold-deep); text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer{
  background: var(--ink-deep);
  padding: 40px 0 0;
}
.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.footer-name{
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 17px;
  margin: 0 0 4px;
}
.footer-tagline{
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin: 0;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover{ color: var(--gold); }
.footer-row{
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 18px 0;
}
.footer-row p{ margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-tag{ order: -1; max-width: 160px; margin: 0 auto 12px; }
  .about-grid{ grid-template-columns: 1fr; gap: 18px; }
  .work-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-flow{ flex-direction: column; gap: 24px; }
  .process-line{ display: none; }
}

@media (max-width: 720px){
  .main-nav{ display: none; }
  .header-row > .btn-small{ display: none; }
  .nav-toggle{ display: flex; }

  .site-header.open .main-nav{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line-on-ink);
    gap: 16px;
  }
  .site-header.open .header-row > .btn-small{
    display: none;
  }
  .work-grid{ grid-template-columns: 1fr; }
  .hero{ padding: 64px 0 56px; }
  .about, .work, .process, .cta{ padding: 64px 0; }
}
