:root{
  --maroon:#731012;
  --gold:#c7b399;
  --black:#000;
  --white:#fff;
  --paper:#fbf8f4;
  --paper-2:#f5efe8;
  --ink:#111;
  --muted:#555;
  --line:rgba(0,0,0,.10);
  --soft:0 18px 46px rgba(0,0,0,.08);
}

*{
  box-sizing:border-box;
}

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff 0%,var(--paper) 52%,#fff 100%);
}

body.nav-open,
body.lightbox-open{
  overflow:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
  border-radius:0 !important;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.nav{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand img{
  height:clamp(40px,4.2vw,58px);
  width:auto;
  max-width:210px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
}

.nav-links a{
  padding:11px 15px;
  color:var(--muted);
  font-size:.92rem;
  font-weight:500;
  transition:.25s ease;
}

.nav-links a:hover,
.nav-links a.active{
  background:transparent;
  color:var(--maroon);
  font-weight:700;
  transform:none;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.menu-toggle span{
  width:20px;
  height:2px;
  background:var(--black);
  border-radius:999px;
  transition:.25s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* TYPOGRAPHY */

.eyebrow{
  display:inline-block;
  color:var(--black);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:700;
  margin-bottom:14px;
}

h1,h2,h3{
  font-weight:500;
  letter-spacing:-.035em;
  color:var(--black);
}

h1{
  font-size:clamp(2.1rem,4vw,4.1rem);
  line-height:1.04;
  margin:0 0 18px;
  max-width:980px;
}

h2{
  font-size:clamp(1.9rem,3.4vw,3.4rem);
  line-height:1.05;
  margin:0 0 16px;
}

h3{
  font-size:clamp(1.2rem,2vw,1.7rem);
  line-height:1.12;
  margin:0 0 12px;
}

p{
  font-size:1rem;
  line-height:1.75;
  color:var(--muted);
  margin:0 0 12px;
}

.lead{
  font-size:clamp(1.02rem,1.2vw,1.15rem);
  line-height:1.75;
  color:#333;
  max-width:820px;
}

/* BUTTONS */

.btn-row,
.intro-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:22px;
  margin-bottom:26px;
}

.btn,
.project-open-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid var(--black);
  font-weight:700;
  transition:.25s ease;
  cursor:pointer;
  background:transparent;
  color:var(--black);
  box-shadow:none;
}

.btn-primary,
.btn-secondary{
  background:transparent;
  color:var(--black);
  border:1px solid var(--black);
  box-shadow:none;
}

.btn-primary:hover,
.btn-secondary:hover,
.project-open-btn:hover{
  background:var(--black);
  color:#fff;
  transform:translateY(-2px);
}

/* HERO */

.hero{
  min-height:auto;
  display:block;
}

.hero-media{
  position:relative;
  overflow:hidden;
  background:#111;
  height:min(68vh,680px);
  min-height:480px;
}

.hero-static .hero-media img,
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.04);
  transition:opacity .9s ease,transform 1.4s ease;
}

.hero-slide.active{
  opacity:1;
  transform:scale(1);
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.18));
  pointer-events:none;
}

.hero-overlay{
  display:none;
}

/* HOME */

.home-copy,
.refined-home{
  padding:clamp(46px,6vw,76px) 0;
  background:linear-gradient(180deg,#fff,var(--paper));
}

.home-copy-inner{
  max-width:1080px;
}

.home-copy h1,
.refined-home h1{
  font-size:clamp(2.1rem,4.2vw,4.3rem);
  line-height:1.04;
  letter-spacing:-.045em;
  max-width:980px;
  margin:10px 0 20px;
}

.home-copy .lead,
.refined-home .lead{
  max-width:900px;
}

.home-feature-row,
.plain-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:28px;
}

.home-feature-row span,
.plain-item{
  border-top:1px solid var(--line);
  padding-top:14px;
  color:var(--muted);
  font-weight:700;
}

.home-intro-visible .reveal{
  opacity:1;
  transform:none;
  animation:homeTextFadeUp .9s ease both;
}

