:root {
  --bg: #f4f1ec;
  --surface: rgba(255,255,255,.78);
  --surface-solid: #fff;
  --ink: #171310;
  --muted: #726a63;
  --black: #090807;
  --black-soft: #17130f;
  --brown: #562b1b;
  --gold: #dda92f;
  --gold-deep: #b77a17;
  --gold-soft: #d4a420;
  --line: rgba(58,42,31,.12);
  --separator: rgba(58,42,31,.12);
  --text-primary: #171310;
  --glass-line: rgba(255,255,255,.18);
  --radius-s: 12px;
  --radius-m: 17px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --shadow: 0 1px 2px rgba(26,18,11,.05), 0 16px 45px rgba(26,18,11,.09);
  --shadow-deep: 0 30px 100px rgba(0,0,0,.28);
  --shell: min(1220px, calc(100% - 40px));
  --header-height: 82px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--bg); color: var(--ink); overflow-x: hidden; }
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.hidden, [hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 12px 18px; border-radius: 12px; background: #fff; transform: translateY(-140%); transition: transform .2s; }
.skip-link:focus { transform: none; }

/* icons */
.icon-slot, [data-icon] { display: inline-grid; place-items: center; flex: 0 0 auto; }
.icon-slot svg, [data-icon] svg { width: 1.15em; height: 1.15em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); transition: background .25s, border-color .25s, box-shadow .25s; color: #fff; }
.site-header.is-scrolled { color: var(--ink); background: rgba(246,243,238,.78); border-bottom: 1px solid var(--line); box-shadow: 0 8px 30px rgba(25,16,10,.05); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: grid; place-items: center; margin-right: auto; border-radius: 16px; }
.brand img { width: 68px; height: 68px; object-fit: contain; }
.site-header:not(.is-scrolled) .brand img { filter: drop-shadow(0 4px 20px rgba(0,0,0,.25)); }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.desktop-nav a { font-size: .92rem; font-weight: 520; opacity: .86; transition: opacity .2s, color .2s; }
.desktop-nav a:hover { opacity: 1; color: var(--gold); }
.header-cta { margin-left: 8px; }
.menu-button { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid currentColor; border-radius: 15px; background: transparent; place-content: center; gap: 6px; }
.menu-button span { display: block; width: 20px; height: 1.5px; background: currentColor; transition: transform .2s; }
.mobile-menu { position: fixed; z-index: 180; inset: 0; pointer-events: none; background: rgba(3,3,3,0); transition: background .25s; }
.mobile-menu.is-open { pointer-events: auto; background: rgba(3,3,3,.48); }
.mobile-menu-panel { position: absolute; inset: auto 0 0; padding: 10px 24px calc(24px + env(safe-area-inset-bottom)); border-radius: 30px 30px 0 0; background: rgba(249,247,243,.95); transform: translateY(105%); transition: transform .35s cubic-bezier(.2,.8,.2,1); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.mobile-menu.is-open .mobile-menu-panel { transform: none; }
.sheet-handle { width: 42px; height: 5px; border-radius: 999px; margin: 2px auto 18px; background: rgba(0,0,0,.18); }
.mobile-menu nav { display: grid; margin-bottom: 22px; }
.mobile-menu nav a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.16rem; font-weight: 620; }

/* buttons */
.ios-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border: 0; border-radius: var(--radius-m); cursor: pointer; font-weight: 650; line-height: 1; transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, opacity .18s, background .18s; }
.ios-button:hover { transform: translateY(-1px); }
.ios-button:active { transform: scale(.975); opacity: .92; }
.ios-button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 0; box-shadow: 0 0 0 4px rgba(221,169,47,.28); }
.ios-button-primary { color: #15100a; background: linear-gradient(180deg,#edc25e,#cf921f); box-shadow: inset 0 1px rgba(255,255,255,.45), 0 9px 28px rgba(159,106,15,.24); }
.ios-button-secondary { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.78); box-shadow: 0 5px 18px rgba(24,16,10,.06); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.ios-button-glass { color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.ios-button-whatsapp { min-height: 46px; color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); }
.is-scrolled .ios-button-whatsapp { color: #fff; border: 0; background: #18130f; }
.ios-button.full { width: 100%; }

/* hero */
.hero { position: relative; min-height: min(900px, 100svh); display: grid; align-items: center; overflow: hidden; color: #fff; background: #090807; }
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { opacity: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: opacity .9s ease, transform 7s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay { background: linear-gradient(90deg, rgba(4,4,4,.92) 0%, rgba(4,4,4,.74) 38%, rgba(4,4,4,.24) 68%, rgba(4,4,4,.18) 100%), linear-gradient(0deg, rgba(0,0,0,.42), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 95px; }
.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; }
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.hero h1 { max-width: 760px; margin: 24px 0 20px; font-size: clamp(3.05rem, 7vw, 6.9rem); line-height: .94; letter-spacing: -.055em; font-weight: 680; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-copy > p { max-width: 640px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem,1.8vw,1.3rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 38px; color: rgba(255,255,255,.66); font-size: .9rem; }
.hero-proof strong { color: #fff; font-size: 1.05rem; }
.hero-proof i { width: 1px; height: 22px; background: rgba(255,255,255,.22); }


/* Premium moving benefits barrier — placed directly below the hero */
.feature-marquee {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 50%, rgba(196,139,28,.12), transparent 31%),
    linear-gradient(100deg, #0b0907 0%, #15100b 48%, #090807 100%);
  border-top: 1px solid rgba(231,174,52,.28);
  border-bottom: 1px solid rgba(231,174,52,.20);
  box-shadow: inset 0 1px rgba(255,255,255,.025), inset 0 -1px rgba(255,255,255,.025);
}
.feature-marquee::before,
.feature-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(10vw, 150px);
  pointer-events: none;
}
.feature-marquee::before { left: 0; background: linear-gradient(90deg, #0b0907 8%, transparent); }
.feature-marquee::after { right: 0; background: linear-gradient(270deg, #090807 8%, transparent); }
.feature-marquee-viewport { width: 100%; overflow: hidden; padding: 22px 0; }
.feature-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: blouk-benefits-marquee 32s linear infinite;
}
.feature-marquee:hover .feature-marquee-track { animation-play-state: paused; }
.feature-marquee-group { display: flex; flex-shrink: 0; }
.feature-marquee-item {
  display: grid;
  grid-template-columns: 58px minmax(250px, 360px);
  align-items: center;
  gap: 16px;
  min-height: 100px;
  padding: 14px 34px;
  border-inline-end: 1px solid rgba(231,174,52,.18);
  color: #f8f3ea;
}
.feature-marquee-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(231,174,52,.45);
  background: linear-gradient(145deg, rgba(231,174,52,.13), rgba(255,255,255,.02));
  box-shadow: 0 10px 30px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.08);
}
.feature-marquee-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #e1ad31;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(225,173,49,.18));
}
.feature-marquee-item h3 {
  margin: 0 0 6px;
  color: #f5c34e;
  font-size: .92rem;
  font-weight: 760;
  letter-spacing: .015em;
}
.feature-marquee-item p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.55;
  max-width: 360px;
}
@keyframes blouk-benefits-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
html[dir="rtl"] .feature-marquee-item { text-align: right; }
html[dir="rtl"] .feature-marquee-track { animation-direction: reverse; }
@media (max-width: 720px) {
  .feature-marquee-viewport { padding: 14px 0; }
  .feature-marquee-track { animation-duration: 25s; }
  .feature-marquee-item {
    grid-template-columns: 46px minmax(220px, 280px);
    gap: 12px;
    min-height: 82px;
    padding: 10px 22px;
  }
  .feature-marquee-icon { width: 44px; height: 44px; border-radius: 15px; }
  .feature-marquee-icon svg { width: 25px; height: 25px; }
  .feature-marquee-item h3 { font-size: .83rem; margin-bottom: 4px; }
  .feature-marquee-item p { font-size: .75rem; line-height: 1.45; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-marquee-track { animation: none; transform: none; }
  .feature-marquee-viewport { overflow-x: auto; scrollbar-width: thin; }
}
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 28px; display: flex; gap: 8px; transform: translateX(-50%); }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.35); cursor: pointer; transition: width .2s, background .2s; }
.hero-dots button.is-active { width: 28px; background: var(--gold); }

/* common sections */
.section { padding: 110px 0; }
.section-heading, .shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading > div, .shop-heading > div { max-width: 720px; }
.section-heading h2, .shop-heading h2, .process-copy h2, .contact-copy h2 { margin: 12px 0 0; font-size: clamp(2.35rem,5vw,4.7rem); line-height: 1; letter-spacing: -.045em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.7; }

/* categories */
.category-section { background: #f7f4ef; }
.category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.category-card { min-height: 570px; position: relative; display: grid; grid-template-rows: 330px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.82); box-shadow: var(--shadow); }
.category-card.category-dark { color: #fff; background: #14110e; }
.category-card.category-ville { background: linear-gradient(180deg,rgba(255,255,255,.92),rgba(241,236,228,.96)); }
.category-image { min-height: 0; padding: 20px 20px 0; display: grid; place-items: center; }
.category-image img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; border-radius: 22px; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.category-card:hover .category-image img { transform: scale(1.025); }
.category-copy { padding: 28px 26px 32px; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; }
.category-count { padding: 8px 12px; border-radius: 999px; color: var(--gold-deep); background: rgba(221,169,47,.12); font-size: .78rem; font-weight: 700; }
.category-dark .category-count { color: var(--gold); background: rgba(221,169,47,.13); }
.category-copy h3 { margin: 22px 0 10px; font-size: clamp(2rem,3vw,3.2rem); line-height: 1; letter-spacing: -.04em; }
.category-copy p { margin: 0 0 28px; color: var(--muted); line-height: 1.6; }
.category-dark .category-copy p { color: rgba(255,255,255,.62); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 0; border: 0; color: var(--gold-deep); background: transparent; cursor: pointer; font-weight: 700; }
.category-dark .text-link { color: var(--gold); }

/* shop */
.boutique-section { background: var(--bg); }
.shop-meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #3dbd70; box-shadow: 0 0 0 5px rgba(61,189,112,.12); }
.shop-toolbar { position: sticky; z-index: 20; top: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 32px; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: rgba(247,244,239,.82); box-shadow: 0 8px 30px rgba(25,16,10,.07); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); }
.segmented-control { display: inline-grid; grid-auto-flow: column; grid-auto-columns: max-content; gap: 4px; padding: 4px; border-radius: 16px; background: rgba(80,62,48,.08); }
.segmented-control button { min-height: 42px; padding: 0 17px; border: 0; border-radius: 13px; color: var(--muted); background: transparent; cursor: pointer; font-weight: 650; transition: background .18s, color .18s, box-shadow .18s; }
.segmented-control button span { margin-left: 5px; opacity: .55; font-size: .78em; }
.segmented-control button.is-active { color: var(--ink); background: #fff; box-shadow: 0 2px 10px rgba(23,16,11,.09); }
.search-field { min-width: min(350px,40vw); height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 13px; border: 1px solid transparent; border-radius: 15px; background: #fff; color: var(--muted); }
.search-field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(221,169,47,.17); }
.search-field input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-field button { display: none; width: 28px; height: 28px; padding: 0; border: 0; border-radius: 50%; background: rgba(0,0,0,.07); cursor: pointer; }
.search-field.has-value button { display: block; }
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 2px 5px rgba(26,18,11,.03), 0 14px 36px rgba(26,18,11,.055); transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 3px 8px rgba(26,18,11,.05), 0 24px 55px rgba(26,18,11,.11); }
.product-media { border: 0; padding: 0; cursor: pointer; aspect-ratio: 4/5; margin: 10px 10px 0; overflow: hidden; display: grid; place-items: center; border-radius: 18px; background: #f6f3ee; }
.product-media img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-media img { transform: scale(1.025); }
.product-info { padding: 18px 18px 20px; }
.product-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-category { display: inline-flex; align-items: center; width: max-content; padding: 6px 10px; border-radius: 999px; color: var(--gold-deep); background: rgba(221,169,47,.13); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.product-ref { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .78rem; font-weight: 700; }
.product-info h3 { min-height: 2.55em; margin: 14px 0 8px; font-size: 1.25rem; line-height: 1.16; letter-spacing: -.025em; }
.product-info p { min-height: 3.1em; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.48; }
.price-line { display: flex; align-items: center; gap: 8px; margin: 16px 0; color: var(--ink); font-size: .82rem; font-weight: 650; }
.product-actions { display: grid; grid-template-columns: 1fr 48px; gap: 8px; }
.product-actions .ios-button { min-height: 46px; padding-inline: 12px; font-size: .86rem; }
.icon-button { width: 48px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; color: var(--ink); }
.empty-state { padding: 80px 20px; text-align: center; }
.empty-state > span { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); font-size: 1.6rem; }
.empty-state h3 { margin: 0 0 8px; font-size: 1.6rem; }
.empty-state p { color: var(--muted); }

/* services */
.services-section { background: #11100e; color: #fff; }
.services-section .section-heading > p { color: rgba(255,255,255,.58); }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card { min-height: 290px; padding: 30px; border: 1px solid rgba(255,255,255,.09); border-radius: 24px; background: rgba(255,255,255,.04); }
.service-icon { width: 54px; height: 54px; border-radius: 17px; color: var(--gold); background: rgba(221,169,47,.11); font-size: 1.45rem; }
.service-card h3 { margin: 38px 0 10px; font-size: 1.3rem; }
.service-card p { margin: 0; color: rgba(255,255,255,.57); line-height: 1.65; }

/* process */
.process-section { background: #f7f4ef; }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 130px; }
.process-copy p { max-width: 530px; margin: 24px 0 30px; color: var(--muted); line-height: 1.7; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 88px 1fr; gap: 25px; padding: 34px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--gold-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.1rem; font-weight: 750; }
.process-list h3 { margin: 0 0 8px; font-size: 1.55rem; letter-spacing: -.025em; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.6; }

/* trust/contact/footer */
.trust-section { padding: 60px 0 110px; background: #f7f4ef; }
.trust-panel {
  min-height: 590px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(38px,6vw,78px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border-radius: 34px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7,6,5,.94) 0%, rgba(7,6,5,.82) 32%, rgba(7,6,5,.34) 58%, rgba(7,6,5,.12) 100%),
    linear-gradient(0deg, rgba(7,6,5,.22), rgba(7,6,5,.05)),
    url("assets/sections/trust-pb012-cinematic.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-deep);
}
.trust-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.trust-panel:before {
  content:"";
  position:absolute;
  z-index:1;
  inset:0;
  background: linear-gradient(90deg, rgba(7,6,5,.91) 0%, rgba(7,6,5,.70) 34%, rgba(7,6,5,.23) 60%, rgba(7,6,5,.08) 100%), radial-gradient(circle at 76% 50%, rgba(221,169,47,.12), transparent 34%);
  pointer-events:none;
}
.trust-panel:after {
  content:"";
  position:absolute;
  z-index:1;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 20%, rgba(0,0,0,.16));
  pointer-events:none;
}
.trust-panel > :not(.trust-video) { position: relative; z-index: 2; }
.trust-panel > div { max-width: min(760px, 58%); }
.section-kicker.light { color: var(--gold); }
.trust-panel h2 { max-width: 760px; margin: 15px 0 0; font-size: clamp(2.25rem,4.8vw,4.35rem); line-height: 1.02; letter-spacing: -.045em; text-shadow: 0 4px 24px rgba(0,0,0,.38); }
.trust-panel .ios-button-primary {
  flex: 0 0 auto;
  margin-bottom: 4px;
  box-shadow: 0 12px 32px rgba(181,126,22,.28), inset 0 1px 0 rgba(255,255,255,.45);
}
.contact-section { background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: center; }
.contact-copy p { max-width: 620px; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.contact-card { padding: 15px 28px; border: 1px solid var(--line); border-radius: 27px; background: rgba(255,255,255,.75); box-shadow: var(--shadow); }
.contact-row { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border: 0; }
.contact-row > span { width: 47px; height: 47px; border-radius: 15px; color: var(--gold-deep); background: rgba(221,169,47,.12); }
.contact-row div { display: grid; gap: 4px; }
.contact-row small { color: var(--muted); }
.site-footer { padding: 70px 0 calc(24px + env(safe-area-inset-bottom)); color: #fff; background: #090807; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 50px; }
.footer-brand img { width: 120px; height: 120px; object-fit: contain; }
.footer-brand p { max-width: 400px; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-grid h3 { color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid a { color: rgba(255,255,255,.63); transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .85rem; }
.mobile-action-bar { display: none; }

/* dialogs */
dialog { padding: 0; border: 0; color: var(--ink); }
dialog::backdrop { background: rgba(5,4,3,.62); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }
.product-dialog { width: min(1040px,calc(100% - 28px)); max-height: min(88svh,900px); overflow: auto; border-radius: 30px; background: #f8f5f0; box-shadow: var(--shadow-deep); }
.dialog-close { position: absolute; z-index: 5; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(0,0,0,.08); border-radius: 50%; background: rgba(255,255,255,.82); cursor: pointer; font-size: 1.55rem; line-height: 1; backdrop-filter: blur(15px); }
.product-dialog-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.dialog-media { min-height: 680px; display: grid; place-items: center; padding: 26px; background: #ede9e3; }
.dialog-media img { width: 100%; height: 100%; max-height: 650px; object-fit: contain; border-radius: 23px; }
.dialog-copy { padding: clamp(45px,6vw,72px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.dialog-copy .product-ref { margin-top: 16px; font-size: .92rem; }
.dialog-copy h2 { margin: 12px 0 16px; font-size: clamp(2.3rem,5vw,4.25rem); line-height: .98; letter-spacing: -.05em; }
.dialog-copy > p { margin: 0; color: var(--muted); line-height: 1.65; }
.detail-list { width: 100%; margin: 30px 0; border-top: 1px solid var(--line); }
.detail-list > div { display: flex; justify-content: space-between; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.detail-list span { color: var(--muted); }
.detail-list strong { text-align: right; }
.dialog-note { display: flex; gap: 12px; margin-bottom: 24px; padding: 15px; border-radius: 16px; color: #6d4b10; background: rgba(221,169,47,.12); }
.dialog-note > span { margin-top: 2px; }
.dialog-note p { margin: 0; font-size: .84rem; line-height: 1.45; }

.request-dialog { width: min(820px,calc(100% - 22px)); max-height: 94svh; overflow: auto; border-radius: 30px; background: #f7f4ef; box-shadow: var(--shadow-deep); }
.request-dialog form { min-height: 100%; }
.request-header { position: sticky; z-index: 3; top: 0; padding: 22px 34px 20px; border-bottom: 1px solid var(--line); background: rgba(247,244,239,.9); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
.request-header .sheet-handle { display: none; }
.request-header h2 { margin: 9px 0 5px; font-size: clamp(2rem,5vw,3.2rem); line-height: 1; letter-spacing: -.04em; }
.request-header p { margin: 0; color: var(--muted); }
.request-progress { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 18px 34px 0; }
.request-progress span { height: 5px; border-radius: 999px; background: rgba(0,0,0,.08); transition: background .25s; }
.request-progress span.is-active { background: var(--gold); }
.request-body { padding: 12px 34px 38px; }
.form-step { display: none; }
.form-step.is-active { display: block; animation: stepIn .26s ease both; }
@keyframes stepIn { from { opacity:0; transform:translateY(8px); } }
.step-heading { display: grid; grid-template-columns: 50px 1fr; gap: 15px; margin: 20px 0 26px; }
.step-heading > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: var(--gold-deep); background: rgba(221,169,47,.13); font-weight: 780; }
.step-heading h3 { margin: 0 0 4px; font-size: 1.35rem; }
.step-heading p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.field-label, .form-step label > span { display: block; margin-bottom: 8px; color: #4e4741; font-size: .82rem; font-weight: 650; }
.form-step > label { display: block; margin-bottom: 17px; }
.form-grid { display: grid; gap: 15px; margin-bottom: 16px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.ios-input { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 15px; outline: 0; color: var(--ink); background: rgba(255,255,255,.86); transition: border .18s, box-shadow .18s; }
.ios-input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(221,169,47,.18); }
.ios-textarea { min-height: 115px; padding-top: 14px; resize: vertical; line-height: 1.5; }
.selected-product-preview { display: grid; grid-template-columns: 90px 1fr; gap: 15px; align-items: center; margin: 12px 0 22px; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.selected-product-preview img { width: 90px; height: 105px; object-fit: contain; border-radius: 12px; background: #f4f1ec; }
.selected-product-preview strong { display: block; margin: 4px 0; font-size: 1.1rem; }
.selected-product-preview small { color: var(--muted); }
.step-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 24px; }
.step-actions .ios-button { flex: 1; }
.upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.upload-card { min-height: 290px; position: relative; overflow: hidden; display: flex !important; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 22px; border: 1.5px dashed rgba(126,88,32,.38); border-radius: 22px; background: rgba(255,255,255,.65); text-align: center; cursor: pointer; transition: border .2s, background .2s, transform .2s; }
.upload-card:hover { transform: translateY(-2px); border-color: var(--gold); background: #fff; }
.upload-card input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-card > strong, .upload-card > small, .upload-card > .upload-icon, .upload-card > .upload-status { position: relative; z-index: 2; }
.upload-card > strong { font-size: 1rem; }
.upload-card > small { max-width: 240px; color: var(--muted); line-height: 1.4; }
.upload-icon { width: 53px; height: 53px; border-radius: 17px; color: var(--gold-deep); background: rgba(221,169,47,.13); font-size: 1.45rem; }
.upload-status { margin-top: 5px; color: var(--gold-deep); font-size: .78rem; font-weight: 700; }
.upload-preview { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; display: none; object-fit: cover; }
.upload-card.has-preview:after { content:""; position:absolute; z-index:1; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.75),rgba(0,0,0,.05) 68%); }
.upload-card.has-preview .upload-preview { display: block; }
.upload-card.has-preview > strong, .upload-card.has-preview > small, .upload-card.has-preview > .upload-status { color: #fff; }
.upload-card.has-preview > .upload-icon { color: #111; background: rgba(255,255,255,.85); }
.optional-upload { position: relative; display: flex !important; align-items: center; gap: 14px; margin: 15px 0 !important; padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.65); cursor: pointer; }
.optional-upload > .icon-slot { width: 40px; height: 40px; border-radius: 13px; color: var(--gold-deep); background: rgba(221,169,47,.13); }
.optional-upload span { margin: 0 !important; }
.optional-upload small { display: block; margin-top: 3px; color: var(--muted); font-weight: 400; }
.optional-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.extra-preview { display: flex; flex-wrap: wrap; gap: 8px; }
.extra-preview img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.consent { display: grid !important; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 18px 0 !important; }
.consent input { width: 20px; height: 20px; accent-color: var(--gold-deep); }
.consent span { margin: 0 !important; font-weight: 450 !important; line-height: 1.45; }
.upload-progress { height: 50px; position: relative; overflow: hidden; display: grid; place-items: center; margin: 15px 0; border-radius: 15px; background: rgba(0,0,0,.07); }
.upload-progress span { position: absolute; inset: 0 auto 0 0; width: 35%; background: linear-gradient(90deg,var(--gold-deep),var(--gold)); animation: progress 1.3s ease-in-out infinite alternate; }
.upload-progress small { position: relative; z-index: 2; color: #fff; font-weight: 700; }
@keyframes progress { to { width: 80%; } }

.request-review { display: grid; gap: 14px; }
.request-review-card { padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.82); }
.request-review-card h4 { margin: 0 0 12px; font-size: 1rem; }
.request-review-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.request-review-item { padding: 12px 13px; border-radius: 14px; background: #f4f1ec; }
.request-review-item span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.request-review-item strong { display: block; line-height: 1.35; overflow-wrap: anywhere; }
.request-review-product { display: grid; grid-template-columns: 72px 1fr; gap: 13px; align-items: center; }
.request-review-product img { width: 72px; height: 88px; object-fit: contain; border-radius: 12px; background: #f4f1ec; }
.request-review-photos { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.request-review-photo { overflow: hidden; border-radius: 15px; background: #eee8df; }
.request-review-photo img { width: 100%; height: 170px; object-fit: cover; }
.request-review-photo strong { display: block; padding: 10px 12px; font-size: .8rem; }
.upload-progress.is-determinate span { animation: none; width: var(--upload-progress,0%); transition: width .25s ease; }
@media (max-width: 620px) {
  .request-review-list, .request-review-photos { grid-template-columns: 1fr; }
  .request-review-photo img { height: 220px; }
}

.form-error { min-height: 20px; color: #a52a2a; font-size: .88rem; }
.toast { position: fixed; z-index: 400; left: 50%; bottom: calc(25px + env(safe-area-inset-bottom)); max-width: calc(100% - 30px); padding: 14px 18px; border-radius: 15px; color: #fff; background: rgba(20,17,14,.94); box-shadow: var(--shadow-deep); opacity: 0; pointer-events: none; transform: translate(-50%,20px); transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-card { min-height: 540px; grid-template-rows: 300px 1fr; }
  .category-card:last-child { grid-column: 1 / -1; grid-template-columns: 38% 62%; grid-template-rows: 1fr; min-height: 410px; }
  .category-card:last-child .category-image { padding: 18px 0 18px 18px; }
  .category-card:last-child .category-copy { justify-content: center; }
  .category-copy { padding: 28px 24px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .process-layout { gap: 50px; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 26px, 680px); --header-height: 70px; }
  html { scroll-padding-top: 78px; }
  .site-header { height: 70px; }
  .brand img { width: 56px; height: 56px; }
  .header-cta { display: none; }
  .hero { min-height: 780px; }
  .hero-overlay { background: linear-gradient(0deg,rgba(4,4,4,.93) 4%,rgba(4,4,4,.68) 58%,rgba(4,4,4,.28)), linear-gradient(90deg,rgba(4,4,4,.48),transparent); }
  .hero-slide { background-position: 66% center; }
  .hero-content { align-self: end; padding: 110px 0 105px; }
  .hero h1 { font-size: clamp(3.2rem,13vw,5.2rem); }
  .hero-actions { display: grid; }
  .hero-actions .ios-button { width: 100%; }
  .hero-proof { gap: 11px; font-size: .78rem; }
  .trust-section { padding: 40px 0 82px; }
  .trust-panel {
    min-height: 620px;
    padding: 30px 24px;
    border-radius: 28px;
    justify-content: flex-end;
    background-position: 72% center;
    background-image:
      linear-gradient(0deg, rgba(7,6,5,.95) 0%, rgba(7,6,5,.72) 44%, rgba(7,6,5,.22) 72%, rgba(7,6,5,.06) 100%),
      url("assets/sections/trust-pb012-cinematic.webp");
  }
  .trust-video { object-position: 68% center; }
  .trust-panel > div { max-width: 100%; }
  .trust-panel h2 { max-width: 100%; font-size: clamp(2.15rem,10.2vw,3.6rem); }
  .trust-panel .ios-button-primary { width: 100%; margin-top: 22px; }
  .section { padding: 80px 0; }
  .section-heading, .shop-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 17px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card,
  .category-card:last-child { min-height: 430px; grid-column: auto; grid-template-columns: 42% 58%; grid-template-rows: 1fr; }
  .category-image,
  .category-card:last-child .category-image { padding: 16px 0 16px 16px; }
  .category-copy { padding: 28px 18px; justify-content: center; }
  .category-copy h3 { font-size: 2rem; }
  .shop-meta { margin-top: 15px; }
  .shop-toolbar { top: 78px; display: grid; padding: 8px; border-radius: 18px; }
  .segmented-control { overflow-x: auto; width: 100%; grid-auto-columns: 1fr; scrollbar-width: none; }
  .segmented-control::-webkit-scrollbar { display: none; }
  .segmented-control button { padding-inline: 12px; }
  .search-field { width: 100%; min-width: 0; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 13px; }
  .product-card { border-radius: 20px; }
  .product-media { margin: 7px 7px 0; border-radius: 15px; }
  .product-info { padding: 14px; }
  .product-info h3 { min-height: 2.65em; font-size: 1.04rem; }
  .product-info p { display: none; }
  .price-line { min-height: 2.4em; margin: 12px 0; font-size: .74rem; }
  .product-actions { grid-template-columns: 1fr 43px; }
  .product-actions .ios-button { min-height: 43px; font-size: .77rem; }
  .icon-button { width: 43px; height: 43px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .service-card h3 { margin-top: 24px; }
  .process-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-copy { position: static; }
  .process-list li { grid-template-columns: 55px 1fr; }
  .trust-panel {
    min-height: 560px;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background-position: 67% center;
  }
  .trust-panel > div { max-width: 74%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { display: grid; text-align: center; }
  .mobile-action-bar { position: fixed; z-index: 90; display: grid; grid-template-columns: repeat(3,1fr); left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); height: 62px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(16,14,12,.88); box-shadow: 0 14px 45px rgba(0,0,0,.28); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%); }
  .mobile-action-bar a, .mobile-action-bar button { display: grid; place-items: center; align-content: center; gap: 2px; padding: 0; border: 0; color: rgba(255,255,255,.76); background: transparent; cursor: pointer; }
  .mobile-action-bar a:nth-child(2), .mobile-action-bar button:nth-child(2) { color: #17110a; background: var(--gold); }
  .mobile-action-bar small { font-size: .64rem; }
  .site-footer { padding-bottom: 110px; }
  .product-dialog { width: 100%; max-height: 94svh; margin: auto 0 0; border-radius: 28px 28px 0 0; }
  .product-dialog-grid { grid-template-columns: 1fr; }
  .dialog-media { min-height: auto; height: 47svh; padding: 14px; }
  .dialog-copy { padding: 30px 22px calc(35px + env(safe-area-inset-bottom)); }
  .dialog-copy h2 { font-size: 2.6rem; }
  .request-dialog { width: 100%; max-height: 96svh; margin: auto 0 0; border-radius: 28px 28px 0 0; }
  .request-header { padding: 8px 20px 17px; }
  .request-header .sheet-handle { display: block; }
  .request-header .dialog-close { top: 20px; }
  .request-progress { padding: 14px 20px 0; }
  .request-body { padding: 8px 20px calc(34px + env(safe-area-inset-bottom)); }
  .form-grid.two, .upload-grid { grid-template-columns: 1fr; }
  .upload-card { min-height: 220px; }
}

@media (max-width: 430px) {
  .category-card,
  .category-card:last-child { grid-template-columns: 1fr; grid-template-rows: 280px auto; min-height: 0; }
  .category-image,
  .category-card:last-child .category-image { height: 280px; padding: 14px 14px 0; }
  .category-copy { padding: 24px; justify-content: flex-start; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-info h3 { font-size: .96rem; }
  .product-category { font-size: .58rem; }
  .product-ref { font-size: .68rem; }
  .price-line { display: none; }
  .product-actions { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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


/* FAQ + social media upgrade */
.faq-section { background: linear-gradient(180deg, #f8f6f2 0%, #f2eee8 100%); }
.faq-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(36px,7vw,100px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin: 12px 0 18px; max-width: 560px; }
.faq-intro p { color: var(--muted); line-height: 1.65; margin: 0 0 28px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--separator); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: 0 10px 30px rgba(30,20,12,.05); overflow: hidden; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.faq-list summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; cursor: pointer; list-style: none; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }
.faq-plus { display:grid; place-items:center; width:32px; height:32px; flex:0 0 auto; border-radius:50%; background:rgba(216,165,45,.12); color:var(--gold-soft); font-size:1.25rem; transition:transform .2s ease; }
.faq-list details[open] .faq-plus { transform: rotate(45deg); }
.contact-actions .ios-button span:not(.icon-slot) { display:grid; gap:2px; text-align:left; }
.contact-actions .ios-button small { font-size:.7rem; opacity:.72; font-weight:500; }
.social-panel { border-top: 1px solid var(--separator); margin-top: 10px; padding-top: 20px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.social-panel > span { font-size:.82rem; color:var(--muted); font-weight:600; }
.social-icons { display:flex; gap:10px; }
.social-icons a { width:44px; height:44px; border-radius:14px; display:grid; place-items:center; color:var(--text-primary); background:rgba(255,255,255,.82); border:1px solid var(--separator); transition:transform .18s ease, color .18s ease, background .18s ease; }
.social-icons a:hover { transform:translateY(-2px); color:var(--gold-soft); background:#fff; }
.social-icons svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); }
.hero-slide { background-repeat:no-repeat; }
.hero-copy { padding: clamp(22px,3vw,40px); border-radius: 30px; background: linear-gradient(135deg, rgba(8,7,6,.7), rgba(8,7,6,.26)); border:1px solid rgba(255,255,255,.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow:0 30px 80px rgba(0,0,0,.24); }
@media (max-width: 900px) {
  .faq-layout { grid-template-columns:1fr; }
  .faq-intro { position:static; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .hero-copy { padding:24px 20px; border-radius:24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns:1fr; }
  .social-panel { align-items:flex-start; flex-direction:column; }
}


/* ==========================================================
   Blouk Bois — iOS icon + button + catalogue framing polish
   ========================================================== */

/* Brand glyphs: filled, crisp and instantly recognizable. */
[data-icon="whatsapp"] svg,
[data-icon="instagram"] svg,
[data-icon="facebook"] svg,
[data-icon="tiktok"] svg {
  fill: currentColor;
  stroke: none;
}

/* iOS tactile buttons: cleaner elevation + pressed state. */
.ios-button {
  position: relative;
  isolation: isolate;
  letter-spacing: -.012em;
  box-shadow: 0 1px 1px rgba(255,255,255,.32) inset, 0 7px 20px rgba(27,18,11,.08);
}
.ios-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.ios-button:hover { transform: translateY(-1px); }
.ios-button:active { transform: scale(.972); opacity: .96; }
.ios-button-primary {
  background: linear-gradient(180deg,#efc966 0%,#d8a42d 48%,#c58c1e 100%);
  box-shadow: inset 0 1px rgba(255,255,255,.48), 0 9px 25px rgba(159,106,15,.22);
}
.ios-button-secondary {
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px rgba(255,255,255,.7), 0 8px 22px rgba(26,18,11,.07);
}
.ios-button-glass {
  background: rgba(255,255,255,.115);
  box-shadow: inset 0 1px rgba(255,255,255,.14), 0 10px 28px rgba(0,0,0,.12);
}

/* WhatsApp keeps Blouk Bois styling while using a clear WhatsApp glyph. */
.whatsapp-button .icon-slot[data-icon="whatsapp"] {
  width: 27px;
  height: 27px;
  margin-left: -3px;
  border-radius: 9px;
  color: #fff;
  background: #25D366;
  box-shadow: inset 0 1px rgba(255,255,255,.22), 0 3px 9px rgba(37,211,102,.22);
  font-size: .9rem;
}
.ios-button-whatsapp {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(17,15,13,.36);
  box-shadow: inset 0 1px rgba(255,255,255,.10), 0 8px 28px rgba(0,0,0,.16);
}
.is-scrolled .ios-button-whatsapp {
  color: #fff;
  background: rgba(18,15,13,.94);
  box-shadow: 0 7px 22px rgba(18,15,13,.18);
}

/* Product CTA WhatsApp square = iOS icon button. */
.icon-button {
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  box-shadow: inset 0 1px rgba(255,255,255,.8), 0 7px 20px rgba(25,17,11,.08);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, background .18s;
}
.icon-button [data-icon="whatsapp"] {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: #fff;
  background: #25D366;
  font-size: .9rem;
}
.icon-button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(25,17,11,.12); }
.icon-button:active { transform: scale(.94); }

/* Social buttons: iOS superellipse, strong glyph, restrained brand interaction. */
.social-icons { gap: 9px; }
.social-icons .social-icon-button {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  color: #171310;
  background: linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,245,240,.90));
  border: 1px solid rgba(58,42,31,.11);
  box-shadow: inset 0 1px rgba(255,255,255,.92), 0 7px 20px rgba(25,17,11,.08);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, color .18s, background .18s;
}
.social-icons .social-icon-button svg { width: 22px; height: 22px; }
.social-icons .social-icon-button:hover { transform: translateY(-2px); box-shadow: 0 11px 27px rgba(25,17,11,.12); }
.social-icons .social-icon-button:active { transform: scale(.94); }
.social-icons .social-instagram:hover { color: #C13584; }
.social-icons .social-facebook:hover { color: #1877F2; }
.social-icons .social-tiktok:hover { color: #111; }

.footer-social-buttons { display: grid; gap: 8px; width: 100%; }
.footer-social-buttons a {
  min-height: 43px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  color: rgba(255,255,255,.74) !important;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), color .18s, background .18s, border-color .18s;
}
.footer-social-buttons a [data-icon] { width: 25px; height: 25px; border-radius: 8px; color: #f0bd49; }
.footer-social-buttons a svg { width: 18px; height: 18px; }
.footer-social-buttons a:hover {
  color: #fff !important;
  background: rgba(255,255,255,.085);
  border-color: rgba(240,189,73,.22);
  transform: translateX(2px);
}
.footer-social-buttons a:active { transform: scale(.98); }

/* Catalogue image framing: no crop, consistent optical alignment. */
.product-media {
  position: relative;
  background: linear-gradient(180deg,#f8f5f0,#f1ede7);
  box-shadow: inset 0 0 0 1px rgba(64,44,30,.035);
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}
.product-media img {
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
}

/* Mobile action bar: clear iOS tab-bar behavior. */
@media (max-width: 720px) {
  .mobile-action-bar {
    height: 64px;
    border-radius: 23px;
    background: rgba(17,15,13,.90);
    box-shadow: 0 16px 45px rgba(0,0,0,.30), inset 0 1px rgba(255,255,255,.08);
  }
  .mobile-action-bar a,
  .mobile-action-bar button {
    transition: transform .16s ease, color .16s, background .16s;
  }
  .mobile-action-bar a:active,
  .mobile-action-bar button:active { transform: scale(.93); }
  .mobile-action-bar .mobile-whatsapp [data-icon="whatsapp"] {
    color: #25D366;
    font-size: 1.12rem;
  }
  .mobile-action-bar .icon-slot svg { width: 20px; height: 20px; }
}

/* Collection cards — normalized catalogue imagery */
.category-image {
  overflow: hidden;
}
.category-image img {
  background: #f3eee7;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 780px) {
  .category-image img {
    object-position: center center;
  }
}

/* =========================================================
   FR / AR LANGUAGE SYSTEM
   ========================================================= */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid currentColor;
  border-color: rgba(255,255,255,.24);
  border-radius: 14px;
  background: rgba(16,12,9,.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.site-header.is-scrolled .language-switch {
  border-color: var(--line);
  background: rgba(255,255,255,.62);
}
.language-switch button {
  min-width: 39px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  padding: 0 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.language-switch button[data-lang="ar"] { font-family: Tahoma, Arial, sans-serif; min-width: 64px; }
.language-switch button:hover { transform: translateY(-1px); }
.language-switch button.is-active {
  background: linear-gradient(180deg,#e7b94f,#c9921f);
  color: #16110c;
  box-shadow: 0 4px 14px rgba(170,115,10,.24), inset 0 1px 0 rgba(255,255,255,.45);
}
.mobile-language-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 0 15px;
  border-bottom: 1px solid var(--line);
}
.mobile-language-row > span { font-size: .82rem; font-weight: 700; color: var(--muted); direction: ltr; }
.mobile-language-row .language-switch { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.7); }

/* RTL keeps product imagery stable while making all reading / form flow Arabic-native. */
html[dir="rtl"] body {
  font-family: Tahoma, Arial, "Helvetica Neue", sans-serif;
  text-align: right;
}
html[dir="rtl"] .brand { margin-right: 0; margin-left: auto; }
html[dir="rtl"] .header-cta { margin-left: 0; margin-right: 8px; }
html[dir="rtl"] .desktop-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .product-actions,
html[dir="rtl"] .hero-proof,
html[dir="rtl"] .shop-meta { direction: rtl; }
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .shop-heading,
html[dir="rtl"] .category-copy,
html[dir="rtl"] .service-card,
html[dir="rtl"] .process-copy,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .dialog-copy,
html[dir="rtl"] .request-dialog,
html[dir="rtl"] .product-info { text-align: right; }
html[dir="rtl"] .section-heading,
html[dir="rtl"] .shop-heading,
html[dir="rtl"] .contact-layout,
html[dir="rtl"] .process-layout { direction: rtl; }
html[dir="rtl"] .ios-button .icon-slot[data-icon="arrow"] svg,
html[dir="rtl"] .text-link .icon-slot[data-icon="arrow"] svg { transform: rotate(180deg); }
html[dir="rtl"] .search-field input,
html[dir="rtl"] .ios-input,
html[dir="rtl"] .ios-textarea,
html[dir="rtl"] select { text-align: right; direction: rtl; }
html[dir="rtl"] .product-ref,
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href*="wa.me/"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[name="dimensions"] { direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .faq-list details summary { direction: rtl; }
html[dir="rtl"] .faq-plus { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .selected-product-preview,
html[dir="rtl"] .contact-row,
html[dir="rtl"] .step-heading,
html[dir="rtl"] .optional-upload,
html[dir="rtl"] .consent { direction: rtl; }
html[dir="rtl"] .mobile-action-bar { direction: rtl; }
html[dir="rtl"] .social-icons,
html[dir="rtl"] .footer-social-buttons { direction: rtl; }

@media (max-width: 1120px) {
  .header-inner { gap: 14px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: .84rem; }
  .language-switch { margin-left: 0; }
}
@media (max-width: 1050px) {
  .header-inner > .language-switch { display: inline-flex; }
  .mobile-language-row { display: flex; }
}
@media (max-width: 780px) {
  .header-inner > .language-switch { margin-left: auto; }
  html[dir="rtl"] .header-inner > .language-switch { margin-left: 0; margin-right: auto; }
  .language-switch button { height: 32px; min-width: 36px; padding: 0 8px; }
  .language-switch button[data-lang="ar"] { min-width: 58px; }
}
@media (max-width: 430px) {
  .header-inner { gap: 8px; }
  .header-inner > .language-switch button[data-lang="ar"] { min-width: 48px; font-size: .7rem; }
  .header-inner > .language-switch button { min-width: 32px; padding: 0 6px; }
}

/* ============================================================
   BLOUK BOIS — CLEAN LOGO LOADING INTRO
   Official logo + slim loading line. Total duration ~1.85s.
   ============================================================ */
html.intro-active, html.intro-active body { overflow: hidden; }
.site-intro {
  position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; overflow: hidden;
  pointer-events: auto;
  background: radial-gradient(circle at 50% 42%, rgba(226,180,73,.11), transparent 34%), linear-gradient(180deg,#f8f5f0 0%,#f1ede7 100%);
  animation: intro-shell-exit 1.85s cubic-bezier(.22,.72,.18,1) forwards;
}
.site-intro::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.55; background:linear-gradient(90deg,transparent 0 9%,rgba(29,24,19,.028) 9.1%,transparent 9.2% 90.8%,rgba(29,24,19,.028) 90.9%,transparent 91%); }
.intro-content { position:relative; z-index:2; display:grid; justify-items:center; width:min(76vw,360px); transform:translateY(-1.5vh); }
.intro-logo { display:block; width:clamp(150px,17vw,220px); height:auto; object-fit:contain; opacity:0; transform:translateY(10px) scale(.965); filter:drop-shadow(0 16px 28px rgba(28,21,14,.08)); animation:intro-logo-in .52s .08s cubic-bezier(.2,.8,.2,1) forwards; }
.intro-loader { display:grid; justify-items:center; width:min(220px,56vw); margin-top:-2px; opacity:0; transform:translateY(6px); animation:intro-loader-in .35s .34s ease-out forwards; }
.intro-loader-track { position:relative; display:block; width:100%; height:2px; overflow:hidden; border-radius:999px; background:rgba(36,28,20,.10); }
.intro-loader-fill { position:absolute; inset:0; width:0; border-radius:inherit; background:linear-gradient(90deg,#b97708,#e4ad32 58%,#f2cc71); box-shadow:0 0 12px rgba(208,151,33,.22); animation:intro-progress 1.05s .38s cubic-bezier(.35,.02,.12,1) forwards; }
.intro-loader-text { margin-top:12px; color:rgba(32,26,21,.58); font-size:.68rem; font-weight:650; letter-spacing:.16em; text-transform:uppercase; }
@keyframes intro-logo-in { to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes intro-loader-in { to { opacity:1; transform:translateY(0); } }
@keyframes intro-progress { 0%{width:0} 25%{width:22%} 62%{width:71%} 100%{width:100%} }
@keyframes intro-shell-exit { 0%,76%{opacity:1;visibility:visible} 100%{opacity:0;visibility:hidden;pointer-events:none} }
@media(max-width:720px){ .intro-content{width:min(82vw,320px);transform:translateY(-2vh)} .intro-logo{width:clamp(142px,42vw,184px)} .intro-loader{width:min(190px,52vw);margin-top:0} .intro-loader-text{margin-top:10px;font-size:.62rem;letter-spacing:.13em} }
@media(prefers-reduced-motion:reduce){ .site-intro{animation:intro-reduced-exit .42s .08s ease-out forwards} .intro-logo{opacity:1;transform:none;animation:none} .intro-loader{display:none} @keyframes intro-reduced-exit{from{opacity:1;visibility:visible}to{opacity:0;visibility:hidden;pointer-events:none}} }
