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

:root {
  --charcoal:      #1a1a1f;
  --charcoal-soft: #2b2b32;
  --orange:        #b84012;
  --orange-bright: #c84d18;
  --olive:         #3a4a16;
  --olive-soft:    #586b2c;
  --tan:           #c5b6a4;
  --tan-pale:      #e7ded2;
  --paper:         #faf8f4;
  --paper-2:       #f1ece3;
  --ink-60:        #55555c;
  --line:          #ddd5c8;
  --radius:        4px;
}

html { scroll-behavior: smooth; }

/* ── PASSWORD GATE ── */

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: -.01em;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--orange);
  display: block;
}
.eyebrow.olive { color: var(--olive-soft); }

/* ── LAYOUT ── */
.page { display: none; animation: fade .35s ease; }
.page.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.4rem; }
.section { padding: 5rem 0; }
.section--tight { padding: 3.5rem 0; }
.bg-paper2 { background: var(--paper-2); }

/* ── WATERLINE DIVIDER ── */
.waterline {
  display: block;
  width: 100%;
  height: 48px;
}
.waterline.bg-paper2 { background: var(--paper-2); }

/* ── BUTTONS ── */
.btn {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-block;
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: .72rem 1.3rem;
  border-radius: var(--radius);
  transition: .18s;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 1px 0 #8c300c; }
.btn--primary:hover { background: var(--orange-bright); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: #fff; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: .65rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 46px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .3rem;
  list-style: none;
}
.nav__links button {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: .5rem .8rem;
  border-radius: var(--radius);
  transition: .18s;
}
.nav__links button:hover { color: var(--orange); background: var(--paper-2); }
.nav__links button.active { color: var(--orange); }
.nav__links button.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--orange);
  margin-top: 3px;
  border-radius: 2px;
}
.nav__cta { display: flex; gap: .6rem; align-items: center; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: .22s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav open state */
.nav__links.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250,248,244,.98);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.4rem 1.4rem;
  gap: .4rem;
  z-index: 49;
}
.nav__links.open li { width: 100%; }
.nav__links.open button { width: 100%; text-align: left; font-size: .94rem; padding: .6rem .8rem; }

/* ── HERO ── */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(58,74,22,.13), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding: 4.5rem 0 4rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); font-weight: 900; margin: .6rem 0 1rem; }
.hero h1 .accent { color: var(--orange); }
.hero__sub { font-size: 1.18rem; color: var(--ink-60); max-width: 34ch; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }

.page-h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; margin: .5rem 0 1rem; }

.hero__art {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__art-wrap { display: flex; flex-direction: column; gap: .75rem; }
.hero__caption {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--ink-60);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 .25rem;
}
.hero__caption-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
}

/* ── PLACEHOLDER (remove when real photos added) ── */
.placeholder {
  width: 100%;
  padding: .9rem 1.1rem;
  background: rgba(26,26,31,.45);
  color: #fff;
  font-size: .8rem;
  line-height: 1.45;
}
.placeholder b {
  font-family: 'Archivo', sans-serif;
  display: block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tan-pale);
  margin-top: 3px;
}

