:root {
  --ink: #28242b;
  --muted: #706b70;
  --paper: #f6f1ea;
  --paper-deep: #ede4da;
  --line: rgba(40, 36, 43, 0.15);
  --lavender: #c5b0d7;
  --lavender-deep: #8d709f;
  --gold: #ae7b42;
  --white: #fffdfa;
  --radius: 2px;
  --shadow: 0 26px 70px rgba(75, 57, 44, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 72px)); margin: 0 auto; }
.section { padding: 132px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", serif; font-weight: 500; letter-spacing: -0.02em; }
h1 { margin-bottom: 24px; font-size: clamp(4rem, 8vw, 7.9rem); line-height: 0.92; }
h2 { margin-bottom: 22px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; }
h1 em, h2 em { color: var(--lavender-deep); font-style: italic; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 23px; color: var(--lavender-deep); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; line-height: 1; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; background: var(--lavender-deep); }
.section-lede, .collection-intro { color: var(--muted); font-size: 16px; }

.site-header { position: fixed; z-index: 20; top: 0; width: 100%; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { background: rgba(246, 241, 234, .94); border-color: var(--line); box-shadow: 0 8px 30px rgba(40, 36, 43, .06); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; overflow: hidden; border: 1px solid rgba(141, 112, 159, .5); border-radius: 50%; background: var(--lavender); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.brand-copy { display: grid; gap: 0; line-height: 1.08; }
.brand-copy strong { font-family: "Playfair Display", serif; font-size: 17px; font-weight: 600; }
.brand-copy small { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 12px; font-weight: 600; }
.site-nav a:not(.nav-cta), .footer-links a { transition: color .2s ease; }
.site-nav a:not(.nav-cta):hover, .footer-links a:hover { color: var(--lavender-deep); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 11px 17px; border: 1px solid var(--ink); border-radius: 999px; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { color: var(--white); background: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero { position: relative; min-height: 850px; overflow: hidden; padding: 185px 0 112px; background: #ece3f4; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 82px; }
.hero-decor { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.decor-word { position: absolute; color: rgba(141, 112, 159, .15); font-family: "Playfair Display", serif; font-size: clamp(4rem, 10vw, 10rem); font-style: italic; letter-spacing: .02em; line-height: .8; white-space: nowrap; will-change: transform; }
.decor-word-one { top: 11%; left: 2%; animation: wordDriftOne 14s ease-in-out infinite alternate; }
.decor-word-two { top: 44%; right: -4%; animation: wordDriftTwo 16s ease-in-out infinite alternate; }
.decor-word-three { bottom: 5%; left: 26%; animation: wordDriftThree 15s ease-in-out infinite alternate; }
.decor-word-four { top: 26%; left: 46%; font-size: clamp(2.8rem, 6vw, 6rem); animation: wordDriftFour 13s ease-in-out infinite alternate; }
.decor-pearl { position: absolute; display: block; width: 25px; height: 25px; border: 1px solid rgba(174, 123, 66, .23); border-radius: 50%; background: rgba(255, 253, 250, .25); box-shadow: inset -5px -5px 8px rgba(141, 112, 159, .16), 0 4px 12px rgba(141, 112, 159, .08); animation: pearlFloat 5s ease-in-out infinite; will-change: transform; }
.decor-pearl-one { top: 18%; left: 42%; animation-delay: -1s; }
.decor-pearl-two { top: 75%; left: 7%; width: 16px; height: 16px; animation-delay: -4s; }
.decor-pearl-three { top: 31%; right: 7%; width: 34px; height: 34px; animation-delay: -2.5s; }
.decor-pearl-four { bottom: 12%; right: 40%; width: 19px; height: 19px; animation-delay: -5s; }
.decor-pearl-five { top: 8%; right: 27%; width: 13px; height: 13px; animation-delay: -3s; }
.hero-copy { padding-bottom: 14px; }
.hero-lede { max-width: 395px; margin-bottom: 31px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 53px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .01em; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.button span { font-size: 17px; font-weight: 400; line-height: 1; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(40, 36, 43, .15); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--lavender-deep); }
.button-light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 700; }
.text-link span { font-size: 17px; font-weight: 400; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -2px); }
.hero-notes { display: flex; gap: 25px; margin-top: 87px; }
.hero-notes div { display: grid; gap: 3px; min-width: 100px; border-left: 1px solid var(--line); padding-left: 11px; }
.hero-notes strong { color: var(--lavender-deep); font-size: 9px; letter-spacing: .12em; }
.hero-notes span { color: var(--muted); font-size: 10px; }
.hero-image-frame { position: relative; height: 605px; overflow: hidden; background: var(--paper-deep); box-shadow: var(--shadow); }
.hero-image-frame::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .34); content: ""; pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; transition: transform 1.1s cubic-bezier(.2, .7, .2, 1); }
.hero-image-frame:hover img { transform: scale(1.035); }
.image-stamp { position: absolute; right: 20px; bottom: 20px; display: grid; gap: 2px; width: 94px; height: 94px; place-content: center; border-radius: 50%; color: var(--ink); background: var(--lavender); font-size: 8px; font-weight: 700; letter-spacing: .13em; line-height: 1.35; text-align: center; transform: rotate(-10deg); }
.image-stamp::before { position: absolute; inset: 6px; border: 1px solid rgba(40, 36, 43, .4); border-radius: 50%; content: ""; }
.image-caption { display: flex; justify-content: space-between; margin: 12px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll { position: absolute; right: 5.2%; bottom: 36px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { width: 1px; height: 43px; background: var(--lavender-deep); }

.brand-statement { color: var(--white); background: var(--ink); }
.statement-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 125px; }
.statement-inner p { max-width: 310px; margin: 0; font-family: "Playfair Display", serif; font-size: 19px; line-height: 1.3; }
.statement-inner p:last-child { text-align: right; }
.statement-mark { color: var(--lavender); font-size: 30px; }

.story { background: var(--paper-deep); }
.story-grid { display: grid; grid-template-columns: .98fr 1fr; align-items: center; gap: 104px; }
.story-visual { position: relative; padding: 0 34px 29px 0; }
.story-image-wrap { height: 570px; overflow: hidden; box-shadow: var(--shadow); }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-side-note { position: absolute; right: 0; bottom: 0; display: grid; gap: 4px; width: 155px; padding: 19px 17px; background: var(--lavender); }
.story-side-note span { font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.story-side-note strong { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 500; }
.story-copy { max-width: 535px; }
.story-copy h2 { max-width: 450px; }
.story-copy .section-lede { max-width: 500px; margin-bottom: 42px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.feature { border-top: 1px solid var(--line); padding-top: 17px; }
.feature-icon { display: inline-flex; width: 25px; height: 25px; margin-bottom: 14px; color: var(--lavender-deep); }
.feature-icon svg { width: 100%; height: 100%; }
.feature h3 { margin-bottom: 5px; font-family: "Playfair Display", serif; font-size: 18px; font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.collection { background: var(--paper); }
.collection-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 43px; }
.collection-head h2 { margin-bottom: 0; }
.collection-intro { max-width: 310px; margin-bottom: 5px; }
.collection-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: stretch; }
.collection-image { position: relative; min-height: 490px; overflow: hidden; }
.collection-image img { width: 100%; height: 100%; min-height: 490px; object-fit: cover; object-position: center 42%; }
.collection-label { position: absolute; left: 24px; bottom: 24px; display: flex; align-items: center; gap: 15px; padding: 13px 16px; color: var(--white); background: rgba(40, 36, 43, .9); }
.collection-label span { color: var(--lavender); font-size: 10px; font-weight: 700; }
.collection-label strong { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 500; }
.palette-panel { display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--line); }
.palette-row { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 17px; min-height: 85px; border-bottom: 1px solid var(--line); }
.swatch { display: block; width: 29px; height: 29px; border: 1px solid rgba(40, 36, 43, .15); border-radius: 50%; }
.swatch-pearl { background: #f5ede0; }
.swatch-champagne { background: #d8a267; }
.swatch-cobalt { background: #154dc6; }
.swatch-berry { background: #b20f36; }
.palette-row strong, .palette-row small { display: block; }
.palette-row strong { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 500; }
.palette-row small { color: var(--muted); font-size: 11px; }
.palette-arrow { color: var(--lavender-deep); font-size: 18px; transition: transform .2s ease; }
.palette-row:hover .palette-arrow { transform: translate(3px, -3px); }
.collection-link { align-self: flex-start; margin-top: 30px; }

.catalog { background: #f7f3fa; }
.catalog-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 43px; }
.catalog-head h2 { margin-bottom: 0; }
.catalog-intro { max-width: 320px; margin: 0 0 5px; color: var(--muted); font-size: 16px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.catalog-card { display: block; width: 100%; border: 0; padding: 0; color: var(--ink); background: transparent; text-align: left; cursor: pointer; }
.catalog-card-image { position: relative; display: block; aspect-ratio: .82; overflow: hidden; border: 1px solid transparent; background: var(--paper-deep); transition: border-color .25s ease, transform .25s ease; }
.catalog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.catalog-card-image-cobalt img { object-position: 73% 25%; }
.catalog-card-image-berry img { object-position: 25% 25%; }
.catalog-card:hover .catalog-card-image { transform: translateY(-4px); }
.catalog-card:hover .catalog-card-image img { transform: scale(1.045); }
.catalog-card.is-selected .catalog-card-image { border-color: var(--lavender-deep); box-shadow: 0 12px 30px rgba(141, 112, 159, .15); }
.catalog-check { position: absolute; right: 12px; bottom: 12px; display: block; padding: 6px 9px; color: var(--white); background: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: .08em; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; }
.catalog-card.is-selected .catalog-check { opacity: 1; transform: translateY(0); }
.catalog-card-info { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding-top: 15px; }
.catalog-card-info strong, .catalog-card-info small { display: block; }
.catalog-card-info strong { font-family: "Playfair Display", serif; font-size: 19px; font-weight: 500; line-height: 1.1; }
.catalog-card-info small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.catalog-card-info b { color: var(--lavender-deep); font-size: 10px; white-space: nowrap; }

.shop { background: #e9dfd4; }
.shop-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 100px; }
.product-main-image { position: relative; height: 550px; overflow: hidden; background: var(--paper); }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity .25s ease; }
.product-badge { position: absolute; top: 18px; left: 18px; padding: 7px 11px; color: var(--ink); background: var(--lavender); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.thumbnail-row { display: flex; gap: 10px; margin-top: 12px; }
.thumbnail { width: 69px; height: 69px; overflow: hidden; border: 1px solid transparent; padding: 0; background: transparent; cursor: pointer; }
.thumbnail.is-active { border-color: var(--ink); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.shop-copy { max-width: 450px; }
.shop-copy h2 { margin-bottom: 9px; font-size: clamp(3rem, 5vw, 5.1rem); }
.product-meta { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; color: var(--muted); font-size: 11px; }
.stars { color: #ad7940; letter-spacing: .15em; font-size: 13px; }
.product-description { max-width: 380px; margin-bottom: 25px; color: var(--muted); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; margin-bottom: 27px; }
.price-row strong { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 500; }
.price-row span { color: var(--muted); font-size: 11px; }
.order-form { display: grid; gap: 9px; }
.form-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.form-heading span { font-family: "Playfair Display", serif; font-size: 22px; }
.form-heading small, .form-note { color: var(--muted); font-size: 10px; }
.selected-product { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; border-left: 2px solid var(--lavender-deep); margin: 4px 0 4px; padding: 8px 12px; background: rgba(255, 253, 250, .45); }
.selected-product span, .selected-product small { color: var(--muted); font-size: 10px; }
.selected-product span { grid-row: span 2; align-self: center; text-transform: uppercase; letter-spacing: .1em; }
.selected-product strong { font-family: "Playfair Display", serif; font-size: 17px; font-weight: 500; line-height: 1.1; }
.selected-product small { grid-column: 2; }
.order-form label { margin-top: 5px; color: var(--ink); font-size: 11px; font-weight: 700; }
.order-form input, .order-form textarea { width: 100%; border: 1px solid rgba(40, 36, 43, .2); border-radius: 0; outline: 0; padding: 13px 14px; color: var(--ink); background: rgba(255, 253, 250, .55); font-size: 13px; resize: vertical; transition: border-color .2s ease, background .2s ease; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--lavender-deep); background: var(--white); }
.order-form input::placeholder, .order-form textarea::placeholder { color: #9b9590; }
.quantity-control { display: grid; grid-template-columns: 38px 1fr 38px; border: 1px solid rgba(40, 36, 43, .2); background: rgba(255, 253, 250, .55); }
.quantity-control button { border: 0; background: transparent; font-size: 20px; cursor: pointer; }
.quantity-control input { border: 0; padding: 10px; background: transparent; text-align: center; }
.quantity-control input:focus { background: transparent; }
.button-full { width: 100%; margin-top: 10px; cursor: pointer; }
.form-note { margin: 1px 0 0; text-align: center; }
.form-note.is-error { color: #a43b3b; }
.form-note.is-success { color: #4f765d; }

.reviews { background: var(--paper-deep); }
.reviews-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 44px; }
.reviews-head h2 { margin-bottom: 0; }
.review-count { color: var(--muted); font-family: "Playfair Display", serif; font-size: 21px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { display: flex; flex-direction: column; min-height: 295px; padding: 29px; background: var(--white); }
.review-card-featured { color: var(--white); background: var(--lavender-deep); }
.review-card-featured .stars { color: #f4cf8b; }
.review-card .stars { margin-bottom: 28px; }
.review-card blockquote { flex: 1; margin: 0; font-family: "Playfair Display", serif; font-size: 21px; line-height: 1.35; }
.review-card footer { display: flex; align-items: center; gap: 11px; margin-top: 28px; }
.review-avatar { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); font-family: "Playfair Display", serif; }
.review-card-featured .review-avatar { color: var(--lavender-deep); background: var(--white); }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer strong { font-size: 11px; }
.review-card footer small { color: var(--muted); font-size: 10px; }
.review-card-featured footer small { color: rgba(255, 255, 255, .75); }

.closing-cta { padding: 140px 0 155px; color: var(--white); background: var(--ink); text-align: center; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing-inner .eyebrow { color: var(--lavender); }
.closing-inner .eyebrow span { background: var(--lavender); }
.closing-inner h2 { margin-bottom: 32px; font-size: clamp(3.5rem, 8vw, 7.2rem); }
.site-footer { color: var(--white); background: #1f1c22; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; min-height: 130px; }
.brand-footer .brand-mark { border-color: rgba(197, 176, 215, .6); }
.brand-footer p, .footer-top > p { margin: 0; color: rgba(255, 255, 255, .65); font-size: 12px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; color: rgba(255, 255, 255, .75); font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .13); padding: 16px 0 23px; color: rgba(255, 255, 255, .45); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .13s; }
.reveal-delay-2 { transition-delay: .26s; }

@keyframes wordDriftOne { from { transform: translate3d(-2%, 0, 0) rotate(-7deg); } to { transform: translate3d(7%, 17px, 0) rotate(-3deg); } }
@keyframes wordDriftTwo { from { transform: translate3d(4%, 0, 0) rotate(7deg); } to { transform: translate3d(-7%, -19px, 0) rotate(2deg); } }
@keyframes wordDriftThree { from { transform: translate3d(-6%, 0, 0) rotate(-3deg); } to { transform: translate3d(5%, -13px, 0) rotate(3deg); } }
@keyframes wordDriftFour { from { transform: translate3d(0, -7px, 0) rotate(8deg); } to { transform: translate3d(9%, 13px, 0) rotate(2deg); } }
@keyframes pearlFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(8px, -14px, 0); } }

@media (max-width: 900px) {
  .container { width: min(100% - 42px, 680px); }
  .site-nav { gap: 20px; }
  .hero { min-height: 0; padding: 145px 0 95px; }
  .hero-grid, .story-grid, .shop-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 590px; }
  .hero-image-frame { height: min(660px, 88vw); }
  .hero-scroll { display: none; }
  .story-visual { max-width: 600px; }
  .story-copy { max-width: none; }
  .collection-layout { grid-template-columns: 1fr; gap: 42px; }
  .collection-image { min-height: 440px; }
  .collection-image img { min-height: 440px; }
  .shop-copy { max-width: 600px; }
  .product-main-image { height: min(640px, 88vw); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 34px, 520px); }
  .section { padding: 85px 0; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-copy strong { font-size: 15px; }
  .menu-toggle { display: grid; gap: 5px; padding: 8px 0 8px 10px; cursor: pointer; }
  .menu-toggle span { display: block; width: 24px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 17px; left: 17px; display: grid; gap: 0; padding: 7px; border: 1px solid var(--line); background: rgba(236, 227, 244, .98); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 13px; }
  .site-nav .nav-cta { justify-content: space-between; border-radius: 2px; }
  .hero { padding-top: 118px; padding-bottom: 60px; }
  h1 { font-size: clamp(3.6rem, 19vw, 6.2rem); }
  h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 54px; }
  .hero-notes div { min-width: 0; }
  .hero-image-frame { height: 111vw; min-height: 430px; }
  .image-stamp { right: 12px; bottom: 12px; width: 78px; height: 78px; font-size: 6px; }
  .statement-inner { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 178px; padding: 31px 0; }
  .statement-inner p:last-child { text-align: left; align-self: flex-end; }
  .statement-mark { display: none; }
  .story-grid, .shop-grid { gap: 48px; }
  .story-visual { padding-right: 20px; }
  .story-image-wrap { height: 100vw; min-height: 330px; }
  .story-side-note { width: 128px; padding: 14px; }
  .story-side-note strong { font-size: 17px; }
  .feature-grid { grid-template-columns: 1fr; gap: 19px; }
  .feature { display: grid; grid-template-columns: 27px 1fr; column-gap: 13px; }
  .feature-icon { grid-row: span 2; margin-bottom: 0; }
  .feature h3 { margin: 0; }
  .feature p { grid-column: 2; }
  .collection-head, .reviews-head { align-items: flex-start; flex-direction: column; gap: 17px; }
  .catalog-head { align-items: flex-start; flex-direction: column; gap: 17px; }
  .collection-intro { margin-bottom: 0; }
  .catalog-intro { margin-bottom: 0; }
  .collection-image, .collection-image img { min-height: 108vw; }
  .collection-label { left: 14px; bottom: 14px; }
  .palette-row { min-height: 74px; }
  .catalog-grid { gap: 13px; }
  .catalog-card-info { display: block; }
  .catalog-card-info b { display: block; margin-top: 8px; }
  .product-main-image { height: 112vw; min-height: 390px; }
  .shop-copy h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 13px; }
  .review-card { min-height: 260px; }
  .review-card blockquote { font-size: 19px; }
  .closing-cta { padding: 100px 0 110px; }
  .closing-inner h2 { font-size: clamp(3.7rem, 17vw, 6.5rem); }
  .footer-top { grid-template-columns: 1fr; justify-items: center; padding: 30px 0; }
  .footer-links { justify-content: center; }
  .footer-bottom { gap: 10px; }
}

@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; }
}
