:root {
  --green: #17382b;
  --green2: #214b39;
  --cream: #f4eee3;
  --ivory: #fffdf8;
  --gold: #bb944f;
  --ink: #183228;
  --muted: #68766f;
  --line: rgba(24,50,40,.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans",sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.topbar {
  padding: 9px 20px;
  background: var(--gold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .67rem;
  font-weight: 600;
}

.topbar span {
  font-weight: 600;
}

.topbar i {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  margin: 0 12px;
  vertical-align: middle;
}

.header {
  height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ivory);
  position: relative;
  z-index: 30;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font: 600 1.17rem Manrope,sans-serif;
  letter-spacing: .16em;
}

.brand small {
  display: block;
  font-size: .54rem;
  letter-spacing: .26em;
  margin-top: 2px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: italic 600 1.35rem "Playfair Display",serif;
}

.header nav {
  display: flex;
  gap: 32px;
}

.header nav a {
  text-decoration: none;
  font-size: .87rem;
  position: relative;
}

.header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: .25s;
}

.header nav a:hover:after {
  right: 0;
}

.button {
  display: inline-block;
  border: 0;
  background: var(--gold);
  color: #10271e;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .71rem;
  font-weight: 600;
  transition: .25s;
}

.button:hover {
  background: #d0ad69;
  transform: translateY(-2px);
}

.button-small {
  padding: 8px 18px;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  background-color: var(--green);
  color: var(--ivory);
}

.hero {
  height: calc(100vh - 111px);
  min-height: 670px;
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: white;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .85s ease,visibility .85s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(6,26,18,.93) 0%,rgba(6,26,18,.64) 40%,rgba(6,26,18,.08) 75%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(690px,82vw);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .67rem;
  font-weight: 600;
  color: #dab96f;
  margin: 0 0 20px;
}

.eyebrow.dark {
  color: #8b692f;
}

.hero h1,.about h2,.section-head h2,.contact h2 {
  font: 500 clamp(3.5rem,6.4vw,6.5rem)/.97 "Playfair Display",serif;
  letter-spacing: -.04em;
  margin: 0;
}

.hero h1 em,.about h2 em,.section-head h2 em {
  color: #d4b268;
  font-weight: 500;
}

.hero-copy>p:not(.eyebrow) {
  max-width: 500px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  font-size: 1.04rem;
  margin: 28px 0;
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  color: white;
  cursor: pointer;
}

.previous {
  left: 8vw;
}

.next {
  left: calc(8vw + 60px);
}

.slider-dots {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 30px;
  height: 2px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--gold);
}

.hero-contact {
  position: absolute;
  z-index: 5;
  right: 5vw;
  bottom: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.35);
  display: grid;
  gap: 4px;
}

.hero-contact span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #d5b570;
}

.hero-contact a {
  text-decoration: none;
  font: 500 1.25rem "Playfair Display",serif;
}

.about,.services,.gallery {
  padding: 115px 8vw;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  background: var(--ivory);
  align-items: end;
}

.about h2,.section-head h2 {
  font-size: clamp(3rem,5vw,5.2rem);
}