@keyframes homeTextFadeUp{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* PAGE HERO */

.page-hero,
.refined-page-hero,
.contact-refined-hero,
.about-refined-hero{
  padding:clamp(44px,6vw,72px) 0 clamp(26px,4vw,44px);
  background:linear-gradient(180deg,#fff,var(--paper));
}

.page-hero h1,
.refined-page-hero h1,
.contact-refined-hero h1,
.about-refined-hero h1{
  font-size:clamp(2.2rem,4.2vw,4.4rem);
  line-height:1.04;
  letter-spacing:-.045em;
  max-width:980px;
}

.page-hero .lead,
.refined-page-hero .lead,
.contact-refined-hero .lead{
  max-width:820px;
  font-size:clamp(1rem,1.2vw,1.14rem);
  line-height:1.75;
  font-weight:400;
}

/* SECTIONS */

.section,
.section.alt,
.intro-paper{
  padding:56px 0;
}

.section.alt{
  background:var(--paper);
}

.content-stack{
  display:grid;
  gap:56px;
}

.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:38px;
  align-items:start;
}

.split.reverse{
  grid-template-columns:1.05fr .95fr;
}

.image-frame,
.image-frame.tall{
  position:relative;
  overflow:hidden;
  min-height:420px;
  background:#ddd;
  box-shadow:var(--soft);
}

.image-frame img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
}

.text-block{
  padding:10px 0;
}

.text-block h2{
  font-size:clamp(2rem,3.8vw,3.8rem);
  max-width:850px;
}

.rule{
  width:80px;
  height:2px;
  background:var(--gold);
  margin:22px 0;
}

/* ABOUT */

.narrow-copy{
  max-width:900px;
}

.about-document-copy{
  padding-top:32px !important;
  padding-bottom:42px !important;
}

.about-content-wrap{
    max-width:900px;
    margin:0 auto;
}

.about-inline-image{
  width:100%;
  margin-bottom:36px;
  overflow:hidden;
}

.about-inline-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.about-team-section{
  padding:60px 0 0;
}

.about-image-wrap{
  max-width:1180px;
  margin:0 auto;
}
.about-story-title{
  color:var(--black);
  font-size:1.45rem;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  margin:0 0 24px;
  line-height:1.2;
}

.about-document-copy p{
  font-size:1.05rem;
  line-height:1.85;
  color:#3f3f3f;
  max-width:980px;
}

.about-subsection{
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line);
}

.about-subsection .eyebrow{
  color:var(--black);
  font-size:1rem;
  font-weight:700;
  letter-spacing:.14em;
  margin-bottom:18px;
}

.about-subsection .lead{
  font-size:1.05rem;
  font-weight:700;
  color:var(--black);
}

/* SERVICES */

.services-icon-section{
  padding-top:36px;
}

.services-icon-stack{
  display:grid;
  gap:0;
}

.service-icon-row{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:48px;
  padding:50px 0;
  border-bottom:1px solid var(--line);
  align-items:center;
}

.service-icon-row:first-child{
  padding-top:10px;
}

.service-icon-row:last-child{
  border-bottom:0;
}

.service-icon-circle{
  width:128px;
  height:128px;
  border:2px solid var(--maroon);
  border-radius:50% !important;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.service-icon-circle img{
  width:68px;
  height:68px;
  object-fit:contain;
}

.service-icon-row .eyebrow{
  color:var(--black);
  font-size:.92rem;
  letter-spacing:.13em;
  margin-bottom:14px;
  font-weight:700;
}

.service-icon-row .service-copy h2{
  font-size:clamp(1.85rem,3vw,3.2rem);
  line-height:1.1;
  max-width:880px;
}

.service-icon-row .service-copy p{
  max-width:900px;
  color:#3f3f3f;
}

/* PORTFOLIO */

.portfolio-select-section{
  padding-top:50px;
  background:transparent;
}

.portfolio-select-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.portfolio-select-card{
  position:relative;
  min-height:300px;
  overflow:hidden;
  background:#111;
  box-shadow:var(--soft);
}

.portfolio-select-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.portfolio-select-card:hover img{
  transform:scale(1.04);
}

.portfolio-select-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.45));
}

.portfolio-select-card.upcoming img{
  filter:blur(10px) brightness(.45);
  transform:scale(1.06);
}

.portfolio-card-copy{
  position:absolute;
  z-index:2;
  left:22px;
  right:22px;
  bottom:22px;
  color:#fff;
}

.portfolio-card-copy h2{
  color:#fff;
  font-size:1.1rem;
  font-weight:600;
  line-height:1.2;
  margin:0;
}

/* CONSTRUCTION SHOWCASE */

.construction-showcase{
  overflow:hidden;
  background:transparent;
  padding:70px 0 70px;
}

.construction-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:constructionSlide 52s linear infinite;
}

.construction-track img{
  width:420px;
  height:280px;
  object-fit:cover;
  flex:0 0 auto;
  box-shadow:var(--soft);
}

