/* ----- Bestone shared styles ----- */
/* Unified with approved About cream / gold / ink system */

/* Self-hosted fonts (no Google dependency — works in Iran) */
@font-face {
  font-family: "Vazirmatn";
  src: url("/fonts/Vazirmatn-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("/fonts/Jost-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/fonts/Jost-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/fonts/Jost-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/fonts/Jost-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/CormorantGaramond-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/CormorantGaramond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/CormorantGaramond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f6f1e7;
  --cream-2: #efe6d6;
  --cream-glow: #efe4d0;
  --line: rgba(42, 36, 28, 0.12);
  --taupe: #a99a89;
  --taupe-deep: #8b7c6a;
  --gold: #b98f52;
  --ink: #2b241d;
  --ink-dim: #736657;

  --warm-white: var(--cream);
  --bg: var(--cream);
  --bg-hero: var(--cream-glow);
  --stone: var(--cream-2);
  --sand: var(--taupe);
  --text: var(--ink);
  --text-muted: var(--ink-dim);
  --text-soft: var(--taupe-deep);
  --accent: var(--ink);
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
  --font-latin: 'Jost', 'DM Sans', sans-serif;
  --shadow-soft: 0 4px 24px rgba(43, 36, 29, 0.06);
  --shadow-hover: 0 16px 48px rgba(43, 36, 29, 0.1);
  --radius: 8px;
  --radius-pill: 2.5rem;
  --space-unit: 1.5rem;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.28s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.nav__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.nav--opaque .nav__veil,
.nav--open .nav__veil {
  opacity: 1;
}

.nav:not(.nav--opaque):not(.nav--open) .nav__veil {
  opacity: 0;
}

.nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(720px, 88%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 18%,
    var(--gold) 50%,
    var(--line) 82%,
    transparent 100%
  );
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.nav--opaque::after,
.nav--open::after {
  opacity: 0.7;
}

.nav__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav__brand {
  justify-self: start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.nav__brand:hover {
  opacity: 0.72;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.nav__panel {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav__item {
  display: inline-flex;
  align-items: center;
}

.nav__sep {
  width: 3px;
  height: 3px;
  margin: 0 clamp(12px, 1.8vw, 20px);
  border: 1px solid var(--taupe);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

.nav__links a {
  font-family: var(--font-latin);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.locale-fa .nav__links a {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.nav__links a:hover,
.nav__links a.nav__link--active {
  color: var(--ink);
}

.nav__links a.nav__link--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 4px;
  height: 4px;
  border: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--taupe-deep);
  padding: 5px 0;
  border: none;
  background: none;
  position: relative;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.25s ease;
}

.nav__lang::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

.nav__lang:hover::after {
  transform: scaleX(1);
}

.nav__lang--en {
  font-family: var(--font-latin);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav__lang--fa {
  font-family: "Vazirmatn", var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  direction: rtl;
  unicode-bidi: isolate;
}

.nav__lang--desktop {
  justify-self: end;
}

.nav__panel-foot {
  display: none;
}

.nav__toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(246, 241, 231, 0.55);
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.nav__toggle:hover {
  border-color: var(--gold);
}

.nav__toggle-line {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}

.nav__toggle-line:first-child {
  top: 17px;
}

.nav__toggle-line:last-child {
  top: 24px;
}

.nav--open .nav__toggle-line:first-child {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.nav--open .nav__toggle-line:last-child {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
  }

  .nav__toggle {
    display: block;
  }

  .nav__lang--desktop {
    display: none;
  }

  .nav__panel {
    position: fixed;
    top: var(--nav-height);
    inset-inline: 0;
    bottom: 0;
    justify-self: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: clamp(2rem, 8vw, 4rem) clamp(1.5rem, 6vw, 3rem);
    background: rgba(246, 241, 231, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  .nav__panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .nav__item {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .nav__sep {
    width: 28px;
    height: 1px;
    margin: 18px 0;
    border: none;
    transform: none;
    background: linear-gradient(
      90deg,
      transparent,
      var(--line) 30%,
      var(--gold) 50%,
      var(--line) 70%,
      transparent
    );
    opacity: 0.8;
  }

  .nav__links a {
    font-size: 12px;
    letter-spacing: 0.24em;
    padding: 10px 4px;
  }

  .locale-fa .nav__links a {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .nav__panel-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    width: 100%;
  }

  .nav__panel-rule {
    width: 34px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 22px;
  }

  .nav__panel-foot .nav__lang--en {
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .nav__panel-foot .nav__lang--fa {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav__veil,
  .nav::after,
  .nav__panel,
  .nav__toggle-line,
  .nav__lang,
  .nav__brand {
    transition: none;
  }
}

/* ----- Page watermark (optional, for pages that use it) ----- */
.page-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--bg);
  background-image: url("pictures/editorial/rock-strata.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 228, 208, 0.55) 0%, transparent 55%),
    var(--bg);
  pointer-events: none;
  z-index: 0;
}

/* ----- Hero (home) ----- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + clamp(2rem, 6vw, 4rem)) clamp(2rem, 6vw, 4rem) clamp(2rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(70% 55% at 50% 38%, var(--cream-glow) 0%, var(--cream) 70%);
  will-change: transform;
}

.hero-stone-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("pictures/pexels-brett-sayles-3812660.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
}

/* Hero background video (source: Video/IMG_6913.MOV) */
.hero--video .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero--video .hero-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero--video .hero-stone-texture {
  display: none;
}

.hero--video .hero-bg {
  background:
    radial-gradient(70% 55% at 50% 38%, rgba(246, 241, 231, 0.72) 0%, rgba(246, 241, 231, 0.88) 68%),
    linear-gradient(to bottom, rgba(246, 241, 231, 0.55), rgba(246, 241, 231, 0.82));
  opacity: 1;
}

.hero-video-veil {
  display: none;
}

.hero--video .hero-video-veil {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 65% at 50% 42%, rgba(255, 255, 255, 0.2) 0%, transparent 62%),
    linear-gradient(to bottom, rgba(246, 241, 231, 0.15) 0%, rgba(246, 241, 231, 0.45) 100%);
}

.hero--video .hero-texture {
  z-index: 2;
}

.hero--video::before {
  z-index: 2;
}

.hero--video::after {
  z-index: 2;
}

.hero--video .hero-inner,
.hero--video .scroll-hint {
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .hero--video .hero-video {
    display: none;
  }

  .hero--video .hero-stone-texture {
    display: block;
  }

  .hero--video .hero-bg {
    background: radial-gradient(70% 55% at 50% 38%, var(--cream-glow) 0%, var(--cream) 70%);
  }

  .hero--video .hero-video-veil {
    display: none;
  }
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg), rgba(246, 241, 231, 0.65) 40%, transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}

/* Hero video band — directly under the cream hero header */
.home-hero-video {
  position: relative;
  width: 100%;
  z-index: 1;
  background: var(--bg);
  line-height: 0;
}

.home-hero-video__container {
  position: relative;
  width: 100%;
  height: clamp(380px, 68vh, 900px);
  overflow: hidden;
}

.home-hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 16, 12, 0.18) 0%,
      rgba(20, 16, 12, 0.38) 48%,
      rgba(20, 16, 12, 0.52) 100%
    ),
    radial-gradient(
      ellipse 85% 70% at 50% 45%,
      rgba(15, 12, 9, 0.08) 0%,
      rgba(15, 12, 9, 0.32) 100%
    );
}

@media (max-width: 768px) {
  .home-hero-video__container {
    height: clamp(300px, 56vh, 640px);
  }
}

.home-hero-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-video {
    display: none;
  }
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 0.94;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  animation: heroEntrance 1.2s var(--ease-out-expo) 0.2s forwards;
  will-change: transform;
}

.tagline {
  font-family: var(--font-latin);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  opacity: 0;
  transform: translateY(18px);
  animation: heroEntranceSoft 1s var(--ease-out-expo) 0.45s forwards;
}

.tagline-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(18px);
  animation: heroEntranceSoft 1s var(--ease-out-expo) 0.6s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: clamp(2rem, 5vw, 3rem);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-latin);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroEntranceScroll 0.9s var(--ease-out-expo) 0.85s forwards;
  z-index: 3;
  text-decoration: none;
}

.scroll-hint__line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  opacity: 0.85;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-hint__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(2px);
  opacity: 0.6;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroEntranceSoft {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroEntranceScroll {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 0.7; transform: scaleY(1); transform-origin: top; }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .tagline, .tagline-sub { animation: none; opacity: 1; transform: none; }
  .scroll-hint { animation: none; opacity: 1; transform: translateX(-50%); }
  .hero-inner, .hero-bg, .hero-texture { will-change: auto; }
}

/* ----- Page header (inner pages) — Bj.jpg texture, reduced height ----- */
.page-header {
  position: relative;
  z-index: 1;
  min-height: clamp(14rem, 28vw, 20rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 9vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-hero);
  /* Editorial stone photography */
  background-image: url("pictures/editorial/rock-strata.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  will-change: transform;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Lighter overlay so texture is visible; keeps text readable */
  background:
    linear-gradient(to bottom, rgba(246,241,231,0.45) 0%, rgba(246,241,231,0.25) 40%, rgba(246,241,231,0.15) 70%, transparent 100%),
    linear-gradient(160deg, rgba(246,241,231,0.5) 0%, rgba(246,241,231,0.65) 100%);
  pointer-events: none;
}

/* Soft fade from header into page content */
.page-header__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(2.5rem, 8vw, 5rem);
  background: linear-gradient(to top, var(--bg), rgba(246,241,231,0.65) 30%, transparent);
  pointer-events: none;
  z-index: 2;
}

.page-header__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
}

/* Breadcrumb above title */
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.page-header.is-loaded .page-header__breadcrumb {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.page-header__breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-header__breadcrumb a:hover {
  color: var(--text);
}

.page-header__breadcrumb-sep {
  color: var(--sand);
  user-select: none;
}

.page-header__breadcrumb-current {
  color: var(--text-muted);
}

.page-header__title,
.page-header__sub,
.page-header__vein {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.page-header.is-loaded .page-header__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.page-header.is-loaded .page-header__vein {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.page-header.is-loaded .page-header__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--text);
}

/* Thin divider under title — stone vein inspired */
.page-header__vein {
  width: clamp(3rem, 16vw, 6rem);
  height: 1px;
  margin-top: clamp(0.85rem, 1.8vw, 1.2rem);
  margin-bottom: clamp(0.6rem, 1.5vw, 0.9rem);
  background: linear-gradient(90deg, transparent 0%, var(--taupe) 15%, var(--gold) 50%, var(--taupe) 85%, transparent 100%);
  opacity: 0.85;
}

.page-header__sub {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .page-header__breadcrumb,
  .page-header__title,
  .page-header__vein,
  .page-header__sub {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- Section divider ----- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 12%, var(--gold) 50%, var(--line) 88%, transparent 100%);
  margin: 0 auto;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.section-divider.in-view {
  opacity: 0.4;
  transform: translateY(0);
}

/* ----- Full-width stone texture break (between sections) ----- */
.stone-break {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stone-break__bg {
  position: absolute;
  inset: 0;
  background-image: url("pictures/pexels-brett-sayles-3812660.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stone-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,243,239,0.72) 0%, rgba(245,243,239,0.88) 100%);
  pointer-events: none;
}

.stone-break__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  max-width: 90%;
}

/* ----- Homepage carousel sections ----- */
.carousel-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 10rem) 0;
  max-width: 1600px;
  margin: 0 auto;
}

.carousel-section .section-header {
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.carousel-wrap,
.carousel-frame {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  --carousel-pad: max(1.25rem, calc((100vw - 1080px) / 2 + 1.25rem));
}

.carousel-frame__viewport {
  position: relative;
}

.carousel-frame__viewport::before,
.carousel-frame__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 48px;
  width: clamp(32px, 6vw, 72px);
  z-index: 3;
  pointer-events: none;
}

.carousel-frame__viewport::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--cream) 15%, transparent 100%);
}

