/* =========================================================
   Prime Curtain Co — Core Stylesheet
   Premium / refined aesthetic · responsive · RTL-aware
   ========================================================= */

:root {
  /* Palette */
  --ivory: #fbf8f2;
  --cream: #f4eee2;
  --sand: #ebe3d2;
  --sand-deep: #e0d5bf;
  --taupe: #9b8b77;
  --taupe-soft: #b8ab99;
  --brown: #4a3f33;
  --ink: #332b22;
  --gold: #b08d4f;
  --gold-deep: #927238;
  --gold-soft: #c9af82;
  --white: #ffffff;
  --line: rgba(74, 63, 51, 0.12);
  --line-soft: rgba(74, 63, 51, 0.07);
  --wa: #25d366;
  --wa-deep: #1da851;
  --shadow-sm: 0 2px 10px rgba(74, 63, 51, 0.06);
  --shadow: 0 14px 40px -18px rgba(74, 63, 51, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(74, 63, 51, 0.4);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --ar-serif: "El Messiri", "Tajawal", sans-serif;
  --ar-sans: "Tajawal", sans-serif;

  --maxw: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Arabic typography swap */
html[lang="ar"] {
  --serif: var(--ar-serif);
  --sans: var(--ar-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16.5px;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
/* very subtle grain for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  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='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1,
h2,
h3,
h4,
.serif {
  font-family: var(--serif);
  color: var(--brown);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.002em;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 500;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
p {
  color: #5b5044;
}
html[lang="ar"] body {
  line-height: 1.9;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  line-height: 1.4;
  font-weight: 600;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.section--cream {
  background: var(--cream);
}
.section--sand {
  background: linear-gradient(180deg, var(--cream), var(--sand));
}
.center {
  text-align: center;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
html[lang="ar"] .eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center-rule::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head.center {
  margin-inline: auto;
}
.section-head h2 {
  margin: 0.35em 0 0.25em;
}
.section-head p {
  font-size: 1.06rem;
  color: #6b6052;
}

.lead {
  font-size: 1.12rem;
  color: #5b5044;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.92em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(176, 141, 79, 0.7);
}
.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(146, 114, 56, 0.8);
}
.btn--ghost {
  border-color: var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--ivory);
  transform: translateY(-2px);
}
.btn--light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn--light:hover {
  background: #fff;
  color: var(--brown);
}
.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.7);
}
.btn--wa:hover {
  background: var(--wa-deep);
  transform: translateY(-2px);
}
.btn--block {
  width: 100%;
}

/* ============================ HEADER ============================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
  background: rgba(251, 248, 242, 0);
  padding-block: 22px;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow:
    0 1px 0 var(--line),
    0 10px 30px -24px rgba(74, 63, 51, 0.5);
  padding-block: 13px;
}
/* pages that don't have a dark hero need solid header immediately */
.site-header.solid {
  position: sticky;
  background: rgba(251, 248, 242, 0.95);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 14px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.brand-logo {
  height: 110px;
  width: auto;
  display: block;
}
.brand-logo--light {
  display: none;
}
.site-header:not(.scrolled):not(.solid) .brand-logo--dark {
  display: none;
}
.site-header:not(.scrolled):not(.solid) .brand-logo--light {
  display: block;
}
.site-header:not(.scrolled):not(.solid) .nav-links a {
  color: rgba(255, 255, 255, 0.92);
}
.site-header:not(.scrolled):not(.solid) .icon-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--brown);
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  position: relative;
}
.icon-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.icon-btn svg {
  width: 19px;
  height: 19px;
}
.lang-btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  width: auto;
  padding: 0 14px;
  gap: 0.4em;
}
.save-count {
  position: absolute;
  inset-block-start: -4px;
  inset-inline-end: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--gold);
  color: #fff;
  border-radius: 9px;
  font-size: 0.65rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.save-count.show {
  display: flex;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: 0.3s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: 0.3s;
}
.menu-toggle span::before {
  top: -7px;
}
.menu-toggle span::after {
  top: 7px;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowzoom 18s ease-out forwards;
}
@keyframes slowzoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    105deg,
    rgba(40, 32, 24, 0.78) 0%,
    rgba(40, 32, 24, 0.42) 48%,
    rgba(40, 32, 24, 0.12) 100%
  );
}
html[lang="ar"] .hero::after {
  background: linear-gradient(
    255deg,
    rgba(40, 32, 24, 0.78) 0%,
    rgba(40, 32, 24, 0.42) 48%,
    rgba(40, 32, 24, 0.12) 100%
  );
}
.hero .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero__content {
  flex: 1;
  max-width: 580px;
  color: #fff;
  padding-block: 140px 60px;
}
.hero__content .eyebrow {
  color: var(--gold-soft);
}
.hero__content .eyebrow::before {
  background: var(--gold-soft);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  font-weight: 500;
  margin: 0.3em 0 0.35em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  max-width: 520px;
  margin-bottom: 2em;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__splash {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 280px;
  height: 400px;
}
.hero__splash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.5);
}
.hero__splash img:nth-child(2) {
  margin-top: 36px;
  height: calc(100% - 36px);
}
@media (max-width: 960px) {
  .hero__splash {
    display: none;
  }
}
.scroll-hint {
  position: absolute;
  inset-block-end: 30px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* trust bar */
.trustbar {
  background: var(--brown);
  color: var(--cream);
}
.trustbar .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
  padding-block: 22px;
}
.trustbar div {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.trustbar svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
}

