:root {
  --ink: #2a2f28;
  --forest: #3d4a3a;
  --sage: #6f7f68;
  --mauve: #8a6f7c;
  --mauve-deep: #6e5563;
  --linen: #f3efe8;
  --fog: #e6e1d7;
  --line: rgba(42, 47, 40, 0.12);
  --header-h: 5.5rem;
  --content: 1180px;
  --pad: 1.25rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mauve-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }

.wrap {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 40;
  height: var(--header-h);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(243, 239, 232, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand { line-height: 0; }
.brand-logo {
  height: 4.6rem;
  width: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.2));
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-header.is-scrolled .brand-logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  filter: none;
}
.nav {
  margin-left: auto;
  display: none;
  gap: 1.35rem;
}
.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.92;
}
.nav a:hover { opacity: 1; color: var(--mauve); }
.site-header.is-scrolled .nav a:hover { color: var(--mauve-deep); }
.header-cta {
  display: none;
  text-decoration: none;
  background: var(--mauve);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
}
.header-cta:hover { background: #fff; color: var(--ink); }
.site-header.is-scrolled .header-cta {
  background: var(--forest);
  color: #fff;
}
.site-header.is-scrolled .header-cta:hover { background: var(--ink); }

.nav-toggle {
  margin-left: auto;
  width: 2.5rem; height: 2.5rem;
  border: 0; background: transparent;
  display: grid; place-content: center; gap: 6px; cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block; width: 1.35rem; height: 2px; background: currentColor;
}
@media (min-width: 880px) {
  .nav, .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .brand-logo { height: 5.1rem; }
}
.nav.is-open {
  display: flex;
  position: absolute;
  left: var(--pad); right: var(--pad);
  top: calc(var(--header-h) - 0.4rem);
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: rgba(243, 239, 232, 0.98);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 47, 40, 0.78) 0%, rgba(42, 47, 40, 0.42) 48%, rgba(42, 47, 40, 0.18) 100%),
    linear-gradient(0deg, rgba(42, 47, 40, 0.7) 0%, transparent 52%);
}
.hero > .wrap {
  width: 100%;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}
.hero-panel { max-width: 38rem; }
.hero-logo {
  width: min(280px, 62vw);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}
.hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.lead {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-solid {
  background: var(--mauve);
  color: #fff;
}
.btn-solid:hover { background: #fff; color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

.strip {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 0;
}
.strip p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-band {
  max-width: 40rem;
  margin: 0 0 2.75rem;
}
.section-lead {
  margin: 0;
  color: rgba(42, 47, 40, 0.75);
}
.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mauve-deep);
}
h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.12;
}

.product-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.product-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 1rem;
}
.product-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.product-grid p {
  margin: 0;
  color: rgba(42, 47, 40, 0.75);
  font-size: 0.98rem;
}

.story { background: var(--fog); }
.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}
.story-photo { margin: 0; }
.story-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.story-copy p { color: rgba(42, 47, 40, 0.78); }

.contact {
  background: var(--forest);
  color: #fff;
}
.contact .eyebrow { color: #c4aeb8; }
.contact h2 { color: #fff; }
.contact .section-lead { color: rgba(255, 255, 255, 0.75); }
.contact-center {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}
.contact-logo {
  width: 9rem;
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.5rem 0 1.25rem;
}
.contact .btn-solid:hover { background: #fff; color: var(--ink); }
.tiny {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: rgba(42, 47, 40, 0.65);
  background: var(--linen);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}
.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
