:root {
  --bg: #171716;
  --bg-soft: #211f1d;
  --bg-deep: #0f0f0e;
  --text: #f1eee8;
  --muted: #bdb7ad;
  --warm: #d9c7a1;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0c0c0b;
}
.hero__image {
  width: 100%;
  height: auto;
}
.hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.48) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.13) 63%, rgba(0,0,0,.67) 100%);
}
.hero__top,
.hero__content {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 56px), var(--max));
}
.hero__top {
  top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 15px;
}
.brand {
  font-weight: 650;
  letter-spacing: .035em;
  color: #fff;
  cursor: default;
  user-select: none;
}
.hero__links {
  display: flex;
  gap: 24px;
}
.hero__links a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
  transition: border-color .15s ease;
}
.hero__links a:hover { border-color: #fff; }
.hero__content {
  bottom: clamp(28px, 5vw, 74px);
}
.eyebrow,
.kicker {
  margin: 0 0 9px;
  color: var(--warm);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 1000px;
  color: #fff;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 650;
  text-shadow: 0 2px 22px rgba(0,0,0,.28);
}

.section {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 112px) 0;
}
.story {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.story--reverse .section__text { order: 2; }
.story--reverse .section__image { order: 1; }
.section__text { max-width: 520px; }
.section__text h2,
.contact h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -.025em;
  font-weight: 400;
}
.section__text p:last-child,
.contact p { margin: 0; }
.section__text p:last-child { color: #ddd8d0; }
.section__image {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 20px 55px rgba(0,0,0,.20);
}
.section__image--natural img {
  width: 100%;
  height: auto;
}

.contact {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.contact__inner {
  width: min(calc(100% - 56px), 760px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) 0;
  text-align: center;
}
.contact p { color: var(--muted); }
.contact p a { color: var(--text); }
.contact__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.button {
  display: inline-block;
  padding: 11px 22px 12px;
  color: #171716;
  background: var(--text);
  border: 1px solid var(--text);
  text-decoration: none;
  font-weight: 650;
  border-radius: 999px;
}
.button:hover { background: #fff; }
.textlink { color: var(--text); text-underline-offset: 4px; }

.gallery {
  width: min(calc(100% - 56px), 1320px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery figure:nth-child(3) img { object-position: 50% 43%; }
.gallery figure:nth-child(4) img { object-position: 50% 42%; }

footer {
  min-height: 96px;
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  background: var(--bg-deep);
  color: #827e77;
  font-size: 13px;
}
footer a { 
    color: #aaa49a; 
}

.photo-credit { 
    color: #6f6b65;
    text-align: center;
}

.photo-credit a { 
    color: #817d76; 
    text-decoration-thickness: 1px; 
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .hero__top,
  .hero__content,
  .section,
  .contact__inner,
  .gallery { width: min(calc(100% - 32px), var(--max)); }
  .hero__top { top: 17px; }
  .hero__links { gap: 14px; }
  .hero__content { bottom: 22px; }
  .hero h1 { font-size: clamp(38px, 11vw, 64px); }
  .story {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .story--reverse .section__text,
  .story--reverse .section__image { order: initial; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

@media (max-width: 520px) {
  .hero__image {
    width: 100%;
    height: auto;
  }
  .brand { font-size: 13px; }
  .hero__links { font-size: 12px; }
  .eyebrow { font-size: 10px; margin-bottom: 5px; }
  .hero h1 { font-size: clamp(34px, 10.5vw, 48px); }
  .section__text h2,
  .contact h2 { font-size: 36px; }
}