.carousel-frame__viewport::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, var(--cream) 15%, transparent 100%);
}

.about-redesign .abo-featured--stone .carousel-frame__viewport::before {
  background: linear-gradient(to right, var(--cream-2) 15%, transparent 100%);
}

.about-redesign .abo-featured--stone .carousel-frame__viewport::after {
  background: linear-gradient(to left, var(--cream-2) 15%, transparent 100%);
}

.carousel--embla {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.carousel--embla:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(185, 143, 82, 0.45);
}

.carousel-frame--dragging .carousel--embla {
  cursor: grabbing;
}

.carousel--embla .carousel__track.embla__container {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-frame--dragging .carousel--embla .carousel__track.embla__container {
  transition: none;
}

.carousel__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline-start: var(--carousel-pad);
  padding-inline-end: 0;
  padding-block: 6px 10px;
}

.carousel__card.embla__slide {
  flex: 0 0 clamp(260px, 72vw, 300px);
  min-width: 0;
}

@media (min-width: 768px) {
  .carousel__card.embla__slide {
    flex: 0 0 300px;
  }
}

@media (min-width: 1024px) {
  .carousel__card.embla__slide {
    flex: 0 0 320px;
  }
}

.carousel__card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.carousel__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.carousel__card:hover .carousel__card-link {
  transform: translateY(-4px);
}

.carousel__card-frame {
  position: relative;
  padding: 11px;
  background: transparent;
}

.carousel__card-frame::before,
.carousel__card-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transition:
    width 0.35s ease,
    height 0.35s ease,
    opacity 0.35s ease;
}

.carousel__card-frame::before {
  top: 0;
  inset-inline-start: 0;
  border-top: 1px solid var(--gold);
  border-inline-start: 1px solid var(--gold);
  opacity: 0.75;
}

.carousel__card-frame::after {
  bottom: 0;
  inset-inline-end: 0;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  opacity: 0.55;
}

.carousel__card:hover .carousel__card-frame::before,
.carousel__card:hover .carousel__card-frame::after {
  width: 28px;
  height: 28px;
  opacity: 1;
}

.carousel__card:hover .carousel__card-frame::after {
  border-color: rgba(185, 143, 82, 0.5);
}

.carousel__card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}

.carousel__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: grayscale(10%);
}

.carousel__card:hover .carousel__card-media img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.carousel__card-count {
  position: absolute;
  bottom: 10px;
  inset-inline-end: 10px;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-latin);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  background: rgba(246, 241, 231, 0.9);
  z-index: 2;
}

.carousel__card-info {
  padding: 16px 4px 0;
  text-align: start;
}

.carousel__card-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 5px;
}

.carousel__card-detail {
  display: block;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-dim);
  font-weight: 300;
}

.locale-fa .carousel__card-detail {
  font-family: var(--font-sans);
}

.carousel__nav {
  position: absolute;
  top: 38%;
  z-index: 4;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
  box-shadow: 0 8px 24px -16px rgba(43, 36, 29, 0.25);
}

.carousel__nav--start {
  inset-inline-start: max(0.5rem, calc(var(--carousel-pad) - 52px));
}

.carousel__nav--end {
  inset-inline-end: max(0.5rem, calc(var(--carousel-pad) - 52px));
}

.carousel__nav:hover:not(:disabled) {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(246, 241, 231, 0.98);
}

.carousel__nav:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.carousel__nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}

.carousel__chevron {
  width: 17px;
  height: 17px;
  pointer-events: none;
}

/* Point chevrons toward inline-start / inline-end */
.carousel__chevron--start {
  transform: scaleX(-1);
}

[dir="rtl"] .carousel__chevron--start {
  transform: none;
}

[dir="rtl"] .carousel__chevron--end {
  transform: scaleX(-1);
}

@media (max-width: 640px) {
  .carousel__nav {
    width: 36px;
    height: 36px;
    top: 34%;
  }

  .carousel__nav--start {
    inset-inline-start: 0.35rem;
  }

  .carousel__nav--end {
    inset-inline-end: 0.35rem;
  }

  .carousel__chevron {
    width: 15px;
    height: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__card-link,
  .carousel__card-frame::before,
  .carousel__card-frame::after,
  .carousel__card-media img,
  .carousel--embla .carousel__track.embla__container {
    transition: none;
  }

  .carousel__card:hover .carousel__card-link {
    transform: none;
  }
}

/* ----- Image metadata / details card (site-wide) ----- */
.img-meta {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.img-meta__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.img-meta__country,
.img-meta__dimensions {
  font-size: 0.6875rem;
  color: var(--text-soft);
}

.img-meta__dimensions {
  font-variant-numeric: tabular-nums;
}

/* Below-image: minimal caption (no box); details on hover overlay only for emphasis */
.img-meta--below {
  padding: 0.6rem 0 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: opacity var(--transition);
}

.img-meta--below:empty {
  display: none;
}

.img-meta--below:not(:empty) {
  opacity: 0.88;
}

.img-meta--below .img-meta__name {
  font-size: 0.8125rem;
  margin-bottom: 0.2rem;
}

.img-meta--below .img-meta__country,
.img-meta--below .img-meta__dimensions {
  font-size: 0.6875rem;
}

/* Second line: country and dimensions in one row with separator */
.img-meta--below .img-meta__country,
.img-meta--below .img-meta__dimensions {
  display: inline;
}

.img-meta--below .img-meta__country + .img-meta__dimensions::before {
  content: ' · ';
  margin: 0 0.35rem;
  color: var(--sand);
}

/* Overlay: compact detail strip on hover */
.img-meta--overlay {
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  background: rgba(28, 26, 24, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.img-meta--overlay:empty {
  display: none;
}

.img-meta--overlay .img-meta__name {
  color: var(--white);
  font-size: 0.8125rem;
  margin-bottom: 0.2rem;
}

.img-meta--overlay .img-meta__country,
.img-meta--overlay .img-meta__dimensions {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  display: inline;
}

.img-meta--overlay .img-meta__country + .img-meta__dimensions::before {
  content: ' · ';
  margin: 0 0.3rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ----- Carousel card metadata (homepage: redesigned bottom info) ----- */
.carousel__card-meta--below:empty {
  display: none;
}

.carousel__card-meta--below {
  padding: 0.75rem 0.25rem 0 0;
  margin: 0;
}

.carousel__card-meta--below:not(:empty) {
  opacity: 0.9;
  transition: opacity var(--transition);
}

.carousel__card:hover .carousel__card-meta--below:not(:empty) {
  opacity: 1;
}

.carousel__card-meta--below .img-meta__name {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.carousel__card-meta--below .img-meta__country,
.carousel__card-meta--below .img-meta__dimensions {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.carousel__card-meta--below .img-meta__country + .img-meta__dimensions::before {
  content: '  ·  ';
  margin: 0 0.25rem;
  color: var(--sand);
  font-weight: 400;
}

.carousel__card-meta--overlay {
  left: 0.75rem;
  right: 0.75rem;
  margin-bottom: 3.25rem;
}

.carousel__card-meta--overlay:empty {
  display: none;
}

.carousel__card:hover .carousel__card-meta--overlay:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

.carousel-section .btn-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.carousel-section .btn-link:hover {
  color: var(--gold);
}

.carousel-section .section-cta {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ----- Gallery / content sections ----- */
.gallery-section,
.content-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1600px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  max-width: 680px;
}

.section-header .section-label {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out) 0.1s, transform 0.7s var(--ease-out) 0.1s;
}

.section-header .section-title {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out) 0.2s, transform 0.75s var(--ease-out) 0.2s;
}

.section-header .section-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out) 0.35s, transform 0.7s var(--ease-out) 0.35s;
}

.section-header.in-view .section-label,
.section-header.in-view .section-title,
.section-header.in-view .section-intro {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-family: var(--font-latin);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: var(--space-unit);
  font-weight: 400;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.section-intro {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
}

/* ----- Filter tabs (rounded, stone active, smooth transitions) ----- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
  justify-content: center;
}

.filter-tabs__btn {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-latin);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.filter-tabs__btn:hover {
  color: var(--text);
  border-color: var(--taupe);
  background: rgba(239, 230, 214, 0.55);
}

.filter-tabs__btn.is-active {
  color: var(--text);
  border-color: var(--gold);
  background: var(--cream-2);
  box-shadow: 0 2px 12px rgba(43, 36, 29, 0.04);
}

/* ----- Gallery grid (consistent spacing, premium feel) ----- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

@media (max-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.15rem, 1.8vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
  padding-bottom: 0.5rem;
}

.gallery-item.visible {
  animation: galleryReveal 0.5s var(--ease-out-expo) forwards;
}

.gallery-item.is-leaving {
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  pointer-events: none;
}

.gallery-item.is-hidden {
  display: none;
}

@keyframes galleryReveal {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item { transition: none; }
  .gallery-item.is-leaving { transition: none; }
}

.gallery-item a {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 207, 198, 0.65);
}

.gallery-item .img-wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover .img-wrap {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
  filter: grayscale(10%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 24, 0.5) 0%, transparent 45%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
  pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Gallery card metadata (detail pages: match homepage — no box, no border, no background) ----- */
.gallery-item .img-meta--below {
  padding: 0.75rem 0.25rem 0 0;
  margin: 0;
  background: none !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
}

.gallery-item .img-meta--below .img-meta__name {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.gallery-item .img-meta--below .img-meta__country,
.gallery-item .img-meta--below .img-meta__dimensions {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gallery-item .img-meta--below .img-meta__country + .img-meta__dimensions::before {
  content: '  ·  ';
  margin: 0 0.25rem;
  color: var(--sand);
}

.gallery-item:hover .img-meta--below:not(:empty) {
  opacity: 1;
}

.gallery-item:hover .img-meta--overlay:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item.visible { animation: none; opacity: 1; transform: translateY(0) scale(1); }
  .section-divider { transition: none; }
  .section-divider.in-view { opacity: 0.4; transform: none; }
  .section-header .section-label,
  .section-header .section-title,
  .section-header .section-intro {
    opacity: 1; transform: none; transition: none;
  }
  .section-header.in-view .section-label,
  .section-header.in-view .section-title,
  .section-header.in-view .section-intro { opacity: 1; transform: none; }
}

/* ----- Snap section (home) ----- */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
  z-index: 1;
}

/* ----- Lightbox ----- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 26, 24, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.98);
  transition: transform var(--transition);
}

.lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-latin);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(28, 26, 24, 0.45);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity var(--transition-fast), background var(--transition-fast);
}

.lightbox-nav:hover {
  opacity: 1;
  background: rgba(28, 26, 24, 0.7);
}

.lightbox-nav--prev {
  left: -3.25rem;
}

.lightbox-nav--next {
  right: -3.25rem;
}

@media (max-width: 768px) {
  .lightbox-nav--prev {
    left: 0.25rem;
  }
  .lightbox-nav--next {
    right: 0.25rem;
  }
}

.gallery-item-count {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(28, 26, 24, 0.72);
  color: #fff;
  font-size: 0.7rem;
  font-family: var(--font-latin);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.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;
}

/* ----- About redesign (approved editorial layout) ----- */
.about-redesign {
  --abo-cream: var(--cream);
  --abo-cream-2: var(--cream-2);
  --abo-line: var(--line);
  --abo-taupe: var(--taupe);
  --abo-taupe-deep: var(--taupe-deep);
  --abo-gold: var(--gold);
  --abo-ink: var(--ink);
  --abo-ink-dim: var(--ink-dim);
  --abo-font-latin: var(--font-latin);
  position: relative;
  z-index: 1;
  background: var(--abo-cream);
  color: var(--abo-ink);
  font-family: var(--font-sans);
  margin-top: calc(-1 * var(--nav-height));
  padding-top: 0;
}

.about-redesign.about-redesign--below-hero,
.about-redesign:has(.catalog-menu-page) {
  margin-top: 0;
}

.about-redesign .abo-lat {
  font-family: var(--abo-font-latin);
  direction: ltr;
  unicode-bidi: isolate;
}

.about-redesign .abo-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about-redesign .abo-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Visible by default (no-JS / failed chunks). Pending only after client JS mounts. */
.about-redesign .abo-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-redesign .abo-reveal.abo-reveal--pending {
  opacity: 0;
  transform: translateY(24px);
}

.about-redesign .abo-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.about-redesign .abo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 36px;
}

.about-redesign .abo-mark__ln {
  width: 34px;
  height: 1px;
  background: var(--abo-gold);
}

.about-redesign .abo-mark__dot {
  width: 5px;
  height: 5px;
  border: 1px solid var(--abo-gold);
  transform: rotate(45deg);
}

.about-redesign .abo-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  margin-bottom: 22px;
  text-align: center;
}

.about-redesign .abo-heading {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: center;
  color: var(--abo-ink);
}

.about-redesign .abo-body {
  font-size: 16px;
  line-height: 2.15;
  color: var(--abo-ink-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 18px;
}

.locale-fa .about-redesign .abo-body {
  text-align: right;
}

.locale-en .about-redesign .abo-body {
  text-align: left;
}

.about-redesign .abo-body:last-child {
  margin-bottom: 0;
}

/* Hero */
.about-redesign .abo-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 60px;
  position: relative;
  background: radial-gradient(70% 55% at 50% 38%, #efe4d0 0%, var(--abo-cream) 70%);
}

.about-redesign .abo-hero__eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.35em;
  color: var(--abo-taupe-deep);
  margin-bottom: 34px;
  opacity: 0;
  animation: abo-fade-up 1s ease 0.15s forwards;
}

.about-redesign .abo-hero__logo {
  width: min(230px, 42vw);
  height: auto;
  border-radius: 3px;
  box-shadow:
    0 30px 60px -25px rgba(43, 36, 29, 0.35),
    0 2px 8px rgba(43, 36, 29, 0.12);
  opacity: 0;
  animation: abo-fade-up 1.1s ease 0.35s forwards;
}

.about-redesign .abo-hero__tagline {
  margin-top: 34px;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--abo-gold);
  opacity: 0;
  animation: abo-fade-up 1.1s ease 0.6s forwards;
}

.about-redesign .abo-hero__sub {
  margin-top: 30px;
  max-width: 520px;
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--abo-ink-dim);
  font-weight: 300;
  text-align: center;
  opacity: 0;
  animation: abo-fade-up 1.1s ease 0.85s forwards;
}

