@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");

:root {
  color-scheme: light;
  --ink: #151312;
  --muted: #4d4945;
  --paper: #fffdf8;
  --warm: #fbf4ea;
  --soft: #f2e8dc;
  --line: rgba(31, 28, 24, 0.16);
  --green: #1d2a3a;
  --green-soft: #dde4ea;
  --rose: #7a1f32;
  --burgundy: #7a1f32;
  --burgundy-dark: #4b101e;
  --burgundy-soft: #f3dde2;
  --gold: #b98f43;
  --blue: #526b86;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 21, 18, 0.14);
  --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.48;
}

body.cart-open,
body.menu-open,
body.detail-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: var(--font-ui);
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px 18px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px) 14px;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header-ribbon {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 980px);
  padding: 7px 14px;
  border: 1px solid rgba(31, 28, 24, 0.12);
  border-radius: 999px;
  background: rgba(251, 244, 234, 0.82);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0;
  text-align: center;
}

.site-header.is-solid {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 21, 18, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 14vw, 220px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(23, 21, 18, 0.78);
  font-family: var(--font-ui);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
}

.language-switcher button {
  display: grid;
  min-width: 40px;
  min-height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.96rem;
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-toggle {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(18px, 3vw, 34px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 72% 18%, rgba(185, 143, 67, 0.16), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, var(--paper) 58%, var(--warm) 100%);
}

.storefront-landing {
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  min-height: min(620px, calc(100vh - 112px));
  padding-bottom: clamp(24px, 4vw, 54px);
}

.hero-copy {
  max-width: 620px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 5.9vw, 6rem);
}

h2 {
  max-width: 850px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
}

h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.hero-copy > p:not(.kicker),
.section-heading > p:not(.kicker),
.local-copy p,
.contact-section > div > p,
.map-section > div > p,
.project-copy > p {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1.8px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1.06rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper);
}

.button.primary:hover {
  background: #152235;
}

.button.secondary:hover {
  background: rgba(23, 21, 18, 0.05);
}

.hero-art {
  position: relative;
  justify-self: center;
  display: grid;
  width: min(34vw, 410px);
  min-width: 320px;
  aspect-ratio: 1 / 1.05;
  place-items: center;
}

.storefront-landing .hero-art {
  width: min(54vw, 720px);
  min-width: 360px;
  aspect-ratio: 1.23 / 1;
}

.hero-art::before {
  position: absolute;
  inset: 11% 3% 5%;
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 999px;
  content: "";
}

.storefront-landing .hero-art::before {
  display: none;
}

.hero-art img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.98) contrast(0.98);
}

.storefront-landing .hero-art img {
  object-fit: contain;
  filter: saturate(1.02) contrast(0.98);
}

.seo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--green);
  color: var(--paper);
}

.seo-strip p {
  display: grid;
  min-height: 76px;
  place-items: center;
  margin: 0;
  padding: 18px;
  border-left: 1px solid rgba(255, 253, 248, 0.18);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.seo-strip p:first-child {
  border-left: 0;
}

.section {
  padding: clamp(62px, 8vw, 116px) clamp(18px, 6vw, 86px);
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.products-section {
  background: var(--paper);
  padding-top: clamp(18px, 3vw, 34px);
}

.collection-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.collection-toolbar h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-style: italic;
  font-weight: 700;
}

.collection-toolbar p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 850;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 72px) clamp(18px, 2.4vw, 46px);
}