@keyframes constructionSlide{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* PROJECT DETAIL PAGES */

.project-page-hero{
  padding-top:clamp(34px,4.5vw,56px);
  padding-bottom:clamp(18px,3vw,32px);
}

.project-page-hero .eyebrow{
  color:var(--black);
  font-size:1rem;
  letter-spacing:.18em;
  font-weight:700;
  margin-bottom:18px;
}

.project-page-hero h1{
  font-size:clamp(2rem,3.2vw,3.4rem) !important;
  max-width:980px;
}

.project-copy-section{
  padding-top:28px;
  padding-bottom:34px;
}

.project-copy-section .narrow-copy{
  max-width:1180px;
  margin:0 auto;
}

.project-copy-section p{
  max-width:980px;
  color:#3f3f3f;
}

.project-gallery-section{
  padding-top:18px;
}

.project-gallery-wrap{
  position:relative;
}

.project-image-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 32px)/3);
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:8px 0 22px;
  scrollbar-width:none;
}

.project-image-track::-webkit-scrollbar{
  display:none;
}

.project-image-track img,
.project-image-track a img{
  height:clamp(280px,28vw,420px);
  width:100%;
  object-fit:cover;
  box-shadow:var(--soft);
  scroll-snap-align:start;
  cursor:zoom-in;
}

.project-image-track a{
  display:block;
  scroll-snap-align:start;
}

.gallery-hint{
  font-size:.9rem;
  color:var(--muted);
  margin-bottom:14px;
}

.project-gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--black);
  font-size:1.3rem;
  font-weight:800;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:var(--soft);
}

.project-gallery-arrow.left{
  left:10px;
}

.project-gallery-arrow.right{
  right:10px;
}

.nyala-coming-soon{
  position:relative;
  min-height:440px;
  overflow:hidden;
  box-shadow:var(--soft);
  background:#111;
  display:grid;
  place-items:center;
  text-align:center;
}

.nyala-coming-soon img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:blur(10px) brightness(.35);
  transform:scale(1.06);
}

.nyala-coming-soon div{
  position:relative;
  z-index:2;
  max-width:620px;
  padding:28px;
}

.nyala-coming-soon h3{
  color:#fff;
  font-size:clamp(2rem,4vw,4rem);
}

.project-back-section{
  padding-top:24px;
  padding-bottom:56px;
}

/* IMAGE LIGHTBOX */

.image-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  z-index:1000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.image-lightbox.active{
  display:flex;
}

