:root {
  --ink: #172022;
  --muted: #647074;
  --paper: #f7f3ee;
  --white: #fff;
  --teal: #2f6f73;
  --teal-dark: #1f4f53;
  --copper: #b97943;
  --line: rgba(23, 32, 34, .14);
  --shadow: 0 24px 70px rgba(23, 32, 34, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 243, 238, .94);
  box-shadow: 0 10px 28px rgba(23, 32, 34, .09);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-action {
  justify-self: end;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #172022;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 17, 18, .86), rgba(10, 17, 18, .44) 48%, rgba(10, 17, 18, .08)),
    linear-gradient(0deg, rgba(10, 17, 18, .58), rgba(10, 17, 18, 0) 50%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 5vw, 72px) 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 7vw, 86px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 2vw, 20px);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary-button {
  color: var(--white);
  background: var(--teal);
}

.secondary-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, .62);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  min-height: 116px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 58px);
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 32, 34, .06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-card h3,
.service-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.product-card p,
.service-list p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.services-band {
  color: var(--white);
  background: var(--teal-dark);
}

.services-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.services-band .section-heading h2 {
  color: var(--white);
}

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

.service-list article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.service-list span {
  display: inline-flex;
  margin-bottom: 40px;
  color: #e1b074;
  font-weight: 800;
}

.service-list p {
  color: rgba(255, 255, 255, .72);
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
  margin-top: 38px;
}

.gallery figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d7d0c7;
}

.gallery-large {
  grid-row: span 2;
}

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

.gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 17, 18, .58);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.quote-band {
  padding: 86px clamp(18px, 7vw, 120px);
  color: var(--white);
  background: #172022;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 5vw, 56px);
  line-height: 1.12;
}

.quote-band p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
}

.quote-band span {
  color: rgba(255, 255, 255, .58);
}

.contact-section {
  align-items: center;
}

.contact-copy p {
  max-width: 520px;
  margin-top: 18px;
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fbfaf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .primary-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, .72);
  background: #101719;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 14px;
  }

  .trust-strip,
  .product-grid,
  .service-list,
  .intro-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-large {
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-bottom: 44px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section,
  .services-inner,
  .contact-section {
    padding: 68px 0;
  }

  .contact-form {
    padding: 20px;
  }
}
