/* ===== Maska — Gifting, Redefined ===== */
:root {
  --ink: #1f1a16;
  --ink-2: #3a302a;
  --paper: #f6efe4;
  --paper-2: #efe5d4;
  --blush: #ecddd0;
  --gold: #b08a4e;
  --gold-deep: #8a6a36;
  --rouge: #b23a48;
  --sage: #8a8e70;
  --line: #e6dac9;
  --muted: #8a7e6f;
  --surface: #fbf6ec;
  --focus: #b08a4e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Type ramp */
.display, h1, h2, h3, .h-display {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.display-italic, .h-display-italic { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 0; }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); margin: 0; font-weight: 500; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}
.eyebrow-rouge { color: var(--rouge); }

.lede {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}

/* Arabic */
[dir="rtl"] body, [dir="rtl"] {
  font-family: "Tajawal", "Inter", sans-serif;
}
[dir="rtl"] .display, [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 {
  font-family: "Tajawal", "Fraunces", serif;
  letter-spacing: 0;
}

/* Layout */
.shell { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .shell { padding: 0 20px; } }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .25s ease;
  text-decoration: none;
}
.btn:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-rouge { background: var(--rouge); border-color: var(--rouge); color: var(--paper); }
.btn-sm { padding: 10px 16px; font-size: 11px; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  transition: padding .25s ease;
}
.btn-link:hover { padding-right: 14px; }
.btn-link .arrow { transition: transform .25s ease; }
.btn-link:hover .arrow { transform: translateX(4px); }

/* Ribbon rule */
.ribbon-rule {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.ribbon-rule::before, .ribbon-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.ribbon-rule.center { justify-content: center; }
.ribbon-rule.left::before { display: none; }
.ribbon-rule.left { justify-content: flex-start; }

/* Topbar (currency / language) */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 0;
}
.topbar .shell { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar .marquee-track {
  flex: 1; overflow: hidden; white-space: nowrap;
  mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.topbar .marquee-inner {
  display: inline-flex; gap: 56px; padding-left: 100%;
  animation: marquee 38s linear infinite;
}
.topbar .marquee-inner span { display: inline-flex; align-items: center; gap: 12px; }
.topbar .dot { display: inline-block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

.topbar-actions { display: flex; gap: 20px; align-items: center; }
.topbar-actions button {
  background: none; border: 0; color: var(--paper);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.topbar-actions .sep { width: 1px; height: 10px; background: rgba(246,239,228,0.25); }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.navbar.hero-mode {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--paper);
}
.navbar.hero-mode .nav-link, .navbar.hero-mode .nav-brand-text { color: var(--paper); }
.navbar.hero-mode .nav-icon-btn { color: var(--paper); }
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
}
.nav-left { display: flex; gap: 28px; align-items: center; }
.nav-right { display: flex; gap: 18px; align-items: center; justify-content: flex-end; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
}
.nav-brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
}
.nav-brand-mark img { height: 32px; width: auto; }
.nav-brand-text {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.nav-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  background: none; border: 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-icon-btn {
  background: none; border: 0; padding: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  position: relative;
}
.nav-icon-btn .cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--rouge);
  color: var(--paper);
  font-size: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
}

.nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  min-width: 320px;
  box-shadow: 0 24px 48px rgba(31,26,22,0.08);
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: all .2s ease;
}
.nav-link-wrap { position: relative; }
.nav-link-wrap:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.nav-dropdown-col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-weight: 600;
}
.nav-dropdown a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-dropdown a:hover { color: var(--rouge); }

.nav-corp-cta {
  background: var(--rouge);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  margin-top: -73px; /* sit under transparent nav */
  padding-top: 73px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,22,0.4) 0%, transparent 30%, transparent 60%, rgba(31,26,22,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 0 80px;
  width: 100%;
}
.hero-h1 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.4rem, 9vw, 8.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.hero-h1 .amp { color: var(--gold); }
.hero-sub {
  margin-top: 24px;
  max-width: 54ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  opacity: 0.92;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; right: 32px; bottom: 80px;
  text-align: right;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
}
.hero-meta strong { font-weight: 600; color: var(--gold); }
.hero-meta-stack { display: flex; flex-direction: column; gap: 6px; }