.about-redesign .abo-scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--abo-ink-dim);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: abo-fade-up 1s ease 1.2s forwards;
}

.about-redesign .abo-scroll-cue__stem {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--abo-gold), transparent);
}

@keyframes abo-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-redesign .abo-scroll-cue {
  animation-name: abo-fade-up-center;
}

@keyframes abo-fade-up-center {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Split story — image + dark panel */
.about-redesign .abo-split {
  width: 100%;
}

.about-redesign .abo-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 62vh, 720px);
}

.about-redesign .abo-split__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #1f1a15;
}

.about-redesign .abo-split__img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.about-redesign .abo-split__placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(155deg, #3a3229 0%, #1f1a15 55%, #2b241d 100%);
}

.about-redesign .abo-split__panel {
  display: flex;
  align-items: center;
  background: var(--abo-ink);
  padding: clamp(48px, 8vw, 96px) clamp(40px, 7vw, 88px);
}

.about-redesign .abo-split__inner {
  max-width: 520px;
}

.about-redesign .abo-split__eyebrow {
  color: #c4a574;
  margin-bottom: 4px;
}

.about-redesign .abo-split__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--abo-cream);
  margin: 14px 0 22px;
  text-align: start;
}

.about-redesign .abo-split__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 2;
  font-weight: 300;
  color: rgba(246, 241, 231, 0.78);
  text-align: start;
}

.about-redesign .abo-split__cta {
  display: inline-block;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 400;
  color: var(--abo-cream);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.about-redesign .abo-split__cta:hover {
  color: #fff;
  opacity: 0.92;
}

/* Prose sections */
.about-redesign .abo-prose {
  padding: 140px 0 120px;
}

.about-redesign .abo-prose--stone {
  background: var(--abo-cream-2);
  padding: 130px 0;
}

.about-redesign .abo-prose__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Process */
.about-redesign .abo-process {
  background: var(--abo-cream-2);
  padding: 130px 0;
}

.about-redesign .abo-process__head {
  max-width: 620px;
  margin: 0 auto 76px;
  text-align: center;
}

.about-redesign .abo-process__lead {
  margin-top: 20px;
  color: var(--abo-ink-dim);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 2;
  text-align: center;
}

.about-redesign .abo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--abo-line);
  border-top: 1px solid var(--abo-line);
  border-bottom: 1px solid var(--abo-line);
}

.about-redesign .abo-step {
  background: var(--abo-cream-2);
  padding: 46px 26px;
  text-align: center;
}

.about-redesign .abo-step__num {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--abo-gold);
  display: block;
  margin-bottom: 22px;
}

.about-redesign .abo-step h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--abo-ink);
}

.about-redesign .abo-step p {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--abo-ink-dim);
  font-weight: 300;
  text-align: center;
}

.about-redesign .abo-process__closing {
  text-align: center;
  max-width: 620px;
  margin: 56px auto 0;
  color: var(--abo-ink-dim);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 2.1;
}

/* Quote */
.about-redesign .abo-quote {
  padding: 150px 0;
  text-align: center;
}

.about-redesign .abo-quote blockquote {
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 29px);
  line-height: 1.95;
  max-width: 760px;
  margin: 0 auto;
  color: var(--abo-ink);
  text-align: center;
}

.about-redesign .abo-quote cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.3em;
  color: var(--abo-taupe-deep);
}

/* Values */
.about-redesign .abo-values {
  padding: 130px 0;
}

.about-redesign .abo-values__head {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-redesign .abo-values__list {
  max-width: 640px;
  margin: 56px auto 0;
  border-top: 1px solid var(--abo-line);
}

.about-redesign .abo-value-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--abo-line);
}

.about-redesign .abo-value-row b {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--abo-ink);
  flex-shrink: 0;
  white-space: nowrap;
}

.about-redesign .abo-value-row span {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--abo-ink-dim);
  font-weight: 300;
}

.locale-fa .about-redesign .abo-value-row span {
  text-align: right;
}

.locale-en .about-redesign .abo-value-row span {
  text-align: left;
}

/* Closing */
.about-redesign .abo-closing {
  padding: 150px 0;
  text-align: center;
}

.about-redesign .abo-closing__inner {
  max-width: 620px;
  margin: 0 auto;
}

.about-redesign .abo-closing .abo-body {
  text-align: center;
  max-width: none;
}

.about-redesign .abo-closing__signoff {
  font-size: 15px;
  color: var(--abo-ink);
  font-weight: 400;
  margin-top: 20px;
}

/* ----- Shared site footer (About + all public pages) ----- */
.lat {
  font-family: var(--font-latin);
  direction: ltr;
  unicode-bidi: isolate;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--cream-2);
  padding: 88px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer__wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-footer__brand {
  text-align: center;
  margin-bottom: 28px;
}

.site-footer__tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.site-footer__nav {
  margin-bottom: 44px;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-list li {
  display: inline-flex;
  align-items: center;
}

.site-footer__nav-sep {
  margin: 0 12px;
  color: var(--ink-dim);
  opacity: 0.45;
  font-size: 14px;
  line-height: 1;
}

.site-footer__nav-link {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__nav-link:hover {
  color: var(--gold);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.site-footer__cell {
  display: grid;
  gap: 8px;
}

.site-footer__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--taupe-deep);
}

.site-footer__value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__value:hover {
  color: var(--gold);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.site-footer__cta-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.site-footer__cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--taupe-deep);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--ink-dim);
  flex-wrap: wrap;
  text-align: center;
}

.site-footer__bottom-sep {
  color: var(--ink-dim);
  opacity: 0.45;
}

.locale-fa .site-footer__cta {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* Legacy About footer class aliases (same layout) */
.about-redesign .abo-footer {
  background: var(--cream-2);
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}

.about-redesign .abo-footer .abo-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.about-redesign .abo-footer__brand {
  text-align: center;
  margin-bottom: 60px;
}

.about-redesign .abo-footer__logo {
  width: 64px;
  height: auto;
  margin: 0 auto 22px;
  display: block;
  border-radius: 2px;
}

.about-redesign .abo-footer__tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.about-redesign .abo-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-redesign .abo-footer__cell .abo-lat:first-child {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--taupe-deep);
  margin-bottom: 10px;
}

.about-redesign .abo-footer__cell a,
.about-redesign .abo-footer__cell span:not(.abo-lat) {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
}

.about-redesign .abo-footer__cell a:hover {
  color: var(--gold);
}

.about-redesign .abo-footer__social {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  margin-bottom: 34px;
}

