/* ==========================================================================
   Merzouga Gateway Morocco — premium Sahara design system
   ========================================================================== */
:root {
  --header-h: 74px;
  --gold: #A98B4F;
  --gold-soft: #C9A45C;
  --gold-pale: #E8D6B7;
  --cream: #FAF6EE;
  --paper: #FFFDF8;
  --beige: #F3EBDD;
  --beige-deep: #E7DAC2;
  --ink: #251D15;
  --brown: #57452F;
  --brown-deep: #3E3120;
  --muted: #6E6150;
  --line: rgba(87, 69, 47, 0.16);
  --wa: #25D366;
  --wa-dark: #1DA851;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(37, 29, 21, 0.07);
  --shadow-md: 0 14px 34px rgba(37, 29, 21, 0.14);
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: 1180px;
}
[dir="rtl"] {
  --font-display: "Amiri", "Times New Roman", Georgia, serif;
  --font-body: "Tajawal", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #3D3428;
  background: var(--cream);
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.55rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.28rem; font-weight: 600; }
p { margin: 0 0 1.1em; }
a { color: var(--brown); text-decoration: none; }
a:hover { color: var(--gold); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { line-height: 1.35; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container--narrow { max-width: 880px; }

/* focus */
:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; inset-inline-start: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 0.7rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { inset-inline-start: 0; color: var(--cream); }

/* kicker & headings */
.kicker {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 0.9rem; display: flex; align-items: center; gap: 0.75rem;
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--gold-soft); flex: none; }
.kicker--light { color: var(--gold-pale); }
.kicker--light::before { background: var(--gold-pale); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .lead { margin-top: -0.4em; }
.lead { font-size: 1.13rem; color: var(--muted); line-height: 1.75; }
.section { padding-block: clamp(3.6rem, 8vw, 6.6rem); }
.section--alt { background: linear-gradient(180deg, var(--beige) 0%, #F6F0E4 100%); }
.section--tight { padding-block: clamp(1.6rem, 3vw, 2.4rem); }
.prose p { max-width: 70ch; color: #453A2C; }
.prose--narrow p { margin-inline: auto; text-wrap: pretty; }

/* icons */
.icon { width: 1.35em; height: 1.35em; flex: none; vertical-align: -0.3em; }
.icon-xs { width: 1.05em; height: 1.05em; }
[dir="rtl"] .icon-arrow { transform: scaleX(-1); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.82em 1.7em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brown); color: var(--cream); }
.btn-primary:hover { background: var(--brown-deep); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-light-primary { background: var(--cream); color: var(--ink); }
.btn-light-primary:hover { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(87, 69, 47, 0.45); color: var(--brown); background: transparent; }
.btn-outline:hover { background: var(--brown); border-color: var(--brown); color: var(--cream); }
.btn-outline-light { border-color: rgba(250, 246, 238, 0.65); color: var(--cream); background: rgba(37,29,21,0.12); }
.btn-outline-light:hover { background: rgba(250, 246, 238, 0.16); color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35); }
.btn-whatsapp .icon { width: 1.25em; height: 1.25em; }
.btn-sm { padding: 0.6em 1.25em; font-size: 0.9rem; }
.btn-lg { padding: 1em 2.2em; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.btn-row--center { justify-content: center; }
.btn-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 500; color: var(--gold); border-bottom: 1px solid transparent; background: none; border: none; padding: 0;
  font-size: 1rem; cursor: pointer; font-family: var(--font-body);
}
.btn-link:hover { border-bottom-color: var(--gold-soft); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background-color .3s ease, border-color .3s ease;
}
.site-header.is-transparent { background: transparent; border-bottom-color: transparent; }
.header-inner {
  max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 1.6rem);
  display: flex; align-items: center; gap: 1.4rem; height: 74px;
}
.brand { display: inline-flex; align-items: center; color: var(--ink); flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.brand-logo { display: block; width: clamp(128px, 34vw, 165px); height: auto; }
/* Two logo variants: the dark logo on the solid header, and a light
   (cream/pale-gold) variant shown only while the header is transparent
   over the hero, so the brand stays readable against the sunset sky. */
.brand-logo--light { display: none; }
.is-transparent .brand-logo--dark { display: none; }
.is-transparent .brand-logo--light { display: block; filter: drop-shadow(0 1px 5px rgba(24, 17, 10, 0.5)); }
.logo-mark { width: clamp(34px, 8vw, 44px); height: clamp(34px, 8vw, 44px); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; min-width: 0; }
.brand-name { font-family: var(--font-display); font-size: clamp(1.04rem, 0.6rem + 1.7vw, 1.32rem); font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; }
.brand-name em { font-style: normal; color: var(--gold); }
.brand-sub { font-size: clamp(0.6rem, 0.5rem + 0.4vw, 0.68rem); letter-spacing: clamp(0.26em, 0.15em + 0.5vw, 0.42em); text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.is-transparent .brand { color: var(--cream); }
.is-transparent .brand-name em { color: var(--gold-pale); }
.is-transparent .brand-sub { color: rgba(250, 246, 238, 0.75); }

.main-nav { display: flex; gap: clamp(0.9rem, 1.8vw, 1.5rem); margin-inline-start: auto; }
.nav-link {
  font-size: 0.95rem; font-weight: 500; color: var(--brown); padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link--current { color: var(--gold); border-bottom-color: var(--gold-soft); }
.is-transparent .nav-link { color: rgba(250, 246, 238, 0.92); }
.is-transparent .nav-link:hover { color: var(--gold-pale); }
.is-transparent .nav-link--current { color: var(--gold-pale); border-bottom-color: var(--gold-pale); }

.header-actions { display: flex; align-items: center; gap: clamp(0.45rem, 1.2vw, 0.8rem); margin-inline-start: 0; flex: none; }
.main-nav + .header-actions { margin-inline-start: 0; }
.header-cta { white-space: nowrap; }
.header-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; color: var(--wa);
  transition: background-color .2s ease, color .2s ease;
}
.header-wa:hover { background: var(--wa); color: #fff; }
.header-wa .icon { width: 1.5rem; height: 1.5rem; }

/* language switcher (button + dropdown, independent of the mobile nav) */
.lang-switch { position: relative; flex: none; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 0.3rem; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 999px; padding: 0.45em 0.75em;
  min-height: 40px; font-family: inherit;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.08em; color: var(--brown);
  background: transparent; transition: border-color .2s ease, color .2s ease;
}
.lang-btn:hover { border-color: var(--gold-soft); }
.lang-btn .icon { transition: transform .2s ease; }
.lang-btn[aria-expanded="true"] { border-color: var(--gold-soft); }
.lang-btn[aria-expanded="true"] .icon { transform: rotate(180deg); }
.is-transparent .lang-btn { color: var(--cream); border-color: rgba(250, 246, 238, 0.5); }
.lang-menu {
  position: absolute; top: calc(100% + 0.55rem); inset-inline-end: 0; z-index: 130;
  min-width: 178px; max-width: calc(100vw - 1.5rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 0.45rem;
  animation: lang-in .16s ease both;
}
@keyframes lang-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lang-list { margin: 0; padding: 0; list-style: none; }
.lang-item {
  display: flex; align-items: center; justify-content: space-between; gap: 0.9rem;
  padding: 0.55rem 0.75rem; border-radius: 9px; font-size: 0.95rem; color: var(--brown); min-height: 44px;
}
.lang-item:hover { background: var(--beige); color: var(--brown); }
.lang-item-name { white-space: nowrap; }
.lang-item-code { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); }
.lang-item--current { font-weight: 600; color: var(--gold); }
.lang-item--current .lang-item-code { color: var(--gold); }
.lang-item--current .lang-item-name::after { content: "✓"; margin-inline-start: 0.5rem; font-size: 0.85rem; }

/* nav toggle (mobile) */
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px;
  width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--brown); cursor: pointer;
}
.is-transparent .nav-toggle { color: var(--cream); border-color: rgba(250, 246, 238, 0.5); }
.nav-toggle .icon { width: 1.5rem; height: 1.5rem; }
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline-flex; }

/* mobile nav panel — sibling of <header> (NOT inside it), so position:fixed
   is relative to the viewport and the panel fills below the header */
.mobile-nav {
  position: fixed; top: calc(var(--header-h) + 1px); inset-inline: 0; bottom: 0; z-index: 99;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--cream); padding: 1.4rem clamp(1.2rem, 5vw, 2rem) 2.4rem;
  border-top: 1px solid var(--line);
  animation: nav-in .22s ease both;
}
@keyframes nav-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav-link {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--ink);
  padding: 0.55rem 0.2rem; border-bottom: 1px solid var(--line);
}
.mobile-nav-link--current { color: var(--gold); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.4rem; }
.lang-row { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.lang-row .lang-item { border: 1.5px solid var(--line); border-radius: 999px; padding: 0.35em 1em; font-size: 0.9rem; }
.lang-row .lang-item--current { border-color: var(--gold); color: var(--gold); }
.lang-row .lang-item--current::after { content: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: clamp(560px, 88vh, 880px); display: flex; align-items: center; }
.hero-bg, .hero-bg picture, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(183deg, rgba(24, 17, 10, 0.42) 0%, rgba(24, 17, 10, 0.18) 42%, rgba(24, 17, 10, 0.72) 100%);
}
/* Stronger scrim on small screens: the portrait hero crop has more bright sky
   behind the title, so deepen the gradient to keep white text readable. */
@media (max-width: 640px) {
  .hero-scrim {
    background: linear-gradient(183deg, rgba(24, 17, 10, 0.66) 0%, rgba(24, 17, 10, 0.44) 40%, rgba(24, 17, 10, 0.78) 100%);
  }
}
.hero-content { position: relative; z-index: 2; color: var(--cream); padding-top: 96px; padding-bottom: 64px; }
.hero-title { color: #FDF9F1; max-width: 21ch; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); }
.hero-sub { max-width: 62ch; font-size: 1.12rem; color: rgba(250, 246, 238, 0.94); text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero .btn-row { margin-top: 1.9rem; }

/* breadcrumbs */
.breadcrumbs { background: var(--beige); border-bottom: 1px solid var(--line); }
main > .breadcrumbs:first-child { margin-top: var(--header-h); }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem; align-items: center;
  max-width: var(--container); margin-inline: auto; padding: 0.65rem clamp(1.1rem, 4vw, 2rem);
  font-size: 0.85rem; color: var(--muted);
}
.crumb a { color: var(--brown); }
.crumb a:hover { color: var(--gold); }
.crumb:not(:last-child)::after { content: "›"; margin-inline-start: 0.55rem; color: var(--gold-soft); }
[dir="rtl"] .crumb:not(:last-child)::after { content: "‹"; }
.crumb--current { color: var(--muted); }

/* ==========================================================================
   Split sections / cards / grids
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split-img { order: -1; }
.split-img picture, .split-img img { border-radius: 18px; box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split .btn-row { margin-top: 1.4rem; }
.section-wide-img { margin-top: clamp(2rem, 4vw, 3rem); }
.section-wide-img picture, .section-wide-img img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-md); object-fit: cover; }

.cards { display: grid; gap: clamp(1.2rem, 2.4vw, 1.7rem); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(169, 139, 79, 0.45); }
.card-img, .card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-img { margin: 0; }
.card-icon {
  width: 62px; height: 62px; border-radius: 50%; background: var(--beige);
  display: flex; align-items: center; justify-content: center; color: var(--gold); margin: 1.5rem 1.5rem 0;
}
.card-icon .icon { width: 1.7rem; height: 1.7rem; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.card-body p { color: var(--muted); font-size: 0.99rem; flex: 1; margin-bottom: 0.6rem; }
.card-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem; align-items: center; margin-top: 0.4rem; }
.card-ctas .btn { padding: 0.62em 1.35em; font-size: 0.92rem; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2.6rem; }
.check-item { display: flex; gap: 0.85rem; align-items: flex-start; color: #453A2C; }
.check-item .icon {
  flex: none; width: 1.55rem; height: 1.55rem; margin-top: 0.22rem; color: var(--gold);
  background: rgba(201, 164, 92, 0.16); border-radius: 50%; padding: 0.24rem;
}
.chip-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.65em 1.35em;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  font-weight: 500; color: var(--brown); font-size: 1rem;
}
.chip .icon { color: var(--gold); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.step-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--beige); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step-icon .icon { width: 1.5rem; height: 1.5rem; }
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* note box */
.note {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-inline-start: 4px solid var(--gold-soft);
  border-radius: 12px; padding: 1.5rem 1.7rem; box-shadow: var(--shadow-sm);
}
.note-icon {
  flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--beige);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.note-icon .icon { width: 1.4rem; height: 1.4rem; }
.note h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.note p { margin: 0; color: var(--muted); font-size: 0.99rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 880px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(169, 139, 79, 0.5); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 1.4rem; font-weight: 500; font-size: 1.03rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--gold); transition: transform .25s ease; }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--muted); }
.faq-answer p { margin: 0; max-width: 75ch; }

