/* ═════════════════════════════════════════════════════
   HILLO BANAT — Design System
   ═════════════════════════════════════════════════════ */

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

:root {
  /* Palette — derived from logo (charcoal + warm cream) */
  --ink: #2a2826;          /* logo charcoal */
  --ink-soft: #3d3a37;
  --ink-muted: #6b6660;
  --line: #e6dfd4;
  --line-soft: #f0e9dd;

  --bone: #faf6ee;         /* page bg */
  --cream: #f3ebdb;        /* card bg */
  --sand: #e6d9c2;
  --beige: #d4c4ad;
  --champagne: #c9b89a;

  --accent: #2a2826;       /* primary action */
  --accent-2: #8a7659;     /* hover/highlight */
  --rose: #c8a5a0;         /* accent for sale tags etc */

  --white: #ffffff;
  --pure: #ffffff;

  /* Type */
  --f-display: 'Cormorant Garamond', 'Cormorant Infant', serif;
  --f-display-it: 'Cormorant Infant', serif;
  --f-ar: 'Almarai', sans-serif;
  --f-ui: 'Cormorant Garamond', 'Almarai', serif;

  /* Spacing */
  --gutter: clamp(16px, 4vw, 64px);
  --section: clamp(64px, 10vw, 140px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bone); color: var(--ink); }
