:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #271a1f;
  background: #fff8f6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #fff8f6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fffaf8;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: #f6c5c1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 6vw, 84px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(29, 14, 19, 0.82) 0%, rgba(56, 25, 32, 0.58) 43%, rgba(56, 25, 32, 0.16) 100%),
    linear-gradient(0deg, rgba(39, 26, 31, 0.28), rgba(39, 26, 31, 0.08));
}

.hero-content {
  position: relative;
  max-width: 720px;
  color: #fffaf8;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #f0b8b2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
}

.lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 250, 248, 0.9);
  font-size: clamp(1.08rem, 2.3vw, 1.42rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: #fffaf8;
  color: #271a1f;
}

.button.secondary {
  border-color: rgba(255, 250, 248, 0.45);
  color: #fffaf8;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.intro,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 9vw, 110px) clamp(18px, 6vw, 84px);
  background: #fff8f6;
}

.intro h2,
.visit h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: #3a242b;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
}

.intro > p {
  max-width: 720px;
  margin: 0;
  color: #6d545a;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #e7d7d4;
  padding: 1px;
}

.collection-grid article {
  min-height: 300px;
  padding: clamp(26px, 4vw, 44px);
  background: #3a242b;
  color: #fffaf8;
}

.collection-grid span {
  display: block;
  margin-bottom: 70px;
  color: #f0b8b2;
  font-weight: 900;
}

.collection-grid h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.collection-grid p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 250, 248, 0.78);
  line-height: 1.65;
}

.visit {
  align-items: end;
  background: #f4e3df;
}

.visit .button.primary {
  justify-self: end;
  background: #3a242b;
  color: #fffaf8;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 150px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(29, 14, 19, 0.88), rgba(56, 25, 32, 0.48));
  }

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

  .visit .button.primary {
    justify-self: start;
  }
}