/* ============================ CATEGORIES ============================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.cat-card {
  position: relative;
  padding: 34px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  display: block;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
html[lang="ar"] .cat-card::after {
  transform-origin: right;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.cat-card:hover::after {
  transform: scaleX(1);
}
.cat-card .cat-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-deep);
}
.cat-card .cat-ico svg {
  width: 26px;
  height: 26px;
}
.cat-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 0.9rem;
  color: #7a6f60;
}
.cat-card .cat-link {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.cat-card .cat-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}
.cat-card:hover .cat-link svg {
  transform: translateX(4px);
}
html[lang="ar"] .cat-card:hover .cat-link svg {
  transform: translateX(-4px) scaleX(-1);
}

/* ============================ PRODUCT CARDS ============================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.prod-card__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--sand);
}
.prod-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.prod-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.prod-card:hover .prod-card__img-link img {
  transform: scale(1.07);
}
.prod-tag {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  background: rgba(251, 248, 242, 0.92);
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5em 0.9em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.heart {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition:
    transform 0.3s var(--ease),
    background-color 0.3s var(--ease),
    color 0.3s var(--ease);
  color: var(--brown);
  z-index: 2;
}
.heart svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.heart:hover {
  transform: scale(1.12);
  background: #fff;
}
.heart.saved {
  color: #d9536b;
}
.heart.saved svg {
  fill: #d9536b;
  stroke: #d9536b;
  animation: pop 0.4s var(--ease);
}
@keyframes pop {
  0% {
    transform: scale(0.6);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.prod-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-card__body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.prod-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.prod-card__body h3 a:hover {
  color: var(--gold-deep);
}
.prod-card__body p {
  font-size: 0.92rem;
  color: #7a6f60;
  flex: 1;
  margin-bottom: 18px;
}
.prod-card__foot {
  display: flex;
  gap: 10px;
  align-items: center;
}
.prod-card__foot .btn {
  flex: 1;
  padding: 0.78em 1em;
  font-size: 0.88rem;
}

/* product detail page */
.pd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 760px) {
  .pd-split {
    grid-template-columns: 1fr;
  }
}
.pd-img__wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow);
}
.pd-img__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-img__wrap .heart {
  width: 48px;
  height: 48px;
  inset-block-start: 16px;
  inset-inline-end: 16px;
}
.pd-img__wrap .heart svg {
  width: 22px;
  height: 22px;
}
.pd-cat-badge {
  display: inline-flex;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pd-info h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.pd-desc {
  font-size: 1.05rem;
  color: #6b5f52;
  line-height: 1.75;
  margin-bottom: 34px;
}
.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.pd-actions .btn {
  padding: 0.9em 1.6em;
}
.pd-features {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
}
.pd-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: #6b5f52;
}
.pd-features li svg {
  color: var(--gold-deep);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* filter chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.chip {
  padding: 0.6em 1.3em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brown);
  transition: all 0.3s var(--ease);
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.chip.active {
  background: var(--brown);
  color: var(--ivory);
  border-color: var(--brown);
}

/* pagination */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 54px;
}
.pager button {
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  transition: all 0.3s var(--ease);
}
.pager button:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.pager button.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.pager button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.empty-state {
  text-align: center;
  padding: 70px 20px;
}
.empty-state svg {
  width: 64px;
  height: 64px;
  color: var(--taupe-soft);
  margin: 0 auto 22px;
}
.empty-state h3 {
  margin-bottom: 8px;
}
.empty-state p {
  max-width: 420px;
  margin: 0 auto 26px;
}

/* ============================ WHY CHOOSE ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.why-item {
  position: relative;
  padding-inline-start: 0;
}
.why-item .why-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.why-item .why-ico svg {
  width: 28px;
  height: 28px;
}
.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.94rem;
}

/* split / about feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.split__media.tall img {
  aspect-ratio: 4/5;
}
.split .lead {
  margin: 1em 0 1.4em;
}
.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat b {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: block;
  line-height: 1;
}
.stat span {
  font-size: 0.85rem;
  color: #7a6f60;
  letter-spacing: 0.02em;
}

/* ============================ GALLERY ============================ */
.gallery {
  columns: 3;
  column-gap: 16px;
}
.gallery a {
  display: block;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(40, 32, 24, 0.45));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery a:hover img {
  transform: scale(1.06);
}
.gallery a:hover::after {
  opacity: 1;
}

