:root {
  --ink: #0a1620;
  --ink2: #101f2c;
  --gold: #b28b52;
  --gold2: #d0ad77;
  --paper: #f5f3ee;
  --white: #fff;
  --muted: #697078;
  --line: #d9d5cc;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit
}

.wrap {
  width: min(1180px, 90vw);
  margin: auto
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .26em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", Georgia, serif
}

h1,
h2,
h3,
p {
  margin-top: 0
}

h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: 24px
}

p {
  line-height: 1.75;
  color: #5e666d
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: .25s
}

.btn.gold {
  background: var(--gold);
  color: #fff
}

.btn.gold:hover {
  background: #9f7944
}

.btn.ghost {
  border-color: #ffffffa0;
  color: #fff
}

.btn.ghost:hover {
  background: #ffffff10
}

.btn.dark {
  background: var(--ink);
  color: #fff
}

.btn.dark:hover {
  background: #162a3a
}

.site-header {
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  border-bottom: 1px solid #ffffff26
}

.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px
}

.brand {
  min-width: 195px;
  display: flex;
  flex-direction: column;
  line-height: .9
}

.brand b {
  font: 600 31px/1 "Cormorant Garamond", serif;
  letter-spacing: .05em
}

.brand span {
  font-size: 9px;
  letter-spacing: .16em;
  margin-top: 8px
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px
}

nav a {
  font-size: 12px;
  opacity: .82
}

nav a:hover,
nav a.active {
  opacity: 1;
  color: #e2bd83
}

.mobile-menu {
  display: none;
  border: 1px solid #ffffff70;
  background: transparent;
  color: #fff;
  padding: 9px 12px
}

.hero {
  min-height: 760px;
  height: 92vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  background: url("images/Front-pic.png") center/cover;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 18, .92), rgba(4, 12, 18, .58) 48%, rgba(4, 12, 18, .18) 78%)
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 70px
}

.hero h1 {
  font-size: clamp(56px, 7vw, 95px);
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 18px 0 30px
}

.hero .sub {
  max-width: 640px;
  font-size: 18px;
  color: #e4e6e7
}

.hero .actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 34px
}

.hero-foot {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 5vw;
  right: 5vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff3a;
  padding-top: 18px;
  color: #c9ced2;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase
}

.section {
  padding: 105px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
  align-items: end;
  margin-bottom: 50px
}

.intro-grid .copy {
  max-width: 570px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: .3s
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px #0000000c
}

.service-card .img {
  height: 280px;
  background-size: cover;
  background-position: center
}

.service-card .body {
  padding: 26px
}

.service-card .num {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .2em
}

.service-card h3 {
  font-size: 29px;
  font-weight: 500;
  margin: 8px 0 8px
}

.service-card p {
  font-size: 14px
}

.dark-section {
  background: var(--ink);
  color: #fff;
  padding: 110px 0
}

.dark-section p {
  color: #b8c0c6
}

.projects-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px
}

.projects-head p {
  max-width: 520px
}

.project-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px
}

.project {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden
}

.project:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 14, 22, .92), transparent 56%)
}

.project .label {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  right: 24px
}

.project .label small {
  letter-spacing: .2em;
  color: #d2b17c;
  font-size: 9px
}

.project .label h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 0
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch
}

.split-img {
 min-height: 650px;
 background: url('images/Home-About-Solos.jpg') center/cover no-repeat;
}


.split-copy {
  padding: 90px 8vw;
  background: #fff
}

.split-copy .lead {
  font-size: 17px
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px
}

.stat-row strong {
  font: 500 40px "Cormorant Garamond", serif;
  color: var(--gold)
}

.stat-row span {
  display: block;
  font-size: 12px;
  margin-top: 5px
}

.why {
  background: linear-gradient(rgba(7, 20, 31, 0.72), rgba(7, 20, 31, 0.72)), url("images/Exterior-01.png") center/cover no-repeat;
  color: white;
  padding: 85px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: center
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ffffff20
}

.reason {
  padding: 25px;
  background: #0a1722d9;
  display: flex;
  gap: 15px
}

.reason b {
  color: var(--gold2)
}

.reason span {
  font-size: 13px
}

.cta {
  padding: 85px 0;
  background: #ece8e0
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center
}

.footer {
  background: #07131d;
  color: #fff;
  padding: 55px 0 25px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px
}

.footer h4 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c6a268
}