.about-redesign .abo-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--ink-dim);
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .about-redesign .abo-split__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-redesign .abo-split__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .about-redesign .abo-split__panel {
    padding: clamp(40px, 8vw, 64px) clamp(28px, 6vw, 48px);
  }

  .about-redesign .abo-steps {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-redesign .abo-value-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-redesign .abo-value-row span {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .about-redesign .abo-steps {
    grid-template-columns: 1fr;
  }

  .about-redesign .abo-prose {
    padding: 100px 0 90px;
  }

  .about-redesign .abo-prose--stone,
  .about-redesign .abo-process,
  .about-redesign .abo-values {
    padding: 90px 0;
  }

  .about-redesign .abo-quote,
  .about-redesign .abo-closing {
    padding: 100px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__nav-sep {
    margin: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-redesign .abo-reveal,
  .about-redesign .abo-reveal.abo-reveal--pending {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-redesign .abo-hero__eyebrow,
  .about-redesign .abo-hero__logo,
  .about-redesign .abo-hero__tagline,
  .about-redesign .abo-hero__sub,
  .about-redesign .abo-scroll-cue {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .about-redesign .abo-scroll-cue {
    transform: translateX(-50%);
  }
}

/* ----- Editorial inner-page hero (Stones, Projects) ----- */
.about-redesign .abo-page-hero {
  padding: calc(var(--nav-height) + 72px) 0 100px;
  text-align: center;
  background: radial-gradient(70% 55% at 50% 38%, #efe4d0 0%, var(--abo-cream) 70%);
}

.about-redesign .abo-page-hero__inner {
  max-width: 680px;
}

.about-redesign .abo-page-hero__crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 28px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--abo-taupe-deep);
}

.about-redesign .abo-page-hero__crumb a {
  color: var(--abo-taupe-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-redesign .abo-page-hero__crumb a:hover {
  color: var(--abo-ink);
}

.about-redesign .abo-page-hero__intro {
  font-size: 16px;
  line-height: 2.15;
  color: var(--abo-ink-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.about-redesign .abo-page-hero__crumb-current {
  color: var(--abo-ink-dim);
}

.about-redesign .abo-page-hero__crumb a:hover {
  color: var(--abo-ink);
}

/* ----- Detail pages (stones / projects) ----- */
.about-redesign .abo-page-hero--compact {
  padding-bottom: 56px;
}

.about-redesign .abo-page-hero--compact .abo-heading {
  margin-bottom: 14px;
}

.detail-meta {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--abo-ink-dim);
  font-weight: 300;
  text-align: center;
  margin: 0 auto 10px;
  max-width: 520px;
}

.about-redesign .abo-page-hero--compact .abo-page-hero__intro {
  margin-top: 6px;
}

.detail-section {
  padding: 0 0 100px;
  background: var(--abo-cream);
}

.detail-section__inner {
  max-width: 920px;
}

.detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--abo-cream-2);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.detail-gallery__item--cover {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.detail-gallery__item:hover {
  opacity: 0.92;
}

.detail-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: grayscale(8%);
}

.detail-gallery__item:hover img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

.detail-section__back {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .detail-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .detail-gallery__item--cover {
    aspect-ratio: 4 / 3;
  }

  .about-redesign .abo-page-hero--compact {
    padding-bottom: 40px;
  }
}

/* ----- Editorial featured sections (Home) ----- */
.about-redesign .abo-featured {
  padding: 120px 0 100px;
  background: var(--abo-cream);
}

.about-redesign .abo-featured--stone {
  background: var(--abo-cream-2);
  --menu-card-shadow: 0 16px 40px -24px rgba(43, 36, 29, 0.22);
  --menu-card-shadow-hover: 0 24px 52px -18px rgba(43, 36, 29, 0.32);
}

.abo-featured--stone .abo-featured__cta {
  padding-top: 0.5rem;
}

.about-redesign .abo-featured__head {
  max-width: 620px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.about-redesign .abo-featured__intro {
  margin-top: 8px;
  font-size: 15.5px;
  line-height: 2;
  color: var(--abo-ink-dim);
  font-weight: 300;
  text-align: center;
}

.about-redesign .abo-featured__cta {
  text-align: center;
  margin-top: 56px;
}

.about-redesign .abo-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--abo-taupe-deep);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--abo-line);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-redesign .abo-cta:hover {
  color: var(--abo-gold);
  border-color: var(--abo-gold);
}

.locale-fa .about-redesign .abo-cta,
.locale-fa .home-heritage__cta,
.locale-fa .home-hero__btn,
.locale-fa .home-closing__btn,
.locale-fa .home-conversion__btn,
.locale-fa .inquiry-form__submit {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* ----- Featured editorial mosaic (Home) ----- */
.featured-mosaic {
  width: 100%;
}

.featured-mosaic__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.featured-mosaic__ornament-line {
  width: clamp(48px, 8vw, 88px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(185, 143, 82, 0.55) 35%,
    rgba(185, 143, 82, 0.55) 65%,
    transparent
  );
}

[dir="rtl"] .featured-mosaic__ornament-line {
  background: linear-gradient(
    to left,
    transparent,
    rgba(185, 143, 82, 0.55) 35%,
    rgba(185, 143, 82, 0.55) 65%,
    transparent
  );
}

.featured-mosaic__ornament-diamond {
  width: 5px;
  height: 5px;
  border: 1px solid var(--abo-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.featured-mosaic__grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(140px, auto);
}

.featured-mosaic__item {
  min-width: 0;
}

.featured-mosaic__item--0 {
  grid-column: 1 / span 7;
  grid-row: span 2;
}

.featured-mosaic__item--1 {
  grid-column: 8 / span 5;
}

.featured-mosaic__item--2 {
  grid-column: 8 / span 5;
}

.featured-mosaic__item--3 {
  grid-column: 1 / span 4;
}

.featured-mosaic__item--4 {
  grid-column: 5 / span 4;
}

.featured-mosaic__item--4:last-child:nth-child(5) {
  grid-column: 5 / span 8;
}

.featured-mosaic__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-mosaic__item:hover .featured-mosaic__link {
  transform: translateY(-5px);
}

.featured-mosaic__frame {
  position: relative;
  padding: clamp(12px, 1.6vw, 18px);
  flex: 1;
  background: linear-gradient(
    145deg,
    rgba(255, 252, 246, 0.65) 0%,
    rgba(239, 230, 214, 0.2) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 24px 56px -36px rgba(43, 36, 29, 0.28);
  transition: box-shadow 0.55s ease;
}

.featured-mosaic__item:hover .featured-mosaic__frame {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 32px 72px -28px rgba(43, 36, 29, 0.34);
}

.featured-mosaic__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 3;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    opacity 0.45s ease;
}

.featured-mosaic__corner--tl {
  top: 0;
  inset-inline-start: 0;
  border-top: 1px solid var(--abo-gold);
  border-inline-start: 1px solid var(--abo-gold);
  opacity: 0.9;
}

.featured-mosaic__corner--tr {
  top: 0;
  inset-inline-end: 0;
  border-top: 1px solid rgba(185, 143, 82, 0.35);
  border-inline-end: 1px solid rgba(185, 143, 82, 0.35);
  opacity: 0.55;
}

.featured-mosaic__corner--bl {
  bottom: 0;
  inset-inline-start: 0;
  border-bottom: 1px solid rgba(42, 36, 28, 0.14);
  border-inline-start: 1px solid rgba(42, 36, 28, 0.14);
  opacity: 0.55;
}

.featured-mosaic__corner--br {
  bottom: 0;
  inset-inline-end: 0;
  border-bottom: 1px solid var(--abo-line);
  border-inline-end: 1px solid var(--abo-line);
  opacity: 0.7;
}

.featured-mosaic__item:hover .featured-mosaic__corner {
  width: 32px;
  height: 32px;
  opacity: 1;
}

.featured-mosaic__item:hover .featured-mosaic__corner--tr,
.featured-mosaic__item:hover .featured-mosaic__corner--bl {
  border-color: rgba(185, 143, 82, 0.55);
}

.featured-mosaic__media {
  position: relative;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  background: var(--abo-cream-2);
  isolation: isolate;
}

.featured-mosaic__item--0 .featured-mosaic__media {
  min-height: clamp(340px, 44vw, 560px);
}

.featured-mosaic__item--1 .featured-mosaic__media,
.featured-mosaic__item--2 .featured-mosaic__media {
  min-height: clamp(158px, 19vw, 252px);
}

.featured-mosaic__item--3 .featured-mosaic__media,
.featured-mosaic__item--4 .featured-mosaic__media {
  min-height: clamp(188px, 23vw, 292px);
}

.featured-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
  filter: grayscale(18%) contrast(1.02);
}

.featured-mosaic__item:hover .featured-mosaic__media img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.04);
}

.featured-mosaic__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(43, 36, 29, 0.16) 100%),
    linear-gradient(to top, rgba(43, 36, 29, 0.42) 0%, transparent 52%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: opacity 0.5s ease;
}

.featured-mosaic__item--hero .featured-mosaic__vignette {
  opacity: 0.72;
}

.featured-mosaic__item:hover .featured-mosaic__vignette {
  opacity: 0.82;
}

.featured-mosaic__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 36%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 64%
  );
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.featured-mosaic__item:hover .featured-mosaic__sheen {
  transform: translateX(120%);
}

.featured-mosaic__watermark {
  position: absolute;
  top: clamp(10px, 1.5vw, 18px);
  inset-inline-end: clamp(10px, 1.5vw, 18px);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(246, 241, 231, 0.14);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.featured-mosaic__item--hero .featured-mosaic__watermark {
  color: rgba(246, 241, 231, 0.2);
}

.featured-mosaic__count {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--abo-ink);
  background: rgba(246, 241, 231, 0.94);
  border: 1px solid rgba(185, 143, 82, 0.28);
  z-index: 4;
}

.featured-mosaic__body {
  padding: 18px 8px 0;
  text-align: start;
  position: relative;
}

.featured-mosaic__body::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--abo-gold);
  margin-bottom: 14px;
  opacity: 0.85;
}

.featured-mosaic__body--overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 4;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 2.4vw, 28px);
  background: linear-gradient(
    to top,
    rgba(35, 29, 23, 0.82) 0%,
    rgba(35, 29, 23, 0.45) 48%,
    transparent 100%
  );
}

.featured-mosaic__body--overlay::before {
  background: rgba(246, 241, 231, 0.75);
  width: 36px;
}

.featured-mosaic__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  margin-bottom: 10px;
}

.featured-mosaic__body--overlay .featured-mosaic__eyebrow {
  color: rgba(246, 241, 231, 0.72);
}

.featured-mosaic__name {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--abo-ink);
  margin: 0 0 8px;
}

.featured-mosaic__item--hero .featured-mosaic__name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.featured-mosaic__body--overlay .featured-mosaic__name {
  color: var(--abo-cream);
  margin-bottom: 6px;
}

.featured-mosaic__meta {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--abo-ink-dim);
  font-weight: 300;
}

.featured-mosaic__body--overlay .featured-mosaic__meta {
  color: rgba(246, 241, 231, 0.72);
  font-size: 12px;
}

.locale-fa .featured-mosaic__meta {
  font-family: var(--font-sans);
}

.featured-mosaic__cue {
  position: absolute;
  top: clamp(12px, 1.6vw, 18px);
  inset-inline-end: clamp(12px, 1.6vw, 18px);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    color 0.35s ease;
  z-index: 2;
}

.featured-mosaic__item--hero .featured-mosaic__cue {
  top: auto;
  bottom: clamp(12px, 1.6vw, 18px);
  color: rgba(246, 241, 231, 0.55);
}

.featured-mosaic__item:hover .featured-mosaic__cue {
  opacity: 1;
  transform: translateY(0);
  color: var(--abo-gold);
}

.featured-mosaic__item--hero:hover .featured-mosaic__cue {
  color: rgba(246, 241, 231, 0.9);
}

.about-redesign .abo-featured--stone .featured-mosaic__frame {
  background: linear-gradient(
    145deg,
    rgba(255, 252, 246, 0.55) 0%,
    rgba(232, 222, 206, 0.28) 100%
  );
}