.image-lightbox img{
  max-width:94vw;
  max-height:88vh;
  object-fit:contain;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.image-lightbox-close{
  position:absolute;
  top:18px;
  right:20px;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(255,255,255,.12);
  color:#fff;
  border-radius:50%;
  font-size:1.6rem;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.image-lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:1.6rem;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.lightbox-prev{
  left:22px;
}

.lightbox-next{
  right:22px;
}

/* CONTACT */

.contact-refined{
  padding-top:34px !important;
  padding-bottom:46px !important;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:start;
}

.contact-refined .btn-primary{
  color:var(--maroon);
  border-color:var(--maroon);
  box-shadow:0 4px 8px rgba(0,0,0,.08);
}

.contact-refined .btn-primary:hover{
  background:transparent;
  color:var(--maroon);
  border-color:var(--maroon);
  transform:translateY(1px);
  box-shadow:0 2px 4px rgba(0,0,0,.06);
}

.contact-refined .btn-primary:active{
  transform:translateY(3px);
  box-shadow:none;
}

.form{
  display:grid;
  gap:14px;
}

.form input,
.form textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:0;
  padding:16px;
  font:inherit;
  color:var(--black);
}

.form textarea{
  min-height:150px;
  resize:vertical;
}

.contact-card{
  padding:34px;
  box-shadow:var(--soft);
}

.contact-light-card{
  background:linear-gradient(180deg,#fff,var(--paper)) !important;
  color:var(--black) !important;
  border:1px solid var(--line);
}

.contact-light-card h2{
  color:var(--black) !important;
}

.contact-light-card p,
.contact-light-card a{
  color:var(--muted) !important;
}

.map-section{
  padding:0 0 64px;
  background:linear-gradient(180deg,var(--paper),#fff);
}

.map-card{
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--soft);
  min-height:380px;
}

.map-card iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

.form-message{
  margin:4px 0 0;
  font-weight:700;
  font-size:.95rem;
}

.form-message.sending{
  color:var(--muted);
}

.form-message.success{
  color:#1f7a3a;
}

.form-message.error{
  color:var(--maroon);
}

.form button:disabled{
  opacity:.7;
  cursor:not-allowed;
}

/* FOOTER */

.footer{
  background:linear-gradient(180deg,var(--paper),#fff);
  color:var(--black);
  border-top:1px solid var(--line);
  padding:26px 0;
}

.footer-clean{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  flex-wrap:wrap;
}

.footer-clean p{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

.footer-socials a{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  color:var(--black);
  font-weight:800;
  transition:.25s ease;
}

.footer-socials a:hover{
  background:var(--black);
  color:#fff;
  border-color:var(--black);
  transform:translateY(-2px);
}

/* ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .75s ease,transform .75s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:980px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:82px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(255,255,255,.98);
    padding:18px;
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    width:100%;
  }

  .split,
  .split.reverse,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .plain-list,
  .home-feature-row{
    grid-template-columns:repeat(2,1fr);
  }

  .portfolio-select-grid{
    grid-template-columns:1fr;
  }

  .portfolio-select-card{
    min-height:380px;
  }

  .project-image-track{
    grid-auto-columns:70%;
  }
}

@media(max-width:760px){

  .service-icon-row{
    grid-template-columns:1fr;
    gap:24px;
    padding:38px 0;
  }

  .service-icon-circle{
    width:110px;
    height:110px;
  }

  .service-icon-circle img{
    width:60px;
    height:60px;
  }
}

@media(max-width:640px){

  .container{
    width:min(100% - 24px,1180px);
  }

  .nav{
    height:74px;
  }

  .brand img{
    height:42px;
    max-width:155px;
  }

  .nav-links{
    top:74px;
  }

  .hero-media,
  .hero-static .hero-media{
    height:52vh;
    min-height:360px;
  }

  .section,
  .section.alt,
  .intro-paper,
  .page-hero,
  .home-copy{
    padding-top:42px;
    padding-bottom:42px;
  }

  .page-hero h1,
  .home-copy h1{
    font-size:clamp(2rem,9vw,3.1rem);
    line-height:1.04;
  }

  .lead{
    font-size:1.08rem;
  }

  .plain-list,
  .home-feature-row{
    grid-template-columns:1fr;
  }

  .image-frame,
  .image-frame.tall{
    min-height:320px;
  }

  .btn,
  .intro-actions .btn{
    width:100%;
  }

  .construction-track img{
    width:300px;
    height:220px;
  }

  .project-page-hero .eyebrow{
    font-size:.85rem;
  }

  .project-page-hero h1{
    font-size:clamp(1.9rem,8vw,2.8rem) !important;
  }

  .project-copy-section{
    padding-top:20px;
  }

  .project-image-track{
    grid-auto-columns:88%;
  }

  .project-image-track img,
  .project-image-track a img{
    height:300px;
  }

  .project-gallery-arrow{
    display:none;
  }

  .image-lightbox-nav{
    width:40px;
    height:40px;
    font-size:1.2rem;
  }

  .lightbox-prev{
    left:10px;
  }

  .lightbox-next{
    right:10px;
  }
}

@media(max-width:520px){

  .footer-clean{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-socials{
    margin-left:0;
  }
}



.home-copy .btn-primary,
.home-copy .btn-secondary,
.refined-home .btn-primary,
.refined-home .btn-secondary,
.intro-actions .btn-primary,
.intro-actions .btn-secondary {
  color: var(--maroon);
  border-color: var(--maroon);
  background: transparent;
}

.home-copy .btn-primary:hover,
.home-copy .btn-secondary:hover,
.refined-home .btn-primary:hover,
.refined-home .btn-secondary:hover,
.intro-actions .btn-primary:hover,
.intro-actions .btn-secondary:hover {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(1px);
}

.service-icon-row .eyebrow{
    color: var(--maroon);
    font-size: .92rem;
    letter-spacing: .13em;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-icon-row .service-copy h2{
    color: var(--black);
}

.portfolio-card-copy {
  text-align: center;
}


.portfolio-select-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.28));
}

/* Contact heading maroon */
.contact-light-card h2 {
  color: var(--maroon) !important;
}

.project-copy-section .narrow-copy{
    max-width:980px;
    margin:0 auto;
}

.project-copy-section p{
    max-width:100%;
    margin:0 0 16px;
    text-align:left;
}

.project-copy-section h1,
.project-copy-section h2,
.project-copy-section h3{
    text-align:left;
}