.product-card {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.featured-product {
  background: transparent;
}

.product-card-link {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 3 / 4;
  place-items: center;
  overflow: hidden;
  border: 8px solid #eef1ff;
  border-radius: 8px;
  background: #f7f0e6;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-media::before {
  display: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.product-card-link:hover .product-media,
.product-card-link:focus-visible .product-media {
  border-color: rgba(185, 143, 67, 0.42);
}

.product-card-link:hover .product-media img,
.product-card-link:focus-visible .product-media img {
  transform: scale(1.015);
}

.silk {
  background: linear-gradient(135deg, rgba(185, 143, 67, 0.16), transparent), #fbf7ef;
}

.silk::before {
  background: rgba(122, 31, 50, 0.12);
}

.silk span {
  width: 54%;
  height: 38%;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(185, 143, 67, 0.5) 47% 53%, transparent 54%),
    linear-gradient(145deg, #faf0df, #d7c3a6);
}

.candle {
  background: linear-gradient(145deg, rgba(185, 143, 67, 0.2), transparent), #faf3e7;
}

.candle::before {
  background: rgba(23, 63, 53, 0.11);
}

.candle span {
  width: 34%;
  height: 48%;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, #fff8ec 0 20%, #d8d2bd 20%);
}

.velvet {
  background: linear-gradient(135deg, rgba(23, 63, 53, 0.18), transparent), #eef2ec;
}

.velvet::before {
  background: rgba(122, 31, 50, 0.12);
}

.velvet span {
  width: 40%;
  height: 48%;
  border-radius: 8px 8px 20px 20px;
  background:
    radial-gradient(ellipse at 50% 0, transparent 0 36%, rgba(255, 253, 248, 0.7) 37% 42%, transparent 43%),
    linear-gradient(145deg, #24364d, #111b29);
}

.desk {
  background: linear-gradient(145deg, rgba(82, 107, 134, 0.18), transparent), #f2f4f4;
}

.desk::before {
  background: rgba(185, 143, 67, 0.16);
}

.desk span {
  width: 58%;
  height: 34%;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.4), transparent 34%),
    linear-gradient(145deg, #60768e, #293c50);
}

.oak {
  background: linear-gradient(135deg, rgba(23, 63, 53, 0.14), transparent), #f6f0e6;
}

.oak::before {
  background: rgba(185, 143, 67, 0.18);
}

.oak span {
  width: 58%;
  height: 28%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.26), transparent 45%),
    linear-gradient(145deg, #b78658, #6b4a2e);
}

.event {
  background: linear-gradient(145deg, rgba(122, 31, 50, 0.16), transparent), #fbf2ef;
}

.event::before {
  background: rgba(23, 63, 53, 0.14);
}

.event span {
  width: 54%;
  height: 42%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(185, 143, 67, 0.5) 45% 54%, transparent 55%),
    linear-gradient(145deg, #ead0d5, var(--burgundy));
}

.product-kicker {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 700;
}

.product-row {
  display: grid;
  gap: 8px;
  padding-inline: 2px;
}

.product-title {
  color: var(--burgundy-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.7vw, 1.6rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.price {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-card > p:not(.product-kicker):not(.price) {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.34;
}

.product-customizer {
  display: grid;
  gap: 10px;
}

.custom-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 850;
}

.custom-field small {
  color: rgba(23, 21, 18, 0.54);
  font-size: 0.76rem;
  font-weight: 750;
}

.custom-field textarea {
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.custom-field select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.char-count {
  color: rgba(23, 21, 18, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
}

.extras-toggle {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
}

.extras-toggle summary {
  padding: 12px;
  font-size: 0.86rem;
}

.extras-options {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.extra-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
}

.extra-option input {
  margin-top: 3px;
  accent-color: var(--green);
}

.extra-price {
  color: var(--green);
  font-family: var(--font-body);
  font-weight: 900;
}

.add-button {
  width: 100%;
  min-height: 48px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--warm);
}

.extras-section {
  background: #f8f1e8;
}

.delivery-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--paper);
  padding-block: clamp(42px, 6vw, 76px);
}

.delivery-section h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.service-faq-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.service-faq-list {
  display: grid;
  align-content: start;
}

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

.service-faq-list summary {
  padding: 18px 34px 18px 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 900;
  cursor: pointer;
}

.service-faq-list p {
  max-width: 68ch;
  margin: -4px 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.service-faq-list a {
  color: var(--burgundy);
  font-weight: 850;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.delivery-grid article {
  min-height: 156px;
  padding: 18px;
  background: #fffaf2;
}

.delivery-grid span {
  display: block;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.delivery-grid h3 {
  margin-top: 14px;
}

.delivery-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.35;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.extra-chip {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.extra-chip strong {
  line-height: 1.1;
}

.extra-chip span {
  color: var(--green);
  font-weight: 950;
}

.local-copy p:first-child {
  margin-top: 0;
}

.b2b-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #182332;
  color: var(--paper);
}

.b2b-teaser .kicker {
  color: var(--burgundy-soft);
}

.b2b-teaser h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.b2b-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.b2b-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.b2b-teaser .button.primary {
  width: fit-content;
  border-color: #f7eee1;
  background: #f7eee1;
  color: var(--green);
}

.seo-copy-section {
  padding-block: clamp(42px, 6vw, 78px);
}

.seo-copy-section h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
}

.process-section {
  background: var(--green);
  color: var(--paper);
}

.process-section .kicker {
  color: var(--burgundy-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.18);
}

.process-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: #162130;
}

.process-grid span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
}

.process-grid h3 {
  margin-top: 24px;
}

.process-grid p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.74);
}