/* ============================ CTA BAND ============================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(176, 141, 79, 0.3),
    transparent 55%
  );
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  color: #fff;
  margin: 0.3em auto 0.4em;
  max-width: 18ch;
}
.cta-band p {
  color: rgba(244, 238, 226, 0.82);
  max-width: 46ch;
  margin: 0 auto 1.8em;
}
.cta-band .eyebrow {
  color: var(--gold-soft);
}
.cta-band .eyebrow::before,
.cta-band .eyebrow.center-rule::after {
  background: var(--gold-soft);
}

/* ============================ CONTACT / LOCATION ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
}
.contact-info {
  background: var(--white);
  padding: clamp(30px, 4vw, 52px);
}
.contact-info h2 {
  margin-bottom: 0.4em;
}
.contact-map {
  min-height: 380px;
  background: var(--sand);
  position: relative;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.cinfo-list {
  margin: 28px 0;
}
.cinfo-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-block-end: 1px solid var(--line-soft);
  align-items: flex-start;
}
.cinfo-list li:last-child {
  border-block-end: none;
}
.cinfo-list .ci-ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}
.cinfo-list .ci-ico svg {
  width: 20px;
  height: 20px;
}
.cinfo-list b {
  display: block;
  font-weight: 700;
  color: var(--brown);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.cinfo-list a,
.cinfo-list span {
  color: #6b6052;
  font-size: 0.95rem;
  word-break: break-word;
}
.cinfo-list a:hover {
  color: var(--gold-deep);
}

/* ============================ FOOTER ============================ */
.site-footer {
  background: #2b241c;
  color: #cdbfa9;
  padding-block: clamp(50px, 6vw, 76px) 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.foot-logo {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.foot-brand p {
  color: #a3937c;
  font-size: 0.92rem;
  margin-top: 0;
  max-width: 30ch;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.foot-col li {
  margin-bottom: 11px;
}
.foot-col a {
  color: #bfb09a;
  font-size: 0.92rem;
  transition: color 0.25s;
}
.foot-col a:hover {
  color: var(--gold-soft);
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.foot-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.foot-social svg {
  width: 18px;
  height: 18px;
}
.foot-bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #8c7d68;
}

/* ============================ FLOATING WHATSAPP ============================ */
.fab {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
  animation: fabin 0.5s var(--ease) 0.6s both;
}
.fab:hover {
  transform: scale(1.1);
}
.fab svg {
  width: 30px;
  height: 30px;
}
.fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fabin {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.fab--call {
  background: var(--gold);
  box-shadow: 0 12px 30px -8px rgba(191, 161, 99, 0.6);
  inset-inline-end: 96px;
}
.fab--call::after {
  border-color: var(--gold);
}

/* ============================ PAGE HERO (inner pages) ============================ */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--cream), var(--ivory));
  text-align: center;
  position: relative;
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: #8c7d68;
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a:hover {
  color: var(--gold-deep);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  margin-top: 0.2em;
}
.page-hero p {
  max-width: 560px;
  margin: 0.7em auto 0;
  font-size: 1.06rem;
}

/* ============================ BLOG ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.blog-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}
.blog-card__body {
  padding: 24px;
}
.blog-card .b-meta {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.blog-card h3 {
  font-size: 1.4rem;
  margin: 10px 0 8px;
}
.blog-card p {
  font-size: 0.92rem;
  color: #7a6f60;
}
.blog-card .readmore {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-deep);
  display: inline-flex;
  gap: 0.4em;
  align-items: center;
}

/* blog article */
.article {
  max-width: 760px;
  margin-inline: auto;
}
.article img.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article h2 {
  font-size: 2rem;
  margin: 1.4em 0 0.5em;
}
.article h3 {
  font-size: 1.4rem;
  margin: 1.2em 0 0.4em;
}
.article p {
  font-size: 1.08rem;
  color: #564b3f;
  margin-bottom: 1.1em;
  line-height: 1.85;
}
.article ul.bullets {
  list-style: disc;
  padding-inline-start: 1.4em;
  margin-bottom: 1.3em;
  color: #564b3f;
}
.article ul.bullets li {
  margin-bottom: 0.5em;
  font-size: 1.05rem;
}
.article blockquote {
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 22px;
  margin: 1.4em 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--brown);
  font-style: italic;
}
.article .tip {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 1.6em 0;
  border-inline-start: 4px solid var(--gold);
}
.article .tip b {
  color: var(--brown);
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split__media {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 320px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery {
    columns: 2;
  }
}
@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 96px 32px 32px;
    transform: translateX(110%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.3);
    z-index: 1100;
  }
  html[dir="rtl"] .nav-links {
    inset-inline-end: auto;
    inset-inline-start: 0;
    transform: translateX(-110%);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.15rem;
    padding: 10px 0;
    width: 100%;
  }
  .site-header:not(.scrolled):not(.solid) .nav-links a {
    color: var(--brown);
  }
  .menu-toggle {
    z-index: 1200;
  }
  .nav-links.open ~ .menu-toggle span {
    background: transparent;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .hero {
    min-height: 88vh;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .stat-row {
    gap: 24px;
  }
  .gallery {
    columns: 1;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .fab {
    inset-block-end: 18px;
    inset-inline-end: 18px;
  }
  .trustbar .wrap {
    gap: 12px 26px;
  }
  /* free up header space: brand on one line, drop the duplicate WhatsApp button (FAB covers it) */
  .nav-actions .btn--gold {
    display: none;
  }
  .brand-logo {
    height: 56px;
  }
  .nav-actions {
    gap: 8px;
  }
}

/* hidden helper + no-transition during lang switch */
[hidden] {
  display: none !important;
}
.no-anim * {
  transition: none !important;
}

/* ============ CHATBOT ============ */
.cb-toggle {
  position: fixed;
  bottom: 94px;
  inset-inline-end: 24px;
  z-index: 901;
  background: var(--gold-deep);
  color: #fff;
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 12px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cb-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.cb-toggle-lbl {
  white-space: nowrap;
}
.cb-win {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 154px;
  z-index: 902;
  width: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.32s var(--ease),
    opacity 0.32s var(--ease);
}
.cb-win--open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.cb-header {
  background: var(--gold-deep);
  color: #fff;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.cb-hico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cb-hinfo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cb-hinfo strong {
  font-size: 0.92rem;
  font-family: var(--font-serif);
  line-height: 1.2;
}
.cb-hinfo span {
  font-size: 0.7rem;
  opacity: 0.82;
}
.cb-online {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.cb-close {
  background: none;
  border: none;
  color: #fff;
  opacity: 0.72;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  transition: opacity 0.2s;
}
.cb-close:hover {
  opacity: 1;
}
.cb-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  max-height: 310px;
  min-height: 200px;
  background: var(--cream);
  scroll-behavior: smooth;
}
.cb-msgs::-webkit-scrollbar {
  width: 3px;
}
.cb-msgs::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 3px;
}
.cb-msg {
  display: flex;
  max-width: 88%;
}
.cb-msg--bot {
  align-self: flex-start;
}
.cb-msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.cb-bub {
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.58;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}
.cb-msg--bot .cb-bub {
  background: #fff;
  color: var(--brown);
  border-bottom-left-radius: 4px;
}
.cb-msg--user .cb-bub {
  background: var(--gold-deep);
  color: #fff;
  border-bottom-right-radius: 4px;
}
html[dir="rtl"] .cb-msg--bot .cb-bub {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}
html[dir="rtl"] .cb-msg--user .cb-bub {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 4px;
}
.cb-bub b {
  font-weight: 700;
}
.cb-wa-lnk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.38em 0.9em;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cb-wa-lnk:hover {
  opacity: 0.86;
}
.cb-map-lnk {
  background: var(--gold-deep);
  margin-inline-start: 5px;
}
.cb-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  min-width: 56px;
}
.cb-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8b89a;
  animation: cb-bounce 0.9s ease-in-out infinite;
}
.cb-typing span:nth-child(2) {
  animation-delay: 0.16s;
}
.cb-typing span:nth-child(3) {
  animation-delay: 0.32s;
}
@keyframes cb-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
}
.cb-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 4px;
}
.cb-qr-btn {
  padding: 0.4em 0.95em;
  border-radius: 999px;
  border: 1.5px solid var(--gold-deep);
  background: #fff;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition:
    background 0.18s,
    color 0.18s;
}
.cb-qr-btn:hover {
  background: var(--gold-deep);
  color: #fff;
}
.cb-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.cb-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55em 1em;
  font-size: 0.86rem;
  font-family: var(--font-sans);
  outline: none;
  background: var(--ivory);
  transition: border-color 0.2s;
}
.cb-input:focus {
  border-color: var(--gold-deep);
}
.cb-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-deep);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.cb-send:hover {
  transform: scale(1.1);
}
@media (max-width: 560px) {
  .cb-win {
    inset-inline: 10px;
    width: auto;
    bottom: 144px;
    border-radius: 14px;
  }
  .cb-toggle-lbl {
    display: none;
  }
  .cb-toggle {
    padding: 0;
    width: 46px;
    justify-content: center;
  }
}
