@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

:root{
  --gold: #B58A50;
  --charcoal: #2E2C2A;
  --steel: #8F8F8F;
  --paper: #F6F4F1;
  --ink: #201F1D;
  --line: rgba(46,44,42,0.14);
  --max: 1180px;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family:'Oswald', sans-serif;
  font-weight:300;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
}

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

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

h1,h2,h3,h4{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  letter-spacing:0.01em;
  line-height:1.15;
}

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

/* Blade motif — echoes the logo's three angled forms */
.blades{
  display:inline-flex;
  gap:4px;
  height:18px;
  align-items:flex-end;
}
.blades span{
  display:block;
  width:6px;
  height:100%;
  transform:skewX(-20deg);
}
.blades span:nth-child(1){ background:var(--gold); }
.blades span:nth-child(2){ background:var(--charcoal); height:80%; }
.blades span:nth-child(3){ background:var(--steel); height:64%; }

/* Header */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 32px;
  background:linear-gradient(to bottom, rgba(20,19,18,0.55), transparent);
}
header.scrolled{
  background:var(--paper);
  box-shadow:0 1px 0 var(--line);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height:78px; width:auto; }
.brand span{
  font-weight:600;
  font-size:15px;
  letter-spacing:0.08em;
  color:#fff;
}
header.scrolled .brand span{ color:var(--ink); }

nav{ display:flex; gap:34px; }
nav a{
  font-size:14px;
  font-weight:500;
  letter-spacing:0.04em;
  color:#fff;
  position:relative;
  padding-bottom:4px;
}
header.scrolled nav a{ color:var(--ink); }
nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--gold);
  transition:width .25s ease;
}
nav a:hover::after{ width:100%; }

.nav-toggle{ display:none; }

/* Hero */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#141312;
}
.hero-video{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hero-video video{
  width:100%; height:100%;
  object-fit:cover;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(20,19,18,0.92) 0%, rgba(20,19,18,0.35) 55%, rgba(20,19,18,0.55) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:0 32px 96px;
  max-width:var(--max);
  margin:0 auto;
  width:100%;
  color:#fff;
}
.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
  font-size:14px;
  letter-spacing:0.1em;
  color:var(--gold);
  font-weight:500;
}
.hero h1{
  font-size:clamp(2.4rem, 6vw, 4.6rem);
  font-weight:600;
  max-width:15ch;
  margin-bottom:22px;
}
.hero p{
  max-width:46ch;
  font-size:1.15rem;
  font-weight:300;
  color:rgba(255,255,255,0.86);
  margin-bottom:34px;
}
.btn{
  display:inline-block;
  padding:15px 34px;
  background:var(--gold);
  color:#171614;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.06em;
  border:1px solid var(--gold);
  transition:background .2s ease, color .2s ease;
}
.btn:hover{ background:transparent; color:#fff; }
.btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}

/* Section framing */
section{ padding:110px 0; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:56px;
  border-bottom:1px solid var(--line);
  padding-bottom:28px;
}
.section-head .tag{
  font-size:13px;
  font-weight:500;
  letter-spacing:0.1em;
  color:var(--gold);
  margin-bottom:10px;
  display:block;
}
.section-head h2{
  font-size:clamp(1.8rem, 3.4vw, 2.6rem);
}
.section-head p{
  max-width:36ch;
  font-size:15px;
  color:#57534f;
}

/* About */
.about{ background:#fff; }
.about-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:64px;
  align-items:start;
}
.about-photo{
  position:relative;
}
.about-photo img{
  width:100%;
  filter:grayscale(15%);
  border:1px solid var(--line);
}
.about-photo .cap{
  margin-top:14px;
  font-size:13px;
  color:#79746e;
  letter-spacing:0.03em;
}
.about-body p{
  margin-bottom:20px;
  max-width:62ch;
  color:#3a3733;
}
.about-body p:first-of-type{
  font-size:1.15rem;
  font-weight:400;
  color:var(--ink);
}
.about-role{
  font-size:13px;
  letter-spacing:0.08em;
  color:var(--gold);
  font-weight:600;
  margin-bottom:8px;
}
.about-name{
  font-size:1.6rem;
  font-weight:600;
  margin-bottom:24px;
}