body {
  font-family: var(--f-display);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* RTL Arabic body type — uses Almarai */
html[dir="rtl"] body,
html[dir="rtl"] .ar-text {
  font-family: var(--f-ar);
  font-weight: 400;
  letter-spacing: 0;
}

/* Display headings always serif (works in both langs) */
.display, h1.display, h2.display, h3.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
html[dir="rtl"] .display { line-height: 1.2; }

/* Italic display variant */
.display-it { font-style: italic; font-family: var(--f-display-it); }

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ─────── Layout ─────── */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.container-tight { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }

/* ─────── Header ─────── */
.announce {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
html[dir="rtl"] .announce { font-family: var(--f-ar); font-size: 12px; letter-spacing: 0; text-transform: none; }
.announce-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.announce-item { display: inline-flex; align-items: center; gap: 12px; }
.announce-item::after { content: '✦'; color: var(--beige); margin-inline-start: 80px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] .announce-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.header {
  position: sticky; top: 0; z-index: 80;
  background: var(--bone);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.scrolled { box-shadow: 0 1px 0 var(--line); }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
html[dir="rtl"] .nav-links a { font-family: var(--f-ar); font-size: 14px; letter-spacing: 0; text-transform: none; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.brand {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
}
.brand img { height: 38px; width: 38px; object-fit: contain; }
.brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.brand-name .it { font-style: italic; font-family: var(--f-display-it); letter-spacing: 0; text-transform: none; }

.nav-actions {
  display: flex; gap: 8px; align-items: center;
  justify-content: flex-end;
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  transition: background .25s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--cream); }
.icon-btn .badge {
  position: absolute; top: 6px; inset-inline-end: 6px;
  background: var(--ink); color: var(--bone);
  font-size: 9px; font-family: var(--f-display);
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}

.lang-switch {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.lang-switch:hover { border-color: var(--ink); }

/* Mobile nav */
.menu-toggle { display: none; }
@media (max-width: 900px) {
  .nav { grid-template-columns: 40px 1fr 40px; height: 64px; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand img { height: 32px; width: 32px; }
  .brand-name { font-size: 18px; }
  .nav-actions { gap: 0; }
  .lang-switch { display: none; }
  .lang-switch.in-drawer { display: inline-flex; }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(42,40,38,0.5);
  z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-start: 0;
  width: min(360px, 88vw);
  background: var(--bone);
  z-index: 101;
  transform: translateX(-100%);
  transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column;
  padding: 24px;
}
html[dir="rtl"] .drawer { transform: translateX(100%); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drawer-links a {
  display: block; padding: 14px 0;
  font-family: var(--f-display); font-size: 22px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding .25s var(--ease);
}
html[dir="rtl"] .drawer-links a { font-family: var(--f-ar); font-size: 18px; }
.drawer-links a:hover { padding-inline-start: 12px; }
.drawer-foot { padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ─────── Buttons ─────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
html[dir="rtl"] .btn { font-family: var(--f-ar); font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-ghost-light { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-ghost-light:hover { background: var(--bone); color: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 40px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* WhatsApp button */
.btn-wa {
  background: #1a1a1a;
  color: var(--bone);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 32px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .25s var(--ease);
  width: 100%;
}
html[dir="rtl"] .btn-wa { font-family: var(--f-ar); font-size: 15px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.btn-wa:hover { background: #25D366; }
.btn-wa svg { width: 20px; height: 20px; }

/* ─────── Eyebrow ─────── */
.eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
html[dir="rtl"] .eyebrow { font-family: var(--f-ar); font-size: 12px; letter-spacing: 0.08em; text-transform: none; font-weight: 700; }
.eyebrow::before, .eyebrow::after {
  content: ''; height: 1px; width: 28px; background: var(--ink-muted);
}
.eyebrow.left::before { display: none; }

/* ─────── Section heads ─────── */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
html[dir="rtl"] .section-head h2 { font-family: var(--f-ar); font-weight: 300; line-height: 1.3; font-size: clamp(28px, 4.4vw, 50px); }
.section-head .sub {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 18px;
  margin-top: 6px;
}
html[dir="rtl"] .section-head .sub { font-family: var(--f-ar); font-style: normal; font-size: 14px; }
.section-head .link {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: opacity .25s var(--ease);
}
html[dir="rtl"] .section-head .link { font-family: var(--f-ar); font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.section-head .link:hover { opacity: 0.7; }

/* ─────── Reveal animation ─────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ─────── Footer ─────── */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
  margin-top: var(--section);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer h4 {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--cream);
}
html[dir="rtl"] .footer h4 { font-family: var(--f-ar); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity .25s var(--ease);
}
html[dir="rtl"] .footer ul a { font-family: var(--f-ar); font-size: 14px; }
.footer ul a:hover { opacity: 1; }

.footer-brand img { height: 56px; width: 56px; margin-bottom: 16px; }
.footer-brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand p {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--cream); opacity: 0.75;
  max-width: 320px;
}
html[dir="rtl"] .footer-brand p { font-family: var(--f-ar); font-style: normal; font-size: 14px; line-height: 1.7; }

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 235, 219, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--cream); opacity: 0.6;
}
html[dir="rtl"] .footer-bottom { font-family: var(--f-ar); letter-spacing: 0; font-size: 13px; }

/* ─────── Floating WhatsApp ─────── */
.fab-wa {
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.fab-wa:hover { transform: scale(1.06); }
.fab-wa svg { width: 28px; height: 28px; }

/* ─────── Toast ─────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--bone);
  padding: 14px 28px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: all .3s var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
html[dir="rtl"] .toast { font-family: var(--f-ar); font-size: 14px; letter-spacing: 0; }

/* ═════════════════════════════════════════════════════
   PRODUCT CARD VARIANTS
   ═════════════════════════════════════════════════════ */
.pcard {
  position: relative;
  cursor: pointer;
}
.pcard-media {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4;
}
.pcard-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .5s var(--ease);
}
.pcard-media .hover-img {
  position: absolute; inset: 0;
  opacity: 0;
}
.pcard:hover .pcard-media .hover-img { opacity: 1; }
.pcard:hover .pcard-media .main-img { opacity: 0; }

.pcard-badges {
  position: absolute;
  top: 12px; inset-inline-start: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.pbadge {
  display: inline-block;
  padding: 5px 10px;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bone);
  color: var(--ink);
}
html[dir="rtl"] .pbadge { font-family: var(--f-ar); font-size: 11px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.pbadge.sale { background: var(--ink); color: var(--bone); }
.pbadge.new { background: var(--bone); color: var(--ink); }

.pcard-wish {
  position: absolute;
  top: 12px; inset-inline-end: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.pcard-wish:hover { background: var(--bone); transform: scale(1.06); }
.pcard-wish svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.5; transition: fill .25s var(--ease); }
.pcard-wish.active svg { fill: var(--ink); }

.pcard-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--bone);
  color: var(--ink);
  padding: 12px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
html[dir="rtl"] .pcard-quick { font-family: var(--f-ar); font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.pcard:hover .pcard-quick { transform: translateY(0); }

.pcard-info {
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.pcard-info .name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
html[dir="rtl"] .pcard-info .name { font-family: var(--f-ar); font-size: 15px; font-weight: 700; }
.pcard-info .meta {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 13px;
  margin-top: 2px;
}
html[dir="rtl"] .pcard-info .meta { font-family: var(--f-ar); font-style: normal; font-size: 12px; }
.pcard-info .price {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
html[dir="rtl"] .pcard-info .price { font-family: var(--f-ar); font-weight: 700; font-size: 14px; }
.pcard-info .price .old {
  text-decoration: line-through;
  color: var(--ink-muted);
  font-weight: 300;
  margin-inline-end: 8px;
  font-size: 14px;
}
.pcard-info .price .now { color: var(--ink); }
.pcard-info .price .now.sale { color: #b54336; }

.pcard-swatches {
  display: flex; gap: 6px;
  padding: 0 0 8px;
}
.pcard-swatch {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

/* Variant: minimal (no swatches, no quick add) */
.pcard.style-minimal .pcard-quick { display: none; }
.pcard.style-minimal .pcard-swatches { display: none; }
.pcard.style-minimal .pcard-wish { display: none; }
.pcard.style-minimal .pcard-info { padding: 14px 0 0; }

/* Variant: editorial (centered text below) */
.pcard.style-editorial .pcard-info { display: block; text-align: center; padding: 18px 0 4px; }
.pcard.style-editorial .pcard-info .name { font-size: 18px; font-style: italic; font-family: var(--f-display); font-weight: 300; }
html[dir="rtl"] .pcard.style-editorial .pcard-info .name { font-family: var(--f-ar); font-style: normal; font-size: 15px; }
.pcard.style-editorial .pcard-info .price { display: block; margin-top: 4px; font-family: var(--f-display); font-size: 14px; letter-spacing: 0.1em; }
html[dir="rtl"] .pcard.style-editorial .pcard-info .price { font-family: var(--f-ar); font-size: 13px; letter-spacing: 0; }
.pcard.style-editorial .pcard-swatches { justify-content: center; padding-top: 8px; }
.pcard.style-editorial .pcard-quick { display: none; }

/* Variant: bordered card */
.pcard.style-bordered { background: var(--white); border: 1px solid var(--line); padding: 12px; }
.pcard.style-bordered .pcard-info { padding: 14px 4px 4px; }
.pcard.style-bordered .pcard-media { aspect-ratio: 4/5; }

/* ═════════════════════════════════════════════════════
   GRID DENSITY
   ═════════════════════════════════════════════════════ */
.pgrid { display: grid; gap: 32px 20px; }
.pgrid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pgrid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pgrid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pgrid.cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1100px) {
  .pgrid.cols-5 { grid-template-columns: repeat(4, 1fr); }
  .pgrid.cols-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .pgrid { gap: 24px 12px; }
  .pgrid.cols-5, .pgrid.cols-4, .pgrid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ═════════════════════════════════════════════════════
   HERO VARIANTS
   ═════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; }

/* Hero V1: full-screen single image */
.hero-fullscreen {
  height: clamp(560px, 92vh, 920px);
  position: relative;
}
.hero-fullscreen .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-fullscreen::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 100%);
}
.hero-fullscreen .inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  color: var(--bone);
  padding-bottom: 80px;
}
.hero-fullscreen .eyebrow { color: var(--bone); opacity: 0.9; }
.hero-fullscreen .eyebrow::before, .hero-fullscreen .eyebrow::after { background: var(--bone); opacity: 0.6; }
.hero-fullscreen h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  white-space: pre-line;
  margin-bottom: 20px;
  max-width: 12ch;
}
html[dir="rtl"] .hero-fullscreen h1 { font-family: var(--f-ar); font-weight: 300; line-height: 1.1; font-size: clamp(40px, 7vw, 90px); letter-spacing: 0; }
.hero-fullscreen h1 .it { font-style: italic; font-family: var(--f-display-it); font-weight: 300; }
.hero-fullscreen p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0.9;
}
html[dir="rtl"] .hero-fullscreen p { font-family: var(--f-ar); font-style: normal; font-size: clamp(14px, 1.3vw, 17px); line-height: 1.7; }
.hero-fullscreen .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero V2: editorial split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 80vh, 800px);
}
@media (max-width: 800px) { .hero-split { grid-template-columns: 1fr; } }
.hero-split .text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px var(--gutter);
  background: var(--bone);
}
.hero-split .text h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  white-space: pre-line;
}
html[dir="rtl"] .hero-split .text h1 { font-family: var(--f-ar); font-weight: 300; line-height: 1.15; }
.hero-split .text h1 .it { font-style: italic; }
.hero-split .text p {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted);
  font-size: 18px;
  max-width: 420px;
  margin-bottom: 32px;
}
html[dir="rtl"] .hero-split .text p { font-family: var(--f-ar); font-style: normal; font-size: 16px; line-height: 1.7; }
.hero-split .img {
  background-size: cover; background-position: center;
  min-height: 400px;
}

/* Hero V3: triptych grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: clamp(560px, 88vh, 880px);
  padding: 8px;
}
.hero-grid .tile {
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-grid .tile.main {
  grid-row: 1 / 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px;
  color: var(--bone);
}
.hero-grid .tile.main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0) 40%);
}
.hero-grid .tile.main > * { position: relative; z-index: 2; }
.hero-grid .tile.main h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 16px;
  white-space: pre-line;
}
html[dir="rtl"] .hero-grid .tile.main h1 { font-family: var(--f-ar); font-weight: 300; line-height: 1.15; font-size: clamp(32px, 4.5vw, 64px); }
.hero-grid .tile.main h1 .it { font-style: italic; }
.hero-grid .tile.main p {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; opacity: 0.9; margin-bottom: 24px;
  max-width: 360px;
}
html[dir="rtl"] .hero-grid .tile.main p { font-family: var(--f-ar); font-style: normal; font-size: 16px; }
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr 1fr; height: auto; }
  .hero-grid .tile.main { grid-column: 1 / 3; grid-row: 1; height: 60vh; padding: 24px; }
}
