/* ============ FONTS ============ */
@font-face { font-family:'Oswald'; src:url('fonts/Oswald.ttf'); font-weight:200 700; font-display:swap; }
@font-face { font-family:'Plex Mono'; src:url('fonts/PlexMono.ttf'); font-weight:700; font-display:swap; }
@font-face { font-family:'Plex Mono'; src:url('fonts/PlexMonoReg.ttf'); font-weight:500; font-display:swap; }
@font-face { font-family:'Source Serif'; src:url('fonts/SourceSerif.ttf'); font-weight:200 700; font-display:swap; }
@font-face { font-family:'Inter'; src:url('fonts/Inter.ttf'); font-weight:100 900; font-display:swap; }

/* ============ ROOT ============ */
:root{
  --ink:#1C2B3A;
  --ink-soft:#24374A;
  --paper:#F5F1E6;
  --paper-2:#EAE3D1;
  --text:#22303C;
  --red:#A8453A;
  --red-dim:#833831;
  --steel:#5C7488;
  --steel-light:#96ABB9;
  --border:#D8D0BC;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Source Serif', serif;
  color:var(--text);
  background:var(--paper);
  line-height:1.5;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }

.eyebrow{
  font-family:'Inter', sans-serif;
  font-weight:600;
  font-size:11px;
  letter-spacing:0.22em;
  text-transform:uppercase;
}

.section-title{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:clamp(28px,4vw,42px);
  text-transform:uppercase;
  letter-spacing:-0.01em;
  line-height:1.05;
}

.section{
  padding:90px 0;
}
.section.tight{ padding:64px 0; }

/* ============ NAV ============ */
.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  background:rgba(28,43,58,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:padding 0.2s ease;
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.nav-logo{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:17px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--paper);
}
.nav-logo span{ color:var(--red); }
.nav-links{
  display:flex; gap:34px; align-items:center;
  list-style:none;
}
.nav-links a{
  font-family:'Inter', sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--paper);
  opacity:0.82;
  transition:opacity 0.15s;
}
.nav-links a:hover{ opacity:1; }
.nav-cta{
  background:var(--red);
  color:var(--paper) !important;
  padding:10px 20px;
  border-radius:2px;
  opacity:1 !important;
}
.nav-ig{
  display:flex;
  align-items:center;
  opacity:0.82 !important;
}
.nav-ig:hover{ opacity:1 !important; }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  padding:8px;
}
.nav-toggle span{
  width:24px; height:2px; background:var(--paper);
}
.mobile-menu{
  display:none;
  position:fixed; top:72px; left:0; right:0; bottom:0;
  background:var(--ink);
  z-index:99;
  padding:40px 32px;
  flex-direction:column;
  gap:26px;
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  font-family:'Oswald', sans-serif;
  font-size:26px;
  text-transform:uppercase;
  color:var(--paper);
}

/* ============ HERO ============ */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  display:flex;
  align-items:flex-end;
  color:var(--paper);
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center 30%;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(28,43,58,0.35) 0%, rgba(28,43,58,0.35) 40%, rgba(28,43,58,0.95) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding-bottom:80px;
  width:100%;
}
.hero .eyebrow{ color:var(--steel-light); margin-bottom:14px; }
.hero h1{
  font-family:'Oswald', sans-serif;
  font-weight:700;
  font-size:clamp(40px, 7vw, 84px);
  line-height:0.98;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  max-width:820px;
}
.hero .sub{
  font-family:'Source Serif', serif;
  font-style:italic;
  font-weight:300;
  font-size:clamp(16px,2vw,20px);
  color:#D9D2C0;
  margin-top:18px;
  max-width:560px;
}
.hero-ctas{
  display:flex; gap:16px; margin-top:36px; flex-wrap:wrap;
}
.btn{
  font-family:'Inter', sans-serif;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  padding:16px 30px;
  border-radius:2px;
  display:inline-block;
  transition:transform 0.15s, opacity 0.15s;
  cursor:pointer;
  border:none;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--red); color:var(--paper); }
.btn-outline{ background:transparent; color:var(--paper); border:1.5px solid rgba(245,241,230,0.5); }
.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  z-index:2;
  font-family:'Inter', sans-serif;
  font-size:9px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--steel-light);
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-cue::after{
  content:"";
  width:1px; height:34px;
  background:linear-gradient(var(--steel-light), transparent);
}

