:root {
  --ink: #24211f;
  --muted: #746c66;
  --paper: #fffdfa;
  --cream: #f7eee6;
  --peach: #efc29f;
  --rose: #bd6f70;
  --rose-dark: #81494d;
  --sage: #7f8978;
  --line: rgba(36, 33, 31, .14);
  --shadow: 0 20px 60px rgba(63, 42, 31, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.demo-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6e9b72; }
.logo { width: min(330px, 82vw); height: auto; }
.logo.small { width: min(220px, 60vw); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.light { background: #fff; color: var(--ink); border-color: rgba(255,255,255,.85); }
.button.outline { background: transparent; color: var(--ink); border-color: var(--line); }
.button.rose { background: var(--rose-dark); border-color: var(--rose-dark); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin: 0;
  font: 400 clamp(2.1rem, 6vw, 4.4rem)/1 var(--serif);
  letter-spacing: -.045em;
}
.section-heading p { margin: 0; color: var(--muted); }
.load-error {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}
.sample-note { color: var(--muted); font-size: .8rem; text-align: center; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(55, 36, 25, .05);
}
.product-image { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  font-size: .65rem;
  font-weight: 800;
}
.product-copy { padding: 14px; }
.product-copy > span { color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-copy h3 { margin: 5px 0 5px; font: 400 1.2rem/1.1 var(--serif); }
.product-copy p { margin: 0 0 11px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.product-copy strong { font-size: .95rem; }

/* Level 1 */
.level1 {
  min-height: 100vh;
  padding: 18px 0 40px;
  background:
    radial-gradient(circle at 5% 4%, rgba(239,194,159,.56), transparent 24rem),
    radial-gradient(circle at 96% 36%, rgba(189,111,112,.18), transparent 22rem),
    #f8f3ed;
}
.l1-shell { width: min(760px, calc(100% - 24px)); margin: 0 auto; overflow: hidden; border: 1px solid rgba(36,33,31,.12); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.l1-hero { padding: 26px 20px 24px; text-align: center; background: linear-gradient(150deg, rgba(255,255,255,.95), rgba(244,215,190,.86)); }
.l1-hero .demo-pill { margin-bottom: 24px; }
.l1-hero .logo { margin: 0 auto; }
.l1-slogan { margin: 15px 0 0; color: var(--rose-dark); font-size: .74rem; font-weight: 800; letter-spacing: .21em; }
.online { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; }
.online i { width: 8px; height: 8px; border-radius: 50%; background: #65a269; box-shadow: 0 0 0 4px rgba(101,162,105,.14); }
.l1-body { padding: 18px; }
.wa-main { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px; border-radius: 18px; background: var(--ink); color: #fff; }
.wa-main small, .wa-main strong { display: block; }
.wa-main small { color: rgba(255,255,255,.7); font-size: .75rem; }
.wa-main strong { margin-top: 2px; font-size: 1.05rem; }
.wa-main b { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: #fff; color: var(--ink); font-size: 1.25rem; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.quick-grid a, .quick-grid div { min-height: 92px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.quick-grid span, .quick-grid strong { display: block; }
.quick-grid span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.quick-grid strong { margin-top: 8px; font-size: .9rem; line-height: 1.25; }
.hours { margin: 10px 0 28px; padding: 17px; border-radius: 18px; background: var(--cream); }
.hours-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hours-head b:first-child { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; }
.hours-head small, .hours-head strong { display: block; }
.hours-head small { color: var(--muted); }
.hours-times { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hours-times span { padding: 10px; border-radius: 10px; background: rgba(255,255,255,.62); text-align: center; font-weight: 800; }
.l1-catalog h2 { margin: 3px 0 18px; font: 400 2rem/1 var(--serif); }
.l1-catalog .product-copy p { display: none; }
.l1-bottom { display: block; margin-top: 16px; padding: 15px; border-radius: 14px; background: var(--rose-dark); color: #fff; text-align: center; font-weight: 800; }

/* Level 2 */
.level2 { background: var(--paper); }
.l2-top { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,253,250,.94); backdrop-filter: blur(14px); }
.l2-top .container { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.l2-nav { display: none; align-items: center; gap: 26px; font-size: .82rem; font-weight: 800; }
.l2-contact { padding: 10px 14px; border-radius: 999px; background: var(--ink); color: #fff; }
.l2-hero { display: grid; min-height: 720px; background: var(--cream); }
.l2-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px max(22px, 5vw); }
.l2-hero-copy h1 { margin: 15px 0 18px; max-width: 680px; font: 400 clamp(3.2rem, 9vw, 7rem)/.9 var(--serif); letter-spacing: -.06em; }
.l2-hero-copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.l2-hero-image { position: relative; min-height: 430px; overflow: hidden; }
.l2-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.l2-hero-image span { position: absolute; right: 18px; bottom: 18px; padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.9); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-strip { display: grid; grid-template-columns: 1fr; border-block: 1px solid var(--line); }
.service-strip span { padding: 14px; text-align: center; font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-strip span + span { border-top: 1px solid var(--line); }
.l2-catalog { padding: 76px 0; }
.filters { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 20px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filters button { flex: 0 0 auto; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-weight: 750; }
.filters button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.l2-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.l2-story { display: grid; background: #262321; color: #fff; }
.l2-story-image { min-height: 420px; }
.l2-story-image img { width: 100%; height: 100%; object-fit: cover; }
.l2-story-copy { padding: 54px max(22px, 7vw); }
.l2-story-copy .eyebrow { color: var(--peach); }
.l2-story-copy h2 { margin: 0 0 18px; font: 400 clamp(2.5rem, 7vw, 5.6rem)/.96 var(--serif); letter-spacing: -.045em; }
.l2-story-copy > p { color: rgba(255,255,255,.72); line-height: 1.7; }
.l2-story dl { margin: 28px 0; border-top: 1px solid rgba(255,255,255,.16); }
.l2-story dl div { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.l2-story dt { color: rgba(255,255,255,.55); font-size: .71rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.l2-story dd { margin: 4px 0 0; }

/* Level 3 */
.level3 { padding-bottom: 68px; background: #fff; }
.announcement { padding: 9px 16px; background: var(--ink); color: #fff; text-align: center; font-size: .73rem; font-weight: 800; letter-spacing: .04em; }
.shop-head { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.shop-head .container { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.shop-nav { display: none; gap: 23px; font-size: .78rem; font-weight: 800; }
.shop-tools { display: flex; align-items: center; gap: 8px; }
.icon-button { min-width: 42px; min-height: 42px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-weight: 800; }
.bag-button { padding: 0 14px; }
.shop-hero { position: relative; min-height: min(720px, 82vh); overflow: hidden; background: #222; color: #fff; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.shop-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,13,12,.72), rgba(18,13,12,.12) 70%), linear-gradient(0deg, rgba(0,0,0,.35), transparent 55%); }
.hero-content { position: relative; z-index: 2; min-height: inherit; display: flex; flex-direction: column; justify-content: end; align-items: start; padding: 70px 0 56px; }
.hero-content .demo-pill { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.13); }
.hero-content .eyebrow { margin-top: 22px; color: var(--peach); }
.hero-content h1 { margin: 0 0 14px; max-width: 780px; font: 400 clamp(3.3rem, 10vw, 7.5rem)/.88 var(--serif); letter-spacing: -.06em; }
.hero-content > p:last-of-type { max-width: 520px; margin: 0; color: rgba(255,255,255,.82); font-size: 1.02rem; }
.slide-dots { position: absolute; z-index: 3; right: 18px; bottom: 22px; display: flex; gap: 8px; }
.slide-dots button { width: 30px; height: 5px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.42); cursor: pointer; }
.slide-dots button.active { background: #fff; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.benefit { padding: 18px 12px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
.benefit:nth-child(2n) { border-right: 0; }
.benefit b, .benefit span { display: block; }
.benefit b { font-size: .85rem; }
.benefit span { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.shop-catalog { padding: 76px 0; }
.shop-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shop-product { position: relative; }
.like-button { position: absolute; top: 10px; right: 10px; z-index: 2; display: grid; place-items: center; width: 39px; height: 39px; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); cursor: pointer; font-size: 1.2rem; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.like-button.active { color: #a84852; }
.buy-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.add-button { padding: 8px 11px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: #fff; cursor: pointer; font-size: .76rem; font-weight: 800; }
.look-builder { padding: 70px 0; background: linear-gradient(145deg, #f6e5d6, #efe8de); }
.look-grid { display: grid; gap: 30px; }
.look-copy h2 { margin: 0 0 16px; font: 400 clamp(2.8rem, 8vw, 6rem)/.93 var(--serif); letter-spacing: -.05em; }
.look-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); }
.quiz { padding: 22px; border: 1px solid rgba(36,33,31,.12); border-radius: 22px; background: rgba(255,255,255,.7); }
.quiz fieldset { padding: 0; border: 0; margin: 0 0 22px; }
.quiz legend { margin-bottom: 10px; font-weight: 850; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 8px; }
.quiz-options button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-weight: 750; }
.quiz-options button.active { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }
.look-result { display: grid; grid-template-columns: 105px 1fr; gap: 15px; align-items: center; padding: 13px; border-radius: 16px; background: #fff; }
.look-result img { width: 105px; height: 135px; border-radius: 12px; object-fit: cover; }
.look-result h3 { margin: 3px 0; font: 400 1.5rem/1 var(--serif); }
.look-result p { margin: 0 0 10px; color: var(--muted); font-size: .82rem; }
.film { display: grid; }
.film-poster { position: relative; min-height: 480px; overflow: hidden; }
.film-poster img { width: 100%; height: 100%; object-fit: cover; }
.play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 74px; height: 74px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(255,255,255,.88); cursor: pointer; font-size: 1.25rem; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.film-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px max(22px, 7vw); background: var(--ink); color: #fff; }
.film-copy .eyebrow { color: var(--peach); }
.film-copy h2 { margin: 0 0 18px; font: 400 clamp(2.5rem, 7vw, 5.2rem)/.95 var(--serif); letter-spacing: -.045em; }
.film-copy p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.7; }
.reviews { padding: 74px 0; }
.review-grid { display: grid; gap: 12px; }
.review { margin: 0; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.stars { color: #aa6a35; letter-spacing: .08em; }
.review p { font: 400 1.25rem/1.4 var(--serif); }
.review footer { color: var(--muted); font-size: .82rem; }
.visit { display: grid; border-block: 1px solid var(--line); }
.visit-copy { padding: 52px max(22px, 7vw); background: var(--cream); }
.visit-copy h2 { margin: 0 0 18px; font: 400 clamp(2.6rem, 7vw, 5.5rem)/.95 var(--serif); }
.visit-copy > p { margin: 7px 0; color: var(--muted); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.visit iframe { width: 100%; min-height: 440px; border: 0; }
.shop-footer { padding: 46px 16px 96px; text-align: center; }
.shop-footer .logo { margin: 0 auto; }
.shop-footer p { color: var(--muted); }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.socials a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 800; }
.site-credit {
  width: min(760px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 34px auto 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
}
.site-credit strong { color: var(--ink); }
.site-credit a { color: var(--ink); font-weight: 750; }
.mobile-nav { position: fixed; z-index: 25; left: 12px; right: 12px; bottom: 10px; display: grid; grid-template-columns: 1fr 1fr 1.2fr; padding: 6px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.95); box-shadow: 0 14px 40px rgba(0,0,0,.15); backdrop-filter: blur(14px); }
.mobile-nav a, .mobile-nav button { min-height: 45px; display: grid; place-items: center; border: 0; border-radius: 12px; background: transparent; font-size: .76rem; font-weight: 850; cursor: pointer; }
.mobile-nav .bag-mobile { background: var(--ink); color: #fff; }

/* Modal and cart */
.overlay { position: fixed; z-index: 90; inset: 0; display: none; align-items: stretch; justify-content: end; background: rgba(25,20,18,.62); backdrop-filter: blur(5px); }
.overlay.open { display: flex; }
.drawer { width: min(450px, 100%); height: 100%; overflow-y: auto; padding: 22px; background: #fff; box-shadow: -20px 0 60px rgba(0,0,0,.2); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; font: 400 2.2rem/1 var(--serif); }
.close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1.35rem; }
.cart-items { display: grid; gap: 10px; margin: 18px 0; }
.cart-item { display: grid; grid-template-columns: 70px 1fr 36px; gap: 12px; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 70px; height: 84px; border-radius: 9px; object-fit: cover; }
.cart-item span, .cart-item b { display: block; }
.cart-item span { color: var(--muted); font-size: .82rem; }
.cart-item button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; }
.empty-cart { padding: 42px 0; color: var(--muted); text-align: center; }
.cart-total { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 1.1rem; }
.checkout { width: 100%; }
.cart-help { color: var(--muted); font-size: .78rem; text-align: center; }
.video-modal { align-items: center; justify-content: center; padding: 16px; }
.video-box { position: relative; width: min(820px, 100%); min-height: min(70vh, 600px); display: grid; place-items: center; overflow: hidden; border-radius: 24px; background: #201c1b; color: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.video-box::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(189,111,112,.55), transparent 48%), radial-gradient(circle at 80% 20%, rgba(239,194,159,.45), transparent 30%); animation: glow 5s ease-in-out infinite alternate; }
@keyframes glow { to { transform: scale(1.08) rotate(2deg); } }
.video-message { position: relative; z-index: 1; max-width: 560px; padding: 34px; text-align: center; }
.video-message span { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; font-size: 1.4rem; }
.video-message h2 { margin: 0 0 12px; font: 400 clamp(2rem, 7vw, 4rem)/1 var(--serif); }
.video-message p { color: rgba(255,255,255,.7); }
.video-box .close { position: absolute; z-index: 2; top: 14px; right: 14px; }

@media (min-width: 640px) {
  .l1-body { padding: 24px; }
  .product-grid { gap: 18px; }
  .product-copy { padding: 17px; }
  .service-strip { grid-template-columns: repeat(3, 1fr); }
  .service-strip span + span { border-top: 0; border-left: 1px solid var(--line); }
  .l2-products, .shop-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .benefit { border-top: 0; }
  .benefit:nth-child(2n) { border-right: 1px solid var(--line); }
  .benefit:last-child { border-right: 0; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .l2-nav, .shop-nav { display: flex; }
  .l2-hero { grid-template-columns: 1.05fr .95fr; min-height: 760px; }
  .l2-hero-image { min-height: auto; }
  .l2-products, .shop-products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
  .l2-story { grid-template-columns: 1fr 1fr; }
  .look-grid { grid-template-columns: .85fr 1.15fr; align-items: center; }
  .film { grid-template-columns: 1.12fr .88fr; }
  .visit { grid-template-columns: .85fr 1.15fr; }
  .mobile-nav { display: none; }
  .level3 { padding-bottom: 0; }
  .shop-footer { padding-bottom: 52px; }
}

@media (max-width: 560px) {
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading p { font-size: .84rem; }
  .product-copy h3 { font-size: 1.05rem; }
  .product-copy p { font-size: .77rem; }
  .shop-products .product-copy p { display: none; }
  .buy-row { align-items: start; flex-direction: column; }
  .add-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
