:root {
  --ink: #25211d;
  --muted: #726b63;
  --paper: #fffaf4;
  --soft: #f6eee4;
  --sage: #778779;
  --rose: #c98978;
  --clay: #9e6f58;
  --line: #e6d9ca;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(74, 55, 38, 0.16);
  font-family: 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);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 9px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.announcement-bar span {
  position: relative;
}

.announcement-bar span + span::before {
  content: "";
  position: absolute;
  left: calc(clamp(18px, 4vw, 56px) / -2);
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  border-bottom: 1px solid rgba(230, 217, 202, 0.85);
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(16px);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
.cart-summary small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: var(--muted);
  font-size: 13px;
}

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

.utility-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.category-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  padding: 11px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(230, 217, 202, 0.74);
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.category-nav a {
  color: inherit;
}

.category-nav a:hover {
  color: var(--clay);
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.cart-icon {
  width: 17px;
  height: 14px;
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.cart-icon::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 15px;
  width: 12px;
  height: 8px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 7vw, 88px) clamp(18px, 5vw, 72px) 34px;
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 540px;
  font-size: 18px;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(37, 33, 29, 0.16);
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
}

.button.outline {
  border-color: var(--ink);
  background: transparent;
}

.button.full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin: 32px 0 0;
}

.trust-row div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.trust-row dt {
  font-weight: 900;
}

.trust-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.decision-strip article {
  display: grid;
  gap: 6px;
  min-height: 138px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.decision-strip span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}

.decision-strip strong {
  font-size: 18px;
}

.decision-strip p {
  margin: 0;
  font-size: 14px;
}

.trust-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-card-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-card-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.trust-card-grid p {
  margin: 0;
  color: var(--muted);
}

.curtain-scene {
  position: relative;
  min-height: min(68vh, 690px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 228, 0.92)),
    linear-gradient(110deg, #f7d8c7, #eff2e7 48%, #d9e2d0);
  box-shadow: var(--shadow);
}

.product-hero-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 14px;
  padding: 18px;
  background: #fffdf8;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-photo-stack {
  display: grid;
  gap: 14px;
}

.hero-photo-stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-note {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: grid;
  max-width: 330px;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(230, 217, 202, 0.82);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 14px 34px rgba(74, 55, 38, 0.14);
}

.hero-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.window-frame {
  position: absolute;
  inset: 8% 10% 15%;
  border: 18px solid #efe0cf;
  background:
    linear-gradient(90deg, rgba(255,255,255,.35) 49%, rgba(158,111,88,.2) 50%, rgba(255,255,255,.35) 51%),
    linear-gradient(180deg, #fff7e8 0%, #e9f0e3 54%, #cfd9c7 100%);
  box-shadow: inset 0 0 0 2px rgba(158, 111, 88, 0.22);
}

.sun {
  position: absolute;
  right: 11%;
  top: 10%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 218, 164, 0.72);
  filter: blur(1px);
}

.curtain-panel {
  position: absolute;
  top: -7%;
  bottom: -2%;
  width: 45%;
  background:
    radial-gradient(circle at 28px 42px, rgba(201, 137, 120, 0.2) 0 5px, transparent 6px 42px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.86) 0 22px, rgba(237,232,222,.62) 23px 31px);
  background-size: 88px 88px, auto;
  border-bottom: 12px double rgba(158, 111, 88, 0.28);
  opacity: 0.95;
  filter: drop-shadow(0 14px 18px rgba(99, 76, 55, 0.12));
}

.curtain-panel.left {
  left: 0;
  clip-path: polygon(0 0, 83% 0, 68% 100%, 0 100%);
}

.curtain-panel.right {
  right: 0;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 32% 100%);
}

.lace-band {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  height: 52px;
  background:
    radial-gradient(circle at 18px 0, transparent 0 17px, rgba(255,255,255,.86) 18px 28px, transparent 29px),
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.82));
  background-size: 56px 56px, auto;
}