/* ── TRUST STRIP ── */
.trust { background: var(--charcoal); color: #fff; }
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.4rem;
  padding: 1rem 1.4rem;
}
.trust__item {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #efe9df;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── SECTION HEADS ── */
.head { max-width: 640px; margin-bottom: 2.6rem; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; margin: .6rem 0 .7rem; }
.head p { color: var(--ink-60); font-size: 1.08rem; }
.section-sub { max-width: 52ch; margin: 0 auto; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.step__n {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--tan);
  line-height: 1;
}
.step h3 { font-size: 1.22rem; font-weight: 800; margin: .5rem 0 .5rem; }
.step p { color: var(--ink-60); font-size: .98rem; }

/* ── BEFORE / AFTER ── */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.ba__card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.ba__card.before { background: linear-gradient(160deg, #6d7350, #4a5230); }
.ba__card.after  { background: linear-gradient(160deg, #d8d0c0, #b9ab94); }
.ba__tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  padding: .5rem .9rem;
  background: rgba(26,26,31,.55);
  width: 100%;
}
.ba__card.after .ba__tag { background: rgba(26,26,31,.4); }

/* ── SERVICE AREAS ── */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .5rem 1.1rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(184,64,18,.25), transparent 60%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; padding: 4rem 1.4rem; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: .7rem; }
.cta-band p { color: #cfc8bc; max-width: 46ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }

/* ── SERVICE CARDS ── */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: .18s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -16px rgba(26,26,31,.3);
  border-color: var(--tan);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { font-size: 1.28rem; font-weight: 800; margin-bottom: .5rem; }
.card p { color: var(--ink-60); font-size: .98rem; }
.card ul { list-style: none; margin-top: 1rem; font-size: .94rem; }
.card li { padding: .32rem 0 .32rem 1.4rem; position: relative; color: var(--charcoal-soft); }
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── SPLIT FEATURE ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__text .split-h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; margin: .5rem 0 .8rem; }
.split__text p { color: var(--ink-60); }
.split__art-wrap { display: flex; flex-direction: column; gap: .75rem; }
.split__art {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: linear-gradient(160deg, #e7ded2, #cabfa9);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.split__art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.feature-list { list-style: none; margin-top: 1.4rem; }
.feature-list li {
  padding: .55rem 0 .55rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  color: var(--charcoal-soft);
}
.feature-list li:last-child { border: none; }
.feature-list li b { font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--charcoal); }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .55rem;
  color: var(--orange);
  font-weight: 800;
  font-family: 'Archivo', sans-serif;
}

/* ── ABOUT ── */
.about-hero {
  background: linear-gradient(180deg, #fff, var(--paper));
  padding: 4rem 0 2rem;
}
.about-lead {
  font-size: 1.25rem;
  color: var(--charcoal);
  max-width: 60ch;
  font-weight: 500;
  margin-top: .6rem;
  line-height: 1.65;
}
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.founder__photo {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #d8d0c0, #b9ab94);
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__body { padding: 1.4rem 1.5rem; }
.founder__body h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.3rem; }
.founder__body .role {
  color: var(--orange);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: .3rem 0 .6rem;
}
.founder__body p { color: var(--ink-60); font-size: .98rem; }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 1rem; }
.value .bar { width: 38px; height: 3px; background: var(--orange); margin-bottom: 1rem; border-radius: 2px; }
.value h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: .4rem; }
.value p { color: var(--ink-60); font-size: .96rem; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem 1.9rem;
  box-shadow: 0 18px 50px -30px rgba(26,26,31,.5);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .97rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: .6rem .75rem;
  transition: .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  background: #fff;
}
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: .82rem; color: var(--ink-60); margin-top: .5rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-side h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.contact-line {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: none; }
.contact-line svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-line b { font-family: 'Archivo', sans-serif; font-weight: 700; display: block; font-size: .96rem; }
.contact-line span { color: var(--ink-60); font-size: .95rem; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); color: #cfc8bc; padding: 3.2rem 0 2rem; }
.footer__brand {
  margin-bottom: 1.2rem;
}
.footer__logo-img {
  height: 72px;
  width: auto;
  display: block;
  background: var(--paper);
  border-radius: 8px;
  padding: 8px 14px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  margin-bottom: .9rem;
}
.footer a, .footer p { color: #cfc8bc; font-size: .92rem; text-decoration: none; display: block; padding: .2rem 0; }
.footer a:hover { color: var(--orange-bright); }
.footer__bottom {
  border-top: 1px solid #33333b;
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  color: #8a8a92;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero__grid  { grid-template-columns: 1fr; }
  .hero__art   { aspect-ratio: 16/9; max-height: 260px; }
  .cards       { grid-template-columns: 1fr 1fr; }
  .split       { grid-template-columns: 1fr; }
  .split__art  { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links  { display: none; }
  .menu-toggle { display: flex; }
  .site-header { position: relative; } /* allow mobile nav to flow */
  .nav         { flex-wrap: wrap; }
  .steps       { grid-template-columns: 1fr; }
  .ba          { grid-template-columns: 1fr; }
  .founders    { grid-template-columns: 1fr; }
  .values      { grid-template-columns: 1fr; }
  .cards       { grid-template-columns: 1fr; }
  .row2        { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .section { padding: 3.5rem 0; }
  .trust__row  { gap: .7rem 1.4rem; }
  .hero__cta   { flex-direction: column; align-items: flex-start; }
}