/* ==========================================================================
   Reviews — Google review buttons + write-a-review form.
   No reviews are displayed until genuine, verified guest reviews are added.
   (Card styles below are kept ready for when real reviews are published.)
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 1.6rem; }
.review-card {
  background: var(--paper); border: 1px solid rgba(169, 139, 79, 0.35); border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; text-align: center;
}
.review-stars { display: flex; justify-content: center; gap: 0.2rem; color: var(--gold); margin: 0; }
.review-text { font-style: italic; color: var(--muted); flex: 1; margin: 0.2rem 0 0; }
.review-meta { font-size: 0.88rem; color: var(--ink); margin: 0; }
.review-meta strong { font-weight: 600; }
.review-demo-badge {
  align-self: center; margin: 0.35rem 0 0; padding: 0.28rem 0.7rem; border-radius: 999px;
  background: rgba(176, 83, 58, 0.09); border: 1px solid rgba(176, 83, 58, 0.45);
  color: #8A4A34; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.demo-notice {
  margin: 0 0 1.6rem; padding: 0.85rem 1.2rem; border-radius: var(--radius);
  background: rgba(176, 83, 58, 0.07); border: 1px dashed rgba(176, 83, 58, 0.5);
  color: #8A4A34; font-size: 0.9rem; text-align: center;
}
.review-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 2.8rem; }

/* --- write-a-review form --- */
.review-form-wrap {
  background: var(--paper); border: 1px solid rgba(169, 139, 79, 0.3); border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem; max-width: 760px; margin: 0 auto; text-align: left;
}
.review-form-wrap h3 { margin: 0 0 0.5rem; }
.review-form-wrap .lead { margin-bottom: 1.4rem; }
.review-form .form-grid { grid-template-columns: 1fr 1fr; }
.star-picker { border: 0; padding: 0; margin: 0; }
.star-picker legend { padding: 0; font-size: 0.92rem; font-weight: 500; margin-bottom: 0.45rem; }
/* DOM order 5..1 + row-reverse → visual order 1..5 (left to right);
   sibling selectors then fill every star to the left of the chosen one. */
