
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/playfair-display-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-400.woff2") format("woff2");
}

:root {
  --black: #050505;
  --ink: #111111;
  --copy: #3f3f3f;
  --white: #ffffff;
  --cream: #f8f7f5;
  --gold: #b8905d;
  --line: #c5b398;
  --font-heading: "Canela", "Canela Web", "Canela Deck", "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-menu: "Avenir Next", "Avenir Next LT Pro", "Neue Haas Grotesk Text Pro", "Neue Haas Grotesk", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Neue Haas Grotesk Text Pro", "Neue Haas Grotesk", "Inter", "Helvetica Neue", Arial, sans-serif;
}

@theme inline {
  --color-background: var(--white);
  --color-foreground: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
}

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

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

summary {
  font: inherit;
}

.section-shell {
  width: min(calc(100% - 192px), 1344px);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow::after {
  display: block;
  width: 31px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.eyebrow--light {
  color: var(--white);
}

.eyebrow--center {
  justify-content: center;
  color: var(--white);
}

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

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 100px;
  background: var(--white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 38px;
  width: min(calc(100% - 192px), 1344px);
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 380px;
}

.brand img {
  width: 380px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 37px;
  margin-left: auto;
  color: var(--black);
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 44px 0 39px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  background: var(--gold);
}

.header-cta {
  display: inline-flex;
  min-width: 134px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 446px;
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("/stone-hero.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 25%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.32));
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero__copy {
  width: 420px;
  padding-top: 66px;
  color: var(--white);
}

.hero h1 {
  max-width: 420px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: 70px;
  line-height: 0.98;
}

.hero__lead {
  max-width: 410px;
  margin-bottom: 27px;
  color: var(--white);
  font-size: 15.5px;
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-width: 151px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 23px;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.button--dark {
  min-width: 134px;
  min-height: 39px;
  margin-top: 11px;
  background: var(--black);
  color: var(--white);
}

.about {
  height: 307px;
  padding: 31px 0 26px;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 440px 770px;
  align-items: start;
  gap: 100px;
}

.about__copy {
  padding-top: 4px;
}

.about h2 {
  max-width: 430px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.about p:not(.eyebrow) {
  max-width: 415px;
  margin-bottom: 15px;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.58;
}

.about__image {
  width: 770px;
  height: 250px;
  object-fit: cover;
}

.services {
  position: relative;
  overflow: hidden;
  min-height: 212px;
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.055), transparent 22%),
    linear-gradient(135deg, #161616 0%, #0d0d0d 100%);
  color: var(--white);
}

.services::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 33%, rgba(255, 255, 255, 0.035) 34%, transparent 36%),
    linear-gradient(30deg, transparent 0 62%, rgba(255, 255, 255, 0.025) 63%, transparent 65%);
  opacity: 0.45;
  content: "";
}

.services > .section-shell {
  position: relative;
  z-index: 1;
}

.services__heading {
  display: grid;
  justify-content: center;
  margin-bottom: 18px;
}

.services__heading .eyebrow {
  margin-bottom: 0;
  flex-direction: column;
  gap: 8px;
}

.services__heading .eyebrow::after {
  width: 31px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: grid;
  min-height: 104px;
  justify-items: center;
  align-content: start;
  padding-top: 4px;
  text-align: center;
}

.service-card:not(:last-child)::after {
  position: absolute;
  top: 36px;
  right: 0;
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
}

.service-card__icon {
  display: grid;
  width: 50px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--gold);
}

.service-card__icon svg {
  display: block;
}

.service-card h3 {
  max-width: 170px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.32;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid #e9e5df;
  padding: 42px 0;
  background: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.65fr;
  gap: 44px;
}

.site-footer .brand {
  width: 300px;
}

.site-footer .brand img {
  width: 300px;
}

.site-footer p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer__contact,
.site-footer__meta {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--copy);
  font-size: 14px;
}

.site-footer__contact span,
.site-footer__meta span:first-child {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .section-shell,
  .site-header__inner {
    width: min(calc(100% - 48px), 960px);
  }

  .brand,
  .brand img {
    width: 310px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .about {
    height: auto;
    padding: 44px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-header__inner {
    height: 82px;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .brand,
  .brand img {
    width: 260px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d8d2ca;
    list-style: none;
    cursor: pointer;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--black);
  }

  .mobile-nav nav {
    position: absolute;
    top: 51px;
    right: 0;
    display: grid;
    min-width: 210px;
    border: 1px solid #e3ded7;
    background: var(--white);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  }

  .mobile-nav nav a {
    padding: 15px 18px;
    font-family: var(--font-menu);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-nav nav a + a {
    border-top: 1px solid #eee9e3;
  }

  .hero {
    height: auto;
    min-height: 540px;
  }

  .hero::before {
    background-size: cover;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.24));
  }

  .hero__copy {
    width: min(100%, 470px);
    padding: 82px 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .service-card:not(:last-child)::after {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header__inner {
    width: min(calc(100% - 28px), 560px);
  }

  .brand,
  .brand img {
    width: 220px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .about h2 {
    font-size: 28px;
  }

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