@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --cream: #f7f2ea;
  --paper: #fffdf9;
  --ink: #1d1c1a;
  --muted: #6e6a63;
  --line: rgba(29, 28, 26, 0.18);
  --red: #b63131;
  --rose: #d3a4a7;
  --pink: #ead2d1;
  --blue: #95abc9;
  --max: 1440px;
  --serif: "Instrument Serif", Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { font: inherit; }
.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 { position: fixed; left: 12px; top: 12px; z-index: 100; padding: 10px 16px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.announcement {
  min-height: 34px;
  padding: 8px 24px 7px;
  color: #fff;
  background: var(--ink);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.announcement span { color: #e9b9bc; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, .94);
  backdrop-filter: blur(12px);
  transition: min-height .25s ease;
}
.site-header.compact { min-height: 68px; }
.brand { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.brand-the { font-family: var(--serif); font-size: 15px; font-style: italic; }
.brand-name { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 36px); letter-spacing: -.035em; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.site-nav a:not(.nav-etsy) { position: relative; }
.site-nav a:not(.nav-etsy)::after { position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-etsy { padding: 12px 16px; border: 1px solid var(--ink); transition: background .2s, color .2s; }
.nav-etsy:hover { color: #fff; background: var(--ink); }
.menu-button { display: none; width: 42px; height: 42px; padding: 11px 8px; border: 0; background: none; }
.menu-button span:not(.sr-only) { display: block; width: 26px; height: 1px; margin: 7px 0; background: var(--ink); transition: transform .2s; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  min-height: min(820px, calc(100vh - 122px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 9vw, 136px) clamp(28px, 6vw, 100px);
}
.eyebrow { margin: 0 0 24px; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 142px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .8;
}
.hero h1 em { color: var(--red); font-weight: 400; }
.hero-intro { max-width: 510px; margin: clamp(32px, 4vw, 56px) 0 36px; color: #484540; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 250px; padding: 16px 20px; border: 1px solid var(--ink); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }
.button-light { color: var(--ink); border-color: #fff; background: #fff; }
.button-light:hover { color: #fff; background: transparent; }
.button-full { width: 100%; }
.hero-art { position: relative; min-height: 660px; background: #d7c4bd; isolation: isolate; }
.hero-ruffle { position: absolute; top: 18%; right: -12%; z-index: -1; width: 70%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.65); border-radius: 44% 56% 63% 37% / 54% 48% 52% 46%; transform: rotate(18deg); }
.hero-ruffle::after { position: absolute; inset: 9%; border: inherit; border-radius: 63% 37% 46% 54% / 42% 58% 44% 56%; content: ""; }
.hero-photo { margin: 0; overflow: hidden; background: #d8cec7; box-shadow: 0 24px 60px rgba(29, 28, 26, .14); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { position: absolute; top: 8%; right: 8%; width: 58%; height: 72%; transform: rotate(2deg); }
.hero-photo-small { position: absolute; right: 49%; bottom: 7%; width: 28%; height: 37%; border: 8px solid var(--cream); transform: rotate(-4deg); }
.hero-note { position: absolute; right: 8%; bottom: 7%; margin: 0; font-family: var(--serif); font-size: 25px; line-height: .95; }
.hero-note span { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.marquee { width: 100%; overflow: hidden; color: #fff; background: var(--red); white-space: nowrap; }
.marquee div { display: inline-flex; align-items: center; gap: 34px; min-width: max-content; padding: 13px 0; font-family: var(--serif); font-size: 18px; animation: marquee 24s linear infinite; }
.marquee i { font-size: 11px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(88px, 11vw, 170px) clamp(20px, 4vw, 64px); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: clamp(44px, 6vw, 82px); }
.section-heading .eyebrow { margin-bottom: 16px; }
.section-heading h2, .manifesto h2, .process h2, .faq h2, .canada-section h2, .related h2 { margin: 0; font-family: var(--serif); font-size: clamp(56px, 7vw, 100px); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.section-heading > p { max-width: 360px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(32px, 4vw, 64px) clamp(14px, 2vw, 30px); }
.product-image-wrap { position: relative; display: block; aspect-ratio: 4 / 5.2; overflow: hidden; background: #e6ddd4; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.product-image-wrap:hover img { transform: scale(1.035); }
.one-only { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 10px; color: var(--ink); background: rgba(255,253,249,.9); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.view-piece { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 12px; color: #fff; background: var(--ink); text-align: center; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transform: translateY(calc(100% + 14px)); transition: transform .3s ease; }
.product-image-wrap:hover .view-piece { transform: none; }
.product-card-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-top: 17px; }
.product-kicker { margin: 0 0 6px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.05; }
.product-card h3 a:hover { color: var(--red); }
.price { flex: 0 0 auto; margin: 2px 0 0; font-size: 11px; font-weight: 600; }
.collection-end { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 72px; padding-top: 34px; border-top: 1px solid var(--line); }
.collection-end p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 20px; font-style: italic; }
.text-link { display: inline-flex; gap: 30px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.text-link:hover span { transform: translateX(3px); }
.text-link span { transition: transform .2s; }

.manifesto { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: clamp(60px, 9vw, 150px); align-items: center; max-width: none; color: #fff; background: #263347; }
.manifesto-image { position: relative; margin-left: clamp(0px, 3vw, 40px); }
.manifesto-image::before { position: absolute; inset: -16px 16px 16px -16px; z-index: 0; border: 1px solid rgba(255,255,255,.35); content: ""; }
.manifesto-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.image-caption { position: absolute; right: -44px; bottom: 36px; z-index: 2; padding: 18px 22px; color: var(--ink); background: var(--cream); font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.1; transform: rotate(-3deg); }
.manifesto-copy { max-width: 660px; }
.manifesto-copy .eyebrow { color: #b9c8dd; }
.manifesto h2 { margin-bottom: 44px; }
.large-copy { font-family: var(--serif); font-size: clamp(25px, 2.6vw, 38px); line-height: 1.15; }
.manifesto-copy > p:not(.eyebrow):not(.large-copy) { max-width: 530px; color: #ccd2da; font-size: 14px; line-height: 1.9; }
.signature { margin-top: 44px; font-family: var(--serif); font-size: 28px; font-style: italic; transform: rotate(-4deg); transform-origin: left; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); }
.process-heading { position: sticky; top: 120px; align-self: start; }
.process-heading h2 { max-width: 500px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 76px 1fr; gap: 16px; padding: 36px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.step-number { padding-top: 8px; color: var(--red); font-size: 10px; font-weight: 600; }
.process-list h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 46px; font-weight: 400; }
.process-list p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.8; }

.canada-section { position: relative; max-width: none; padding-inline: 20px; overflow: hidden; color: #fff; background: var(--red); text-align: center; }
.maple-mark { margin-bottom: 30px; font-family: var(--serif); font-size: 48px; }
.canada-section .eyebrow { color: #f0c7c7; }
.canada-section h2 { max-width: 900px; margin-inline: auto; }
.canada-section > p:not(.eyebrow) { max-width: 610px; margin: 34px auto; color: #f8dddd; line-height: 1.8; }

.faq { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 10vw, 170px); }
.faq-heading h2 { font-size: clamp(64px, 8vw, 110px); }
.faq-list { border-top: 1px solid var(--line); }
.faq details, .pdp-details details { border-bottom: 1px solid var(--line); }
.faq summary, .pdp-details summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 25px 0; cursor: pointer; font-family: var(--serif); font-size: 23px; list-style: none; }
.faq summary::-webkit-details-marker, .pdp-details summary::-webkit-details-marker { display: none; }
.faq summary span, .pdp-details summary span { font-family: var(--sans); font-size: 18px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary span, .pdp-details details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 620px; margin: -5px 0 26px; color: var(--muted); line-height: 1.8; }

.footer { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 520px; color: #fff; background: var(--ink); }
.footer-lead { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 110px); border-right: 1px solid rgba(255,255,255,.16); }
.footer-lead .eyebrow { color: #d5a7a9; }
.footer h2 { margin: 0 0 46px; font-family: var(--serif); font-size: clamp(58px, 7vw, 104px); font-weight: 400; letter-spacing: -.04em; line-height: .85; }
.text-link.light { color: #fff; }
.footer-meta { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 54px 30px; padding: clamp(60px, 7vw, 100px); }
.footer-meta > div { display: flex; flex-direction: column; gap: 10px; }
.footer-label { margin: 0 0 10px; color: #88847e; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-meta a { color: #d9d5cf; font-family: var(--serif); font-size: 18px; }
.footer-meta a:hover { color: #fff; }
.copyright { grid-column: 1/-1; align-self: end; margin: 0; color: #77736d; font-size: 10px; letter-spacing: .08em; line-height: 1.8; text-transform: uppercase; }

.breadcrumbs { display: flex; gap: 10px; max-width: var(--max); margin: 0 auto; padding: 28px clamp(20px, 4vw, 64px); color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--ink); }
.pdp { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px) clamp(90px, 10vw, 150px); gap: clamp(48px, 7vw, 110px); }
.pdp-image { position: relative; display: flex; min-height: 680px; align-items: center; justify-content: center; padding: clamp(22px, 4vw, 60px); background: #ded7cd; }
.pdp-image.blush { background: #e8d2d1; }
.pdp-image.cornflower { background: #bccad9; }
.pdp-image.lilac { background: #d7d0de; }
.pdp-image.cherry { background: #cfaaa5; }
.pdp-image.ink { background: #aeb6c0; }
.pdp-image.rose { background: #d7c3c1; }
.pdp-image img { width: 100%; max-height: 780px; object-fit: contain; mix-blend-mode: normal; }
.pdp-copy { align-self: center; padding-block: 40px; }
.pdp-copy h1 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(56px, 6vw, 90px); font-weight: 400; letter-spacing: -.045em; line-height: .9; }
.pdp-price { margin: 0 0 30px; font-size: 15px; font-weight: 600; }
.pdp-price span { margin-left: 4px; color: var(--muted); font-size: 9px; letter-spacing: .1em; }
.pdp-intro { margin: 0 0 32px; color: #504d48; font-size: 17px; line-height: 1.8; }
.checkout-note { margin: 12px 0 32px; color: var(--muted); text-align: center; font-size: 10px; }
.pdp-details { border-top: 1px solid var(--line); }
.pdp-details summary { padding: 19px 0; font-size: 18px; }
.pdp-details ul { margin: -2px 0 22px; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.pdp-details p { margin: -2px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.style-note { max-width: none; padding-block: 95px; background: var(--pink); text-align: center; }
.style-note blockquote { max-width: 950px; margin: 0 auto; font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); font-style: italic; line-height: 1.05; }
.product-grid-related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.related .section-heading { align-items: center; }
.not-found { min-height: 580px; padding: 140px 6vw; text-align: center; }
.not-found h1 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(68px, 10vw, 140px); font-weight: 400; letter-spacing: -.05em; line-height: .85; }
.not-found p:not(.eyebrow) { margin-bottom: 34px; color: var(--muted); }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-etsy):nth-child(3), .site-nav a:not(.nav-etsy):nth-child(4) { display: none; }
  .hero { grid-template-columns: .95fr 1.05fr; }
  .hero h1 { font-size: clamp(70px, 10vw, 112px); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid-related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .manifesto { gap: 70px; }
  .image-caption { right: -28px; }
  .pdp { grid-template-columns: 1fr 1fr; gap: 48px; }
  .pdp-image { min-height: 580px; }
}

@media (max-width: 760px) {
  .announcement { padding-inline: 12px; font-size: 8px; }
  .announcement span { display: none; }
  .site-header { min-height: 70px; }
  .brand-name { font-size: 29px; }
  .menu-button { display: block; z-index: 2; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 90px 28px 30px; background: var(--cream); transform: translateX(100%); transition: transform .35s ease; }
  .site-nav.open { transform: none; }
  .site-nav a:not(.nav-etsy), .site-nav a:not(.nav-etsy):nth-child(3), .site-nav a:not(.nav-etsy):nth-child(4) { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 35px; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .nav-etsy { margin-top: 28px; text-align: center; }
  .hero { display: flex; min-height: auto; flex-direction: column; }
  .hero-copy { padding: 74px 22px 66px; }
  .hero h1 { font-size: clamp(70px, 22vw, 98px); }
  .hero-intro { margin-top: 34px; font-size: 15px; }
  .hero-art { min-height: 590px; }
  .hero-photo-main { top: 7%; right: 8%; width: 68%; height: 71%; }
  .hero-photo-small { right: auto; bottom: 6%; left: 7%; width: 36%; height: 38%; }
  .hero-note { right: 7%; bottom: 7%; font-size: 20px; }
  .section { padding: 88px 20px; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading > p { margin-top: 25px; }
  .section-heading h2, .manifesto h2, .process h2, .faq h2, .canada-section h2, .related h2 { font-size: clamp(54px, 16vw, 76px); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 42px 10px; }
  .product-card h3 { font-size: 19px; }
  .product-card-info { display: block; }
  .price { margin-top: 8px; }
  .one-only { top: 8px; left: 8px; padding: 6px 7px; font-size: 7px; }
  .view-piece { display: none; }
  .collection-end { display: block; text-align: center; }
  .collection-end p { margin-bottom: 18px; }
  .manifesto { display: block; padding-block: 95px; }
  .manifesto-image { margin: 0 15px 80px 0; }
  .image-caption { right: -14px; bottom: -30px; }
  .manifesto-copy h2 { margin-bottom: 30px; }
  .process { display: block; }
  .process-heading { position: static; margin-bottom: 55px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .process-list h3 { font-size: 38px; }
  .faq { display: block; }
  .faq-heading { margin-bottom: 50px; }
  .faq summary { font-size: 20px; }
  .footer { display: block; min-height: 0; }
  .footer-lead { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .footer-meta { padding: 60px 24px; }
  .breadcrumbs { overflow: hidden; white-space: nowrap; }
  .pdp { display: block; padding-inline: 20px; }
  .pdp-image { min-height: 0; aspect-ratio: 4/5; padding: 25px; }
  .pdp-image img { max-height: 100%; }
  .pdp-copy { padding: 52px 2px 0; }
  .pdp-copy h1 { font-size: clamp(54px, 16vw, 75px); }
  .style-note { padding: 80px 22px; }
  .product-grid-related { grid-template-columns: 1fr 1fr; }
  .product-grid-related .product-card:nth-child(3) { display: none; }
  .related .section-heading .text-link { margin-top: 25px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 68px; }
  .product-grid { grid-template-columns: 1fr; row-gap: 48px; }
  .product-image-wrap { aspect-ratio: 4/5; }
  .product-card-info { display: flex; }
  .product-grid-related { grid-template-columns: 1fr 1fr; }
  .product-grid-related .product-card-info { display: block; }
}