@media (max-width: 960px) {
  .featured-mosaic__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .featured-mosaic__item--0,
  .featured-mosaic__item--1,
  .featured-mosaic__item--2,
  .featured-mosaic__item--3,
  .featured-mosaic__item--4 {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .featured-mosaic__item--0 .featured-mosaic__media {
    min-height: clamp(300px, 72vw, 460px);
  }

  .featured-mosaic__item--1 .featured-mosaic__media,
  .featured-mosaic__item--2 .featured-mosaic__media,
  .featured-mosaic__item--3 .featured-mosaic__media,
  .featured-mosaic__item--4 .featured-mosaic__media {
    min-height: clamp(230px, 58vw, 340px);
  }

  .featured-mosaic__watermark {
    font-size: clamp(44px, 14vw, 72px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-mosaic__link,
  .featured-mosaic__corner,
  .featured-mosaic__frame,
  .featured-mosaic__media img,
  .featured-mosaic__vignette,
  .featured-mosaic__sheen,
  .featured-mosaic__cue {
    transition: none;
  }

  .featured-mosaic__item:hover .featured-mosaic__link {
    transform: none;
  }

  .featured-mosaic__item:hover .featured-mosaic__sheen {
    transform: translateX(-120%);
  }
}

/* ----- Editorial quote band (Home break) ----- */
.about-redesign .abo-quote-band {
  padding: 100px 0;
  text-align: center;
  background: var(--abo-cream-2);
  border-top: 1px solid var(--abo-line);
  border-bottom: 1px solid var(--abo-line);
}

.about-redesign .abo-quote-band blockquote {
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.95;
  max-width: 640px;
  margin: 0 auto;
  color: var(--abo-ink);
  text-align: center;
}

/* ----- Editorial gallery sections (Stones, Projects) ----- */
.about-redesign .abo-gallery-section {
  padding: 80px 0 120px;
  background: var(--abo-cream);
}

.about-redesign .abo-gallery-section--stone {
  background: var(--abo-cream-2);
}

/* Carousel + gallery overrides inside editorial pages */
.about-redesign .carousel-frame {
  --carousel-pad: max(1.25rem, calc((100vw - 1080px) / 2 + 1.25rem));
}

.about-redesign .carousel__card-media {
  background: var(--abo-cream);
}

.about-redesign .carousel__card-name {
  color: var(--abo-ink);
}

.about-redesign .carousel__card-detail {
  color: var(--abo-ink-dim);
}

.about-redesign .carousel__card-count {
  color: var(--abo-ink-dim);
  background: rgba(246, 241, 231, 0.9);
}

.about-redesign .carousel__nav {
  border-color: var(--abo-line);
  color: var(--abo-ink-dim);
  background: rgba(246, 241, 231, 0.92);
}

.about-redesign .carousel__nav:hover:not(:disabled) {
  color: var(--abo-gold);
  border-color: var(--abo-gold);
}

/* ----- Editorial gallery (Stones & Projects) ----- */
.gallery-editorial {
  width: 100%;
}

.gallery-filters {
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.gallery-filters__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 0;
}

.gallery-filters__item {
  display: inline-flex;
  align-items: center;
}

.gallery-filters__sep {
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border: 1px solid var(--taupe);
  transform: rotate(45deg);
  opacity: 0.55;
  flex-shrink: 0;
}

.gallery-filters__btn {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.locale-en .gallery-filters__btn {
  font-family: var(--font-latin);
}

.gallery-filters__btn:hover {
  color: var(--ink);
}

.gallery-filters__btn.is-active {
  color: var(--ink);
}

.gallery-filters__btn.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

.gallery-card {
  display: flex;
  flex-direction: column;
}

.gallery-card a,
.gallery-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.gallery-card:hover a,
.gallery-card:hover .gallery-card__link {
  transform: translateY(-5px);
}

.gallery-card__frame {
  position: relative;
  padding: 13px;
  background: transparent;
  border: none;
  transition: transform 0.35s ease;
}

.gallery-card__frame::before,
.gallery-card__frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  transition:
    width 0.4s ease,
    height 0.4s ease,
    border-color 0.35s ease,
    opacity 0.35s ease;
}

.gallery-card__frame::before {
  top: 0;
  inset-inline-start: 0;
  border-top: 1px solid var(--gold);
  border-inline-start: 1px solid var(--gold);
  opacity: 0.75;
}

.gallery-card__frame::after {
  bottom: 0;
  inset-inline-end: 0;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  opacity: 0.55;
}

.gallery-card:hover .gallery-card__frame::before {
  width: 30px;
  height: 30px;
  opacity: 1;
}

.gallery-card:hover .gallery-card__frame::after {
  width: 30px;
  height: 30px;
  border-color: rgba(185, 143, 82, 0.5);
  opacity: 1;
}

.gallery-card:hover .gallery-card__frame {
  transform: none;
}

.gallery-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}

.gallery-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 36, 29, 0.22) 0%,
    rgba(43, 36, 29, 0.04) 38%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-card__shade {
  opacity: 1;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease, filter 0.65s ease;
  filter: grayscale(14%) contrast(1.02);
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.045);
  filter: grayscale(0%) contrast(1);
}

.gallery-card__count {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-latin);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  background: rgba(246, 241, 231, 0.88);
  border: none;
  z-index: 2;
}

.gallery-card__body {
  padding: 20px 8px 6px;
  text-align: start;
}

.gallery-card__body::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
  transition: width 0.35s ease;
}

.gallery-card:hover .gallery-card__body::before {
  width: 48px;
}

.gallery-card__eyebrow {
  display: block;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 10px;
  direction: ltr;
  unicode-bidi: isolate;
}

.gallery-card__name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 12px;
}

.gallery-card__meta {
  display: block;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-dim);
  font-weight: 300;
}

.gallery-card__meta + .gallery-card__meta {
  margin-top: 3px;
}

.locale-fa .gallery-card__meta {
  font-family: var(--font-sans);
}

.about-redesign .gallery-filters {
  border-bottom-color: var(--abo-line);
}

.about-redesign .gallery-filters__sep {
  border-color: var(--abo-taupe);
}

.about-redesign .gallery-filters__btn {
  color: var(--abo-taupe-deep);
}

.about-redesign .gallery-filters__btn:hover,
.about-redesign .gallery-filters__btn.is-active {
  color: var(--abo-ink);
}

.about-redesign .gallery-filters__btn.is-active::after {
  background: var(--abo-gold);
}

.about-redesign .gallery-card__frame::before {
  border-top-color: var(--abo-gold);
  border-inline-start-color: var(--abo-gold);
}

.about-redesign .gallery-card__frame::after {
  border-bottom-color: var(--abo-line);
  border-inline-end-color: var(--abo-line);
}

.about-redesign .gallery-card:hover .gallery-card__frame::after {
  border-bottom-color: rgba(185, 143, 82, 0.5);
  border-inline-end-color: rgba(185, 143, 82, 0.5);
}

.about-redesign .gallery-card__media {
  background: var(--abo-cream);
}

.about-redesign .gallery-card__body::before {
  background: var(--abo-gold);
}

.about-redesign .gallery-card__eyebrow {
  color: var(--abo-taupe-deep);
}

.about-redesign .gallery-card__name {
  color: var(--abo-ink);
}

.about-redesign .gallery-card__meta {
  color: var(--abo-ink-dim);
}

.about-redesign .gallery-card__count {
  color: var(--abo-ink-dim);
  background: rgba(246, 241, 231, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card a,
  .gallery-card__frame,
  .gallery-card__frame::before,
  .gallery-card__frame::after,
  .gallery-card__media img,
  .gallery-card__shade,
  .gallery-card__body::before {
    transition: none;
  }

  .gallery-card:hover a {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.15rem, 1.8vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-filters__sep {
    margin: 0 8px;
  }

  .gallery-filters__btn {
    font-size: 10px;
    letter-spacing: 0.22em;
    padding: 8px 10px;
  }

  .gallery-filters__btn.is-active::after {
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 520px) {
  .gallery-filters {
    margin-bottom: 40px;
  }

  .gallery-filters__track {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-filters__track::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 520px) {
  .about-redesign .abo-page-hero {
    padding: calc(var(--nav-height) + 48px) 0 72px;
  }

  .about-redesign .abo-featured {
    padding: 90px 0 80px;
  }

  .about-redesign .abo-quote-band {
    padding: 72px 0;
  }

  .about-redesign .abo-gallery-section {
    padding: 60px 0 90px;
  }
}

/* ===== Home redesign (Framer-inspired, Bestone editorial) ===== */
.hero .home-hero__content {
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.hero .home-hero__brand {
  font-size: 11px;
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-bottom: clamp(18px, 3vw, 28px);
}

.hero .home-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  color: var(--text);
  text-wrap: balance;
}

.hero .home-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.85;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-hero__btn--primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.home-hero__btn--primary:hover {
  background: #c99a5a;
  border-color: #c99a5a;
  transform: translateY(-2px);
}

.home-hero__btn--ghost {
  background: rgba(246, 241, 231, 0.55);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.home-hero__btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.home-redesign .home-section-head {
  max-width: 620px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.home-redesign .home-section-head--compact {
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* Signature Menu–style section heads (Cafenza-inspired) */
.signature-head {
  max-width: 720px;
  margin: 0 auto clamp(44px, 5.5vw, 64px);
  text-align: center;
}

.signature-head__label {
  margin: 0 0 clamp(10px, 1.5vw, 16px);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--abo-taupe-deep);
  letter-spacing: 0.02em;
}

.signature-head__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: var(--abo-ink);
  text-wrap: balance;
}

.locale-fa .signature-head__title {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
}

.locale-fa .signature-head__label {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--abo-ink-dim);
  letter-spacing: 0;
}

/* Workspace — Cafenza "Designed for Work, Comfort & Inspiration" (2×2 grid) */
.home-workspace {
  --workspace-panel-bg: #efe8dc;
  --workspace-title: #1a3c34;
  padding: clamp(72px, 9vw, 108px) 0 clamp(80px, 10vw, 112px);
  background: var(--abo-cream);
  border-top: 1px solid var(--abo-line);
}

.home-workspace__head {
  max-width: min(760px, 100%);
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.home-workspace__eyebrow {
  margin: 0 0 clamp(12px, 1.8vw, 18px);
  font-family: var(--font-latin);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
}

.locale-fa .home-workspace__eyebrow {
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}

.home-workspace__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 500;
  line-height: 1.28;
  color: var(--workspace-title);
  text-wrap: balance;
}

.locale-fa .home-workspace__title {
  line-height: 1.5;
  text-wrap: pretty;
}

.home-workspace__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 24px);
  align-items: stretch;
}

.home-workspace__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 32px);
  min-height: clamp(280px, 32vw, 360px);
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--workspace-panel-bg);
  border-radius: 16px;
}

.home-workspace__panel-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.home-workspace__panel-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--abo-ink);
  text-wrap: balance;
}

.locale-fa .home-workspace__panel-title {
  line-height: 1.65;
  text-wrap: pretty;
}

.home-workspace__panel-body {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.85;
  font-weight: 300;
  color: var(--abo-ink-dim);
}

.locale-fa .home-workspace__panel-body {
  line-height: 1.95;
  font-size: 14.5px;
}

.home-workspace__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.home-workspace__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--abo-ink-dim);
}

.home-workspace__badge::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(163, 136, 96, 0.45);
  background: rgba(255, 252, 246, 0.85)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a38860' stroke-width='1.5'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E")
    center / 10px no-repeat;
}

[dir="rtl"] .home-workspace__badge::before {
  transform: scaleX(-1);
}

.locale-fa .home-workspace__badge {
  font-family: var(--font-sans);
  font-size: 13px;
}

.home-workspace__media {
  min-height: clamp(280px, 32vw, 360px);
}

.home-workspace__media-frame {
  height: 100%;
  min-height: inherit;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(163, 136, 96, 0.22);
  box-sizing: border-box;
}

.home-workspace__media-frame img {
  width: 100%;
  height: 100%;
  min-height: calc(clamp(280px, 32vw, 360px) - 28px);
  object-fit: cover;
  display: block;
}

/* Highlights — Cafenza sticky stack + scroll scale */
.home-highlights {
  --highlight-sticky-base: 100px;
  --highlight-sticky-step: 60px;
  --highlight-card-height: 720px;
  background: var(--abo-cream);
  padding: clamp(72px, 9vw, 108px) 0 clamp(48px, 6vw, 72px);
}

.home-highlights-scroll--mobile {
  --highlight-sticky-base: 88px;
  --highlight-sticky-step: 44px;
  --highlight-card-height: clamp(500px, 132vw, 580px);
}

.home-highlights-scroll__head {
  position: relative;
  z-index: 20;
  margin-bottom: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(8px, 1.5vw, 16px);
  background: var(--abo-cream);
}