.project-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 86px);
  background: #182332;
  color: var(--paper);
}

.project-section .kicker {
  color: var(--burgundy-soft);
}

.project-copy > p {
  color: rgba(255, 253, 248, 0.72);
}

.project-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.project-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.86rem;
  font-weight: 900;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  outline: none;
}

.project-form input,
.project-form select {
  min-height: 50px;
  padding: 0 14px;
}

.project-form textarea {
  min-height: 146px;
  padding: 12px 14px;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 143, 67, 0.24);
}

.project-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.92rem;
}

.privacy-note {
  margin: -4px 0 0;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 650;
}

.privacy-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-form .button.primary {
  border-color: #f7eee1;
  background: #f7eee1;
  color: var(--green);
}

.project-form .button.primary:hover {
  background: #ffffff;
}

.atelier-section {
  background: #f8f1e8;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.atelier-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.atelier-card h3 {
  font-size: 1.08rem;
}

.atelier-card p:not(.product-kicker) {
  margin: 0;
  color: var(--muted);
}

.atelier-card .text-link {
  margin-top: 0;
}

.atelier-media {
  position: relative;
  display: grid;
  min-height: 230px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
}

.atelier-media::before {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.atelier-media span {
  position: relative;
  display: block;
  width: 46%;
  height: 46%;
  box-shadow: 0 24px 40px rgba(23, 21, 18, 0.14);
}

.black-roses {
  background: linear-gradient(135deg, rgba(23, 21, 18, 0.2), transparent), #eee9e2;
}

.black-roses::before {
  background: rgba(122, 31, 50, 0.14);
}

.black-roses span {
  border-radius: 16px 16px 8px 8px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(185, 143, 67, 0.5) 47% 53%, transparent 54%),
    linear-gradient(145deg, #1a1917, #050505);
}

.stone-pot {
  background: linear-gradient(145deg, rgba(185, 143, 67, 0.18), transparent), #f7f0e6;
}

.stone-pot::before {
  background: rgba(82, 107, 134, 0.16);
}

.stone-pot span {
  width: 48%;
  height: 38%;
  border-radius: 999px 999px 24px 24px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 253, 248, 0.45), transparent 20%),
    linear-gradient(145deg, #cec1b0, #7a7064);
}

.course-gift {
  background: linear-gradient(135deg, rgba(122, 31, 50, 0.14), transparent), #fbf4ec;
}

.course-gift::before {
  background: rgba(185, 143, 67, 0.18);
}

