:root {
  --bg: #0d100e;
  --surface: #151916;
  --surface-2: #1b201c;
  --text: #f3efe7;
  --muted: #a9a9a2;
  --line: rgba(243, 239, 231, .14);
  --accent: #a62942;
  --accent-2: #d45b70;
  --cream: #e8ddc9;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius: 6px;
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

html[data-theme="light"] {
  --bg: #f4efe6;
  --surface: #fffaf1;
  --surface-2: #ebe3d5;
  --text: #171914;
  --muted: #66665e;
  --line: rgba(24, 27, 22, .14);
  --cream: #362d27;
  --shadow: 0 24px 70px rgba(69, 46, 36, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; padding: .8rem 1rem; background: var(--text); color: var(--bg); }
.skip-link:focus { top: 1rem; }
.notice {
  height: 32px;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header {
  height: 78px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-weight: 600; letter-spacing: .16em; font-size: 13px; }
.brand-mark { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.desktop-nav { display: flex; gap: 34px; font-size: 13px; }
.desktop-nav a, .footer-links a { position: relative; color: rgba(255,255,255,.76); }
.desktop-nav a::after, .footer-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .25s ease; }
.desktop-nav a:hover::after, .footer-links a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.icon-button, .cart-button, .menu-button {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(8,10,9,.24);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.icon-button { width: 42px; height: 42px; border-radius: 50%; font-size: 21px; }
.cart-button { height: 42px; padding: 0 17px; border-radius: 999px; }
.cart-button span { margin-left: 8px; display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 50%; background: #fff; color: #111; font-size: 11px; }
.menu-button { display: none; width: 42px; height: 42px; border-radius: 50%; padding: 0 11px; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 5px 0; }
.mobile-nav { display: none; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; padding: 170px 5vw 130px; overflow: hidden; color: #fff; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,6,.89) 0%, rgba(5,8,6,.64) 42%, rgba(5,8,6,.08) 76%), linear-gradient(0deg, rgba(5,8,6,.45), transparent 45%); }
.hero-copy { position: relative; z-index: 2; width: min(810px, 74vw); }
.eyebrow { margin: 0 0 22px; color: var(--accent-2); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(64px, 8.8vw, 142px); }
.hero h1 span, h2 span { color: var(--cream); }
.hero-lede { max-width: 610px; margin: 30px 0 34px; color: rgba(255,255,255,.72); font-size: clamp(16px, 1.35vw, 20px); }
.hero-actions, .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: #bd314e; }
.button-ghost { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); color: #fff; backdrop-filter: blur(9px); }
.hero-meta {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 56px;
  display: flex;
  color: #fff;
}
.hero-meta div { min-width: 142px; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.24); }
.hero-meta strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.hero-meta span { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.62); }
.scroll-cue { position: absolute; left: 5vw; bottom: 62px; z-index: 2; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.section { padding: 120px 5vw; }
.section-heading { display: flex; justify-content: space-between; gap: 6vw; align-items: end; margin-bottom: 52px; }
.section-heading h2, .mood h2, .studio h2, .contacts h2, .final-cta h2 { font-size: clamp(44px, 6vw, 94px); }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter, .mood-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: .25s ease;
}
.filter:hover, .filter.active, .mood-chip:hover, .mood-chip.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.product-grid { display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: 18px; align-items: start; }
.product-card { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); animation: cardIn .45s ease both; }
.product-card:nth-child(2) { margin-top: 74px; }
.product-card:nth-child(4) { grid-column: 2 / span 2; display: grid; grid-template-columns: 1.15fr .85fr; margin-top: 12px; }
.product-image-wrap { aspect-ratio: 1 / 1.08; overflow: hidden; background: var(--surface-2); }
.product-card:nth-child(4) .product-image-wrap { aspect-ratio: 1.2 / 1; }
.product-image-wrap img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.product-card:hover img { transform: scale(1.035); }
.product-body { padding: 23px; }
.product-type { font-size: 10px; letter-spacing: .14em; color: var(--accent-2); text-transform: uppercase; }
.product-body h3 { margin: 8px 0 5px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.product-body p { margin: 0 0 22px; color: var(--muted); font-size: 13px; min-height: 40px; }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-price { font-family: var(--serif); font-size: 22px; }
.add-button {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  background: transparent; cursor: pointer; font-size: 22px; transition: .25s ease;
}
.add-button:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(90deg); }
.catalog-note { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 12px; }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.mood { display: grid; grid-template-columns: .95fr 1.05fr; gap: 7vw; align-items: center; background: var(--surface); overflow: hidden; }
.mood-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); margin: 28px 0; }
.mood-controls { display: flex; flex-wrap: wrap; gap: 8px; }
.mood-result { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; align-items: center; }
.mood-result span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.mood-result strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.text-link { border: 0; padding: 0; background: transparent; color: var(--accent-2); cursor: pointer; grid-column: 2; text-align: left; }
.mood-visual { position: relative; max-width: 650px; justify-self: end; }
.mood-visual img { aspect-ratio: 1; object-fit: cover; border-radius: 50% 50% 4px 4px; position: relative; z-index: 2; transition: opacity .25s ease; }
.orbit { position: absolute; border: 1px solid rgba(212,91,112,.55); border-radius: 50%; z-index: 1; }
.orbit-one { inset: -6%; animation: orbit 16s linear infinite; }
.orbit-two { inset: 7% -12%; animation: orbit 22s linear infinite reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 38px 4vw 12px 0; border-right: 1px solid var(--line); position: relative; }
.step + .step { padding-left: 4vw; }
.step:last-child { border-right: 0; }
.step > span { color: var(--accent-2); font-size: 11px; letter-spacing: .14em; }
.step svg { width: 82px; height: 82px; display: block; margin: 54px 0 44px; fill: none; stroke: var(--cream); stroke-width: 1.25; }
.step h3 { margin: 0 0 12px; font-family: var(--serif); font-weight: 400; font-size: 30px; }
.step p { color: var(--muted); font-size: 14px; max-width: 310px; }

.studio { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 760px; }
.studio-image-wrap { overflow: hidden; }
.studio-image-wrap img { height: 100%; object-fit: cover; }
.studio-copy { background: #17100f; color: #fff; padding: 9vw 6vw; display: flex; flex-direction: column; justify-content: center; }
.studio-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); margin: 32px 0 48px; }
.studio-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; }
.studio-facts div { border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; }
.studio-facts dt { font-family: var(--serif); font-size: 30px; }
.studio-facts dd { margin: 4px 0 0; color: rgba(255,255,255,.58); font-size: 11px; }