/* ============ STAT STRIP ============ */
.stats{
  background:var(--ink);
  padding:36px 0;
}
.stats-heading{
  color:var(--steel-light);
  margin-bottom:14px;
}
.stats-row{
  display:flex;
  gap:16px;
}
.monitor{
  flex:1;
  background:linear-gradient(180deg,#0F1922,#0C141C);
  border:1px solid #26394A;
  border-radius:3px;
  padding:18px 20px 16px 20px;
}
.monitor .m-label{
  font-family:'Inter', sans-serif;
  font-size:10px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--steel-light);
}
.monitor .m-val{
  font-family:'Plex Mono', monospace;
  font-weight:700;
  font-size:clamp(24px,4vw,36px);
  color:var(--red);
  margin-top:6px;
}
.monitor .m-tag{
  font-family:'Inter', sans-serif;
  font-size:9.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#8FA6B5;
  margin-top:5px;
}

/* ============ ABOUT ============ */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.about-img{
  border-radius:3px;
  overflow:hidden;
  aspect-ratio:4/5;
}
.about-img img{ width:100%; height:100%; object-fit:cover; object-position:top center; }
.about-text .block-title{
  font-family:'Inter', sans-serif;
  font-weight:700;
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--red-dim);
  border-bottom:1.5px solid var(--text);
  padding-bottom:6px;
  margin-bottom:16px;
  display:inline-block;
}
.about-text h2{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:clamp(26px,3vw,36px);
  text-transform:uppercase;
  margin-bottom:16px;
  line-height:1.08;
}
.clean{ list-style:none; margin-top:14px; }
.clean li{
  font-size:14.5px;
  line-height:1.55;
  padding-left:16px;
  position:relative;
  margin-bottom:8px;
}
.clean li::before{
  content:"—";
  position:absolute; left:0;
  color:var(--steel);
}
.clean li b{ font-weight:600; }
.about-text p.lede{
  font-size:15.5px;
  line-height:1.65;
  color:#2E4048;
  margin-top:14px;
}

/* ============ SERVICES ============ */
.services-section{ background:var(--paper-2); }
.services-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-top:44px;
}
.service-card{
  background:var(--paper);
  border-left:3px solid var(--red);
  padding:32px 30px;
}
.service-card h3{
  font-family:'Oswald', sans-serif;
  font-size:22px;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:12px;
}
.service-card .credential{
  font-family:'Inter', sans-serif;
  font-size:10.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--steel);
  font-weight:700;
  margin-bottom:14px;
}
.service-card ul.clean li{ font-size:14px; }

/* ============ WHO FOR ============ */
.who-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:start;
}
.who-grid img{
  border-radius:3px;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.who-note{
  font-size:13px;
  color:var(--steel);
  margin-top:14px;
}

/* ============ PHILOSOPHY ============ */
.philosophy-section{
  background:var(--ink);
  color:var(--paper);
  position:relative;
}
.philosophy-section .eyebrow{ color:var(--steel-light); }
.philosophy-section .section-title{ margin-top:8px; }
.principles{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:48px;
}
.principle{
  border-top:2px solid var(--steel);
  padding-top:14px;
}
.principle .p-tag{
  font-family:'Plex Mono', monospace;
  font-weight:500;
  font-size:11px;
  color:#D08277;
}
.principle p{
  font-size:14px;
  line-height:1.5;
  margin-top:8px;
  color:#D9D2C0;
}
.philosophy-quote{
  margin-top:50px;
  font-family:'Source Serif', serif;
  font-style:italic;
  font-size:clamp(16px,2vw,20px);
  line-height:1.55;
  color:#EDE8DA;
  border-left:2px solid var(--red);
  padding-left:22px;
  max-width:760px;
}

/* ============ CREDIBILITY BANNER ============ */
.credibility{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  color:var(--paper);
}
.credibility-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center 20%;
}
@media (max-width: 700px){
  .credibility-bg{
    background-position:0% 8%;
  }
}
.credibility-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(28,43,58,0.92) 0%, rgba(28,43,58,0.55) 55%, rgba(28,43,58,0.25) 100%);
}
.credibility-content{ position:relative; z-index:2; max-width:560px; }
.credibility .eyebrow{ color:var(--steel-light); margin-bottom:14px; }
.credibility h2{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:clamp(28px,4vw,40px);
  text-transform:uppercase;
  line-height:1.06;
  margin-bottom:20px;
}
.credibility ul.clean li{ font-size:15px; }

/* ============ GALLERY ============ */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:180px;
  gap:10px;
  margin-top:44px;
}
.gallery-grid img{
  width:100%; height:100%; object-fit:cover;
  border-radius:2px;
}
.gallery-grid .tall{ grid-row:span 2; }

