:root {
  --ink: #17201f;
  --pine: #263b36;
  --sage: #819184;
  --wine: #6e2f2f;
  --copper: #b47a55;
  --ivory: #fbf8f1;
  --linen: #eee7db;
  --mist: #e5e9e3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 32, 31, .15);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(23, 32, 31, .44);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: .9;
  transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover {
  color: var(--linen);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px 0 58px;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #1c2826;
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 32, 31, .88) 0%, rgba(23, 32, 31, .58) 45%, rgba(23, 32, 31, .12) 100%),
    linear-gradient(0deg, rgba(23, 32, 31, .78) 0%, rgba(23, 32, 31, .06) 42%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(260px, 360px);
  gap: 54px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--linen);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(58px, 9vw, 116px);
  margin-bottom: 22px;
}

h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 24px;
}

h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

p {
  color: rgba(23, 32, 31, .74);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 24px;
  color: var(--white);
  background: var(--wine);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  background: #5b2424;
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .06);
}

.hero-note {
  border-left: 1px solid rgba(255, 255, 255, .34);
  padding-left: 24px;
}

.hero-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--linen);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.hero-note p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.8;
}

.section {
  padding: 112px 0;
}

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

.section.dark {
  background: var(--pine);
  color: var(--white);
}

.section.dark p,
.section.dark .lead {
  color: rgba(255, 255, 255, .74);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.lead {
  max-width: 700px;
  color: rgba(23, 32, 31, .78);
  font-size: 18px;
  line-height: 1.9;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.media-frame.small {
  min-height: 360px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 12px 14px;
  background: rgba(23, 32, 31, .76);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
}

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

.stat {
  border-top: 1px solid rgba(23, 32, 31, .18);
  padding-top: 18px;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.stat span {
  color: rgba(23, 32, 31, .68);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading p {
  max-width: 430px;
}

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

.experience {
  min-height: 338px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.experience img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(23, 32, 31, .88), rgba(23, 32, 31, .16));
}

.experience:hover img {
  transform: scale(1.05);
}

.experience p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
}

.menu-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.menu-item span {
  color: var(--linen);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.menu-item small {
  color: rgba(255, 255, 255, .58);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(23, 32, 31, .14);
}

.step {
  min-height: 260px;
  padding: 30px;
  background: var(--ivory);
}

.step b {
  display: block;
  margin-bottom: 34px;
  color: var(--copper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.step p {
  font-size: 14px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.gallery-grid figure:first-child,
.gallery-grid figure:nth-child(4) {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.testimonial {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
}

.testimonial cite {
  display: block;
  margin-top: 28px;
  color: var(--linen);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin-top: 28px;
}

.service-list li {
  list-style: none;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(23, 32, 31, .14);
  color: rgba(23, 32, 31, .72);
  line-height: 1.7;
}

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

.contact-details {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.contact-details a,
.contact-details span {
  display: block;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
  padding: 14px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  outline: none;
}

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

option {
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .48);
}

.contact-form button {
  min-height: 54px;
  border: 0;
  background: var(--copper);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 600 12px Montserrat, Arial, sans-serif;
  transition: background .2s ease, transform .2s ease;
}

.contact-form button:hover {
  background: #9f6847;
  transform: translateY(-2px);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  padding: 28px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 1.7;
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    padding: 22px 20px 28px;
    background: rgba(23, 32, 31, .96);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.open .nav-links {
    display: flex;
  }

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

  .hero-note {
    max-width: 520px;
  }

  .experience-grid,
  .process,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(4) {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: 760px;
    padding-top: 114px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .section-heading,
  .hero-actions,
  .footer-inner {
    display: grid;
  }

  .stats,
  .experience-grid,
  .process,
  .gallery-grid,
  .service-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .media-frame,
  .media-frame.small {
    min-height: 320px;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