.review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; padding: 34px; background: var(--surface); border: 1px solid var(--line); }
blockquote p { font-family: var(--serif); font-size: 20px; line-height: 1.6; }
blockquote footer { color: var(--muted); font-size: 12px; }
.stars { color: var(--accent-2); letter-spacing: .15em; font-size: 12px; }

.contacts { display: grid; grid-template-columns: .78fr 1.22fr; gap: 0; }
.contacts-card { padding: clamp(40px, 6vw, 92px); background: var(--surface-2); }
.contact-list { margin: 48px 0; }
.contact-list div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 19px 0; border-top: 1px solid var(--line); }
.contact-list span { color: var(--muted); font-size: 12px; }
.contact-list strong, .contact-list a { font-size: 15px; font-weight: 500; }
.contacts .button-ghost { color: var(--text); border-color: var(--line); background: transparent; }
.map-wrap { min-height: 640px; filter: grayscale(1) contrast(.95) brightness(.76); transition: filter .35s ease; }
.map-wrap:hover { filter: grayscale(.25) contrast(.95) brightness(.9); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 640px; border: 0; }

.final-cta { min-height: 620px; padding: 120px 5vw; position: relative; display: grid; place-items: center; text-align: center; overflow: hidden; border-top: 1px solid var(--line); }
.final-cta p { color: var(--accent-2); text-transform: uppercase; font-size: 11px; letter-spacing: .14em; }
.final-cta h2 { position: relative; z-index: 2; }
.final-cta .button { margin-top: 28px; position: relative; z-index: 2; }
.petal { position: absolute; width: 95px; height: 170px; border: 1px solid rgba(212,91,112,.25); border-radius: 100% 0 100% 0; transform: rotate(38deg); }
.petal-a { left: 8%; top: 26%; }
.petal-b { right: 12%; top: 18%; transform: rotate(-52deg) scale(.7); }
.petal-c { right: 22%; bottom: -35px; transform: rotate(24deg) scale(1.3); }