.about-text>p {
  font: 500 1.2rem/1.65 "Playfair Display",serif;
  margin: 0 0 42px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.features span {
  font-size: .72rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.features span:before {
  content: "✦";
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.services {
  background: #eee6d8;
}

.section-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-head>p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-card {
  background: var(--ivory);
  overflow: hidden;
}

.service-card>img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.service-card:hover>img {
  transform: scale(1.035);
}

.service-card>div {
  padding: 28px;
}

.service-card span {
  font-size: .65rem;
  color: #987239;
}

.service-card h3 {
  font: 500 1.7rem "Playfair Display",serif;
  margin: 8px 0 12px;
}

.service-card p {
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.6;
  min-height: 70px;
}

.service-card a {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .65rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}

.quote {
  padding: 100px 7vw;
  background: var(--green);
  color: white;
  text-align: center;
}

.quote>span {
  color: var(--gold);
  font-size: 1.5rem;
}

.quote blockquote {
  max-width: 960px;
  margin: 25px auto 30px;
  font: italic 500 clamp(2.3rem,4.7vw,4.7rem)/1.18 "Playfair Display",serif;
}

.quote a {
  color: #d4b268;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
}

.gallery {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 290px 290px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--green);
  text-align: left;
}

.gallery-item.large {
  grid-row: 1/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: .5s;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: .88;
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 52px 22px 20px;
  background: linear-gradient(transparent,rgba(6,25,18,.76));
  color: white;
  font: 500 1.06rem "Playfair Display",serif;
}

.contact {
  padding: 110px 8vw;
  background: #a8753e;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: end;
}

.contact h2 {
  font-size: clamp(3rem,5.3vw,5.5rem);
  margin-bottom: 35px;
}

.contact .eyebrow {
  color: #f1d99f;
}

.contact address {
  font-style: normal;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact address div:first-child {
  grid-column: 1/3;
}

.contact address span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f1d99f;
}

.contact address p {
  line-height: 1.7;
  margin: 8px 0;
}

.contact address a {
  text-decoration: none;
}

footer {
  min-height: 145px;
  background: #10271e;
  color: white;
  padding: 35px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

footer p {
  font-size: .74rem;
  color: rgba(255,255,255,.65);
}

.footer-brand {
  color: white;
}

#lightbox {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  background: rgba(5,20,14,.96);
}

#lightbox::backdrop {
  background: #05140e;
}

#lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 60px;
}

#lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

#lightbox figcaption {
  position: absolute;
  bottom: 28px;
  color: white;
  font: 500 1rem "Playfair Display",serif;
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 2;
  border: 0;
  background: none;
  color: white;
  font-size: 2.3rem;
  cursor: pointer;
}

.mobile-call {
  display: none;
}

@media(max-width:960px) {
  .header nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 24px 6vw;
    background: var(--ivory);
    flex-direction: column;
  }
  .header nav.open {
    display: flex;
  }
  .header>.button {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .about,.section-head,.contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about,.services,.gallery {
    padding: 85px 6vw;
  }
  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .contact address {
    max-width: 650px;
  }
}

@media(max-width:600px) {
  body {
    padding-bottom: 66px;
  }
  .topbar {
    font-size: .56rem;
  }
  .header {
    height: 70px;
    padding: 0 20px;
  }
  .header nav {
    top: 70px;
  }
  .brand {
    font-size: .98rem;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .hero {
    height: calc(100svh - 99px);
    min-height: 620px;
  }
  .slide>img {
    object-position: 64% center;
  }
  .shade {
    background: linear-gradient(90deg,rgba(5,24,17,.92),rgba(5,24,17,.35));
  }
  .hero-copy {
    left: 22px;
    width: calc(100% - 44px);
  }
  .hero h1 {
    font-size: 3.35rem;
  }
  .hero-copy>p:not(.eyebrow) {
    font-size: .93rem;
    max-width: 320px;
  }
  .slider-arrow {
    bottom: 24px;
  }
  .previous {
    left: 22px;
  }
  .next {
    left: 82px;
  }
  .slider-dots,.hero-contact {
    display: none;
  }
  .about,.services,.gallery {
    padding: 70px 22px;
  }
  .about {
    gap: 40px;
  }
  .about h2,.section-head h2 {
    font-size: 2.9rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .features span {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
  }
  .features span:before {
    margin: 0;
  }
  .section-head {
    margin-bottom: 38px;
  }
  .service-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -22px;
    padding-right: 22px;
  }
  .service-card {
    flex: 0 0 87%;
    scroll-snap-align: start;
  }
  .service-card>img {
    height: 230px;
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -22px;
    padding-right: 22px;
  }
  .gallery-item,.gallery-item.large {
    flex: 0 0 88%;
    height: 360px;
    grid-row: auto;
  }
  .contact {
    padding: 75px 22px;
  }
  .contact address {
    grid-template-columns: 1fr;
  }
  .contact address div:first-child {
    grid-column: auto;
  }
  footer {
    flex-direction: column;
    text-align: center;
    padding: 45px 22px;
  }
  .mobile-call {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    background: var(--gold);
    color: #10271e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
  }
  .mobile-call span {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
  }
  .mobile-call strong {
    font-size: 1.05rem;
  }
  #lightbox figure {
    padding: 55px 15px 85px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none!important;
  }
}
