:root{
  /* Pulled from your logo */
  --cream: #ffffff;
  --charcoal: #3f4040;
  --ink: #050808;
  --timber: #916544;      /* brown */
  --sand: #ad936c;        /* tan */
  --bg: #0e1111;
  --muted: rgba(255,255,255,.72);
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);

  --radius: 18px;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --max: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--cream);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(173,147,108,.28), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(145,101,68,.22), transparent 55%),
              linear-gradient(180deg, var(--bg), #070909 60%, #040606);
}

a{ color:inherit; text-decoration:none; }
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid var(--stroke); border-radius:10px; z-index:9999; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5,8,8,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 12px 0;   /* was 12px */
}

.brand-logo{
  height: 196px;           /* was 62px */
  width:auto;
  display:block;
  filter:
    drop-shadow(0 10px 22px rgba(0,0,0,.45))
    drop-shadow(0 0 12px rgba(173,147,108,.25));
}

.site-nav{
  display:flex;
  align-items:center;
  gap: 18px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 13px;
}
.site-nav a{
  opacity:.92;
}
.site-nav a:hover{ opacity:1; color: #fff; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  opacity:.9;
  border-radius:3px;
}
.nav-open{ overflow:hidden; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(173,147,108,.95), rgba(145,101,68,.95));
  color: #0b0d0d;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.btn:active{ transform: translateY(0px); }

.btn--ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(173,147,108,.55);
}
.btn--ghost:hover{ background: rgba(173,147,108,.10); }

.btn--small{ padding: 10px 14px; border-radius: 12px; }
.btn--full{ width:100%; }

.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,8,8,.90) 0%, rgba(5,8,8,.55) 46%, rgba(5,8,8,.78) 100%),
    radial-gradient(600px 520px at 30% 40%, rgba(173,147,108,.22), transparent 60%),
    url("assets/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-inner{
  position:relative;
  padding: 74px 0;
  display:flex;
  align-items:center;
}