.site-footer { padding: 48px 5vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); font-size: 12px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--muted); }
.site-footer > p { justify-self: end; color: var(--muted); }

.overlay { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.64); opacity: 0; visibility: hidden; transition: .3s ease; }
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; z-index: 90; top: 0; right: 0; bottom: 0; width: min(470px, 100%);
  display: flex; flex-direction: column; background: var(--surface); transform: translateX(102%); transition: transform .38s cubic-bezier(.22,.61,.36,1); box-shadow: var(--shadow);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 28px; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 34px; }
.cart-head .icon-button { border-color: var(--line); background: transparent; }
.cart-items { padding: 18px 28px; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item img { width: 72px; height: 84px; object-fit: cover; }
.cart-item strong { display: block; font-family: var(--serif); font-weight: 400; }
.cart-item span { color: var(--muted); font-size: 12px; }
.cart-item button { border: 0; background: none; cursor: pointer; color: var(--muted); }
.cart-empty { margin: auto; text-align: center; color: var(--muted); }
.cart-empty svg { width: 76px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.cart-empty p { color: var(--text); font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.cart-empty span { font-size: 12px; }
.cart-footer { margin-top: auto; padding: 28px; border-top: 1px solid var(--line); display: none; }
.cart-footer.visible { display: block; }
.cart-footer > div { display: flex; justify-content: space-between; margin-bottom: 20px; }
.cart-footer strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.cart-checkout { width: 100%; }
.cart-footer small { display: block; margin-top: 12px; text-align: center; color: var(--muted); }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translate(-50%, 100px); opacity: 0; background: var(--text); color: var(--bg); padding: 12px 18px; border-radius: 999px; font-size: 12px; transition: .3s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; inset: 110px 0 auto; z-index: 19; display: grid; background: var(--surface); padding: 24px 5vw; transform: translateY(-140%); transition: .35s ease; }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 24px; }
  .hero-copy { width: 90vw; }
  .hero-meta { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:nth-child(2) { margin-top: 50px; }
  .product-card:nth-child(4) { grid-column: auto; display: block; margin-top: 50px; }
  .mood, .studio { grid-template-columns: 1fr; }
  .mood-visual { max-width: 560px; justify-self: center; }
  .studio-image-wrap { min-height: 560px; }
  .review-track { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 440px; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .site-footer > p { justify-self: start; }
}

@media (max-width: 640px) {
  .notice { padding: 0 18px; font-size: 9px; }
  .notice a { display: none; }
  .site-header { padding: 0 18px; }
  .brand span { font-size: 11px; }
  .brand-mark { width: 30px; }
  .icon-button { display: none; }
  .cart-button { padding: 0 12px; }
  .hero { min-height: 860px; padding: 150px 20px 110px; align-items: end; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,8,6,.92) 0%, rgba(5,8,6,.5) 60%, rgba(5,8,6,.24) 100%); }
  .hero-image { object-position: 60% center; }
  .hero h1 { font-size: clamp(51px, 15.5vw, 72px); }
  .hero-lede { font-size: 15px; }
  .scroll-cue { display: none; }
  .section { padding: 84px 20px; }
  .section-heading { display: block; }
  .section-heading h2, .mood h2, .studio h2, .contacts h2, .final-cta h2 { font-size: clamp(42px, 13vw, 62px); }
  .section-heading > p { margin-top: 24px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card:nth-child(2), .product-card:nth-child(4) { margin-top: 0; }
  .product-card:nth-child(4) { display: block; }
  .mood { gap: 55px; }
  .mood-result { grid-template-columns: 1fr; }
  .text-link { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step svg { margin: 28px 0; width: 64px; height: 64px; }
  .studio-image-wrap { min-height: 430px; }
  .studio-copy { padding: 82px 20px; }
  .studio-facts { grid-template-columns: 1fr; }
  .contacts { padding-left: 0; padding-right: 0; }
  .contacts-card { padding: 74px 20px; }
  .contact-actions { flex-direction: column; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .final-cta { min-height: 540px; padding: 90px 20px; }
  .site-footer { padding: 44px 20px; }
  .footer-links { flex-wrap: wrap; }
}

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