.scene-floor {
  position: absolute;
  inset: auto 0 0;
  height: 21%;
  background: linear-gradient(90deg, #dec7ae, #f4e7d7, #cbb99f);
}

.scene-floor span {
  position: absolute;
  bottom: 32px;
  width: 120px;
  height: 10px;
  border-radius: 50%;
  background: rgba(37, 33, 29, 0.1);
}

.scene-floor span:first-child {
  left: 16%;
}

.scene-floor span:last-child {
  right: 18%;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.category-strip a {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.category-strip a:hover {
  background: var(--soft);
  color: var(--ink);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(246, 238, 228, 0.86)),
    var(--paper);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 74px);
}

.page-hero p {
  max-width: 760px;
  font-size: 17px;
}

.page-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.seo-intro {
  background: #fffdf9;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 28px;
}

.keyword-chips span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.room-grid article,
.guide-grid article,
.install-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.room-grid img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.room-grid h3,
.room-grid p {
  padding-inline: 20px;
}

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

.room-grid p {
  margin-bottom: 20px;
}

.collection-overview {
  background: #fffdf9;
}

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

.collection-grid a {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(74, 55, 38, 0.12);
}

.collection-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.collection-grid strong,
.collection-grid span {
  padding-inline: 18px;
}

.collection-grid strong {
  font-size: 18px;
}

.collection-grid span {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.seo-hub {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(119, 135, 121, 0.08), transparent 44%),
    var(--paper);
}

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

.seo-columns article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.seo-columns h3 {
  margin-bottom: 6px;
}

.seo-columns a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(230, 217, 202, 0.72);
  color: var(--muted);
  font-weight: 800;
}

.seo-columns a:hover {
  color: var(--ink);
}

.content-band {
  background: #fffdf9;
}

.customizer-section {
  background: var(--soft);
}

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

.customizer-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.customizer-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff1ea;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-seo-summary {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--soft);
}

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

.empty-collection {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.empty-collection strong {
  font-size: 22px;
}

.empty-collection p {
  max-width: 620px;
  margin: 0;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-art,
.product-photo {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft), #edf1e8);
}

.product-photo img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  top: -10%;
  bottom: 0;
  width: 42%;
  background:
    radial-gradient(circle at 16px 20px, rgba(158,111,88,.22) 0 4px, transparent 5px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.9) 0 16px, rgba(238,231,221,.7) 17px 25px);
  background-size: 64px 64px, auto;
}

.product-art::before {
  left: 7%;
  transform: skewX(-4deg);
}

.product-art::after {
  right: 7%;
  transform: skewX(4deg);
}

.product-art .label,
.product-photo .label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  padding: 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.price {
  color: var(--clay);
  font-weight: 900;
  white-space: nowrap;
}

.swatches {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.swatches span {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.product-details {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.production-note {
  margin: -4px 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.product-details li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-details li::before {
  content: "+";
  margin-right: 8px;
  color: var(--sage);
  font-weight: 900;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--sage);
  border-left: 2px solid var(--sage);
  transform: rotate(-45deg);
}

.measure-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(119, 135, 121, 0.08), transparent 42%),
    var(--paper);
}

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

.guide-grid article,
.install-grid article {
  padding: 24px;
}

.guide-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.install-section {
  background: var(--soft);
}

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

.install-grid .hang-visual {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: #fffdf9;
}

.materials-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.material-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf9;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 900;
}

.payments-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

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

.policy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.policy-detail {
  border-top: 1px solid var(--line);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #fffdf9;
}

.story-section img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-options span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

summary + p {
  margin-top: 14px;
  margin-bottom: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  background: rgba(37, 33, 29, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: auto;
  background: rgba(37, 33, 29, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.product-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: 26px;
  width: min(1120px, 100%);
  max-height: 94vh;
  overflow: auto;
  padding: clamp(16px, 2.4vw, 26px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
}

.product-dialog-media img[data-modal-image] {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.dialog-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.dialog-thumbs:empty {
  display: none;
}

.dialog-thumbs button {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.dialog-thumbs button.active {
  border-color: var(--clay);
}

.dialog-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-dialog-info {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-right: 28px;
}

.dialog-price {
  color: var(--clay);
  font-size: 24px;
  font-weight: 900;
}

.selling-points {
  display: grid;
  gap: 10px;
}

.selling-points article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
}

.selling-points strong {
  display: block;
  margin-bottom: 4px;
}

.selling-points p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 900;
}

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

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

.option-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-pill span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  line-height: 1.25;
  cursor: pointer;
}

.hanging-pill span {
  min-height: 142px;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.hanging-pill strong,
.hanging-pill small {
  display: block;
}

.hanging-pill small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.option-pill input:checked + span {
  border-color: var(--clay);
  background: #fff1ea;
  color: var(--clay);
  box-shadow: inset 0 0 0 1px var(--clay);
}

.quantity-field {
  max-width: 180px;
}

.hang-visual {
  position: relative;
  display: block;
  width: 100%;
  height: 58px;
  border-bottom: 1px solid rgba(158, 111, 88, 0.2);
}

.hang-visual::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10px;
  height: 6px;
  border-radius: 999px;
  background: var(--clay);
}

.hang-visual::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 38px;
  border-radius: 8px 8px 2px 2px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.94) 0 10px, rgba(232,222,208,.86) 11px 16px),
    linear-gradient(180deg, #fff, #f2e8dd);
  box-shadow: inset 0 -4px 0 rgba(201, 137, 120, 0.16);
}

