:root {
  color-scheme: dark;
  --ink: #100f0d;
  --deep: #171410;
  --paper: #f3eee8;
  --muted: #b9ada5;
  --dim: #81746d;
  --line: rgba(255, 255, 255, .12);
  --accent: #8f6e5f;
  --accent-soft: #b99583;
  --gotham: "Gotham", "Gotham SSm", "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --cn: "Songti SC", "STSong", "Noto Serif SC", "PingFang SC", "Microsoft YaHei", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--cn);
}

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

img {
  max-width: 100%;
}

.en {
  font-family: var(--gotham);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  min-height: 82px;
  padding: 0 max(44px, env(safe-area-inset-right)) 0 max(44px, env(safe-area-inset-left));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(10, 9, 8, .72), rgba(10, 9, 8, .18));
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: grid;
  gap: 8px;
  width: max-content;
}

.brand-lockup span {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 12px;
}

.brand-lockup small {
  color: #d5c9c0;
  font-size: 13px;
  letter-spacing: 9px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 78px);
  color: #d8cec7;
  font-size: 16px;
  letter-spacing: 4px;
}

nav a,
.phone-link,
.primary-link,
.text-link {
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

nav a:hover,
.phone-link:hover,
.text-link:hover {
  color: #fff;
}

.phone-link {
  justify-self: end;
  color: #d8cec7;
  font-size: 13px;
  letter-spacing: .4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  filter: saturate(.86) contrast(1.08) brightness(.82);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 235, 213, .08), transparent 35%),
    linear-gradient(90deg, rgba(8, 7, 6, .9), rgba(8, 7, 6, .54) 42%, rgba(8, 7, 6, .12) 64%, rgba(8, 7, 6, .46)),
    linear-gradient(180deg, rgba(8, 7, 6, .28), rgba(8, 7, 6, .88));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 80px));
  padding: 25vh 0 96px 7.2vw;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(72px, 11vw, 132px);
  font-weight: 300;
  letter-spacing: .32em;
  line-height: .92;
}

.hero-cn {
  margin: 31px 0 0;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: 22px;
}

.hairline {
  display: block;
  width: 58px;
  height: 1px;
  margin: 30px 0 30px;
  background: var(--accent-soft);
}

.hero-desc {
  margin: 0 0 44px;
  color: #e4d7cf;
  font-size: 17px;
  letter-spacing: 8px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-width: 180px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(185, 149, 131, .82);
  background: rgba(143, 110, 95, .92);
  color: #fff;
  font-size: 15px;
  letter-spacing: 4px;
}

.primary-link:hover {
  transform: translateY(-1px);
  border-color: #d0aa99;
  background: rgba(166, 128, 110, .96);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: #c9beb7;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(#fff, transparent);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(320px, 31vw) 1fr;
  gap: 5.8vw;
  padding: 66px 7.2vw 68px;
  background:
    radial-gradient(circle at 94% 8%, rgba(155, 122, 104, .12), transparent 28%),
    var(--deep);
}

.editorial-copy {
  align-self: center;
}

.editorial-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 4px;
}

.script {
  margin: 8px 0 26px;
  color: var(--accent-soft);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 1px;
}

.editorial-copy > p:not(.script) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 38px 0 28px;
}

.service-list article {
  min-width: 0;
}

.service-list span {
  color: var(--accent-soft);
  font-size: 12px;
  letter-spacing: 1px;
}

.service-list h3 {
  margin: 12px 0 7px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
}

.service-list p {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.7;
}

.text-link {
  color: #d7c8bf;
  font-size: 14px;
  letter-spacing: 3px;
}

.image-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.image-triptych figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #211c19;
}

.image-triptych img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.03) brightness(.86);
  transition: transform .45s ease, filter .45s ease;
}

.image-triptych figure:hover img {
  transform: scale(1.035);
  filter: saturate(.96) contrast(1.05) brightness(.94);
}

.image-triptych figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  background: rgba(13, 11, 10, .62);
  color: #eaded7;
  font-size: 13px;
  letter-spacing: 4px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 42px 7.2vw 52px;
  background:
    linear-gradient(90deg, rgba(244, 239, 233, .94), rgba(226, 215, 206, .88)),
    url("/assets/crops/contact-hero.jpg") center/cover;
  color: #231f1d;
}

.visit h2 {
  margin: 0 0 9px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 4px;
}

.visit p,
.visit-lines {
  margin: 0;
  color: #655850;
  font-size: 14px;
  line-height: 1.85;
  white-space: pre-line;
}

.visit .primary-link {
  color: #fff;
}

footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 38px 20px 46px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #0d0c0b;
  color: rgba(255, 255, 255, .68);
}

footer span {
  font-size: 24px;
  letter-spacing: 12px;
}

footer small {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 2px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 170px 1fr;
    min-height: 74px;
  }

  .phone-link {
    display: none;
  }

  .brand-lockup span {
    font-size: 17px;
    letter-spacing: 8px;
  }

  nav {
    justify-content: end;
    gap: 28px;
    font-size: 14px;
  }

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

  .image-triptych figure {
    min-height: 430px;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 13px 20px;
  }

  nav {
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-copy {
    width: calc(100% - 40px);
    padding: 30vh 0 90px 24px;
  }

  .hero-copy h1 {
    font-size: 58px;
    letter-spacing: .16em;
  }

  .hero-cn {
    font-size: 23px;
    letter-spacing: 12px;
  }

  .hero-desc {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 4px;
  }

  .editorial {
    padding: 52px 20px;
  }

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

  .image-triptych {
    grid-template-columns: 1fr;
  }

  .image-triptych figure {
    min-height: 460px;
  }

  .visit {
    padding: 42px 20px;
  }
}