/* Occasion grid */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
.occasion-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-2);
  cursor: pointer;
  display: block;
}
.occasion-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.occasion-tile:hover img { transform: scale(1.05); }
.occasion-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,26,22,0.65) 100%);
}
.occasion-tile-content {
  position: absolute; left: 20px; right: 20px; bottom: 22px;
  z-index: 2; color: var(--paper);
}
.occasion-tile-label {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
  font-weight: 400;
}
.occasion-tile-meta {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Signature strip */
.signature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .signature { grid-template-columns: 1fr; gap: 40px; } }
.signature-img-wrap {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: var(--paper-2);
}
.signature-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.signature-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--paper); color: var(--ink);
  padding: 10px 14px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line);
}
.signature h2 .it { font-style: italic; color: var(--gold-deep); }
.signature-feat-row {
  margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap;
}
.feat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12px;
  border-radius: 999px;
}
.feat-chip .px { font-weight: 600; color: var(--gold-deep); }

/* Service teaser cards */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 900px) { .service-row { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity .4s ease, transform .8s ease; }
.service-card:hover img { opacity: 0.7; transform: scale(1.03); }
.service-card-content {
  position: absolute; inset: 0;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 2;
}
.service-card-content::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,26,22,0.2) 0%, rgba(31,26,22,0.55) 100%);
}

/* Story band */
.story-band {
  background: var(--paper-2);
  padding: 120px 0;
  position: relative;
}
.story-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .story-band-inner { grid-template-columns: 1fr; gap: 40px; } }
.story-furoshiki-img {
  aspect-ratio: 4/5;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.story-furoshiki-img img { width: 100%; height: 100%; object-fit: cover; }
.story-stamp {
  position: absolute; top: 20px; left: 20px;
  background: var(--paper); padding: 10px 14px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep);
}
.story-stamp small { display: block; color: var(--muted); font-size: 9px; letter-spacing: 0.15em; margin-top: 2px; font-weight: 400; }

/* Timeline pills */
.timeline-pills {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.timeline-pill {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex; gap: 8px; align-items: center;
  font-weight: 500;
}
.timeline-pill b { color: var(--rouge); font-weight: 600; }

/* Press row */
.press-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-item {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: var(--ink-2);
  opacity: 0.7;
  white-space: nowrap;
}
.press-item:not(:last-child)::after {
  content: "•"; margin-left: 32px; color: var(--gold);
}

/* Product card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card {
  cursor: pointer;
  display: block;
}
.product-card-img {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, opacity .3s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img-2 {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s ease;
}
.product-card:hover .product-card-img-2 { opacity: 1; }
.product-card-meta { padding: 14px 0 0; }
.product-card-title { font-family: "Fraunces", serif; font-size: 17px; font-weight: 400; line-height: 1.25; color: var(--ink); }
.product-card-price { margin-top: 6px; font-size: 13px; color: var(--ink-2); }
.product-card-price .price-num { font-weight: 500; color: var(--ink); }
.product-card-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.product-card-quickadd {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s ease;
  text-align: center;
}
.product-card:hover .product-card-quickadd { opacity: 1; transform: translateY(0); }
.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--rouge); color: var(--paper);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  z-index: 2;
}

/* Shop hero */
.shop-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}
.shop-hero-title { font-family: "Fraunces", serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; font-style: italic; }
.shop-tab-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 32px;
}
.shop-tab {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  font-weight: 500;
  color: var(--ink-2);
}
.shop-tab:hover { border-color: var(--ink); }
.shop-tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.shop-tab .count { opacity: 0.6; margin-left: 6px; font-weight: 400; }

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
  padding: 48px 0 96px;
}
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 32px; } }
.pdp-gallery { display: grid; gap: 8px; }
.pdp-main-img { aspect-ratio: 4/5; background: var(--paper-2); overflow: hidden; }
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 8px; }
.pdp-thumb { width: 80px; height: 80px; background: var(--paper-2); border: 2px solid transparent; cursor: pointer; }
.pdp-thumb.active { border-color: var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info { padding: 16px 0; position: sticky; top: 120px; }
.pdp-title { font-family: "Fraunces", serif; font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.1; }
.pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pdp-tag-chip { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-deep); }
.pdp-price { font-family: "Fraunces", serif; font-size: 1.8rem; margin-top: 20px; font-weight: 400; }
.pdp-price .ccy { font-size: 0.7em; color: var(--muted); margin-right: 6px; letter-spacing: 0.06em; }
.pdp-desc { margin-top: 20px; color: var(--ink-2); line-height: 1.7; max-width: 50ch; }
.pdp-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.pdp-section h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 12px; color: var(--gold-deep); font-weight: 600; }
.variant-row { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-pill {
  padding: 10px 14px; border: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px; cursor: pointer; transition: all .2s ease;
}
.variant-pill:hover { border-color: var(--ink); }
.variant-pill.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.pdp-gift-msg { width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: var(--paper); resize: vertical; font-size: 14px; font-family: inherit; min-height: 80px; }
.pdp-add { display: flex; gap: 12px; margin-top: 28px; align-items: stretch; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--ink); }
.qty-stepper button { background: none; border: 0; padding: 0 14px; height: 100%; }
.qty-stepper span { padding: 0 12px; font-size: 14px; min-width: 28px; text-align: center; }
.pdp-add .btn { flex: 1; justify-content: center; padding: 16px 22px; }

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(31,26,22,0.5);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(440px, 96vw);
  background: var(--paper);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 24px 24px 16px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: "Fraunces", serif; font-size: 24px; }