/* Services */
.services{ background:var(--charcoal); color:#f2f0ec; }
.services .section-head{ border-color:rgba(242,240,236,0.16); }
.services .section-head p{ color:rgba(242,240,236,0.6); }
.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:rgba(242,240,236,0.14);
  border:1px solid rgba(242,240,236,0.14);
}
.service-item{
  background:var(--charcoal);
  padding:34px 36px;
}
.service-item h3{
  font-size:1.15rem;
  font-weight:500;
  margin-bottom:12px;
  display:flex;
  align-items:baseline;
  gap:12px;
}
.service-item h3 .mark{
  color:var(--gold);
  font-size:0.9rem;
  font-weight:600;
}
.service-item p{
  font-size:14.5px;
  color:rgba(242,240,236,0.68);
  max-width:44ch;
}

/* Portfolio */
.portfolio{ background:var(--paper); }
.project{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  padding:52px 0;
  border-bottom:1px solid var(--line);
}
.project:last-child{ border-bottom:none; padding-bottom:0; }
.project:first-child{ padding-top:0; }
.project.reverse{ direction:rtl; }
.project.reverse > *{ direction:ltr; }
.project-media{
  display:grid;
  gap:10px;
}
.project-media.two{ grid-template-columns:1fr 1fr; }
.project-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
}
.project-body .tag-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.project-id{
  font-size:14px;
  font-weight:600;
  letter-spacing:0.06em;
  color:var(--gold);
}
.project-status{
  font-size:12px;
  letter-spacing:0.06em;
  color:#79746e;
  border:1px solid var(--line);
  padding:4px 10px;
}
.project-body h3{
  font-size:1.7rem;
  margin-bottom:16px;
}
.project-body p{
  color:#3a3733;
  max-width:48ch;
}

/* Contact / footer */
footer{
  background:#171614;
  color:#f2f0ec;
  padding:90px 0 34px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:64px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(242,240,236,0.14);
}
.footer-top h2{
  font-size:clamp(1.8rem,3.6vw,2.6rem);
  max-width:14ch;
  margin-bottom:20px;
}
.footer-top .lead{
  color:rgba(242,240,236,0.66);
  max-width:42ch;
  margin-bottom:28px;
}
.contact-list{ display:flex; flex-direction:column; gap:22px; }
.contact-row{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid rgba(242,240,236,0.12);
  padding-bottom:18px;
}
.contact-row .label{
  font-size:12px;
  letter-spacing:0.08em;
  color:rgba(242,240,236,0.5);
  text-transform:uppercase;
}
.contact-row a, .contact-row span.val{
  font-size:1.05rem;
  font-weight:400;
  color:#f2f0ec;
}
.contact-row a:hover{ color:var(--gold); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:26px;
  font-size:13px;
  color:rgba(242,240,236,0.45);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-brand img{ height:40px; }

/* Responsive */
@media (max-width: 860px){
  nav{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:78%;
    max-width:320px;
    background:var(--charcoal);
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:26px;
    padding:32px;
    transform:translateX(100%);
    transition:transform .3s ease;
  }
  nav.open{ transform:translateX(0); }
  nav a{ color:#fff; font-size:16px; }
  .nav-toggle{
    display:flex;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:110;
    padding:6px;
  }
  .nav-toggle span{
    width:22px; height:2px; background:#fff;
  }
  header.scrolled .nav-toggle span{ background:var(--ink); }

  .about-grid, .footer-top{
    grid-template-columns:1fr;
  }
  .service-list{ grid-template-columns:1fr; }
  .project, .project.reverse{
    grid-template-columns:1fr;
    direction:ltr;
  }
  section{ padding:70px 0; }
  .wrap{ padding:0 20px; }
}
