:root {
  color-scheme: light;
  --ivory: #f8f3ea;
  --paper: #fffaf2;
  --ink: #25211d;
  --muted: #6e655d;
  --sage: #8a9b82;
  --sage-dark: #51624c;
  --rose: #c88e86;
  --gold: #b78a48;
  --charcoal: #1d2220;
  --line: rgba(37, 33, 29, 0.16);
  --shadow: 0 24px 70px rgba(34, 27, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(248, 243, 234, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 16px clamp(18px, 4vw, 52px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.95);
  box-shadow: 0 10px 30px rgba(36, 32, 28, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--charcoal);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  flex: 0 0 42px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  justify-content: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2vw, 25px);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-top: 2px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: rgba(37, 33, 29, 0.75);
}

.site-nav a:hover,
.text-link:hover {
  color: var(--sage-dark);
}

.nav-action,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-action {
  background: var(--ink);
  color: var(--paper);
}

.button:hover,
.nav-action:hover {
  transform: translateY(-1px);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  justify-self: end;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 22px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.96) 0%, rgba(248, 243, 234, 0.76) 37%, rgba(248, 243, 234, 0.18) 68%),
    linear-gradient(180deg, rgba(29, 34, 32, 0.2), rgba(29, 34, 32, 0.05));
}

.hero-content {
  max-width: 760px;
  padding: clamp(142px, 18vh, 190px) clamp(18px, 5vw, 72px) 80px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.88;
  margin-bottom: 26px;
  max-width: 680px;
}

h2 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  font-size: 28px;
  line-height: 1.04;
}

.hero-copy {
  color: #51463d;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  background: var(--charcoal);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(37, 33, 29, 0.2);
}

.band {
  background: var(--paper);
}

.intro,
.collection,
.story,
.process,
.inquiry,
.visit {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  gap: clamp(26px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
}

.intro-grid p,
.story-panel p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 800px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  flex: 0 0 auto;
  font-weight: 800;
  padding-bottom: 4px;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(37, 33, 29, 0.08);
  overflow: hidden;
}

.product-visual {
  aspect-ratio: 1.08;
  background: #efe3d2;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-copy {
  padding: 24px;
}

.product-copy p,
.product-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 22px;
}

.story {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.story-panel {
  max-width: 620px;
}

.materials {
  align-content: center;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.materials span {
  border-top: 1px solid var(--line);
  color: #463d36;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 38px);
  padding-top: 16px;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.steps span {
  color: var(--rose);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 24px;
}

.steps p {
  color: var(--muted);
  line-height: 1.65;
}

.inquiry {
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
}

.inquiry-copy {
  max-width: 620px;
}

.inquiry-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: var(--paper);
  border: 1px solid rgba(37, 33, 29, 0.22);
  border-radius: 6px;
  color: var(--ink);
  font: 500 16px/1.4 Inter, system-ui, sans-serif;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(138, 155, 130, 0.2);
  outline: 0;
}

.full {
  border: 0;
  cursor: pointer;
  margin-top: 6px;
  width: 100%;
}

.visit {
  align-items: start;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.visit h2 {
  max-width: 620px;
}

.visit-details {
  border-left: 1px solid var(--line);
  color: var(--muted);
  flex: 0 1 430px;
  line-height: 1.6;
  padding-left: 26px;
}

.site-footer {
  align-items: center;
  background: var(--charcoal);
  color: var(--paper);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .nav-action {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .nav-action {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-header.is-open .nav-action {
    justify-self: stretch;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(248, 243, 234, 0.97) 0%, rgba(248, 243, 234, 0.82) 55%, rgba(248, 243, 234, 0.34) 100%);
  }

  .intro-grid,
  .story,
  .inquiry,
  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .visit,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .visit-details {
    border-left: 0;
    border-top: 1px solid var(--line);
    flex-basis: auto;
    padding-left: 0;
    padding-top: 24px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    flex-basis: 38px;
  }

  .brand strong {
    font-size: 19px;
  }

  .hero-content {
    padding-top: 128px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-copy {
    padding: 20px;
  }
}