.home-highlights-scroll--mobile .home-highlights-scroll__head {
  margin-bottom: clamp(28px, 6vw, 40px);
}

.home-highlights-scroll__head .signature-head {
  margin-bottom: 0;
}

.home-highlights-scroll__runway {
  position: relative;
  z-index: 1;
}

.home-highlights-scroll__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-highlights-scroll:not(.home-highlights-scroll--flat) .home-highlights-scroll__stack {
  min-height: var(--highlight-runway, 3072px);
  padding-top: clamp(12px, 2vw, 24px);
}

.home-highlight-card {
  width: 100%;
  max-width: min(100%, 1200px);
  margin-inline: auto;
  will-change: transform;
}

.home-highlights-scroll:not(.home-highlights-scroll--flat) .home-highlight-card {
  position: sticky;
  top: calc(var(--highlight-sticky-base, 100px) + var(--highlight-index, 0) * var(--highlight-sticky-step, 60px));
  height: var(--highlight-card-height, 720px);
  z-index: calc(10 + var(--highlight-index, 0));
  transform-origin: center top;
}

.home-highlights-scroll--mobile:not(.home-highlights-scroll--flat) .home-highlight-card {
  max-width: min(100%, 360px);
}

.home-highlight-card__frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 52vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background: var(--abo-cream-2);
  box-shadow: 0 28px 64px -36px rgba(35, 29, 23, 0.35);
}

.home-highlights-scroll:not(.home-highlights-scroll--flat) .home-highlight-card__frame {
  min-height: 0;
  height: 100%;
}

.home-highlight-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-highlight-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--abo-cream-2), #e5d9c6);
}

.home-highlight-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.62) 0%, rgba(20, 16, 12, 0.18) 28%, transparent 52%),
    linear-gradient(to top, rgba(20, 16, 12, 0.35) 0%, transparent 40%);
  pointer-events: none;
}

.home-highlight-card__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(22px, 3vw, 36px) clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
  text-align: center;
  pointer-events: none;
}

.home-highlight-card__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.locale-fa .home-highlight-card__title {
  max-width: 14ch;
  line-height: 1.45;
  text-wrap: pretty;
}

.home-highlight-card__desc {
  margin: 0;
}

.home-highlights-scroll--mobile .home-highlight-card__title {
  font-size: clamp(1.15rem, 5.2vw, 1.45rem);
  max-width: 12ch;
}

.home-highlights-scroll--mobile .home-highlight-card__copy {
  padding-top: clamp(16px, 4vw, 22px);
}

@media (max-width: 809px) {
  .home-highlights {
    padding: clamp(48px, 10vw, 72px) 0 clamp(36px, 8vw, 56px);
  }

  .home-highlights-scroll--mobile .home-highlights-scroll__runway.abo-wrap {
    padding-inline: clamp(16px, 5vw, 24px);
  }
}

.home-highlights-scroll--flat .home-highlights-scroll__stack {
  min-height: 0;
  gap: clamp(16px, 3vw, 24px);
}

.home-highlights-scroll--flat .home-highlight-card {
  position: relative;
  top: auto !important;
  height: auto;
  transform: none !important;
}

.home-highlights-scroll--flat .home-highlight-card__copy {
  align-items: flex-start;
}

/* Heritage */
.home-heritage {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--abo-cream-2);
  border-top: 1px solid var(--abo-line);
  border-bottom: 1px solid var(--abo-line);
}

.home-heritage__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-heritage__intro {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.home-heritage__title {
  margin-bottom: 16px;
}

.home-heritage__body {
  font-size: 15.5px;
  line-height: 2;
  color: var(--abo-ink-dim);
  font-weight: 300;
  margin: 0 auto 24px;
  max-width: 620px;
}

.home-heritage__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--abo-ink);
  border: 1px solid var(--abo-ink);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.home-heritage__cta:hover {
  background: var(--abo-ink);
  color: var(--abo-cream);
}

.locale-fa .home-heritage__cta {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
}

.locale-fa .home-heritage .abo-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  direction: rtl;
  unicode-bidi: isolate;
}

.locale-en .home-heritage .abo-eyebrow {
  font-family: var(--font-latin);
  letter-spacing: 0.28em;
}

.home-heritage__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--abo-line);
  text-align: center;
}

.home-heritage__stat-value {
  display: block;
  font-family: var(--font-latin);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--abo-ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.home-heritage__stat-label {
  display: block;
  font-size: 13px;
  line-height: 1.75;
  color: var(--abo-ink-dim);
  font-weight: 300;
}

.locale-fa .home-heritage__stat-value {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
}

.locale-fa .home-heritage__stat-label {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: var(--abo-ink-dim);
}

/* Signature menu — Framer Cafenza: scroll-driven 3D cards, sticky section */
.abo-featured--menu {
  background: var(--abo-cream);
  /* Shadow-only cards (option A) */
  --menu-card-bg: transparent;
  --menu-card-pad: 0;
  --menu-card-outer-r: 8px;
  --menu-card-inner-r: 8px;
  --menu-card-h: 420px;
  --menu-card-shadow: 0 16px 40px -24px rgba(43, 36, 29, 0.22);
  --menu-card-shadow-hover: 0 24px 52px -18px rgba(43, 36, 29, 0.32);
}

.home-menu-scroll {
  position: relative;
  height: clamp(155vh, 185vh, 240vh);
  margin-bottom: -2rem;
}

.home-menu-scroll__sticky {
  position: sticky;
  top: calc(var(--nav-height, 72px) + 12px);
  z-index: 1;
  padding-inline: 0;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.home-menu-scroll__sticky .signature-head {
  width: min(720px, calc(100% - 2.5rem));
  padding-inline: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  box-sizing: border-box;
}

.home-menu-scroll__stage {
  --home-menu-pad: max(1.25rem, calc((100vw - 1200px) / 2 + 1.25rem));
  --home-menu-card-w: 272px;
  --home-menu-gap: 24px;
  position: relative;
  padding: 0 var(--home-menu-pad);
  perspective: 1600px;
  perspective-origin: 50% 42%;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.home-menu-scroll__track {
  display: grid;
  grid-template-columns: repeat(var(--menu-card-count, 4), var(--home-menu-card-w));
  gap: var(--home-menu-gap);
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  transform-style: preserve-3d;
}

.home-menu-scroll__item {
  width: var(--home-menu-card-w);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Stone cards — shadow only, full-bleed image (option A) */
.home-menu-card--scroll {
  display: block;
  width: 100%;
  height: var(--menu-card-h, 420px);
  box-sizing: border-box;
  padding: 0;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: var(--menu-card-outer-r, 8px);
  overflow: hidden;
  box-shadow: var(--menu-card-shadow, 0 16px 40px -24px rgba(43, 36, 29, 0.22));
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.home-menu-card--scroll:hover {
  box-shadow: var(--menu-card-shadow-hover, 0 24px 52px -18px rgba(43, 36, 29, 0.32));
  transform: translateY(-3px);
}

.home-menu-card--scroll .home-menu-card__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 0;
  box-shadow: none;
}

.home-menu-card--scroll .home-menu-card__shade--mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.28) 32%,
    rgba(0, 0, 0, 0.06) 55%,
    transparent 75%
  );
}

.home-menu-card--scroll .home-menu-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.home-menu-card--scroll .home-menu-card__copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2.5vw, 24px) clamp(14px, 2vw, 18px);
  text-align: center;
}

.home-menu-card--scroll .home-menu-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

.home-menu-card--scroll .home-menu-card__meta {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.locale-fa .home-menu-card--scroll .home-menu-card__title,
.locale-fa .home-menu-card--scroll .home-menu-card__meta {
  font-family: var(--font-sans);
}

/* Tablet + mobile: flat horizontal scroll (Framer ≤1199px) */
.home-menu-scroll--flat {
  height: auto;
  margin-bottom: 0;
}

.home-menu-scroll--flat .home-menu-scroll__sticky {
  position: relative;
  top: auto;
  padding-inline: 0;
}

.home-menu-scroll--flat .home-menu-scroll__sticky .signature-head {
  width: min(720px, calc(100% - 2.5rem));
  padding-inline: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  box-sizing: border-box;
}

.home-menu-scroll--flat .home-menu-scroll__stage {
  perspective: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  justify-content: flex-start;
  padding: 0;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--home-menu-pad, 1.25rem);
  overscroll-behavior-x: contain;
}

.home-menu-scroll--flat .home-menu-scroll__stage::-webkit-scrollbar {
  display: none;
}

.home-menu-scroll--flat .home-menu-scroll__track {
  display: flex;
  grid-template-columns: none;
  width: max-content;
  max-width: none;
  padding-inline: var(--home-menu-pad, 1.25rem);
  gap: 16px;
}

.home-menu-scroll--flat .home-menu-scroll__item {
  flex: 0 0 auto;
  width: var(--home-menu-card-w);
  scroll-snap-align: start;
  opacity: 1 !important;
  transform: none !important;
}

.home-menu-scroll--flat .home-menu-card--scroll {
  height: auto;
  aspect-ratio: 272 / 420;
}

/* Tablet: ~2 cards visible */
.home-menu-scroll--tablet {
  --home-menu-pad: 1.25rem;
  --home-menu-card-w: clamp(200px, calc((100vw - 2.5rem - 16px) / 2), 272px);
}

/* Mobile: Cafenza-style — one dominant card, small peek of next */
.home-menu-scroll--mobile {
  --home-menu-pad: 1.25rem;
  --home-menu-card-w: min(350px, calc(100vw - 2.5rem));
}

.home-menu-scroll--mobile .home-menu-scroll__sticky .signature-head {
  margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
  padding-inline: var(--home-menu-pad);
}

.home-menu-scroll--mobile .home-menu-scroll__track {
  gap: 14px;
  padding-inline: var(--home-menu-pad);
}

.home-menu-scroll--mobile .home-menu-card--scroll {
  height: auto;
  aspect-ratio: 272 / 420;
}

.home-menu-scroll--mobile .home-menu-card--scroll .home-menu-card__title {
  font-size: clamp(1.05rem, 4.5vw, 1.2rem);
}

.home-menu-scroll--mobile .home-menu-card--scroll .home-menu-card__copy {
  padding: clamp(16px, 4vw, 22px) clamp(14px, 3.5vw, 18px);
}