.course-gift span {
  width: 54%;
  height: 36%;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(23, 21, 18, 0.62) 48% 52%, transparent 53%),
    linear-gradient(145deg, #fffaf2, #d7c4aa);
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.reviews-section {
  background: var(--warm);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reviews-grid article {
  min-height: 220px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.reviews-grid span {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.reviews-grid h3 {
  margin-top: 18px;
}

.reviews-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border-bottom: 1.5px solid currentColor;
  color: var(--green);
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  background: #f4eadf;
}

.contact-section a {
  color: var(--green);
  font-weight: 900;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: stretch;
  background: var(--paper);
}

.map-section iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(0.85) contrast(0.95);
}

.shipping-zones {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(122, 31, 50, 0.18);
  border-radius: 8px;
  background: #fffaf2;
}

.shipping-zones summary {
  color: var(--burgundy);
  font-family: var(--font-ui);
  font-weight: 950;
  cursor: pointer;
}

.shipping-zones h3 {
  color: var(--burgundy);
}

.shipping-zones ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shipping-zones li {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.shipping-zones li:first-child {
  padding-top: 0;
  border-top: 0;
}

.shipping-zones strong {
  color: var(--ink);
  font-family: var(--font-ui);
}

.shipping-zones span,
.shipping-zones p {
  color: var(--muted);
}

.shipping-zones p {
  margin: 0;
  font-size: 0.9rem;
}

.shipping-zones a {
  color: var(--burgundy);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-shipping-zones {
  margin-top: 0;
  padding: 12px;
  background: rgba(255, 253, 248, 0.76);
}

.cart-shipping-zones ul {
  gap: 8px;
  padding-top: 6px;
}

.cart-shipping-zones li {
  grid-template-columns: 1fr;
  gap: 3px;
  padding-top: 8px;
}

.cart-shipping-zones span,
.cart-shipping-zones p {
  font-size: 0.82rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px clamp(18px, 6vw, 86px) 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 700;
}

.instagram-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  max-width: 900px;
  color: rgba(104, 96, 87, 0.48);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.legal-links a:hover {
  color: rgba(23, 21, 18, 0.68);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 28, 24, 0.22);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 63, 53, 0.14);
}

.page-header {
  grid-template-columns: 1fr auto 1fr;
}

.page-header .header-actions .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.72rem;
}

.decor-page {
  background: var(--paper);
}

.decor-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 7vw, 110px) clamp(18px, 6vw, 86px);
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e8 100%);
}

.decor-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
}

.decor-hero p:not(.kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.decor-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.decor-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf2;
}

.decor-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
}

.audience-section {
  background:
    linear-gradient(135deg, rgba(122, 31, 50, 0.08), transparent 34%),
    var(--paper);
}

.audience-section .section-heading {
  max-width: 980px;
}

.audience-section .section-heading h2 {
  max-width: 960px;
  font-size: clamp(2.25rem, 4.8vw, 5rem);
}

.audience-section .section-heading p:not(.kicker) {
  max-width: 760px;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
}

.audience-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 360px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.98;
}

.audience-card p:not(.product-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.business-card {
  background: #fffaf2;
}

.home-card {
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 143, 67, 0.2), transparent 28%),
    linear-gradient(145deg, var(--burgundy), var(--burgundy-dark));
  color: var(--paper);
}

.home-card .product-kicker,
.home-card p:not(.product-kicker) {
  color: rgba(255, 253, 248, 0.78);
}

.home-card h3 {
  color: var(--paper);
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 8px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.waitlist-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  outline: none;
}

.waitlist-form .consent-field input {
  width: auto;
  min-height: auto;
  padding: 0;
}

.waitlist-form .button.secondary {
  min-height: 50px;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--burgundy);
  font-size: 0.78rem;
}

.waitlist-form .consent-field + .button.secondary {
  grid-column: 1 / -1;
  width: 100%;
}

.decor-intro,
.split-section,
.private-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.decor-intro {
  background: var(--paper);
}

.decor-intro-copy {
  display: grid;
  gap: 18px;
}

.decor-intro-copy p,
.split-copy p,
.private-section p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

.decor-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

.decor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.step-card {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.service-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-section {
  background: var(--green);
  color: var(--paper);
}

.split-section .kicker,
.private-section .kicker {
  color: var(--burgundy-soft);
}

.split-section h2,
.private-section h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy p,
.split-copy li {
  color: rgba(255, 253, 248, 0.76);
}

.split-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.steps-section {
  background: #f8f1e8;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
}

.step-card h3 {
  margin-top: 18px;
}

.private-section {
  background: #182332;
  color: var(--paper);
}

.private-section p {
  color: rgba(255, 253, 248, 0.74);
}

.decor-form-section {
  background:
    linear-gradient(180deg, #fffefb 0%, var(--warm) 100%);
  color: var(--ink);
}

.decor-form-section .kicker {
  color: var(--burgundy);
}

.decor-form-section .project-copy > p {
  color: var(--muted);
}

.decor-form-section .project-form {
  border-color: rgba(122, 31, 50, 0.16);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 20px 60px rgba(122, 31, 50, 0.1);
}

.decor-form-section .project-form label,
.decor-form-section .project-note {
  color: var(--muted);
}

.decor-form-section .project-form em {
  color: var(--burgundy);
  font-style: normal;
}

.decor-form-section .project-form input,
.decor-form-section .project-form select,
.decor-form-section .project-form textarea {
  border-color: rgba(122, 31, 50, 0.18);
  background: var(--white);
}

.decor-form-section .project-form input:focus,
.decor-form-section .project-form select:focus,
.decor-form-section .project-form textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 31, 50, 0.13);
}