.cart-items { flex: 1; overflow: auto; padding: 24px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.cart-item-img { width: 72px; height: 88px; background: var(--paper-2); overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-family: "Fraunces", serif; font-size: 15px; line-height: 1.25; }
.cart-item-price { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cart-item-remove { background: none; border: 0; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0; margin-top: 8px; text-decoration: underline; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-foot { padding: 24px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 16px; }
.cart-subtotal b { font-family: "Fraunces", serif; font-size: 20px; font-weight: 400; }
.cart-foot .btn { width: 100%; justify-content: center; padding: 16px; }
.gift-msg-field { width: 100%; margin-top: 12px; padding: 10px 12px; border: 1px solid var(--line); background: var(--paper-2); font-size: 13px; font-family: inherit; min-height: 60px; resize: none; }

/* Page wrappers */
.page-hero {
  padding: 80px 0 32px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-style: italic; font-weight: 300; }
.page-hero .lede { margin-top: 16px; }
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }

/* Services page */
.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 60px 0;
  align-items: flex-start;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; gap: 32px; } }
.svc-img { aspect-ratio: 5/6; overflow: hidden; background: var(--paper-2); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-steps { display: grid; gap: 16px; margin-top: 28px; }
.svc-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: baseline;
}
.svc-step-num {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.svc-step h4 { font-family: "Fraunces", serif; font-size: 18px; margin: 0; font-weight: 500; }
.svc-step p { margin: 4px 0 0; color: var(--ink-2); font-size: 14px; }

/* Booking form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.form-grid .full { grid-column: 1/-1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: -1px;
}

/* Story page */
.story-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  color: var(--paper);
  margin-top: -73px;
  padding-top: 73px;
}
.story-hero-bg { position: absolute; inset: 0; }
.story-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.story-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(31,26,22,0.7) 0%, rgba(31,26,22,0.2) 60%);
}
.story-hero-content { position: relative; z-index: 2; max-width: 720px; padding: 80px 0; }

