@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&family=Archivo+Expanded:wght@600;700&display=swap');

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

:root{
  --black:      #141414;
  --charcoal:   #1C1C1C;
  --surface:    #262626;
  --ink:        #F2F2F2;
  --concrete:   #9A9DA2;
  --concrete-lt:#C7C9CC;
  --paper:      #191919;
  --paper-dk:   #202020;
  --white:      #FFFFFF;
  --wood:       #F22233;
  --wood-lt:    #BF8F65;
  --wood-dk:    #A62631;
  --line:       rgba(255,255,255,0.14);
  --line-dk:    rgba(255,255,255,0.10);

  --sans:  'Archivo', 'Inter', system-ui, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(24px, 6vw, 80px);
  --nav-h: 84px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

html{ scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body{
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; }
ul{ list-style: none; }

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

section{ position: relative; }
section[id]{ scroll-margin-top: 84px; }

/* ── Type ── */
h1,h2,h3,h4{
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 9px;
  background: var(--wood);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}
.eyebrow--light{ color: var(--wood); }
.eyebrow--dark{ color: var(--wood); }

.section-head{
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2{
  font-size: clamp(32px, 5vw, 56px);
  margin-top: 14px;
}
.section-head p{
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink);
  opacity: 0.72;
  max-width: 620px;
  text-transform: none;
  font-weight: 400;
}

.cut{
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

/* ── Buttons ── */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .35s var(--ease), background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn--wood{ background: var(--wood-lt); color: var(--black); }
.btn--wood:hover{ filter: brightness(1.12); }

.btn--line{ background: transparent; color: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.btn--line:hover{ box-shadow: inset 0 0 0 1px var(--white); }

.btn--line-dk{ background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-dk); }
.btn--line-dk:hover{ box-shadow: inset 0 0 0 1px var(--ink); }

/* ── Nav ── */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
}
.nav.scrolled{
  height: 68px;
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner{
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo{ width: 128px; color: var(--white); flex-shrink: 0; }
.nav__logo svg{ display:block; width:100%; height:auto; fill: currentColor; }

.nav__links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete-lt);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav__links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--wood);
  transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.active{ color: var(--white); }
.nav__links a.active::after{ width: 100%; }

.nav__cta{ display:flex; align-items:center; gap:14px; }
.nav__cta .btn{ padding: 9px 18px; font-size: 11px; gap: 8px; }

.nav__hamburger{
  display: none;
  width: 34px; height: 22px;
  position: relative;
  background: none; border: none;
}
.nav__hamburger span{
  position: absolute; left:0; right:0; height: 2px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.nav__hamburger span:nth-child(1){ top:0; }
.nav__hamburger span:nth-child(2){ top:50%; transform: translateY(-50%); }
.nav__hamburger span:nth-child(3){ bottom:0; }
.nav__hamburger.is-open span:nth-child(1){ top:50%; transform: translateY(-50%) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2){ opacity:0; }
.nav__hamburger.is-open span:nth-child(3){ bottom:50%; transform: translateY(50%) rotate(-45deg); }

.nav__mobile{
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 0 var(--gutter);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s ease, visibility 0s .5s;
}
.nav__mobile.open{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .5s var(--ease), opacity .4s ease;
}
.nav__mobile a{
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__mobile .btn{ margin-top: 10px; }

/* ── Hero ── */
.hero{
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero__watermark{
  position: absolute;
  top: 50%; right: -6%;
  transform: translateY(-50%);
  width: min(70vw, 1100px);
  color: var(--white);
  opacity: 0.05;
  pointer-events: none;
}
.hero__watermark svg{ width: 100%; height: auto; fill: currentColor; }

.hero__blueprint{
  position: absolute; inset: 0;
  color: var(--white);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
}
.hero__blueprint svg{ width: 100%; height: 100%; display: block; }

.hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
}
.hero__content{ max-width: 880px; }

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 0 0 1px var(--line);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero__badge span{
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--concrete-lt);
}
.hero__badge-sep{
  color: var(--concrete);
  opacity: 0.6;
  font-weight: 400;
}

.hero__headline{
  font-size: clamp(46px, 8vw, 104px);
  letter-spacing: -0.02em;
}
.hero__headline em{
  font-style: normal;
  color: var(--wood);
}

.hero__sub{
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--concrete-lt);
  font-weight: 400;
  text-transform: none;
  line-height: 1.7;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.scroll-cue{
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--concrete);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue__line{
  width: 1px; height: 46px;
  background: linear-gradient(var(--wood), transparent);
}

/* ── Mission strip ── */
.mission{
  background: var(--paper);
  padding: clamp(70px, 10vw, 130px) 0;
  border-bottom: 1px solid var(--line-dk);
}
.mission__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.mission p{
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.28;
  text-transform: none;
  letter-spacing: -0.01em;
}
.mission p span{ color: var(--wood); }

/* ── About / Founder ── */
.founder{
  background: var(--surface);
  padding: clamp(80px, 10vw, 140px) 0;
}
.founder .wrap{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.founder__card{
  position: sticky;
  top: 120px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.founder__photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}
.founder__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.founder__card-body{
  padding: 32px 36px 40px;
}
.founder__card h3{
  font-size: 24px;
  letter-spacing: -0.01em;
}
.founder__card .role{
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 700;
}
.founder__license{
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--concrete-lt);
  text-transform: none;
  line-height: 1.7;
}
.founder__license b{ display:block; color: var(--white); font-weight: 700; }

.founder__body p{
  font-size: 17px;
  color: var(--ink);
  text-transform: none;
  font-weight: 400;
  margin-bottom: 22px;
  opacity: 0.86;
}
.founder__body p:first-child{
  font-size: 21px;
  font-weight: 600;
  opacity: 1;
  line-height: 1.5;
}

.founder__quote{
  margin: 36px 0;
  padding: 28px 30px;
  background: var(--paper);
  border-left: 3px solid var(--wood);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: none;
  color: var(--ink);
}

.founder__meaning{
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line-dk);
}
.founder__meaning strong{
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--wood);
}
.founder__meaning span{
  font-size: 15px;
  text-transform: none;
  color: var(--ink);
  opacity: 0.75;
}

/* ── Services ── */
.services{
  background: var(--paper-dk);
  padding: clamp(80px, 10vw, 140px) 0;
}
.services__intro{
  font-size: 17px;
  max-width: 640px;
  text-transform: none;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 20px;
}
.services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dk);
  margin-top: 56px;
  box-shadow: 0 0 0 1px var(--line-dk);
}
.service-card{
  background: var(--paper-dk);
  padding: 40px 34px 36px;
  transition: background .35s ease;
}
.service-card:hover{ background: var(--surface); }
.service-card__num{
  font-size: 13px;
  font-weight: 700;
  color: var(--wood);
  letter-spacing: 0.1em;
}
.service-card h3{
  margin-top: 18px;
  font-size: 23px;
  letter-spacing: -0.01em;
}
.service-card__list{
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li{
  font-size: 14.5px;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.78;
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before{
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--wood);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}
.service-card__notable{
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dk);
  font-size: 12.5px;
  text-transform: none;
  color: var(--ink);
  opacity: 0.65;
  line-height: 1.6;
}
.service-card__notable b{ opacity: 1; font-weight: 700; display:block; margin-bottom: 4px; text-transform: uppercase; font-size: 11px; letter-spacing: .08em; color: var(--wood); }