.decor-form-section .project-form .button.primary {
  width: 100%;
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--paper);
}

.decor-form-section .project-form .button.primary:hover {
  background: var(--burgundy-dark);
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.consent-field input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--burgundy);
}

.consent-field a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 850;
}

.client-file-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: #fffaf2;
}

.client-file-section > div:first-child {
  display: grid;
  gap: 20px;
}

.client-file-section > div:first-child p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

.client-file-section h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.tracker-preview {
  display: grid;
  gap: 10px;
}

.tracker-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tracker-step span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
}

.tracker-step strong {
  color: var(--ink);
}

.tracker-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tracker-step.is-done span {
  background: var(--burgundy);
  color: var(--paper);
}

.tracker-step.is-active {
  border-color: rgba(122, 31, 50, 0.34);
  box-shadow: 0 14px 34px rgba(122, 31, 50, 0.08);
}

.tracker-step.is-active span {
  background: var(--gold);
  color: var(--ink);
}

.client-file-page {
  background: var(--paper);
}

.client-file-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: clamp(42px, 7vw, 104px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(122, 31, 50, 0.09), transparent 38%),
    linear-gradient(180deg, #fffefb 0%, var(--warm) 100%);
}

.client-file-hero h1 {
  max-width: 840px;
  font-size: clamp(3rem, 5.7vw, 6rem);
}

.client-file-hero p:not(.kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.client-summary-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(122, 31, 50, 0.18);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(122, 31, 50, 0.1);
}

.client-summary-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.client-summary-card dl,
.client-summary-card div {
  display: grid;
  gap: 8px;
}

.client-summary-card dl {
  margin: 0;
}

.client-summary-card div {
  grid-template-columns: minmax(110px, 0.44fr) 1fr;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.client-summary-card dt {
  color: var(--muted);
  font-weight: 900;
}

.client-summary-card dd {
  margin: 0;
  color: var(--ink);
}

.client-status-section,
.project-data-section {
  background: var(--paper);
}

.status-board,
.question-grid,
.data-grid {
  display: grid;
  gap: 14px;
}

.status-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-card,
.question-grid article,
.data-grid article {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.status-card span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
}

.status-card h3 {
  margin-top: 16px;
}

.status-card p,
.question-grid p,
.data-grid span {
  margin: 10px 0 0;
  color: var(--muted);
}

.status-card.is-done {
  border-color: rgba(122, 31, 50, 0.26);
}

.status-card.is-done span,
.status-card.is-active span {
  color: var(--burgundy);
}

.status-card.is-active {
  background: var(--burgundy);
  color: var(--paper);
}

.status-card.is-active p,
.status-card.is-active span {
  color: rgba(255, 253, 248, 0.78);
}

.call-guide-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--warm);
}

.call-guide-section > div:first-child p:not(.kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

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

.data-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.data-grid article {
  display: grid;
  gap: 8px;
}

.data-grid span {
  margin: 0;
}

.next-step-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--warm);
}

.next-step-section > div:first-child p:not(.kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

.client-note-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(122, 31, 50, 0.18);
  border-radius: 8px;
  background: var(--paper);
}

