
:root {
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #171715;
  --muted: #6f6b65;
  --line: rgba(23, 23, 21, .13);
  --soft-line: rgba(23, 23, 21, .08);
  --mushroom: #ded8ce;
  --taupe: #b4a797;
  --sage: #a9aca1;
  --charcoal: #2b2b28;
  --max: 1200px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(31, 28, 24, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.cart-open { overflow: hidden; }

a { color: inherit; }
img { max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  top: .75rem;
  left: .75rem;
  z-index: 500;
  padding: .7rem 1rem;
  background: #fff;
  border-radius: 999px;
}

.announcement {
  background: #111;
  color: #fff;
  text-align: center;
  padding: .6rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark,
.footer-mark {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
}

.brand-mark img {
  position: absolute;
  width: 160px;
  max-width: none;
  left: -50px;
  top: -11px;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.brand-copy strong { font-size: 1.05rem; }

.brand-copy small {
  margin-top: .28rem;
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 1.55rem;
}

.primary-nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
  color: #33322f;
}

.primary-nav a:hover { text-decoration: underline; text-underline-offset: .35rem; }

.nav-toggle,
.cart-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  padding: .68rem .92rem;
  color: var(--ink);
}

.nav-toggle { display: none; }

.cart-button span {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-left: .35rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
}

main { overflow: hidden; }

.hero {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 4.5rem 1.4rem 5rem;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: #565650;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7.2vw, 6.9rem);
  line-height: .96;
}

h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
  line-height: 1;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.lede {
  max-width: 660px;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: .78rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
}

.button-dark {
  background: #171715;
  color: #fff;
}

.button-dark:hover { background: #000; }

.button-light {
  background: rgba(255,255,255,.6);
  border-color: var(--line);
}

.hero-proof {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-proof div {
  border-top: 1px solid var(--line);
  padding-top: .9rem;
}

.hero-proof strong {
  display: block;
  margin-bottom: .2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.logo-stage {
  position: absolute;
  inset: 2% 4% 5% 2%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44% 36% 42% 35% / 32% 44% 35% 46%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.035) 0 1px, transparent 1.5px),
    linear-gradient(145deg, #fff, #f2efe9);
  background-size: 13px 13px, auto;
  box-shadow: var(--shadow);
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: inherit;
  pointer-events: none;
}

.logo-stage img {
  width: 90%;
  transform: translateY(-2%);
  filter: contrast(1.03);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(330px, 75%);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.note-kicker {
  display: block;
  margin-bottom: .25rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.2rem 1.4rem;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-intro > p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.collection-card {
  min-height: 330px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
  position: relative;
}

.collection-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -45px;
  bottom: -55px;
  border-radius: 47% 53% 43% 57%;
  border: 1px solid rgba(0,0,0,.12);
  transform: rotate(-18deg);
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.collection-handmade { background: #e3ded5; }
.collection-clothing { background: #c9cbc2; }
.collection-gifts { background: #d6ccc4; }

.collection-number {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.collection-card div {
  align-self: end;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.collection-card p {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-card h3 { font-size: 2.25rem; }

.collection-card div span {
  display: block;
  margin-top: .7rem;
  color: #4f4c47;
  font-size: .86rem;
}

.collection-card b {
  margin-top: 1.2rem;
  font-size: .82rem;
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading > p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
}

.section-heading.compact { grid-template-columns: 1fr; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .82rem;
  background: transparent;
  color: var(--ink);
}

.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.inventory-note {
  color: var(--muted);
  font-size: .76rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.52);
}

.product-visual {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 50%;
}

.product-visual::before {
  width: 62%;
  height: 62%;
  transform: rotate(18deg);
}

.product-visual::after {
  width: 34%;
  height: 34%;
  transform: translate(45%, -35%) rotate(-18deg);
}

.product-visual span {
  position: relative;
  z-index: 2;
  padding: .4rem .7rem;
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.visual-1 { background: #d4cbc3; }
.visual-2 { background: #b8b9b0; }
.visual-3 { background: #d4d0c1; }
.visual-4 { background: #c7c0c8; }
.visual-5 { background: #bfb5aa; }
.visual-6 { background: #b7c1bf; }

.product-info { padding: 1rem; }

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.product-topline h3 {
  font-size: 1.35rem;
}

.product-info p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.product-badge {
  display: inline-block;
  margin-bottom: .65rem;
  color: #5b5650;
  font-size: .66rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.price {
  font-weight: 850;
  white-space: nowrap;
}

.product-card .button {
  width: 100%;
  margin-top: 1rem;
}

.craft-section { padding-top: 4rem; }

.craft-panel {
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 30px;
  background: #1d1d1b;
  color: #fff;
}

.craft-panel .eyebrow { color: #bbb9b3; }

.craft-copy {
  max-width: 770px;
}

.craft-copy > p:last-child {
  max-width: 630px;
  color: #c9c6bf;
}

.process-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-grid article {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.process-grid article > span {
  display: block;
  margin-bottom: 3rem;
  color: #aaa79f;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.process-grid h3 {
  margin-bottom: .55rem;
  color: #fff;
}

.process-grid p {
  margin: 0;
  color: #bdb9b2;
  font-size: .84rem;
}

.custom-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 4rem;
  align-items: center;
}

.custom-visual {
  min-height: 560px;
  position: relative;
}

.botanical-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 47% 36% 40% 32% / 37% 42% 34% 44%;
  background: #fff;
}

.botanical-frame img {
  width: 120%;
  max-width: none;
  transform: translateY(-1%);
}

.custom-copy > p {
  max-width: 590px;
  color: var(--muted);
}

.custom-list {
  margin: 2rem 0;
  display: grid;
}

.custom-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.custom-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.custom-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.custom-list span {
  color: var(--muted);
  font-size: .86rem;
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.about-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  border-radius: var(--radius);
}

.about-card > p {
  margin: 0 0 1rem;
  color: #4d4a45;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-card li {
  padding: .85rem 0;
  border-top: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.reassurance {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.reassurance article {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.42);
}

.mini-mark {
  display: block;
  margin-bottom: 2rem;
}

.reassurance h3 {
  font-size: 1.25rem;
}

.reassurance p {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.newsletter-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 3rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #d7d0c6;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-section p:not(.eyebrow) {
  max-width: 600px;
  color: #58534c;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
}

.newsletter-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(23,23,21,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.newsletter-form input:focus {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.faq-list { border-top: 1px solid var(--line); }

details {
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 0;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.2rem; font-weight: 400; }
details[open] summary::after { content: "–"; }

details p {
  max-width: 700px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 4rem;
  align-items: center;
}

.contact-section > div > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: .7rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-label {
  margin-bottom: .4rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.contact-card a { text-decoration-thickness: 1px; text-underline-offset: .25rem; }

.contact-card em {
  color: var(--muted);
  font-size: .7rem;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.4rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
}

.footer-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
}

.footer-mark img {
  position: absolute;
  width: 125px;
  max-width: none;
  left: -39px;
  top: -8px;
}

.footer-brand div {
  display: grid;
}

.footer-brand div span {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a { text-decoration: none; }

.cart-drawer {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  padding: 1.2rem;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(0,0,0,.14);
  transform: translateX(105%);
  transition: transform .25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 { font-size: 2.25rem; }

.icon-button {
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
  padding: 1rem 0;
}

.cart-empty { color: var(--muted); }

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
}

.cart-item strong {
  display: block;
  font-size: .87rem;
}

.cart-item small {
  color: var(--muted);
  font-size: .75rem;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .74rem;
  text-decoration: underline;
}

.cart-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.full-width { width: 100%; }

.microcopy {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .72rem;
}

.scrim {
  position: fixed;
  z-index: 290;
  inset: 0;
  background: rgba(15,15,14,.34);
  backdrop-filter: blur(2px);
}

.toast {
  position: fixed;
  z-index: 500;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 120px);
  padding: .8rem 1rem;
  border-radius: 999px;
  background: #171715;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
  font-size: .82rem;
}

.toast.show { transform: translate(-50%, 0); }

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

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    display: none;
    position: absolute;
    z-index: 200;
    top: 82px;
    left: 1.4rem;
    right: 1.4rem;
    padding: 1rem;
    flex-direction: column;
    gap: .8rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav.open { display: flex; }

  .hero,
  .custom-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero { gap: 2rem; }

  .hero-visual { min-height: 520px; }

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

  .section-heading,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

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

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links { justify-content: flex-start; }
}

@media (max-width: 650px) {
  .announcement {
    font-size: .63rem;
    letter-spacing: .1em;
  }

  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-copy small { display: none; }
  .brand-copy strong { font-size: .9rem; }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 126px;
    left: -40px;
    top: -8px;
  }

  .hero,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: 2.3rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-note {
    width: 82%;
  }

  .collection-grid,
  .product-grid,
  .process-grid,
  .reassurance {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-visual {
    min-height: 430px;
  }

  .custom-list div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .newsletter-section {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem 1rem;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
