*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0e0e0e;
  --white: #f6f4f0;
  --off: #eae7e1;
  --warm: #d6d0c6;
  --dim: #8c8578;
  --accent: #b8540c;
  --accent-hover: #d4680f;
  --forest: #2b4a3e;
  --heading: 'Source Serif 4', Georgia, serif;
  --text: 'Sora', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--text);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  mix-blend-mode: difference;
  transition: mix-blend-mode 0s;
}
.topbar.solid {
  mix-blend-mode: normal;
  background: var(--black);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.topbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.topbar-brand img {
  height: 36px;
  border-radius: 4px;
  transition: height 0.4s;
}
.topbar.solid .topbar-brand img { height: 30px; }
.topbar-nav { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.topbar-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.topbar-nav a:hover { opacity: 1; }
.topbar-nav .cta-link {
  opacity: 1;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(246,244,240,0.35);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s;
}
.topbar-nav .cta-link:hover { background: rgba(246,244,240,0.1); border-color: rgba(246,244,240,0.6); }

.burger {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 100;
}
.burger div { width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: 0.3s; border-radius: 1px; }
.burger.on div:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.on div:nth-child(2) { opacity: 0; }
.burger.on div:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-overlay {
  position: fixed; inset: 0; background: var(--black); z-index: 89;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mob-overlay.on { opacity: 1; pointer-events: auto; }
.mob-overlay a {
  font-family: var(--heading);
  font-size: 2.4rem;
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.mob-overlay a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh; min-height: 100svh;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--heading);
  font-size: clamp(8rem, 18vw, 22rem);
  color: rgba(246,244,240,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.hero h1 i { font-style: italic; }
.hero-sub {
  display: flex; gap: 4rem; align-items: flex-start;
}
.hero-sub p {
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--warm);
  font-weight: 300;
}
.hero-sub .hero-actions { display: flex; gap: 1rem; flex-shrink: 0; padding-top: 0.15rem; }
.btn-a {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-a:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-b {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(246,244,240,0.2);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: border-color 0.3s;
  white-space: nowrap;
}
.btn-b:hover { border-color: rgba(246,244,240,0.5); }

/* ── TICKER ── */
.ticker {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}
.ticker-item {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 3rem;
}
.ticker-item::after {
  content: '\2022';
  margin-left: 3rem;
  opacity: 0.4;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATS ROW ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--off);
}
.stat {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--off);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--heading);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  min-height: 80vh;
}
.about-left {
  background: var(--off);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-left .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.about-left h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 2rem;
}
.about-left h2 i { font-style: italic; }
.about-left p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #555;
  font-weight: 300;
  max-width: 440px;
}
.about-left p + p { margin-top: 1.2rem; }
.about-left blockquote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--black);
}
.about-right {
  background: var(--black);
  color: var(--white);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}
.about-right .logo-area {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 10px;
  display: inline-block;
  align-self: flex-start;
}
.about-right .logo-area img { height: 48px; border-radius: 4px; display: block; }
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
}
.pillar-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(184,84,12,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-size: 1rem;
  color: var(--accent);
}
.pillar h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.pillar p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--warm);
  font-weight: 300;
}

/* ── SERVICES ── */
.services-section { padding: 7rem 3rem; }
.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}
.services-top .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.services-top h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
}
.services-top p {
  max-width: 340px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--dim);
  font-weight: 300;
  text-align: right;
}
.svc-list { list-style: none; }
.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--off);
  align-items: start;
  transition: background 0.3s;
}
.svc-item:last-child { border-bottom: 1px solid var(--off); }
.svc-item:hover { background: var(--off); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.svc-num {
  font-family: var(--heading);
  font-size: 2.8rem;
  color: var(--off);
  line-height: 1;
  transition: color 0.3s;
}
.svc-item:hover .svc-num { color: var(--accent); }
.svc-title {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  padding-top: 0.3rem;
}
.svc-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--dim);
  font-weight: 300;
  padding-top: 0.3rem;
}

/* ── VALUES ── */
.values-section {
  background: var(--forest);
  color: var(--white);
  padding: 7rem 3rem;
}
.values-head {
  text-align: center;
  margin-bottom: 5rem;
}
.values-head .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,244,240,0.45);
  margin-bottom: 1rem;
}
.values-head h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246,244,240,0.08);
  max-width: 1100px;
  margin: 0 auto;
}
.val-cell {
  background: var(--forest);
  padding: 3rem 2.5rem;
  transition: background 0.4s;
}
.val-cell:hover { background: #345a4c; }
.val-cell h3 {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.val-cell p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(246,244,240,0.6);
  font-weight: 300;
}

/* ── PROCESS ── */
.process-section { padding: 7rem 3rem; }
.process-head {
  text-align: center;
  margin-bottom: 5rem;
}
.process-head .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.process-head h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--warm);
}
.step { text-align: center; position: relative; }
.step-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--dim);
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--black);
  color: var(--white);
  padding: 7rem 3rem;
}
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.contact-info h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.contact-info > p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--warm);
  font-weight: 300;
  margin-bottom: 3rem;
}
.c-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--warm);
  font-weight: 300;
}
.c-detail svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.c-form {
  background: rgba(246,244,240,0.04);
  border: 1px solid rgba(246,244,240,0.07);
  border-radius: 12px;
  padding: 2.5rem;
}
.c-form h3 {
  font-family: var(--heading);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(246,244,240,0.05);
  border: 1px solid rgba(246,244,240,0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--text);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,244,240,0.25); }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: none; height: 90px; }
.send-btn {
  width: 100%; padding: 1rem;
  background: var(--accent);
  color: var(--white);
  border: none; border-radius: 100px;
  font-family: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.send-btn:hover { background: var(--accent-hover); }
.send-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ── FOOTER ── */
.foot {
  background: var(--black);
  border-top: 1px solid rgba(246,244,240,0.06);
  padding: 2.5rem 3rem;
}
.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-brand { display: flex; align-items: center; text-decoration: none; }
.foot-brand img { height: 36px; border-radius: 4px; opacity: 0.7; transition: opacity 0.3s; }
.foot-brand:hover img { opacity: 1; }
.foot-copy {
  font-size: 0.72rem;
  color: var(--dim);
  font-weight: 300;
}
.foot-links { display: flex; gap: 2rem; list-style: none; }
.foot-links a {
  font-size: 0.72rem;
  color: var(--dim);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}
.foot-links a:hover { color: var(--white); }

/* ── FADE-IN ── */
.fi {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.fi.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .topbar-nav { display: none; }
  .burger { display: block; }
  .hero { padding: 0 2rem 4rem; }
  .hero-sub { flex-direction: column; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .about { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 4rem 2rem; }
  .services-section { padding: 5rem 2rem; }
  .services-top { flex-direction: column; align-items: flex-start; }
  .services-top p { text-align: left; }
  .svc-item { grid-template-columns: 50px 1fr; }
  .svc-desc { grid-column: 1 / -1; }
  .values-section { padding: 5rem 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .process-section { padding: 5rem 2rem; }
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps::before {
    top: 0; bottom: 0;
    left: 20px; right: auto;
    width: 1px; height: auto;
  }
  .step {
    text-align: left;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .step p { margin: 0; max-width: none; }
  .contact-section { padding: 5rem 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .row2 { grid-template-columns: 1fr; }
  .foot { padding: 2rem; }
  .foot-inner { flex-direction: column; text-align: center; }
}