/* ── Values ── */
.values{
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.values .section-head p{ color: var(--concrete-lt); opacity: 1; }
.values__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px,3vw,40px);
  margin-top: 56px;
}
.value{
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.value__num{
  font-size: 13px;
  font-weight: 700;
  color: var(--wood);
  letter-spacing: 0.1em;
}
.value h3{
  margin-top: 16px;
  font-size: 20px;
}
.value p{
  margin-top: 12px;
  font-size: 14.5px;
  text-transform: none;
  font-weight: 400;
  color: var(--concrete-lt);
  line-height: 1.6;
}

/* ── Projects ── */
.projects{
  background: var(--surface);
  padding: clamp(80px, 10vw, 140px) 0;
}
.projects__list{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.project-row{
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dk);
  transition: padding-left .35s var(--ease);
}
.projects__list .project-row:last-child{ border-bottom: 1px solid var(--line-dk); }
.project-row:hover{ padding-left: 14px; }
.project-row__loc{
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--wood);
  font-weight: 700;
}
.project-row__title{
  font-size: clamp(19px, 2.4vw, 27px);
  letter-spacing: -0.01em;
}
.project-row__title span{
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.6;
}
.project-row__tag{
  justify-self: end;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--concrete);
  white-space: nowrap;
}

/* ── Service area ── */
.area{
  background: var(--paper-dk);
  padding: clamp(80px, 10vw, 140px) 0;
}
.area .wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.area__counties{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.county-pill{
  padding: 10px 18px;
  background: var(--surface);
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.area__cities{
  padding-top: 8px;
}
.area__cities .eyebrow{ margin-bottom: 18px; }
.area__cities p{
  font-size: 17px;
  text-transform: none;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.8;
}

/* ── CTA / Contact ── */
.contact{
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact .wrap{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.contact__head h2{
  font-size: clamp(34px, 5vw, 58px);
  margin-top: 14px;
}
.contact__head p{
  margin-top: 22px;
  font-size: 17px;
  text-transform: none;
  font-weight: 400;
  color: var(--concrete-lt);
  max-width: 440px;
}
.contact__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.contact__reach{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.contact__reach a{
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color .25s ease;
}
.contact__reach a:hover{ color: var(--wood); }
.contact__reach-sep{ color: var(--concrete); opacity: 0.6; }

.contact__license{
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--concrete);
}

.contact__photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.contact__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}

/* ── Footer ── */
.footer{
  background: var(--charcoal);
  color: var(--concrete-lt);
  padding: 64px 0 32px;
}
.footer__top{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer__logo{ width: 130px; color: var(--white); margin-bottom: 18px; }
.footer__logo svg{ width:100%; height:auto; fill: currentColor; }
.footer__tag{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 700;
}
.footer h4{
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links{ display:flex; flex-direction: column; gap: 12px; }
.footer__links a{ font-size: 14px; transition: color .25s ease; }
.footer__links a:hover{ color: var(--white); }
.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 12px;
  color: var(--concrete);
}

/* ── Fade up ── */
.fade-up{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.visible{ opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 980px){
  .nav__links, .nav__cta{ display: none; }
  .nav__hamburger{ display: block; }

  .founder .wrap, .area .wrap, .contact .wrap{ grid-template-columns: 1fr; }
  .founder__card{ position: static; }

  .services__grid{ grid-template-columns: 1fr; }
  .values__grid{ grid-template-columns: 1fr 1fr; }

  .project-row{ grid-template-columns: 1fr; gap: 8px; }
  .project-row__tag{ justify-self: start; }

  .contact__photo{ margin-top: 48px; max-width: 380px; }
}

@media (max-width: 480px){
  .contact__buttons .btn{ flex: 1 1 auto; }
}

@media (max-width: 560px){
  .values__grid{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr; gap: 30px; }
}
