:root {
  --ink: #182520;
  --muted: #647069;
  --paper: #f7f4ed;
  --surface: #fffdf8;
  --sage: #dce4dc;
  --forest: #365b4b;
  --forest-dark: #173329;
  --terracotta: #c96f4f;
  --sand: #eadcc4;
  --line: rgba(24, 37, 32, .16);
  --shadow: 0 20px 60px rgba(33, 44, 38, .12);
  --radius: 26px;
  --header: 96px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; inset-inline-start: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: #fff; }
.skip-link:focus { top: 12px; }
.promo { min-height: 34px; display: grid; place-items: center; padding: 6px 20px; background: #f0ded5; color: #714733; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-align: center; }
.site-header { height: var(--header); position: sticky; top: 0; z-index: 50; display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 0 clamp(24px, 4vw, 72px); background: rgba(255, 253, 248, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.brand { width: 128px; border: 0; background: none; padding: 0; cursor: pointer; }
.brand img { width: 100%; }
.desktop-nav { min-width: 0; display: flex; justify-content: center; gap: clamp(9px, 1.25vw, 22px); }
.desktop-nav button, .mobile-menu nav button { border: 0; background: none; padding: 12px 2px; cursor: pointer; font-size: 14px; white-space: nowrap; }
.desktop-nav button { position: relative; }
.desktop-nav button::after { content: ""; position: absolute; inset-inline: 0; bottom: 4px; height: 2px; background: var(--terracotta); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav button:hover::after, .desktop-nav button:focus-visible::after, .desktop-nav button.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.locale-switch { min-height: 44px; border: 0; background: none; padding: 12px; cursor: pointer; white-space: nowrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 4px; padding: 13px 24px; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--terracotta); color: #fff; }
.button-dark { background: var(--forest-dark); color: #fff; }
.button-line { border-color: var(--forest); background: transparent; color: var(--forest-dark); }
.button-glass { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(10px); }
.menu-toggle { width: 46px; height: 46px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.menu-toggle span { width: 20px; height: 2px; position: absolute; background: var(--ink); }
.menu-toggle span:last-child { transform: translateY(6px); }
.mobile-menu { display: none; position: fixed; inset: calc(34px + var(--header)) 0 auto; z-index: 60; padding: 24px; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-menu.is-open { display: grid; gap: 18px; }
.mobile-menu nav { display: grid; }
.view { display: none; min-height: 60vh; }
.view.is-active { display: block; }
.section-shell { width: min(1380px, calc(100% - 64px)); margin-inline: auto; }
.hero { min-height: calc(100vh - 130px); max-height: 900px; position: relative; display: grid; align-items: end; overflow: hidden; background: #29352f; }
.hero-image { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: opacity .55s ease, transform 5s ease; }
.hero.is-changing .hero-image { opacity: .25; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,31,25,.78) 0%, rgba(16,31,25,.38) 48%, rgba(16,31,25,.08) 78%), linear-gradient(0deg, rgba(16,31,25,.55), transparent 55%); }
[dir="rtl"] .hero-overlay { background: linear-gradient(-90deg, rgba(16,31,25,.78) 0%, rgba(16,31,25,.38) 48%, rgba(16,31,25,.08) 78%), linear-gradient(0deg, rgba(16,31,25,.55), transparent 55%); }
.hero-content { width: min(760px, calc(100% - 64px)); position: relative; z-index: 2; margin: 0 max(32px, 7vw) clamp(90px, 12vh, 138px); color: #fff; }
.eyebrow { margin: 0 0 18px; color: #f3c4b2; font-size: 13px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: #aa5e43; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(48px, 6.7vw, 104px); line-height: .95; letter-spacing: -.055em; }
.hero-content > p:not(.eyebrow) { max-width: 690px; margin: 28px 0 34px; font-size: clamp(18px, 2vw, 25px); line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-controls { position: absolute; z-index: 3; inset-inline-end: max(24px, 5vw); bottom: 34px; display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 999px; background: rgba(16,31,25,.62); color: #fff; backdrop-filter: blur(12px); }
.hero-controls button { min-width: 36px; height: 36px; border: 0; border-radius: 999px; background: transparent; color: inherit; cursor: pointer; }
.hero-controls button:hover, .hero-controls button:focus-visible { background: rgba(255,255,255,.18); }
.hero-dots { display: flex; gap: 7px; }
.hero-dots button { min-width: 8px; width: 8px; height: 8px; padding: 0; background: rgba(255,255,255,.42); }
.hero-dots button.is-active { width: 28px; background: #fff; }
.intro { padding-block: clamp(72px, 9vw, 135px) clamp(44px, 5vw, 74px); }
.intro h2, .page-heading h1 { max-width: 1000px; margin: 0; font-size: clamp(44px, 6vw, 88px); line-height: 1; letter-spacing: -.05em; }
.intro > p:last-child { max-width: 820px; margin: 26px 0 0; color: var(--muted); font-size: 21px; line-height: 1.65; }
.home-scenes { display: grid; gap: 0; }
.scene-section { padding: clamp(64px, 7vw, 110px) 0; border-top: 1px solid var(--line); overflow: hidden; }
.scene-section:nth-child(even) { background: var(--sage); }
.scene-heading { margin-bottom: 34px; }
.scene-heading h2 { max-width: 850px; margin: 0; font-size: clamp(35px, 4.2vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
.scene-atmosphere { margin: 0 0 26px; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(230px, .45fr); align-items: end; gap: 28px; }
.scene-atmosphere img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border-radius: 24px; box-shadow: 0 12px 36px rgba(33,44,38,.09); }
.scene-atmosphere figcaption { padding: 0 0 10px; }
.scene-atmosphere h3 { margin: 0 0 12px; font-size: clamp(24px, 2.6vw, 40px); line-height: 1.08; letter-spacing: -.035em; }
.scene-atmosphere p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.text-button { border: 0; border-bottom: 1px solid currentColor; background: none; padding: 8px 0; color: var(--forest); font-weight: 900; cursor: pointer; }
.scene-products, .product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 7px 24px rgba(33,44,38,.06); }
.product-card > button { width: 100%; display: block; border: 0; background: none; padding: 0; text-align: start; cursor: pointer; }
.product-card-media { aspect-ratio: 1 / 1; overflow: hidden; background: #e8e4da; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover img, .product-card:focus-within img { transform: scale(1.035); }
.product-card-copy { min-height: 116px; padding: 20px; }
.product-card-copy small { display: block; margin-bottom: 8px; color: #9a654e; font-weight: 800; }
.product-card-copy b { display: block; font-size: 18px; line-height: 1.35; }
.scene-entry-card { min-width: 0; overflow: hidden; border-radius: 20px; background: var(--forest-dark); box-shadow: 0 12px 32px rgba(20,44,35,.2); }
.scene-entry-card > button { width: 100%; height: 100%; min-height: 100%; position: relative; display: block; overflow: hidden; border: 0; padding: 0; background: var(--forest-dark); color: #fff; text-align: start; cursor: pointer; }
.scene-entry-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; opacity: .58; transition: transform .5s ease, opacity .3s ease; }
.scene-entry-card button::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,39,30,.95) 0%, rgba(14,39,30,.25) 72%); }
.scene-entry-overlay { min-height: 142px; position: absolute; z-index: 2; inset: auto 0 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 8px 16px; padding: 24px; }
.scene-entry-overlay small { grid-column: 1 / -1; color: #f1c9b8; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.scene-entry-overlay strong { font-size: 21px; line-height: 1.2; }
.scene-entry-overlay i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; font-size: 22px; font-style: normal; }
.scene-entry-card:hover img, .scene-entry-card:focus-within img { opacity: .72; transform: scale(1.04); }
.scene-entry-card:focus-within { outline: 3px solid var(--terracotta); outline-offset: 3px; }
.service-cta { margin-block: clamp(70px, 9vw, 140px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(40px, 5vw, 74px); border-radius: var(--radius); background: var(--sand); }
.service-cta h2 { max-width: 740px; margin: 0; font-size: clamp(34px, 4vw, 60px); line-height: 1.05; }
.page-heading { padding-block: clamp(44px, 5vw, 72px) 30px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); align-items: end; gap: 50px; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.catalog-discovery { display: grid; gap: 40px; padding-bottom: 34px; }
.discovery-group { display: grid; gap: 16px; }
.discovery-group header { display: flex; justify-content: space-between; align-items: center; }
.discovery-group h2 { margin: 0; font-size: clamp(24px, 2.2vw, 34px); letter-spacing: -.03em; }
.visual-filter-grid { display: grid; gap: 12px; padding: 2px 2px 12px; }
.scene-visual-filters { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.family-visual-filters { grid-template-columns: repeat(9, minmax(0, 1fr)); }
.visual-filter-card { min-width: 0; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; padding: 0; background: var(--surface); text-align: start; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.visual-filter-card.is-selected { border-color: var(--terracotta); box-shadow: 0 8px 24px rgba(165,92,64,.13), 0 0 0 1px var(--terracotta); }
.visual-filter-card.is-selected::after { content: "✓"; width: 25px; height: 25px; position: absolute; z-index: 2; inset-block-start: 9px; inset-inline-end: 9px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; background: var(--terracotta); color: #fff; font-size: 13px; font-weight: 900; box-shadow: 0 3px 10px rgba(44,30,22,.18); }
.visual-filter-card.is-selected .visual-filter-copy { background: #fff8f3; }
.visual-filter-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #dfdbd1; line-height: 0; }
.visual-filter-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.scene-visual-filters .visual-filter-media img { transform: scale(1.025); }
.visual-filter-card:hover .visual-filter-media img, .visual-filter-card:focus-visible .visual-filter-media img { transform: scale(1.055); }
.visual-filter-copy { min-height: 66px; display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 12px 14px; }
.visual-filter-copy small { color: var(--muted); font-size: 11px; }
.visual-filter-copy b { font-size: 14px; line-height: 1.25; }
.family-visual-filters .stone-texture-card { min-height: 112px; isolation: isolate; border-radius: 18px; background: #ded8cd; box-shadow: none; }
.family-visual-filters .stone-texture-card .visual-filter-media { position: absolute; z-index: 0; inset: 0; aspect-ratio: auto; background: #ded8cd; }
.family-visual-filters .stone-texture-card .visual-filter-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,34,27,.02) 35%, rgba(18,34,27,.24) 100%); pointer-events: none; }
.family-visual-filters .stone-texture-card .visual-filter-media > img { transform: scale(2.08); object-position: 50% 43%; filter: saturate(.9) contrast(.98); }
.family-visual-filters .stone-texture-card:hover .visual-filter-media > img,
.family-visual-filters .stone-texture-card:focus-visible .visual-filter-media > img { transform: scale(2.16); }
.family-visual-filters .stone-texture-card .visual-filter-copy { min-height: 0; position: absolute; z-index: 2; inset-inline: 8px; bottom: 8px; display: block; padding: 9px 10px; border: 1px solid rgba(255,255,255,.62); border-radius: 11px; background: rgba(250,247,240,.9); box-shadow: 0 4px 14px rgba(27,34,29,.08); backdrop-filter: blur(7px); }
.family-visual-filters .stone-texture-card .visual-filter-copy b { display: block; overflow: hidden; color: var(--forest-dark); font-size: 13px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.family-visual-filters .stone-texture-card.is-selected { border-color: var(--terracotta); box-shadow: inset 0 0 0 1px var(--terracotta), 0 8px 20px rgba(165,92,64,.11); }
.family-visual-filters .stone-texture-card.is-selected::after { content: ""; width: 9px; height: 9px; inset-block-start: 11px; inset-inline-end: 11px; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; background: var(--terracotta); box-shadow: 0 2px 7px rgba(44,30,22,.18); }
.family-visual-filters .stone-texture-card.is-selected .visual-filter-copy { background: rgba(255,248,243,.94); }
.visual-filter-spectrum { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); }
.visual-filter-spectrum > i { min-width: 0; background-position: 50% 43%; background-repeat: no-repeat; background-size: auto 220%; }
.visual-filter-spectrum > i + i { border-inline-start: 1px solid rgba(255,255,255,.24); }
.filter-status { min-height: 56px; position: sticky; top: var(--header); z-index: 30; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 8px max(32px, calc((100vw - 1380px) / 2)); background: rgba(247,244,237,.96); border-block: 1px solid var(--line); backdrop-filter: blur(14px); }
.filter-status span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 900; }
.filter-status button { min-height: 44px; flex: 0 0 auto; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--forest); font-weight: 900; cursor: pointer; }
.filter-row { min-width: 0; display: grid; grid-template-columns: 74px minmax(0, 1fr); align-items: center; gap: 12px; }
.filter-row > small { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.chip-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip { min-height: 42px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; background: var(--surface); font-weight: 800; cursor: pointer; }
.chip.is-selected { border-color: var(--forest-dark); background: var(--forest-dark); color: #fff; }
.swatch { width: 25px; height: 25px; flex: 0 0 auto; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); background: var(--swatch, linear-gradient(135deg,#eee,#aaa)); }
.product-grid { padding-block: 42px 110px; }
.empty-state { padding-block: 80px 130px; text-align: center; }
.stone-family-tabs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 30px; }
.stone-family-tabs .visual-filter-card { min-width: 170px; flex: 0 0 170px; }
.stone-library { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding-bottom: 120px; }
.stone-card { min-height: 210px; display: grid; grid-template-columns: 112px minmax(0,1fr); align-items: start; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.stone-reference { width: 112px; height: 112px; border-radius: 16px; object-fit: cover; }
.stone-card h2 { margin: 5px 0 10px; font-size: 24px; }
.stone-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.stone-card button { grid-column: 2; justify-self: start; }
.spaces-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding-bottom: 120px; }
.space-card { min-height: 470px; position: relative; overflow: hidden; border-radius: 24px; background: var(--forest-dark); color: #fff; }
.space-card > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: .76; }
.space-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,31,24,.88), rgba(13,31,24,.05) 70%); }
.space-card > div { position: absolute; z-index: 2; inset: auto 28px 28px; }
.space-card h2 { max-width: 590px; margin: 0 0 14px; font-size: clamp(30px, 3vw, 48px); line-height: 1.02; }
.space-card .text-button { color: #fff; }
.back-link { display: block; min-height: 44px; border: 0; background: none; padding-top: 18px; color: var(--forest); font-weight: 900; text-align: start; cursor: pointer; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr); gap: clamp(28px, 3.2vw, 52px); align-items: start; padding-block: 18px 72px; }
.product-gallery-main { position: relative; overflow: hidden; border-radius: 20px; background: #e9e4d9; }
.product-gallery-main > img { width: 100%; height: clamp(420px, 54vh, 560px); object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 9px; margin-top: 10px; }
.gallery-thumbs button { min-height: 78px; position: relative; aspect-ratio: 4/3; overflow: hidden; border: 2px solid transparent; border-radius: 12px; padding: 0; background: #e9e4d9; cursor: pointer; }
.gallery-thumbs button.is-selected { border-color: var(--terracotta); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-main[data-media-role="dimensions"] { background: #f7f4ec; }
.product-gallery-main[data-media-role="dimensions"] > img,
.gallery-thumbs button[data-media-role="dimensions"] img { object-fit: contain; background: #f7f4ec; }
.dimension-status { margin-top: 10px; border: 1px solid #e5d5c7; border-radius: 14px; padding: 14px 16px; background: #f3e8de; color: #50372d; }
.dimension-status strong { display: block; font-size: 14px; line-height: 1.35; }
.dimension-status p { margin: 5px 0 10px; color: #6f5d53; font-size: 13px; line-height: 1.45; }
.dimension-measurements { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.dimension-measurements span { min-width: 0; border-top: 1px solid rgba(123, 70, 52, .18); padding-top: 7px; font-size: 12px; font-weight: 800; line-height: 1.35; }
.product-copy { align-self: start; position: sticky; top: calc(var(--header) + 18px); }
.product-copy .eyebrow { margin-bottom: 10px; }
.product-copy h1 { margin: 0; font-size: clamp(36px, 3.1vw, 54px); line-height: .98; letter-spacing: -.045em; }
.product-copy > .detail-intro { margin: 12px 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.product-copy h2 { margin: 0 0 15px; font-size: 18px; }
.deliverable-note { display: grid; gap: 6px; margin: 12px 0 0; padding: 12px 14px; border-radius: 12px; background: #efe8dc; }
.deliverable-note p { display: grid; grid-template-columns: minmax(120px, .42fr) 1fr; gap: 10px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.4; }
.deliverable-note b { color: var(--ink); }
.detail-rule { height: 1px; margin: 16px 0; background: var(--line); }
.configuration-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.configuration-options .chip { min-height: 54px; }
.configurator-step { margin-bottom: 14px; }
.configurator-step-label { margin: 0 0 9px; font-size: 15px; }
.selection-option { min-height: 56px; flex: 1 1 calc(50% - 4px); display: flex; align-items: center; gap: 10px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; padding: 7px 9px; background: var(--surface); text-align: start; font-size: 13px; font-weight: 850; cursor: pointer; }
.selection-option.is-selected { border-color: var(--terracotta); background: #fff8f3; box-shadow: 0 0 0 1px var(--terracotta); }
.selection-option.is-unavailable { border-color: #ddd8cf; background: #f2efe9; color: #8f938f; opacity: .58; cursor: not-allowed; box-shadow: none; }
.selection-option.is-unavailable img, .selection-option.is-unavailable .swatch { filter: grayscale(.72); opacity: .68; }
.selection-option:focus-visible, .gallery-thumbs button:focus-visible { outline: 3px solid rgba(201, 111, 79, .32); outline-offset: 2px; }
.stone-selection { min-height: 66px; }
.stone-texture-swatch { width: 58px; height: 46px; flex: 0 0 auto; position: relative; overflow: hidden; border: 1px solid rgba(27,34,29,.12); border-radius: 10px; background: #ded8cd; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.stone-texture-swatch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(18,34,27,.06)); pointer-events: none; }
.stone-texture-swatch img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 43%; transform: scale(2.28); filter: saturate(.9) contrast(.98); }
.stone-selection.is-selected .stone-texture-swatch { border-color: rgba(165,92,64,.48); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 3px 10px rgba(165,92,64,.12); }
.metal-selection { flex: 0 1 220px; }
.metal-selection .swatch { width: 36px; height: 36px; }
.detail-inquiry { width: 100%; min-height: 48px; }
.configuration-summary { margin-top: 14px; border-top: 1px solid var(--line); }
.configuration-summary h2 { margin: 0; padding: 15px 0 10px; color: var(--forest); font-size: 13px; font-weight: 850; }
.detail-meta { margin: 0; border-top: 1px solid var(--line); }
.detail-meta div { display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.detail-meta dt { color: var(--muted); }
.detail-meta dd { margin: 0; font-weight: 800; }
.product-information { padding-block: 18px 96px; }
.product-information-heading { display: flex; justify-content: space-between; align-items: end; gap: 36px; padding-block: 28px 22px; border-top: 1px solid var(--line); }
.product-information-heading p { margin: 0; }
.product-information-heading > p:last-child { max-width: 570px; color: var(--muted); line-height: 1.55; text-align: end; }
.detail-decision-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); gap: 16px; }
.product-overview-card, .stone-origin-card { min-width: 0; border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px, 4vw, 52px); }
.product-overview-card { background: linear-gradient(145deg, #eee6da, #faf6ee 64%, #e3e9e2); }
.detail-kicker { margin: 0 0 14px; color: var(--forest); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.product-overview-card h2 { max-width: 780px; margin: 0; font-size: clamp(38px, 4.8vw, 66px); line-height: 1; letter-spacing: -.05em; }
.product-overview-card .detail-story-lead { max-width: 780px; margin: 24px 0 28px; color: #34433c; font-size: clamp(19px, 2vw, 27px); line-height: 1.45; }
.detail-essentials-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border-top: 1px solid rgba(24,37,32,.16); }
.detail-essentials-list > div { min-width: 0; padding: 16px 16px 0 0; }
.detail-essentials-list dt, .stone-origin-facts dt, .detail-spec-grid dt, .technical-status-list dt { color: var(--muted); font-size: 12px; line-height: 1.45; }
.detail-essentials-list dd, .stone-origin-facts dd, .detail-spec-grid dd, .technical-status-list dd { min-width: 0; margin: 5px 0 0; font-size: 14px; font-weight: 800; line-height: 1.5; overflow-wrap: anywhere; }
.detail-essentials-list .is-blocked dd, .stone-origin-facts .is-blocked dd, .detail-spec-grid .is-blocked dd, .technical-status-list .is-blocked dd { color: #87523f; }
.stone-origin-card { background: var(--forest-dark); color: #fff; }
.stone-origin-card .eyebrow { color: #decdb3; }
.stone-origin-card h3 { margin: 0; font-size: clamp(31px, 3.2vw, 47px); line-height: 1; letter-spacing: -.04em; }
.stone-truth-lead { margin: 20px 0; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.6; }
.truth-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.truth-badges span { min-height: 32px; display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 6px 10px; background: rgba(255,255,255,.08); font-size: 10px; font-weight: 850; line-height: 1.35; }
.truth-badges .is-blocked { border-color: rgba(238,176,143,.58); color: #f5c9b2; }
.truth-badges .is-researched { border-color: rgba(226,205,164,.58); color: #f1dfb9; }
.truth-badges .is-verified { border-color: rgba(193,221,196,.62); color: #dcefdc; }
.stone-origin-facts { margin: 26px 0 0; }
.stone-origin-facts > div { display: grid; grid-template-columns: minmax(112px, .42fr) minmax(0, 1fr); gap: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.stone-origin-facts dt { color: rgba(255,255,255,.55); }
.stone-origin-facts .is-blocked dd { color: #f5c9b2; }
.origin-proof-link { display: inline-flex; margin-top: 20px; color: #fff; font-size: 13px; font-weight: 850; }
.detail-disclosures { margin-top: 22px; border-top: 1px solid var(--line); }
.detail-disclosure { border-bottom: 1px solid var(--line); }
.detail-disclosure > summary { min-height: 88px; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 4px; cursor: pointer; list-style: none; }
.detail-disclosure > summary::-webkit-details-marker { display: none; }
.detail-disclosure > summary > span { min-width: 0; display: grid; gap: 5px; }
.detail-disclosure > summary b { font-size: clamp(21px, 2.2vw, 29px); line-height: 1.15; }
.detail-disclosure > summary small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.detail-disclosure > summary i { width: 34px; height: 34px; flex: 0 0 34px; position: relative; border: 1px solid var(--line); border-radius: 50%; }
.detail-disclosure > summary i::before, .detail-disclosure > summary i::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 12px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s ease; }
.detail-disclosure > summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.detail-disclosure[open] > summary i::after { transform: translate(-50%, -50%) rotate(0); }
.detail-disclosure-body { padding: 4px 0 34px; }
.specifications-body { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 16px; }
.design-intent-block, .technical-panel, .care-panel { border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: var(--surface); }
.design-intent-block { grid-row: span 2; background: #e4e9e1; }
.design-intent-block > p:last-child { margin: 0; color: #34433c; font-size: 16px; line-height: 1.65; }
.detail-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.detail-spec-grid > div { min-width: 0; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.detail-spec-grid > div:nth-child(odd) { border-inline-end: 1px solid var(--line); }
.detail-spec-grid > div:nth-last-child(-n + 2) { border-bottom: 0; }
.technical-panel h3 { margin: 0 0 16px; font-size: 25px; }
.technical-panel > strong { display: block; color: var(--forest); font-size: 17px; line-height: 1.45; }
.technical-panel > p { margin: 8px 0 18px; color: var(--muted); line-height: 1.6; }
.technical-status-list { margin: 0; border-top: 1px solid var(--line); }
.technical-status-list > div { display: grid; grid-template-columns: minmax(120px, .35fr) minmax(0, 1fr); gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.care-panel { background: #eadfce; }
.care-panel > p { max-width: 880px; margin: 0; color: #56645d; font-size: 16px; line-height: 1.7; }
.care-panel ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.care-panel li { position: relative; padding-inline-start: 26px; line-height: 1.55; }
.care-panel li::before { content: "—"; position: absolute; inset-inline-start: 0; color: var(--terracotta); font-weight: 900; }
.heritage-intro { max-width: 760px; margin: 0 0 18px; color: var(--muted); line-height: 1.6; }
.heritage-gate { min-height: 170px; display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: center; gap: 18px; border: 1px solid #dfcfc0; border-radius: 18px; padding: 28px; background: #f1e6da; }
.heritage-gate > span { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid #c89e88; border-radius: 50%; color: #9a6149; font-size: 30px; }
.heritage-gate strong { font-size: 19px; }
.heritage-gate p { max-width: 800px; margin: 8px 0 0; color: #6f5d53; line-height: 1.65; }
.heritage-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.heritage-cards article { min-width: 0; border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: var(--surface); }
.heritage-card-meta { color: var(--muted); font-size: 12px; font-weight: 800; }
.heritage-cards h4 { margin: 12px 0; font-size: 23px; line-height: 1.1; }
.heritage-cards article > p:not(.heritage-card-meta) { color: var(--muted); line-height: 1.55; }
.heritage-cards a { color: var(--forest); font-size: 13px; font-weight: 900; overflow-wrap: anywhere; }
.heritage-disclaimer { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.detail-consultation { min-height: 220px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; margin-top: 40px; border-radius: 22px; padding: clamp(30px, 4vw, 52px); background: var(--forest-dark); color: #fff; }
.detail-consultation h3 { max-width: 800px; margin: 0; font-size: clamp(31px, 4vw, 49px); line-height: 1; letter-spacing: -.04em; }
.detail-consultation p:not(.eyebrow) { max-width: 700px; margin: 14px 0 0; color: rgba(255,255,255,.7); line-height: 1.55; }
.detail-consultation .button { min-width: 210px; }
.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 120px; }
.editorial-grid article { overflow: hidden; border-radius: 22px; background: var(--surface); }
.editorial-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.editorial-grid h2 { margin: 0; padding: 28px; font-size: 28px; }
.feature-page { min-height: 72vh; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; margin-block: 46px 100px; padding: 0; overflow: hidden; border-radius: var(--radius); background: var(--forest-dark); color: #fff; }
.feature-page > div { align-self: center; padding: clamp(42px, 6vw, 100px); }
.feature-page h1 { margin: 0; font-size: clamp(48px, 6vw, 84px); line-height: .98; }
.feature-page p:not(.eyebrow) { font-size: 19px; line-height: 1.7; }
.feature-page > img { width: 100%; height: 100%; object-fit: cover; }
.project-gate { min-height: 330px; display: grid; place-items: center; gap: 24px; margin-bottom: 120px; padding: 50px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); text-align: center; }
.project-gate p { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(22px, 2.6vw, 36px); line-height: 1.4; }
.site-footer { display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; align-items: center; gap: 40px; padding: 70px max(32px, 6vw); background: #efe8dc; border-top: 1px solid var(--line); }
.site-footer img { width: 150px; }
.site-footer p { max-width: 520px; color: var(--muted); }
.footer-contact { display: grid; gap: 5px; margin-top: 22px; }
.footer-contact span { color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.footer-contact a, .inquiry-email a { width: fit-content; color: var(--forest-dark); font-weight: 900; text-underline-offset: 4px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 24px; }
.footer-nav button { min-height: 44px; border: 0; background: none; padding: 8px 0; text-align: start; cursor: pointer; }
.prototype-bar { min-height: 36px; display: grid; place-items: center; padding: 8px 20px; background: var(--forest-dark); color: #fff; text-align: center; font-size: 12px; font-weight: 800; }
.inquiry-dialog { width: min(720px, calc(100% - 32px)); border: 0; border-radius: 24px; padding: clamp(30px, 5vw, 62px); background: var(--surface); box-shadow: var(--shadow); }
.inquiry-dialog::backdrop { background: rgba(13,28,22,.7); backdrop-filter: blur(5px); }
.inquiry-dialog h2 { max-width: 570px; margin: 0 0 28px; font-size: clamp(34px, 4vw, 52px); }
.inquiry-email { margin: -12px 0 26px; color: var(--muted); line-height: 1.6; }
.dialog-close { position: absolute; inset-inline-end: 18px; top: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #eee9df; font-size: 25px; cursor: pointer; }
.inquiry-dialog form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-dialog label { display: grid; gap: 8px; font-weight: 800; }
.inquiry-dialog input, .inquiry-dialog textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: #fff; }
.inquiry-dialog .full { grid-column: 1/-1; }
.form-status { padding: 16px; background: var(--sage); font-weight: 800; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
@media (max-width: 1240px) {
  :root { --header: 82px; }
  .site-header { grid-template-columns: 145px 1fr auto; padding-inline: 30px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .scene-products, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .stone-library { grid-template-columns: repeat(2, 1fr); }
  .visual-filter-grid { display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; }
  .visual-filter-card, .scene-visual-filters .visual-filter-card { min-width: 168px; flex: 0 0 168px; scroll-snap-align: start; }
  .site-footer { grid-template-columns: 1fr auto; }
  .footer-nav { grid-row: 2; grid-column: 1 / -1; grid-template-columns: repeat(5, auto); justify-content: start; }
}
@media (max-width: 960px) {
  .product-detail { grid-template-columns: 1fr; max-width: 760px; }
  .product-copy { position: static; }
  .product-gallery-main > img { height: clamp(420px, 62vw, 560px); }
  .detail-decision-grid, .specifications-body { grid-template-columns: 1fr; }
  .heritage-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-consultation { grid-template-columns: 1fr; align-items: start; }
  .detail-consultation .button { justify-self: start; }
}
@media (max-width: 760px) {
  :root { --header: 70px; }
  .promo { font-size: 10px; }
  .site-header { grid-template-columns: 108px 1fr; padding-inline: 16px; }
  .header-actions { justify-self: end; gap: 4px; }
  .header-inquiry { display: none; }
  .locale-switch { font-size: 13px; }
  .section-shell { width: min(100% - 30px, 1380px); }
  .hero { min-height: 710px; }
  .hero-content { width: calc(100% - 30px); margin-inline: 15px; margin-bottom: 128px; }
  .hero h1 { font-size: clamp(48px, 16vw, 72px); }
  .hero-content > p:not(.eyebrow) { font-size: 17px; }
  .hero-controls { inset-inline: 15px; justify-content: center; bottom: 22px; }
  .hero-overlay, [dir="rtl"] .hero-overlay { background: linear-gradient(0deg, rgba(16,31,25,.88), rgba(16,31,25,.16) 78%); }
  .intro { padding-block: 68px 35px; }
  .intro h2, .page-heading h1 { font-size: 44px; }
  .scene-heading { grid-template-columns: 1fr; align-items: start; }
  .scene-atmosphere { grid-template-columns: 1fr; gap: 14px; }
  .scene-atmosphere img { aspect-ratio: 4 / 3; border-radius: 18px; }
  .scene-atmosphere figcaption { padding-bottom: 6px; }
  .scene-products, .product-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .product-grid { padding-inline: 15px; margin-inline: 0; width: 100%; }
  .product-card, .scene-entry-card { flex: 0 0 78vw; scroll-snap-align: start; }
  .scene-entry-card img { min-height: 100%; aspect-ratio: 1 / 1.28; }
  .service-cta, .split-heading, .product-detail, .feature-page { grid-template-columns: 1fr; }
  .service-cta { width: calc(100% - 30px); padding: 34px 24px; }
  .page-heading { padding-block: 62px 35px; }
  .catalog-discovery { width: 100%; padding-inline-start: 15px; }
  .discovery-group header { padding-inline-end: 15px; }
  .visual-filter-grid { padding-inline-end: 15px; }
  .visual-filter-card, .scene-visual-filters .visual-filter-card { min-width: 156px; flex-basis: 156px; }
  .filter-status { padding-inline: 15px; }
  .filter-status button { font-size: 13px; }
  .stone-library { grid-template-columns: 1fr; padding-bottom: 80px; }
  .stone-card { grid-template-columns: 88px 1fr; padding: 15px; }
  .stone-reference { width: 88px; height: 88px; }
  .spaces-index { grid-template-columns: 1fr; }
  .space-card { min-height: 390px; }
  .back-link { padding-top: 10px; }
  .product-detail { padding-block: 10px 80px; }
  .product-copy { position: static; }
  .product-gallery-main > img { height: auto; aspect-ratio: 1 / 1; }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumbs button { min-height: 64px; }
  .dimension-measurements { grid-template-columns: 1fr; }
  .deliverable-note p { grid-template-columns: 1fr; gap: 2px; }
  .selection-option { flex-basis: 100%; }
  .metal-selection { flex-basis: 100%; }
  .product-information { padding-block: 0 72px; }
  .product-information-heading { display: grid; gap: 8px; padding-block: 30px 18px; }
  .product-information-heading > p:last-child { text-align: start; }
  .detail-decision-grid { gap: 10px; }
  .product-overview-card, .stone-origin-card { padding: 26px 22px; }
  .product-overview-card h2 { font-size: 38px; }
  .product-overview-card .detail-story-lead { margin-block: 18px 22px; font-size: 18px; }
  .detail-essentials-list { grid-template-columns: 1fr; }
  .detail-essentials-list > div { padding: 13px 0; border-bottom: 1px solid rgba(24,37,32,.12); }
  .detail-essentials-list > div:last-child { border-bottom: 0; }
  .stone-origin-card h3 { font-size: 34px; }
  .stone-origin-facts > div, .technical-status-list > div { grid-template-columns: 1fr; gap: 4px; }
  .detail-disclosure > summary { min-height: 82px; padding-block: 17px; }
  .detail-disclosure > summary b { font-size: 20px; }
  .detail-disclosure-body { padding-bottom: 24px; }
  .design-intent-block, .technical-panel, .care-panel { padding: 22px; }
  .detail-spec-grid { grid-template-columns: 1fr; }
  .detail-spec-grid > div:nth-child(odd) { border-inline-end: 0; }
  .detail-spec-grid > div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .heritage-gate { grid-template-columns: 1fr; align-items: start; }
  .heritage-cards { grid-template-columns: 1fr; }
  .detail-consultation { min-height: 0; margin-top: 34px; padding: 30px 22px; }
  .detail-consultation h3 { font-size: 34px; }
  .detail-consultation .button { width: 100%; }
  .editorial-grid { display: flex; overflow-x: auto; padding-inline: 15px; margin-inline: 0; width: 100%; }
  .editorial-grid article { flex: 0 0 83vw; }
  .feature-page { width: calc(100% - 30px); }
  .feature-page > img { min-height: 380px; }
  .site-footer { grid-template-columns: 1fr; align-items: flex-start; padding: 54px 24px; }
  .footer-nav { grid-row: auto; grid-column: auto; grid-template-columns: 1fr 1fr; }
  .inquiry-dialog form { grid-template-columns: 1fr; }
  .inquiry-dialog .full { grid-column: auto; }
}