.client-note-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.client-note-card a {
  color: var(--burgundy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(34px, 7vw, 92px) clamp(18px, 6vw, 86px);
}

.legal-hero,
.legal-content {
  width: min(100%, 940px);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.legal-hero .button {
  justify-self: start;
  margin-top: 8px;
}

.legal-content {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.legal-content h2 {
  margin-top: clamp(14px, 3vw, 26px);
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-content p,
.legal-content li {
  margin: 0;
  font-size: 1rem;
}

.legal-content a {
  color: var(--burgundy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-list div,
.legal-table > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 10px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.legal-list dt,
.legal-table strong {
  color: var(--ink);
  font-weight: 950;
}

.legal-list dd {
  margin: 0;
}

.legal-table {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.legal-table > div {
  grid-template-columns: minmax(120px, 0.22fr) minmax(220px, 1fr) minmax(150px, 0.25fr);
}

.cookie-banner,
.cookie-panel {
  position: fixed;
  z-index: 90;
}

.cookie-banner {
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  left: clamp(14px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  max-width: 780px;
  max-height: min(36vh, 260px);
  overflow: auto;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(122, 31, 50, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner h2,
.cookie-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.cookie-banner p,
.cookie-card p {
  max-width: 700px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cookie-banner a {
  display: inline-block;
  margin-top: 8px;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.72rem;
}

.cookie-panel {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 21, 18, 0.42);
}

.cookie-card {
  display: grid;
  gap: 18px;
  width: min(100%, 720px);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cookie-options {
  display: grid;
  gap: 12px;
}

.cookie-options label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.cookie-options input {
  margin-top: 4px;
  accent-color: var(--burgundy);
}

.cookie-options strong {
  display: block;
  color: var(--ink);
}

.cart-legal-consent {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.cart-legal-consent input {
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.cart-legal-consent a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.full-row {
  grid-column: 1 / -1;
}

.menu-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(390px, 100%);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform 220ms ease;
}

.menu-panel.is-open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.menu-header .kicker {
  margin-bottom: 4px;
}

.menu-header h2 {
  font-size: 2rem;
}

.menu-nav {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 12px 20px;
}

.menu-nav a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.menu-nav a[href="decoracion-floral.html"] {
  color: var(--green);
}

.menu-note {
  margin: 0;
  padding: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.product-detail-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 55;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(560px, 100%);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.product-detail-panel.is-open {
  transform: translateX(0);
}

.product-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.product-detail-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  padding: 20px;
}

.product-detail-media {
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: min(52vh, 520px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f0e6;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-detail-title-row {
  display: grid;
  gap: 8px;
}

.product-detail-title-row h2 {
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1;
}

.product-detail-description {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-detail-note {
  margin: -2px 0 0;
  color: rgba(23, 21, 18, 0.58);
  font-size: 0.82rem;
}

.product-detail-card .product-customizer:empty {
  display: none;
}

.product-detail-card .add-button {
  margin-top: 4px;
}

.product-page-section {
  background: var(--paper);
  padding-top: clamp(30px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 72px);
}

.product-back-link {
  margin-bottom: clamp(22px, 4vw, 38px);
}

.product-page-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.74fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.product-page-media {
  position: sticky;
  top: 112px;
  width: 100%;
  max-height: none;
  min-height: clamp(520px, 72vh, 820px);
  border: 12px solid #eef1ff;
}

.product-page-info {
  display: grid;
  gap: 18px;
  padding-top: clamp(8px, 2vw, 24px);
}

.product-page-info h1 {
  max-width: 640px;
  font-size: clamp(2.65rem, 5vw, 5rem);
}

.product-page-info .price {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.product-page-info .product-detail-description {
  max-width: 620px;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
}

.product-page-info .product-customizer {
  max-width: 620px;
}

.product-recommendations-section {
  background: var(--paper);
  padding-top: 0;
}

.product-recommendations-section[hidden] {
  display: none;
}

.product-recommendations-heading {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.product-recommendations-heading h2 {
  margin: 0;
  color: var(--burgundy-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.recommendations-grid {
  align-items: start;
}

.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(450px, 100%);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

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

.cart-items {
  display: grid;
  align-content: start;
  flex: 0 0 auto;
  gap: 12px;
  max-height: min(28vh, 210px);
  overflow-y: auto;
  padding: 18px 20px;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.cart-item h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.22rem;
}

.cart-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
}

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  font-family: var(--font-ui);
}

.quantity button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.quantity span {
  min-width: 18px;
  text-align: center;
  font-weight: 900;
}

.cart-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  flex: 1 1 auto;
  gap: 14px;
  overflow-y: auto;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: #fffaf2;
}

.fulfillment-panel {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  padding-bottom: 4px;
}

.fulfillment-panel fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfillment-panel legend,
.cart-field span {
  width: 100%;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 900;
}

.fulfillment-panel label {
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 850;
}

.fulfillment-panel input[type="radio"] {
  accent-color: var(--green);
}

.delivery-services {
  display: grid !important;
  gap: 10px !important;
  padding: 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px;
  background: var(--paper);
}

.delivery-services[hidden] {
  display: none !important;
}

.delivery-services label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  font-size: 0.82rem;
  line-height: 1.4;
}

.delivery-services input {
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.delivery-services strong {
  color: var(--ink);
}

.cart-field {
  display: grid;
  gap: 6px;
}

.cart-field-group {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10px;
}

.cart-field input,
.cart-field select,
.cart-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.cart-field input {
  min-height: 44px;
  padding: 0 12px;
}

.cart-field select {
  min-height: 44px;
  padding: 0 12px;
}

.cart-field textarea {
  padding: 10px 12px;
  resize: vertical;
}

.delivery-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.84rem;
}

.cart-total span,
.cart-total strong {
  display: block;
}

.cart-total span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
}

.cart-total strong {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 900;
}

.cart-checkout {
  min-width: 170px;
  font-size: 0.78rem;
}

.checkout-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.84rem;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(23, 21, 18, 0.38);
}

@media (max-width: 1100px) {
  .hero,
  .product-page-layout,
  .local-section,
  .b2b-teaser,
  .delivery-section,
  .project-section,
  .contact-section,
  .map-section,
  .decor-hero,
  .decor-intro,
  .split-section,
  .private-section,
  .client-file-section,
  .client-file-hero,
  .call-guide-section,
  .next-step-section {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    width: min(70vw, 390px);
    min-width: 0;
  }

  .product-page-media {
    position: static;
    min-height: auto;
  }

  .atelier-grid,
  .process-grid,
  .delivery-grid,
  .decor-grid,
  .audience-grid,
  .steps-grid,
  .status-board,
  .question-grid,
  .data-grid,
  .cookie-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 180px;
  }

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

@media (max-width: 740px) {
  .service-faq-section {
    grid-template-columns: 1fr;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 76px;
  }

  .header-ribbon {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: min(38vw, 145px);
    max-height: 42px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 10px;
    text-align: center;
  }

  .hero-copy {
    justify-self: center;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.15rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4.1rem);
  }

  .hero-actions,
  .cart-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cart-email {
    width: 100%;
  }

  .hero-art {
    width: min(52vw, 205px);
    aspect-ratio: 1 / 1;
    margin-inline: 0;
  }

  .storefront-landing .hero-art {
    width: min(92vw, 520px);
    min-width: 0;
    aspect-ratio: 1.16 / 1;
  }

  .hero-copy > p:not(.kicker) {
    margin-top: 12px;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    min-height: 48px;
  }

  .seo-strip,
  .product-grid,
  .atelier-grid,
  .process-grid,
  .delivery-grid,
  .decor-grid,
  .audience-grid,
  .steps-grid,
  .status-board,
  .question-grid,
  .data-grid,
  .reviews-grid,
  .extras-grid,
  .project-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .seo-strip p {
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 248, 0.18);
  }

  .seo-strip p:first-child {
    border-top: 0;
  }

  .product-media {
    min-height: 210px;
  }

  .product-page-section {
    padding-top: 24px;
  }

  .product-page-layout {
    gap: 22px;
  }

  .product-page-media {
    border-width: 8px;
  }

  .map-section iframe {
    min-height: 320px;
  }

  .shipping-zones li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .decor-hero {
    padding-top: 28px;
    text-align: center;
  }

  .decor-hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .decor-hero-actions {
    flex-direction: column;
  }

  .decor-hero-actions .button,
  .b2b-teaser .button.primary {
    width: 100%;
  }

  .decor-hero-media img {
    min-height: 260px;
  }

  .client-file-hero {
    padding-top: 28px;
  }

  .client-file-hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .client-summary-card div {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

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

  .waitlist-form .button.secondary {
    width: 100%;
  }

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

  .cart-field-group {
    grid-template-columns: 1fr;
  }

  .cart-checkout {
    width: 100%;
  }

  .legal-list div,
  .legal-table > div {
    grid-template-columns: 1fr;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher button {
    min-width: 36px;
  }
}