.star-row { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.15rem; }
.star-row input[type="radio"] {
  position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.star-row label {
  font-size: 1.7rem; line-height: 1; color: rgba(60, 50, 40, 0.28); cursor: pointer; padding: 0.1rem 0.12rem;
  transition: color .15s ease, transform .15s ease;
}
.star-row label:hover { transform: scale(1.15); }
.star-row input[type="radio"]:checked ~ label,
.star-row input[type="radio"]:checked + label,
.star-row label:hover ~ label,
.star-row label:hover { color: var(--gold); }
.star-row input[type="radio"]:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 3px; }
.field--check { display: flex; align-items: flex-start; gap: 0.6rem; }
.field--check input[type="checkbox"] { width: auto; margin-top: 0.28rem; accent-color: var(--gold); }
.field--check label { font-size: 0.88rem; color: var(--muted); }
.field-note { font-size: 0.85rem; color: var(--muted); margin: -0.2rem 0 0; }
.review-form .form-foot { justify-content: flex-start; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(1200px 500px at 50% -220px, rgba(201, 164, 92, 0.22), transparent 70%),
    #241C13;
  color: var(--cream); padding-block: clamp(3.6rem, 7vw, 5.4rem);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 4l24 24-24 24L4 28z' fill='none' stroke='%23E8D6B7' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 56px;
}
.cta-band-inner { position: relative; text-align: center; }
.cta-band h2 { color: #F5EDDD; }
.cta-band p { color: rgba(245, 237, 221, 0.85); max-width: 58ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.8rem; }
.cta-ornament { width: 120px; height: 12px; color: var(--gold-soft); margin: 0 auto 1.4rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.gallery-item { margin: 0; }
.gallery-item picture, .gallery-item img {
  border-radius: 16px; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
.gallery-item:hover picture { box-shadow: var(--shadow-md); }
.gallery-item figcaption { text-align: center; font-size: 0.92rem; color: var(--muted); margin-top: 0.65rem; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.2rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.2rem; color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { border-color: rgba(169, 139, 79, 0.5); transform: translateY(-3px); box-shadow: var(--shadow-sm); color: var(--ink); }
.contact-icon {
  flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--beige); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon .icon { width: 1.35rem; height: 1.35rem; }
.contact-icon--wa { color: var(--wa); }
.contact-icon--wa .icon { width: 1.6rem; height: 1.6rem; }
.contact-card h3 { font-size: 1.02rem; margin: 0 0 0.1rem; }
.contact-card p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* form */
.quote-form { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.4rem, 3.5vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--brown); }
.req { color: #B0533A; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #FFFEFB; border: 1.5px solid #DCD0B8; border-radius: 10px; padding: 0.72rem 0.9rem;
  transition: border-color .2s ease, box-shadow .2s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-soft); box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.18);
}
.field input[aria-invalid="true"] { border-color: #B0533A; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A6C59' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center;
  padding-inline-end: 2.4rem;
}
[dir="rtl"] .field select { background-position: left 0.9rem center; }
.field textarea { resize: vertical; }
.hp-field { position: absolute; inset-inline-start: -9999px; opacity: 0; height: 0; width: 0; }
.form-error {
  background: #FBEFEA; border: 1px solid #E2B6A4; color: #8C3D22;
  border-radius: 10px; padding: 0.8rem 1.1rem; font-size: 0.95rem; margin-top: 1.1rem;
}
.form-foot { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; margin-top: 1.6rem; }
.form-privacy { font-size: 0.85rem; color: var(--muted); max-width: 46ch; margin: 0; }
.form-privacy a { text-decoration: underline; }

.form-confirmation {
  background: var(--paper); border: 1px solid rgba(169, 139, 79, 0.5); border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; box-shadow: var(--shadow-sm);
}
.confirm-icon {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%;
  background: rgba(37, 211, 102, 0.12); color: #1DA851; display: flex; align-items: center; justify-content: center;
}
.confirm-icon .icon { width: 1.9rem; height: 1.9rem; }
.form-confirmation .btn-row { margin: 1.4rem 0 1.2rem; }
.form-confirmation #confirm-edit { margin-top: 0.4rem; }

/* map */
.map-frame {
  min-height: 330px; border: 2px dashed rgba(169, 139, 79, 0.6); border-radius: 18px;
  background: repeating-linear-gradient(45deg, var(--paper) 0 18px, #FBF6EC 18px 36px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem;
  text-align: center; padding: 2rem; color: var(--muted);
}
.map-pin .icon { width: 2.4rem; height: 2.4rem; color: var(--gold); }
.map-frame p { margin: 0; font-size: 0.95rem; letter-spacing: 0.04em; }

/* --- live Google Maps embed (exact business location from the Google Business Profile) --- */
.map-embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(169, 139, 79, 0.35);
  box-shadow: 0 12px 34px rgba(31, 26, 18, 0.10);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-actions { display: flex; justify-content: center; margin-top: 1.2rem; }

/* legal */
.legal-page { padding: 120px 0 clamp(3.6rem, 8vw, 6rem); background: var(--cream); }
.legal-page h1 { margin-top: 0.2em; }
.legal-section { margin-top: 2.3rem; }
.legal-section h2 { font-size: 1.45rem; }
.legal-section p { color: #4A4032; max-width: 75ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #221A12; color: #C9BCA6; margin-top: 0; }
.footer-grid {
  max-width: var(--container); margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.4rem) clamp(1.1rem, 4vw, 2rem) 2.4rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem;
}
.brand--footer { color: var(--cream); margin-bottom: 0.9rem; }
.footer-tagline { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-pale); margin: 0 0 0.7rem; }
.footer-services-line { font-size: 0.92rem; color: #A79A83; margin-bottom: 0.7rem; }
.footer-location { display: flex; gap: 0.5rem; align-items: center; font-size: 0.92rem; color: #A79A83; margin: 0; }
.footer-col h3 {
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: #C9BCA6; font-size: 0.97rem; }
.footer-col a:hover { color: var(--gold-pale); }
.footer-contact .icon { color: var(--gold-soft); }
.footer-contact .icon-wa { color: #4ADE80; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.55rem; }
.footer-langs {
  max-width: var(--container); margin-inline: auto; padding: 0 clamp(1.1rem, 4vw, 2rem) 1.4rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-langs-label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8D816C; margin: 0; }
.footer-langs .lang-item { color: #C9BCA6; border-color: rgba(201, 188, 166, 0.3); }
.footer-langs .lang-item:hover { background: rgba(232, 214, 183, 0.1); color: var(--gold-pale); border-color: rgba(232, 214, 183, 0.5); }
.footer-langs .lang-item--current { color: var(--gold-pale); border-color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(201, 188, 166, 0.16);
  max-width: var(--container); margin-inline: auto; padding: 1.4rem clamp(1.1rem, 4vw, 2rem) 1.8rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; align-items: center; justify-content: space-between;
}
.footer-legal-links ul { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.footer-legal-links a { font-size: 0.88rem; color: #A79A83; }
.footer-legal-links a:hover { color: var(--gold-pale); }
.footer-copy { font-size: 0.88rem; margin: 0; color: #A79A83; }
.footer-based { font-size: 0.85rem; margin: 0; color: #8D816C; }

/* floating WhatsApp */
.wa-float {
  position: fixed; bottom: 1.3rem; inset-inline-end: 1.3rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform .22s ease, background-color .22s ease;
}
.wa-float:hover { transform: scale(1.08); background: var(--wa-dark); color: #fff; }
.wa-float .icon { width: 1.85rem; height: 1.85rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { margin-inline-start: auto; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split-img { order: 0; }
  .split-img { order: 2; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .review-form-wrap { padding: 1.6rem 1.2rem 1.4rem; }
  .review-form .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .form-foot { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero .btn-row .btn { width: 100%; }
  .hero .btn-row { flex-direction: column; align-items: stretch; max-width: 420px; }
  .header-inner { gap: 0.9rem; }
  .header-wa { display: none; }
  .wa-float { bottom: 1rem; inset-inline-end: 1rem; width: 54px; height: 54px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .header-inner { gap: 0.65rem; padding-inline: 0.75rem; }
  .brand { gap: 0.45rem; }
  .brand-name { font-size: 1rem; }
  .brand-sub { letter-spacing: 0.24em; }
  .lang-btn { padding: 0.45em 0.6em; font-size: 0.82rem; }
  .nav-toggle { width: 42px; height: 42px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