.story-timeline {
  display: grid;
  gap: 80px;
  padding: 80px 0;
}
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .story-row { grid-template-columns: 1fr; gap: 32px; } }
.story-row.flip { direction: rtl; }
.story-row.flip > * { direction: ltr; }
[dir="rtl"] .story-row.flip { direction: ltr; }
[dir="rtl"] .story-row.flip > * { direction: rtl; }
.story-img { aspect-ratio: 4/5; background: var(--paper-2); overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-year {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.story-row h3 { margin-top: 8px; font-family: "Fraunces", serif; font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 400; }
.story-row p { color: var(--ink-2); line-height: 1.7; margin-top: 14px; max-width: 50ch; }

/* Sustainability section */
.sustain {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.sustain h2 { font-style: italic; font-weight: 300; }
.sustain .lede { color: rgba(246,239,228,0.85); }
.sustain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  margin-top: 60px; align-items: flex-start;
}
@media (max-width: 900px) { .sustain-grid { grid-template-columns: 1fr; } }
.sustain-card {
  position: relative;
  overflow: hidden;
}
.sustain-card-img { aspect-ratio: 5/4; overflow: hidden; }
.sustain-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sustain-card h3 { margin-top: 24px; font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }
.sustain-card p { margin-top: 12px; color: rgba(246,239,228,0.8); line-height: 1.7; }

/* Stores */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 48px 0 96px;
}
@media (max-width: 800px) { .store-grid { grid-template-columns: 1fr; } }
.store-card {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.store-card-name { font-family: "Fraunces", serif; font-size: 26px; font-weight: 400; font-style: italic; }
.store-card-addr { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.store-card.featured .store-card-addr { color: rgba(246,239,228,0.78); }
.store-card-hours { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; padding-top: 12px; border-top: 1px solid var(--line); }
.store-card.featured .store-card-hours { color: var(--gold); border-color: rgba(246,239,228,0.18); }
.store-card-meta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.store-card.featured .store-card-meta { color: rgba(246,239,228,0.6); }

/* Corporate */
.corp-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  padding: 60px 0;
}
@media (max-width: 900px) { .corp-hero { grid-template-columns: 1fr; gap: 32px; } }
.corp-hero-img { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); }
.corp-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.corp-feats { display: grid; gap: 14px; margin-top: 24px; }
.corp-feat { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.corp-feat-num { font-family: "Fraunces", serif; font-style: italic; color: var(--gold); font-size: 22px; min-width: 28px; line-height: 1; }
.corp-feat h5 { margin: 0; font-size: 15px; font-weight: 600; }
.corp-feat p { margin: 4px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.55; }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
}
.footer-brand-mark { font-family: "Fraunces", serif; font-size: 28px; font-style: italic; }
.footer-brand p { color: rgba(246,239,228,0.7); font-size: 14px; line-height: 1.6; max-width: 32ch; margin-top: 12px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px; font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(246,239,228,0.85);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,239,228,0.15);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246,239,228,0.5);
  flex-wrap: wrap; gap: 16px;
}
.newsletter-row { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-row input {
  flex: 1; padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(246,239,228,0.25);
  color: var(--paper);
  font-size: 14px;
}
.newsletter-row input::placeholder { color: rgba(246,239,228,0.4); }
.newsletter-row button {
  background: var(--gold); color: var(--paper); border: 0;
  padding: 0 18px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
}

/* Misc */
.divider-leaf {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold);
  margin: 32px 0;
}
.divider-leaf::before, .divider-leaf::after {
  content: ""; width: 60px; height: 1px; background: var(--line);
}

/* Loading skeleton */
.skeleton { background: linear-gradient(90deg, var(--paper-2) 0%, var(--blush) 50%, var(--paper-2) 100%); background-size: 200% 100%; animation: shimmer 2s linear infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(31,26,22,0.2);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .check { color: var(--gold); margin-right: 8px; }

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(31,26,22,0.2);
  z-index: 90;
}
[dir="rtl"] .fab-whatsapp { right: auto; left: 24px; }

/* Arabic-only adjustments */
[dir="rtl"] .nav-row { direction: rtl; }
[dir="rtl"] .btn-link { border-bottom: 1px solid var(--ink); }

/* RTL svg arrows mirror */
[dir="rtl"] .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn-link:hover { padding-right: 0; padding-left: 14px; }
[dir="rtl"] .btn-link:hover .arrow { transform: scaleX(-1) translateX(4px); }

/* Tweaks panel placement override */
@media (max-width: 720px) {
  .nav-row { grid-template-columns: 1fr auto auto; }
  .nav-left { display: none; }
  .topbar { display: none; }
  .hero-meta { display: none; }
  .hero { padding-top: 60px; margin-top: -60px; }
}