.footer p,
.footer a {
  color: #9fa8ae;
  font-size: 12px;
  line-height: 1.8
}

.footer .links {
  display: grid;
  gap: 8px
}

.footer-bottom {
  border-top: 1px solid #ffffff1f;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #78838b;
  font-size: 10px
}

.page-hero {
  min-height: 470px;
  background: linear-gradient(#07131dcc, #07131dcc),
    url('images/Exterior-01.png') center/cover no-repeat;
  display: flex;
  align-items: end;
  padding: 150px 0 70px
}

.page-hero h1 {
    font-size: clamp(58px, 8vw, 92px);
    line-height: .9;
    font-weight: 500;
    margin: 12px 0 0;
    color: #fff;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line)
}

.service-detail {
  background: #fff;
  padding: 40px
}

.service-detail h3 {
  font-size: 31px;
  font-weight: 500;
  margin: 10px 0
}

.service-detail .num {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .2em
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.gallery a {
  position: relative;
  overflow: hidden;
  background: #ddd
}

.gallery img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: .4s
}

.gallery a:hover img {
  transform: scale(1.025)
}

.gallery a:nth-child(1),
.gallery a:nth-child(5) {
  grid-column: span 2
}

.gallery a:nth-child(1) img,
.gallery a:nth-child(5) img {
  height: 520px
}

.bio-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  align-items: start
}

.portrait {
    height: 600px;
    background: url('images/Exterior-11.png') center/cover no-repeat;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8vw;
}

.contact-info {
  display: grid;
  gap: 24px
}

.contact-info .block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line)
}

.contact-info b {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase
}

.contact-info p,
.contact-info a {
  font-size: 15px;
  color: #46515a
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form label {
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #cfcac1;
  background: #fff;
  padding: 14px;
  color: #18252f
}

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

.full {
  grid-column: 1/-1
}

.notice {
  font-size: 11px;
  color: #7d8388
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .65s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

@media(max-width:920px) {
  .site-header {
    height: 72px
  }

  nav,
  .header-btn {
    display: none
  }

  .mobile-menu {
    display: block;
    margin-left: auto
  }

  .site-header.open nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #07131d;
    padding: 24px 5vw;
    flex-direction: column;
    align-items: flex-start
  }

  .hero {
    min-height: 690px;
    height: 88vh
  }

  .hero-foot {
    display: none
  }

  .section,
  .dark-section {
    padding: 75px 0
  }

  .intro-grid,
  .split,
  .why-grid,
  .contact-grid,
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .project-grid {
    grid-template-columns: 1fr
  }

  .project {
    height: 430px
  }

  .split-img,
  .portrait {
    min-height: 450px;
    height: 450px
  }

  .split-copy {
    padding: 65px 5vw
  }

  .gallery {
    grid-template-columns: 1fr 1fr
  }

  .gallery a:nth-child(1),
  .gallery a:nth-child(5) {
    grid-column: span 2
  }

  .service-list {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-grid {
    grid-template-columns: 1fr
  }

  .form {
    grid-template-columns: 1fr
  }

  .full {
    grid-column: auto
  }
}

@media(max-width:600px) {
  .gallery {
    grid-template-columns: 1fr
  }

  .gallery a,
  .gallery a:nth-child(1),
  .gallery a:nth-child(5) {
    grid-column: auto
  }

  .gallery img,
  .gallery a:nth-child(1) img,
  .gallery a:nth-child(5) img {
    height: 360px
  }

  .hero h1 {
    font-size: 56px
  }

  .brand b {
    font-size: 27px
  }
}


.project-card {
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(7, 19, 29, 0.85),
      transparent 55%);
}

.project-info {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: white;
}

.project-info span {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #d0ad77;
}

.project-info h3 {
  margin: 6px 0 2px;
  font-size: 28px;
}

.project-info p {
  margin: 0;
  color: #d6d9dc;
  font-size: 12px;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-detail-gallery img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.mobile-estimate {
  display: none;
}

@media (max-width: 920px) {
  .mobile-estimate {
    display: inline-flex;
    margin-top: 10px;
    width: fit-content;
  }
}
.project-detail-gallery img {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    border: 0;
    background: transparent;
    color: white;
    font-size: 45px;
    cursor: pointer;
}
@media (max-width: 600px) {
    .project-detail-gallery {
        grid-template-columns: 1fr;
    }

    .project-detail-gallery img {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }
}