:root {
  --paper: #fffdf8;
  --linen: #f7efe4;
  --mist: #edf4ee;
  --petal: #f6e9ed;
  --ink: #30251f;
  --walnut: #4a2d21;
  --leaf: #53603d;
  --sage: #8b9870;
  --rose: #b78391;
  --line: rgba(74, 45, 33, .16);
  --muted: #74685f;
  --glass: rgba(255, 253, 248, .72);
  --shadow: 0 24px 70px rgba(74, 45, 33, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #e9e1d6;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .98;
  color: var(--walnut);
}

h1 { font-size: clamp(3.1rem, 8vw, 6.2rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h4 { font-size: 1.45rem; }

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 253, 248, .06);
  background: rgba(255, 253, 248, .05);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--walnut);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(255, 253, 248, .86);
  white-space: nowrap;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.links {
  display: flex;
  gap: clamp(14px, 2.1vw, 28px);
  color: var(--ink);
  font-size: .95rem;
  text-shadow: 0 1px 18px rgba(255, 253, 248, .88);
}

.links a.active { color: var(--leaf); font-weight: 700; }

.hero,
.washed-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px clamp(20px, 4vw, 58px) 72px;
  display: grid;
  align-content: end;
  background-image:
    linear-gradient(180deg, rgba(255,253,248,.24), rgba(255,253,248,0) 150px),
    linear-gradient(90deg, rgba(255,253,248,.96), rgba(255,253,248,.72) 42%, rgba(255,253,248,.08)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center top);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--leaf);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero p,
.washed-hero p {
  max-width: 620px;
  font-size: 1.06rem;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  color: var(--walnut);
  font: inherit;
  font-weight: 700;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.primary {
  border-color: var(--leaf);
  background: var(--leaf);
  color: #fffdf8;
}

.section {
  position: relative;
  padding: 150px clamp(20px, 4vw, 58px) 62px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 22%, rgba(183,131,145,.13), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(139,152,112,.16), transparent 32%),
    linear-gradient(135deg, var(--paper), var(--linen) 58%, var(--mist));
}

.glass {
  border: 1px solid rgba(255,255,255,.78);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: end;
}

.range-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.range-card,
.article-card,
.shop-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.82);
}

.range-card img,
.shop-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center top;
  transition: opacity .18s ease;
}

.article-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}

.range-card div,
.article-card div,
.shop-card div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
}

.filter {
  align-self: start;
  padding: 28px;
}

.filter-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.filter-list button {
  justify-content: flex-start;
  min-height: 44px;
}

.filter-list button.active {
  color: #fffdf8;
  background: var(--leaf);
  border-color: var(--leaf);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.swatch-button {
  position: relative;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 1px solid rgba(74,45,33,.24);
  border-radius: 50%;
  background: var(--swatch, #efe5d7);
  box-shadow: inset 0 0 0 2px rgba(255,253,248,.74);
}

.swatch-button.active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--leaf);
  border-radius: 50%;
}

.is-swapping { opacity: .35; }

.story-panel,
.form {
  padding: 32px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.values div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--walnut);
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: rgba(255,255,255,.52);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  padding: 36px clamp(20px, 4vw, 58px);
  background: #e9e1d6;
  color: var(--muted);
}

.footer img {
  width: 116px;
  margin-bottom: 12px;
}

@media (max-width: 920px) {
  .nav {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .links { flex-wrap: wrap; }

  .intro-grid,
  .contact-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .range-grid,
  .article-grid,
  .shop-grid,
  .values {
    grid-template-columns: 1fr;
  }

  h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  h2 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
}