@media (max-width: 1199px) {
  .home-menu-scroll {
    height: auto;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-menu-scroll .home-menu-scroll__sticky {
    position: relative;
    top: auto;
    padding-inline: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-menu-scroll .home-menu-scroll__sticky .signature-head {
    width: min(720px, calc(100% - 2.5rem));
    padding-inline: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
    box-sizing: border-box;
  }

  .home-menu-scroll .home-menu-scroll__stage {
    --home-menu-pad: 1.25rem;
    --home-menu-card-w: clamp(200px, calc((100vw - 2.5rem - 16px) / 2), 272px);
    perspective: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    padding: 0;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--home-menu-pad);
    overscroll-behavior-x: contain;
  }

  .home-menu-scroll .home-menu-scroll__stage::-webkit-scrollbar {
    display: none;
  }

  .home-menu-scroll .home-menu-scroll__track {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    max-width: none;
    padding-inline: var(--home-menu-pad);
    gap: 16px;
  }

  .home-menu-scroll .home-menu-scroll__item {
    flex: 0 0 auto;
    width: var(--home-menu-card-w);
    scroll-snap-align: start;
    transform: none !important;
    opacity: 1 !important;
  }

  .home-menu-scroll .home-menu-card--scroll {
    height: auto;
    aspect-ratio: 272 / 420;
  }

  .abo-featured--menu .abo-featured__cta {
    padding-top: 0.5rem;
  }
}

@media (max-width: 809px) {
  .home-menu-scroll .home-menu-scroll__stage {
    --home-menu-pad: 1.25rem;
    --home-menu-card-w: min(350px, calc(100vw - 2.5rem));
    scroll-padding-inline: 1.25rem;
  }

  .home-menu-scroll .home-menu-scroll__sticky .signature-head {
    margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
    padding-inline: 1.25rem;
  }

  .home-menu-scroll .home-menu-scroll__track {
    gap: 14px;
    padding-inline: 1.25rem;
  }

  .home-menu-scroll .home-menu-card--scroll .home-menu-card__title {
    font-size: clamp(1.05rem, 4.5vw, 1.2rem);
  }

  .home-menu-scroll .home-menu-card--scroll .home-menu-card__meta {
    font-size: 0.9rem;
  }

  .home-menu-scroll .home-menu-card--scroll .home-menu-card__copy {
    padding: clamp(16px, 4vw, 22px) clamp(14px, 3.5vw, 18px);
  }

  .home-menu-scroll .home-menu-card--scroll .home-menu-card__title,
  .home-menu-scroll .home-menu-card--scroll .home-menu-card__meta {
    overflow-wrap: anywhere;
  }

  .home-redesign .abo-featured--menu {
    padding-top: clamp(56px, 12vw, 80px);
    padding-bottom: clamp(48px, 10vw, 72px);
  }
}

/* Drag-scroll row variant (projects, etc.) */
.home-menu-row {
  --home-menu-pad: max(1.25rem, calc((100vw - 1200px) / 2 + 1.25rem));
  --home-menu-card-w: clamp(280px, 38vw, 380px);
  --home-menu-card-w-hover: clamp(340px, 48vw, 460px);
  position: relative;
  padding: 0 var(--home-menu-pad) 4px;
  margin: 0;
}

.home-menu-row::before,
.home-menu-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 7vw, 80px);
  z-index: 2;
  pointer-events: none;
}

.home-menu-row::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--abo-cream), transparent);
}

.home-menu-row::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, var(--abo-cream), transparent);
}

[dir="rtl"] .home-menu-row::before {
  background: linear-gradient(to left, var(--abo-cream), transparent);
}

[dir="rtl"] .home-menu-row::after {
  background: linear-gradient(to right, var(--abo-cream), transparent);
}

.home-menu-row__track {
  display: flex;
  gap: clamp(20px, 2.5vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--home-menu-pad);
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}

.home-menu-row__track::-webkit-scrollbar {
  display: none;
}

.home-menu-row__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.home-menu-row__track.is-dragging a {
  pointer-events: none;
}

.home-menu-row__item {
  flex: 0 0 auto;
  width: var(--home-menu-card-w);
  scroll-snap-align: start;
  min-width: 0;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-menu-row__item:is(:hover, :focus-within) {
  width: var(--home-menu-card-w-hover);
}

.home-menu-row .home-menu-card:not(.home-menu-card--scroll) {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(163, 136, 96, 0.28);
  border-radius: 2px;
  overflow: hidden;
  background: var(--abo-cream-2);
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-menu-row__item:is(:hover, :focus-within) .home-menu-card {
  box-shadow: 0 28px 60px -32px rgba(43, 36, 29, 0.35);
}

.home-menu-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-menu-row__item:is(:hover, :focus-within) .home-menu-card__img {
  transform: scale(1.05);
}

.home-menu-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(12, 10, 8, 0.88) 0%,
    rgba(12, 10, 8, 0.42) 38%,
    rgba(12, 10, 8, 0.08) 62%,
    transparent 100%
  );
  transition: background 0.55s ease;
}

.home-menu-row__item:is(:hover, :focus-within) .home-menu-card__shade {
  background: linear-gradient(
    to top,
    rgba(12, 10, 8, 0.94) 0%,
    rgba(12, 10, 8, 0.55) 48%,
    rgba(12, 10, 8, 0.15) 72%,
    transparent 100%
  );
}

.home-menu-card__copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
  text-align: center;
}

.home-menu-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.locale-fa .home-menu-card__title {
  line-height: 1.45;
}

.home-menu-card__desc {
  margin: 0;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease 0.06s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-menu-row__item:is(:hover, :focus-within) .home-menu-card__desc {
  max-height: 6em;
  opacity: 1;
  transform: translateY(0);
  margin: 12px 0 8px;
}

.locale-fa .home-menu-card__desc {
  font-family: var(--font-sans);
  line-height: 1.75;
}

.home-menu-card__meta {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.locale-fa .home-menu-card__meta {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
}

@media (hover: none) {
  .home-menu-row__item {
    width: var(--home-menu-card-w-hover);
  }

  .home-menu-card__desc {
    max-height: 4.5em;
    opacity: 1;
    transform: none;
    margin: 10px 0 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

.home-redesign .abo-featured {
  padding-top: clamp(80px, 10vw, 110px);
  padding-bottom: clamp(70px, 8vw, 90px);
}

/* Gallery marquee */
.home-marquee {
  padding: clamp(70px, 9vw, 100px) 0 clamp(80px, 10vw, 110px);
  background: var(--abo-cream);
  border-top: 1px solid var(--abo-line);
  overflow: hidden;
}

.home-marquee__viewport {
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.home-marquee__track {
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  width: max-content;
  animation: homeMarquee 42s linear infinite;
}

.home-marquee__slide {
  flex: 0 0 clamp(220px, 24vw, 300px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--abo-line);
}

.home-marquee__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Closing CTA */
.home-closing {
  position: relative;
  padding: clamp(90px, 12vw, 140px) 0;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(185, 143, 82, 0.22);
}

.home-closing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-closing__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(185, 143, 82, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 18% 22%, rgba(185, 143, 82, 0.08) 0%, transparent 52%),
    linear-gradient(168deg, #342c24 0%, #2b241d 42%, #1f1a15 100%);
}

.home-closing__texture {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.42;
  mix-blend-mode: normal;
}

.home-closing--video .home-closing__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-closing--video .home-closing__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-closing--video .home-closing__texture {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .home-closing--video .home-closing__video {
    display: none;
  }

  .home-closing--video .home-closing__texture {
    opacity: 0.42;
  }
}

.home-closing__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 42%, rgba(246, 241, 231, 0.07) 0%, transparent 72%);
}

.home-closing__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.home-closing__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 16, 12, 0.45) 0%, rgba(20, 16, 12, 0.2) 42%, rgba(20, 16, 12, 0.62) 100%),
    radial-gradient(ellipse 75% 65% at 50% 48%, rgba(15, 12, 9, 0.15) 0%, rgba(15, 12, 9, 0.55) 100%);
}

.home-closing__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.home-closing__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.home-closing__mark-ln {
  width: clamp(40px, 8vw, 64px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(185, 143, 82, 0.7), transparent);
}

[dir="rtl"] .home-closing__mark-ln {
  background: linear-gradient(to left, transparent, rgba(185, 143, 82, 0.7), transparent);
}

.home-closing__mark-dot {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(185, 143, 82, 0.85);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.home-closing__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 16px;
  text-wrap: balance;
}

.home-closing__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.85;
  font-weight: 300;
  color: rgba(246, 241, 231, 0.78);
  margin: 0 0 24px;
}

.home-closing__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.home-closing__badge {
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 14px;
  border: 1px solid rgba(246, 241, 231, 0.22);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.06);
  color: rgba(246, 241, 231, 0.85);
}

.home-closing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-closing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-closing__btn--primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.home-closing__btn--primary:hover {
  background: #c99a5a;
  transform: translateY(-2px);
}

.home-closing__btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 241, 231, 0.35);
}

.home-closing__btn--ghost:hover {
  background: rgba(246, 241, 231, 0.1);
  transform: translateY(-2px);
}

/* Conversion CTA (Framer-style glass card + inquiry form) */
.home-conversion {
  position: relative;
  padding: clamp(90px, 12vw, 140px) 0;
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(185, 143, 82, 0.22);
}

.home-conversion__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #2b241d;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-conversion__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(20, 16, 12, 0.72) 0%, rgba(20, 16, 12, 0.45) 42%, rgba(20, 16, 12, 0.78) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(15, 12, 9, 0.15) 0%, rgba(15, 12, 9, 0.55) 100%);
}

.home-conversion__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 5vw, 48px);
}

.home-conversion__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  text-align: center;
  text-wrap: balance;
  max-width: 18ch;
  color: #fff;
}

.home-conversion__card-outer {
  width: 100%;
  max-width: 520px;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid rgba(255, 249, 242, 0.65);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.home-conversion__card {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, #ffffff 1.4%, #fff9f2 100%);
  color: var(--ink);
  padding: clamp(22px, 4vw, 32px);
}

.home-conversion__card-top {
  margin-bottom: 18px;
}

.home-conversion__card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--ink);
}

.home-conversion__card-body {
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(43, 36, 29, 0.78);
  margin: 0;
}

.home-conversion__details {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  margin-bottom: 18px;
  border-top: 1px solid rgba(163, 136, 96, 0.4);
}

.home-conversion__detail {
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
  white-space: pre-line;
  color: rgba(43, 36, 29, 0.82);
}

.home-conversion__divider {
  width: 1px;
  height: 42px;
  background: rgba(163, 136, 96, 0.4);
}

.home-conversion__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.home-conversion__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  width: 100%;
}

.home-conversion__btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.home-conversion__btn--outline:hover {
  background: rgba(21, 13, 7, 0.06);
  transform: translateY(-1px);
}

.home-conversion__btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(43, 36, 29, 0.25);
}

.home-conversion__btn--ghost:hover {
  background: rgba(43, 36, 29, 0.05);
  transform: translateY(-1px);
}

/* Inquiry form */
.inquiry-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry-form__field--full {
  grid-column: 1 / -1;
}

.inquiry-form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(43, 36, 29, 0.65);
}

.inquiry-form__field input,
.inquiry-form__field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(163, 136, 96, 0.35);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form__field input:focus,
.inquiry-form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 143, 82, 0.15);
}

.inquiry-form__field textarea {
  resize: vertical;
  min-height: 88px;
}

.inquiry-form__error {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: #b42318;
}

.inquiry-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #150d07;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 1px 1px -1px rgba(117, 93, 93, 0.82),
    0 6px 9px -3px rgba(117, 93, 93, 0.63),
    inset 0 0 4px 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.inquiry-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
}

.inquiry-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.inquiry-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 12px;
  text-align: center;
  color: #0f6b3f;
}

.inquiry-form__success p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(43, 36, 29, 0.85);
}

.inquiry-form--compact .inquiry-form__grid {
  grid-template-columns: 1fr;
}

/* Reservation page */
.reservation-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-height) + clamp(24px, 4vw, 48px)) 0 clamp(64px, 10vw, 100px);
  color: var(--cream);
}

.reservation-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #2b241d;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.reservation-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 16, 12, 0.88) 0%,
      rgba(20, 16, 12, 0.72) 12%,
      rgba(20, 16, 12, 0.45) 50%,
      rgba(20, 16, 12, 0.8) 100%
    );
}

.reservation-page__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}

.reservation-page__back {
  align-self: flex-start;
  font-size: 0.88rem;
  color: rgba(246, 241, 231, 0.92);
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  transition: color 0.2s ease;
}

.reservation-page__back:hover {
  color: #fff;
}