.hang-visual.tape::before {
  top: 6px;
  height: 10px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, var(--clay) 0 10px, #d8b39f 11px 20px);
}

.hang-visual.tape::after {
  top: 18px;
}

.hang-visual.pocket::before {
  top: 7px;
  height: 8px;
}

.hang-visual.pocket::after {
  top: 13px;
  height: 43px;
  border-top: 8px solid rgba(255, 255, 255, 0.96);
}

.hang-visual.tension::before {
  left: 6%;
  right: 6%;
  top: 7px;
  height: 7px;
  box-shadow: -8px 0 0 var(--clay), 8px 0 0 var(--clay);
}

.hang-visual.tension::after {
  top: 13px;
  height: 42px;
  border-top: 9px solid rgba(255, 255, 255, 0.96);
}

.hang-visual.hook span {
  display: none;
}

.hang-visual.hook {
  background:
    radial-gradient(circle at 28% 24px, transparent 0 5px, var(--clay) 6px 7px, transparent 8px),
    radial-gradient(circle at 42% 24px, transparent 0 5px, var(--clay) 6px 7px, transparent 8px),
    radial-gradient(circle at 56% 24px, transparent 0 5px, var(--clay) 6px 7px, transparent 8px),
    radial-gradient(circle at 70% 24px, transparent 0 5px, var(--clay) 6px 7px, transparent 8px);
}

.hang-visual.hook::after {
  top: 28px;
  height: 28px;
}

.hang-visual.grommet::after {
  top: 18px;
  height: 38px;
  background:
    radial-gradient(circle at 22% 9px, transparent 0 5px, rgba(158,111,88,.9) 6px 8px, transparent 9px),
    radial-gradient(circle at 38% 9px, transparent 0 5px, rgba(158,111,88,.9) 6px 8px, transparent 9px),
    radial-gradient(circle at 54% 9px, transparent 0 5px, rgba(158,111,88,.9) 6px 8px, transparent 9px),
    radial-gradient(circle at 70% 9px, transparent 0 5px, rgba(158,111,88,.9) 6px 8px, transparent 9px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.94) 0 10px, rgba(232,222,208,.86) 11px 16px);
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: flex;
  width: min(440px, 100vw);
  height: 100%;
  flex-direction: column;
  padding: 22px;
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(37, 33, 29, 0.2);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

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

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: 30px;
  margin: 0;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  overflow: auto;
}

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

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

.cart-item small {
  color: var(--muted);
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  font-weight: 900;
}

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

.cart-summary {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .utility-nav,
  .category-nav {
    display: none;
  }

  .hero,
  .page-hero,
  .split-section,
  .payments-section,
  .materials-section,
  .story-section,
  .home-seo-summary,
  .product-dialog {
    grid-template-columns: 1fr;
  }

  .product-dialog-info {
    padding-right: 0;
  }

  .hero {
    min-height: auto;
  }

  .curtain-scene {
    min-height: 520px;
  }

  .product-hero-scene {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 420px;
  }

  .hero-photo-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-photo-stack img {
    height: 190px;
  }

  .product-grid,
  .process-grid,
  .room-grid,
  .guide-grid,
  .install-grid,
  .collection-grid,
  .decision-strip,
  .seo-columns,
  .customizer-grid,
  .policy-grid,
  .trust-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .trust-row,
  .product-grid,
  .process-grid,
  .room-grid,
  .guide-grid,
  .install-grid,
  .collection-grid,
  .decision-strip,
  .seo-columns,
  .customizer-grid,
  .policy-grid,
  .trust-card-grid,
  .form-row,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .announcement-bar {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .announcement-bar span + span::before {
    display: none;
  }

  .curtain-scene {
    min-height: 430px;
  }

  .hero-photo {
    min-height: 360px;
  }

  .hero-photo-stack {
    display: none;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .product-art {
    min-height: 230px;
  }

  .product-photo img {
    height: 260px;
  }

  .site-footer {
    flex-direction: column;
  }

  .option-grid,
  .option-grid.compact {
    grid-template-columns: 1fr;
  }
}