.hero-card{
  width: min(620px, 100%);
  background: rgba(5,8,8,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.eyebrow{
  margin:0 0 12px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
  font-size: 12px;
}
.hero h1{
  margin: 0 0 12px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(32px, 4.3vw, 54px);
}
.accent{
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 40px rgba(173,147,108,.12);
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}

.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.badge{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.badge-num{
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  font-size: 18px;
  min-width: 72px;
}
.badge-text{
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.2;
}

.section{
  padding: 72px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.section--contact{
  background:
    radial-gradient(900px 600px at 15% 30%, rgba(145,101,68,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(173,147,108,.18), transparent 60%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h2{
  margin:0;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 32px;
}
.section-head p{
  margin:0;
  color: rgba(255,255,255,.72);
  max-width: 56ch;
  line-height: 1.55;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.card-icon{
  width: 52px; height: 52px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  margin-bottom: 12px;
  background: rgba(173,147,108,.12);
  border: 1px solid rgba(173,147,108,.35);
  color: rgba(255,255,255,.92);
}
.card-icon svg{ width: 34px; height: 34px; }
.card h3{
  margin: 0 0 8px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.card p{ margin:0 0 12px; color: rgba(255,255,255,.72); line-height: 1.55; }
.card-link{
  color: rgba(255,255,255,.92);
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
}
.card-link:hover{ color: #fff; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.shot{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.shot-img{
  height: 220px;
  background:
    linear-gradient(180deg, rgba(5,8,8,.15), rgba(5,8,8,.85)),
    radial-gradient(500px 280px at 25% 30%, rgba(173,147,108,.18), transparent 55%);
  background-size: cover;
  background-position: center;
}
.shot-img--one{ background-image:
  linear-gradient(180deg, rgba(5,8,8,.15), rgba(5,8,8,.85)),
  radial-gradient(500px 280px at 25% 30%, rgba(173,147,108,.18), transparent 55%),
  url("assets/mountain-card.jpg");
}
.shot-img--two{ background-image:
  linear-gradient(180deg, rgba(5,8,8,.15), rgba(5,8,8,.85)),
  radial-gradient(500px 280px at 25% 30%, rgba(145,101,68,.20), transparent 55%),
  url("assets/lake-card.jpg");
}
.shot-img--three{ background-image:
  linear-gradient(180deg, rgba(5,8,8,.15), rgba(5,8,8,.85)),
  radial-gradient(500px 280px at 25% 30%, rgba(255,255,255,.10), transparent 55%),
  url("assets/weekend-card.jpg");
}
.shot-img--four{ background-image:
  linear-gradient(180deg, rgba(5,8,8,.15), rgba(5,8,8,.85)),
  radial-gradient(500px 280px at 25% 30%, rgba(173,147,108,.18), transparent 55%),
  url("assets/residential-card.jpg");
}

.shot figcaption{
  padding: 14px 14px 16px;
}
.shot strong{
  display:block;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  margin-bottom: 4px;
}
.shot span{ color: rgba(255,255,255,.70); font-size: 14px; }

.steps{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.steps li{
  display:flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.step-num{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  background: rgba(173,147,108,.12);
  border: 1px solid rgba(173,147,108,.35);
}
.steps h3{
  margin:0 0 6px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
}
.steps p{ margin:0; color: rgba(255,255,255,.72); line-height: 1.55; }

.contact-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.contact-copy h2{
  margin:0 0 10px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  font-size: 34px;
}
.contact-copy p{ margin:0 0 14px; color: rgba(255,255,255,.72); line-height: 1.6; }
.contact-lines{
  display:grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.contact-lines a{ text-decoration: underline; text-underline-offset: 3px; }

.contact-form{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,8,8,.55);
  box-shadow: var(--shadow);
}
label{
  display:block;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  margin-bottom: 10px;
}
input, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(173,147,108,.55);
  box-shadow: 0 0 0 3px rgba(173,147,108,.18);
}
.form-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.60);
}

.site-footer{
  padding: 26px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 18px;
}
.footer-logo{
  height: 40px;
  width:auto;
  opacity:.9;
}
.footer-text{
  display:flex;
  flex-direction:column;
  gap: 4px;
  color: rgba(255,255,255,.72);
}
.footer-text strong{ color:#fff; font-family: Montserrat, system-ui, sans-serif; }
.footer-links{
  display:flex;
  gap: 14px;
  color: rgba(255,255,255,.72);
}
.footer-links a:hover{ color:#fff; }

/* Responsive */
@media (max-width: 980px){
  .section-head{ flex-direction:column; align-items:flex-start; }
  .cards, .grid-3, .steps{ grid-template-columns: 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; }
  .hero{ min-height: 72vh; }
  .hero-card{ padding: 18px; }
  .hero-badges{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    position: fixed;
    inset: 68px 16px auto 16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(5,8,8,.92);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
    gap: 10px;
  }
  .site-nav.is-open{ display:flex; }
  .site-nav a{ padding: 10px 10px; border-radius: 12px; }
  .site-nav a:hover{ background: rgba(255,255,255,.06); }
}



/* Process: clickable step cards + expandable panel */
.process { margin-top: 18px; }

.process-grid{
  display:grid;
  gap: 16px;
  margin-top: 18px;
}
@media (min-width: 980px){
  .process-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.process-card{
  text-align:left;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "num title chev"
    "num desc  chev";
  gap: 6px 14px;
}
.process-card:hover{
  border-color: rgba(255,255,255,.18);
}
.process-card.is-active{
  background: rgba(5,8,8,.62);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 16px 55px rgba(0,0,0,.35);
}
.process-card:focus-visible{
  outline: 2px solid rgba(173,147,108,.45);
  outline-offset: 3px;
  border-radius: 18px;
}

.process-title{
  grid-area: title;
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.process-desc{
  grid-area: desc;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.process-card .step-num{
  grid-area: num;
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  background: rgba(173,147,108,.12);
  border: 1px solid rgba(173,147,108,.35);
}

.chev{
  grid-area: chev;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display: grid;
  place-items: center;
  align-self: center;
}
.chev::before{
  content:"";
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255,255,255,.90);
  border-bottom: 2px solid rgba(255,255,255,.90);
  transform: rotate(45deg);
  transition: transform 200ms ease;
}
.process-card.is-active .chev::before{
  transform: rotate(225deg);
}

/* Expandable panel */
.process-panel{
  margin-top: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  overflow: hidden;
}
.process-panel-inner{
  padding: 22px;
  max-width: 980px; /* keeps panel content from spanning too wide */
  margin: 0 auto;
}
.process-panel-inner h3{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.process-panel-inner h4{
  margin: 18px 0 8px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.process-panel-inner p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.process-panel-inner ol,
.process-panel-inner ul{
  margin: 10px 0 14px 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.process-panel-inner li{ margin: 0 0 10px; }
.process-panel-inner strong{ color: rgba(255,255,255,.92); }

@media (max-width: 980px){
  .process-grid{ grid-template-columns: 1fr; }
  .process-panel-inner{ padding: 18px; }
}
/* Process panel: brighter headings, softer body text */
.process-panel h3,
.process-panel h4 {
  color: #fff;
}

.process-panel p,
.process-panel li {
  color: rgba(255, 255, 255, 0.75);
}


/* -----------------------------
   FIXES: ensure Process buttons keep dark theme + light text
   (some browsers apply native button styling unless appearance is reset)
-------------------------------- */
#process .process-card{
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
}
#process .process-card *{ color: inherit; }

/* Force light text inside the expandable panel (wins over any global light-section rules) */
#process .process-panel,
#process .process-panel *{
  color: rgba(255,255,255,.78) !important;
}
#process .process-panel h3,
#process .process-panel h4{
  color: #fff !important;
}

/* ===== Featured work: 4-up grid ===== */
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Make sure the <a class="shot"> behaves like a card */
.grid-4 .shot{
  display: block;
}

/* Optional: a bit shorter so 4 cards feel less tall */
.grid-4 .shot-img{
  height: 200px;
}

/* Responsive: 2 columns on tablets, 1 column on phones */
@media (max-width: 1100px){
  .grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .grid-4{ grid-template-columns: 1fr; }
}
.projects-footer-cta{
  display:flex;
  justify-content:flex-start;
  margin-top:28px;
}

/* Featured projects CTA */
.btn-projects-all{
  display:inline-block;
  padding:12px 26px;
  font-weight:700;
  font-size:15px;
  letter-spacing:.4px;

  color:#d6b27a;
  text-decoration:none;

  border:2px solid #d6b27a;
  border-radius:999px;

  background:rgba(214,178,122,.08);

  transition:all .25s ease;
}

.btn-projects-all:hover{
  background:#d6b27a;
  color:#0a0a0a;
}
/* ===== Project pages (safe: does not affect main Gallery) ===== */

.project-hero .lead{
  max-width:60ch;
  opacity:.9;
}

.back-link{
  display:inline-block;
  margin-bottom:10px;
  text-decoration:none;
  color:rgba(255,255,255,.7);
  font-weight:700;
}
.back-link:hover{ color:rgba(255,255,255,.9); }

.project-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.project-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

.project-details{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
}

.project-cta{
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}

@media (max-width:980px){
  .project-grid{ grid-template-columns:repeat(2, 1fr); }
  .project-details{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  .project-grid{ grid-template-columns:1fr; }
}
.muted{
  opacity:.75;
  margin-top:6px;
}
/* tighten space between project intro and gallery */
.project-hero{
  padding-bottom: 12px;
}

.project-hero + .section{
  padding-top: 12px;
}
.project-hero .btn--small{
  padding: 8px 14px;
}
.project-grid .gallery-item img{
  cursor: zoom-in;
}
.project-grid a img{
  cursor: zoom-in;
}
.project-grid a{
  display:block;
  overflow:hidden;
  border-radius:14px;
}

.project-grid img{
  transition:transform .35s ease;
}

.project-grid a:hover img{
  transform:scale(1.04);
}
#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  cursor:zoom-out;
}

#lightbox img{
  max-width:92%;
  max-height:92%;
  box-shadow:0 10px 40px rgba(0,0,0,.6);
}