/* ============ TESTIMONIALS ============ */
.testimonial-section{
  background:var(--ink);
  color:var(--paper);
}
.testimonial-section .eyebrow{ color:var(--steel-light); margin-bottom:36px; }
.testi{
  display:flex; gap:26px; align-items:flex-start;
  margin-bottom:34px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.testi:last-child{ border:none; margin-bottom:0; padding-bottom:0; }
.testi .mark{
  font-family:'Oswald', sans-serif;
  font-size:48px;
  color:var(--red);
  line-height:0.5;
  padding-top:22px;
  width:36px;
  flex-shrink:0;
}
.testi p{
  font-family:'Source Serif', serif;
  font-size:16px;
  line-height:1.6;
  color:#EDE8DA;
}
.testi .attr{
  font-family:'Inter', sans-serif;
  font-size:10.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--steel-light);
  margin-top:12px;
}

/* ============ INTAKE FORM ============ */
.intake-section{ background:var(--paper-2); }
.intake-wrap{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:60px;
}
.intake-intro p{
  font-size:14.5px;
  line-height:1.6;
  color:#2E4048;
  margin-top:14px;
}
.intake-intro .note{
  margin-top:24px;
  padding:16px 18px;
  background:var(--paper);
  border-left:3px solid var(--steel);
  font-size:13px;
  color:var(--steel);
}
form.intake-form{
  background:var(--paper);
  padding:36px;
  border-radius:3px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
form.intake-form .full{ grid-column:1 / -1; }
.field label{
  display:block;
  font-family:'Inter', sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--steel);
  margin-bottom:7px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:12px 13px;
  border:1px solid var(--border);
  border-radius:2px;
  font-family:'Source Serif', serif;
  font-size:14.5px;
  background:#fff;
  color:var(--text);
}
.field textarea{ resize:vertical; min-height:90px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--red);
}
.submit-row{ grid-column:1 / -1; margin-top:6px; }
.submit-row .btn-primary{ width:100%; text-align:center; border:none; font-size:13px; }
.form-note{
  grid-column:1 / -1;
  font-family:'Inter', sans-serif;
  font-size:11px;
  color:var(--steel);
}
.form-success{
  display:none;
  grid-column:1 / -1;
  text-align:center;
  padding:40px 20px;
}
.form-success.show{ display:block; }
.form-success h3{
  font-family:'Oswald', sans-serif;
  font-size:22px;
  text-transform:uppercase;
  margin-bottom:10px;
}

/* ============ FOOTER / CONTACT ============ */
.footer{
  background:var(--ink);
  color:var(--paper);
  padding:70px 0 30px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:50px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-grid-slim{
  align-items:center;
  padding-top:6px;
  padding-bottom:36px;
}
.footer-grid-slim h2{ margin-bottom:0; }
.footer h2{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:clamp(26px,3.4vw,38px);
  text-transform:uppercase;
  line-height:1.06;
  margin-bottom:16px;
}
.footer p{
  font-size:14px;
  color:#B8C4CC;
  line-height:1.6;
  max-width:440px;
}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:center;
}
.contact-line{
  font-family:'Plex Mono', monospace;
  font-weight:500;
  font-size:16px;
  color:var(--paper);
}
.contact-line a:hover{ color:var(--red); }
.contact-label{
  font-family:'Inter', sans-serif;
  font-size:9.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--steel-light);
  margin-bottom:2px;
}
.ig-link{
  display:inline-flex;
  color:var(--paper);
  opacity:0.85;
  transition:opacity 0.15s, color 0.15s;
}
.ig-link:hover{
  opacity:1;
  color:var(--red);
}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:26px;
  font-family:'Inter', sans-serif;
  font-size:10.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--steel-light);
  flex-wrap:wrap;
  gap:10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .about-grid, .who-grid, .intake-wrap, .footer-grid{
    grid-template-columns:1fr;
  }
  .services-grid{ grid-template-columns:1fr; }
  .principles{ grid-template-columns:1fr 1fr; }
  .stats-row{ flex-wrap:wrap; }
  .monitor{ min-width:45%; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
  form.intake-form{ grid-template-columns:1fr; padding:24px; }
  .credibility-content{ max-width:100%; }
  .who-grid img{ order:-1; }
}
@media (max-width: 500px){
  .wrap{ padding:0 20px; }
  .section{ padding:60px 0; }
  .principles{ grid-template-columns:1fr; }
  .hero-ctas{ flex-direction:column; }
  .btn{ text-align:center; }
  .scroll-cue{ display:none; }
  .hero-content{ padding-bottom:50px; }
}