.reservation-page__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  text-align: center;
  text-wrap: balance;
  max-width: 18ch;
  color: #fff;
}

.reservation-page__card-wrap {
  max-width: 560px;
}

.locale-fa .inquiry-form__label {
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
}

@keyframes homeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[dir="rtl"] .home-marquee__track {
  animation-name: homeMarqueeRtl;
}

@keyframes homeMarqueeRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@media (max-width: 1024px) {
  .home-workspace__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .home-workspace__panel,
  .home-workspace__media {
    min-height: 0;
  }

  .home-workspace__media-frame img {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .home-heritage__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-hero__actions,
  .home-closing__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .home-conversion__details {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    max-width: 280px;
    margin-inline: auto;
  }

  .home-conversion__divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }

  .home-hero__btn,
  .home-closing__btn {
    width: 100%;
  }

  .inquiry-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-marquee__track {
    animation: none;
  }

  .home-menu-row__item,
  .home-menu-card,
  .home-menu-card__media img,
  .home-menu-card__desc {
    transition: none;
  }

  .home-menu-row__item:is(:hover, :focus-within) {
    width: var(--home-menu-card-w);
  }

  .home-menu-row__item:is(:hover, :focus-within) .home-menu-card {
    transform: none;
  }

  .home-menu-card__desc {
    max-height: 4.5em;
    opacity: 1;
    transform: none;
    margin: 8px 0 4px;
  }

  .home-hero__btn:hover,
  .home-closing__btn:hover,
  .home-conversion__btn:hover,
  .inquiry-form__submit:hover,
  .home-highlight-card:hover,
  .home-menu-card:hover,
  .home-menu-row__item:is(:hover, :focus-within) .home-menu-card {
    transform: none;
  }
}

/* ----- RTL / Persian locale ----- */
.locale-fa {
  --font-serif: 'Vazirmatn', 'Tahoma', sans-serif;
  --font-sans: 'Vazirmatn', 'Tahoma', sans-serif;
}

[dir="rtl"] .page-header__breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .about-redesign .abo-page-hero__crumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .catalog-header__crumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .filter-tabs {
  flex-direction: row-reverse;
}

[dir="rtl"] .scroll-hint__arrow {
  transform: scaleX(-1);
}

/* ----- Catalog menu page (Stones & Projects) ----- */
.catalog-menu-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--nav-height));
  background: var(--abo-cream);
}

.catalog-menu-page--stone {
  background: var(--abo-cream);
}

/* ----- Catalog page header ----- */
.catalog-header {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
  background: var(--abo-cream);
}

.catalog-header__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 50% at 18% 28%, rgba(239, 228, 208, 0.9) 0%, transparent 68%),
    radial-gradient(45% 40% at 88% 18%, rgba(185, 143, 82, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.catalog-header__line {
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--abo-line) 18%,
    rgba(185, 143, 82, 0.35) 50%,
    var(--abo-line) 82%,
    transparent 100%
  );
  opacity: 0.9;
}

.catalog-header__line--bottom {
  bottom: 0;
}

.catalog-header__inner {
  position: relative;
  z-index: 1;
}

.catalog-header__crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: clamp(28px, 4vw, 40px);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--abo-taupe-deep);
}

.catalog-header__crumb a {
  color: var(--abo-taupe-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.catalog-header__crumb a:hover {
  color: var(--abo-ink);
}

.catalog-header__crumb-current {
  color: var(--abo-ink-dim);
}

.catalog-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
}

.catalog-header__copy {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.catalog-header__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.catalog-header__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--abo-gold);
  white-space: nowrap;
}

.catalog-header__eyebrow-line {
  width: clamp(40px, 8vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, var(--abo-gold), transparent);
}

[dir="rtl"] .catalog-header__eyebrow-line {
  background: linear-gradient(270deg, var(--abo-gold), transparent);
}

.catalog-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--abo-ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.locale-fa .catalog-header__title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
}

.catalog-header__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.catalog-header__mark-ln {
  width: 52px;
  height: 1px;
  background: var(--abo-line);
}

.catalog-header__mark-dot {
  width: 5px;
  height: 5px;
  border: 1px solid var(--abo-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.catalog-header__intro {
  font-size: clamp(15px, 2.2vw, 16.5px);
  line-height: 1.9;
  color: var(--abo-ink-dim);
  font-weight: 300;
  margin: 0 auto 28px;
  max-width: 520px;
}

.catalog-header__stats {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  margin: 0 auto 28px;
  padding: 14px 22px;
  border: 1px solid var(--abo-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
}

.catalog-header__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
}

.catalog-header__stat-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  margin: 0;
}

.locale-fa .catalog-header__stat-label {
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 11px;
}

.catalog-header__stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  line-height: 1;
  color: var(--abo-ink);
  margin: 0;
}

.locale-fa .catalog-header__stat-value {
  font-family: var(--font-sans);
  font-weight: 700;
}

.catalog-header__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--abo-line);
  flex-shrink: 0;
}

.catalog-header__browse {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.locale-fa .catalog-header__browse {
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 13px;
}

.catalog-header__browse:hover {
  color: var(--abo-ink);
}

.catalog-header__browse-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--abo-gold), transparent);
}

.catalog-header__visual {
  position: relative;
  max-width: min(100%, 420px);
  margin: 0 auto;
}

.catalog-header__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: clamp(14px, 2.5vw, 20px);
  overflow: hidden;
  box-shadow: 0 28px 72px -32px rgba(43, 36, 29, 0.32);
}

.catalog-header__frame::before,
.catalog-header__frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}

.catalog-header__frame::before {
  top: 14px;
  inset-inline-start: 14px;
  border-top: 1px solid var(--abo-gold);
  border-inline-start: 1px solid var(--abo-gold);
  opacity: 0.85;
}

.catalog-header__frame::after {
  bottom: 14px;
  inset-inline-end: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-inline-end: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 0.75;
}

.catalog-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-header__frame-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 36, 29, 0.18) 0%,
    transparent 42%
  );
  pointer-events: none;
}

.catalog-header__caption {
  position: absolute;
  inset-inline-end: -8px;
  bottom: 24px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  opacity: 0.7;
  transform: rotate(180deg);
}

[dir="rtl"] .catalog-header__caption {
  inset-inline-end: auto;
  inset-inline-start: -8px;
  transform: none;
}

@media (min-width: 900px) {
  .catalog-header__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(40px, 5vw, 72px);
    text-align: start;
  }

  .catalog-header__copy {
    text-align: start;
    margin: 0;
    max-width: none;
  }

  .catalog-header__eyebrow-row {
    justify-content: flex-start;
  }

  .catalog-header__mark {
    justify-content: flex-start;
  }

  .catalog-header__intro {
    margin-inline: 0;
  }

  .catalog-header__stats {
    margin-inline: 0;
  }

  .catalog-header__browse {
    align-items: flex-start;
  }

  .catalog-header__visual {
    margin-inline-start: auto;
    margin-inline-end: 0;
    max-width: 100%;
  }

  [dir="rtl"] .catalog-header__visual {
    margin-inline-start: 0;
    margin-inline-end: auto;
  }
}

.catalog-menu-page__empty {
  text-align: center;
  color: var(--abo-ink-dim);
  font-size: 15px;
  padding: 48px 1.25rem;
}

.catalog-menu-page__scroll {
  flex: 1 0 auto;
  scroll-margin-top: var(--nav-height);
}

.catalog-menu-page > .site-footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* Shell: sidebar + main */
.catalog-menu-page__shell {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(8px, 2vw, 20px) 1.25rem clamp(48px, 8vw, 72px);
}

.catalog-menu-page__main {
  min-width: 0;
}

/* Category navigation */
.catalog-menu-page__nav--sidebar {
  display: none;
}

.catalog-menu-page__nav--mobile {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.catalog-menu-page__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-menu-page__pill {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 16px 10px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--abo-line);
  background: transparent;
  color: var(--abo-taupe-deep);
  text-decoration: none;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.locale-fa .catalog-menu-page__pill {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.catalog-menu-page__pill:hover {
  color: var(--abo-ink);
  border-color: var(--abo-taupe);
  background: rgba(239, 230, 214, 0.55);
}

.catalog-menu-page__pill.is-active {
  color: var(--abo-ink);
  border-color: var(--abo-gold);
  background: var(--abo-cream-2);
  box-shadow: 0 2px 12px rgba(43, 36, 29, 0.04);
}

.catalog-menu-page__pill-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--abo-line);
  background: var(--abo-cream);
  transition: border-color var(--transition-fast);
}

.catalog-menu-page__pill-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-menu-page__pill.is-active .catalog-menu-page__pill-thumb {
  border-color: var(--abo-gold);
}

.catalog-menu-page__pill-label {
  flex: 1;
  text-align: start;
}

/* Mobile pills */
.catalog-menu-page__nav--mobile .catalog-menu-page__nav-list {
  max-width: 480px;
  margin: 0 auto;
}

/* Sidebar: editorial rounded rects */
.catalog-menu-page__nav--sidebar .catalog-menu-page__pill {
  border-radius: 12px;
  letter-spacing: 0.14em;
  padding: 11px 14px 11px 11px;
}

.locale-fa .catalog-menu-page__nav--sidebar .catalog-menu-page__pill {
  letter-spacing: 0;
}

/* Sections */
.catalog-menu-page__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 72px);
}

.catalog-menu-page__section {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.catalog-menu-page__section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.catalog-menu-page__section-label {
  font-family: var(--font-latin);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--abo-taupe-deep);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.locale-fa .catalog-menu-page__section-label {
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
}

.catalog-menu-page__section-line {
  flex: 1;
  height: 1px;
  background: var(--abo-line);
  min-width: 24px;
}

/* Image card grid */
.catalog-menu-page__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.catalog-menu-page__grid-item {
  min-width: 0;
}

.catalog-menu-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.catalog-menu-card__frame {
  position: relative;
  height: 100%;
  aspect-ratio: 4 / 5;
  background: var(--abo-cream-2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(43, 36, 29, 0.1);
  box-shadow: 0 8px 28px -16px rgba(43, 36, 29, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-menu-card:hover .catalog-menu-card__frame {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -14px rgba(43, 36, 29, 0.26);
}

.catalog-menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.catalog-menu-card:hover .catalog-menu-card__img {
  transform: scale(1.03);
}

.catalog-menu-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 36, 29, 0.78) 0%,
    rgba(43, 36, 29, 0.32) 34%,
    transparent 62%
  );
  pointer-events: none;
}

.catalog-menu-card__copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: clamp(14px, 2.5vw, 20px);
  text-align: center;
  z-index: 1;
}

.catalog-menu-card__title {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 4px;
}

.catalog-menu-card__meta {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Tablet: sidebar + grid below hero */
@media (min-width: 768px) {
  .catalog-menu-page__shell {
    display: grid;
    grid-template-columns: minmax(200px, 248px) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }

  .catalog-menu-page__nav--sidebar {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + 12px);
  }

  .catalog-menu-page__nav--mobile {
    display: none;
  }

  .catalog-menu-page__grid {
    gap: clamp(14px, 1.8vw, 20px);
  }
}

/* Desktop shell spacing */
@media (min-width: 1100px) {
  .catalog-menu-page__shell {
    padding-inline: clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 520px) {
  .catalog-menu-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-menu-page__pill,
  .catalog-menu-card__frame,
  .catalog-menu-card__img {
    transition: none;
  }

  .catalog-menu-card:hover .catalog-menu-card__frame,
  .catalog-menu-card:hover .catalog-menu-card__img {
    transform: none;
  }
}
