@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');
:root {
  --cream: #f5f1eb;
  --ink: #16130f;
  --soft-ink: #3d362c;
  --gold: #a68a46;
  --line: rgba(22, 19, 15, 0.14);
  --card: rgba(255, 255, 255, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(40px, 7vw, 76px) 0 42px;
}

.hero-copy {
  padding-left: clamp(0px, 2vw, 12px);
}

.brand-mark {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 4.9vw, 4.3rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.brand-mark .prime {
  color: var(--ink);
}

.brand-mark .forge {
  background: linear-gradient(90deg, #8f7130 0%, #c79c3d 45%, #a97822 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark .studio {
  color: var(--ink);
}

h1 {
  max-width: 430px;
  margin: 6px 0 0;
  color: var(--soft-ink);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(0.78rem, 0.95vw, 0.94rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.statement {
  max-width: 430px;
  margin: clamp(42px, 5.2vw, 62px) 0 0;
  color: var(--soft-ink);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.statement em {
  color: var(--gold);
  font-style: normal;
}

.statement::selection,
h1::selection,
.brand-mark::selection {
  background: rgba(166, 138, 70, 0.24);
}

.explore {
  margin-top: clamp(80px, 13vw, 148px);
  color: var(--soft-ink);
}

.explore p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  letter-spacing: 0.02em;
}

.explore div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  font-weight: 600;
}

.explore a {
  color: var(--soft-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.explore a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.explore span {
  color: var(--gold);
}

.hero-art {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 580px;
}

.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 0.89 / 1;
  object-fit: cover;
}

.directions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin: 24px 0 56px;
}

.directions article {
  min-height: 230px;
  padding: 28px 24px;
  background: var(--card);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.directions span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 0.9rem;
}

.directions h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.directions p {
  margin: 0;
  color: var(--soft-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 34px;
  color: var(--soft-ink);
  font-size: 1rem;
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  color: var(--gold);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-art {
    max-width: none;
    justify-self: stretch;
  }

  .hero-art img {
    aspect-ratio: 16 / 10;
  }

  .explore {
    margin-top: 56px;
  }

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

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

  .brand-mark {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  .statement {
    margin-top: 48px;
  }

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

  .directions article {
    min-height: 190px;
  }

  .directions span {
    margin-bottom: 32px;
  }

  .footer {
    flex-direction: column;
  }
}
