@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --black:     #0c0b09;
  --charcoal:  #1a1816;
  --ink:       #2d2a26;
  --muted:     #7d7368;
  --beige:     #ffffff;
  --champagne: #ffffff;
  --sand:      #ede5d6;
  --cream:     #faf6ef;
  --gold:      #b89060;
  --error:     #c0392b;

  --serif: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:  'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;

  --page-pad:  clamp(1.5rem, 5vw, 5rem);
  --gap:       clamp(0.75rem, 1.5vw, 1.25rem);
  --section-v: clamp(5rem, 12vw, 10rem);

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --slow:   0.8s;
  --medium: 0.5s;
  --fast:   0.28s;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
  overflow-x: hidden;
}

body { overflow-x: hidden; }

img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--page-pad);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition:
    padding var(--medium) var(--ease);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Pseudo-element carries the blur+bg and the GPU-layer trick,
   so transform doesn't create a stacking context on nav itself
   (which would break the mobile menu's position:fixed overlay). */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12,11,9,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.nav.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__center .nav__logo {
  position: static;
  transform: none;
}

.nav__home {
  display: flex;
  align-items: center;
  color: rgba(250,246,239,0.75);
  transition: color var(--fast) var(--ease);
  flex-shrink: 0;
  z-index: 101;
}

.nav__home:hover { color: var(--champagne); }

.nav__home svg { display: block; pointer-events: none; }

.nav__logo-img {
  height: 5.5rem;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  transition: height var(--medium) var(--ease);
}

.nav.scrolled .nav__logo-img {
  height: 3rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.75);
  transition: color var(--fast) var(--ease);
}

.nav__links a:hover { color: var(--champagne); }

.nav__links .nav__cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(201,180,154,0.6);
  border-radius: 999px;
  color: var(--beige);
  font-weight: 500;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}

.nav__links .nav__cta:hover {
  background: var(--beige);
  color: var(--black);
  border-color: var(--beige);
}

.nav__social-bar {
  display: none;
  list-style: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform var(--medium) var(--ease), opacity var(--fast);
}

.nav__toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--page-pad) clamp(3rem, 9vh, 6rem);
  overflow: hidden;
  color: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12,11,9,0.15) 0%,
    rgba(12,11,9,0.45) 50%,
    rgba(12,11,9,0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--cream);
}

.hero__sub {
  max-width: 38rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(250,246,239,0.72);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: clamp(3rem, 9vh, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, rgba(250,246,239,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--page-pad) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  color: var(--cream);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.82) 0%, rgba(12,11,9,0.2) 65%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

/* ===== SECTIONS ===== */
.section { padding: var(--section-v) 0; }

.section--dark  { background: var(--charcoal); color: var(--cream); }
.section--black { background: var(--black);    color: var(--cream); }
.section--sand  { background: var(--sand); }
.divider-sand { background: var(--sand); height: 2px; width: 80%; margin: 0 auto; border-radius: 2px; }

.section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section__header { margin-bottom: clamp(2.5rem, 6vw, 5rem); }

.section__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.section--dark  .section__title,
.section--black .section__title { color: var(--cream); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform var(--fast) var(--ease),
    background var(--fast),
    color var(--fast),
    border-color var(--fast);
  text-decoration: none;
}

.btn:hover   { transform: translateY(-2px); }
.btn:active  { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.btn--primary {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}
.btn--primary:hover { background: var(--champagne); border-color: var(--champagne); }

.btn--dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,239,0.45);
}
.btn--ghost-light:hover { background: rgba(250,246,239,0.1); border-color: var(--cream); }

.btn--hero {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,239,0.5);
}
.btn--hero:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }

/* ===== LINK ARROW ===== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--fast);
}
.link-arrow::after { content: '←'; transition: transform var(--fast); }
.link-arrow:hover { gap: 1rem; }
.link-arrow:hover::after { transform: translateX(-0.2rem); }

/* ===== GALLERY ===== */
.gallery--home {
  columns: 3;
  column-gap: clamp(1rem, 2vw, 1.75rem);
  padding: 0 var(--page-pad);
  margin: clamp(2rem, 5vw, 4rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 2000px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background-color: var(--cream);
  transition: transform 0.8s var(--ease);
  pointer-events: auto;
  cursor: zoom-in;
}

.gallery__item:hover img { transform: scale(1.04); }

/* Full gallery grid (weddings etc) */
.gallery--grid {
  columns: 3;
  column-gap: clamp(1rem, 2vw, 1.75rem);
  padding: 0 var(--page-pad);
  background: #ffffff;
  content-visibility: auto;
  contain-intrinsic-size: 0 3000px;
}

.gallery--grid .gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.gallery--2col {
  columns: 2;
  column-gap: var(--gap);
}
.gallery--2col .gallery__item {
  break-inside: avoid;
  margin-bottom: var(--gap);
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.split--reverse .split__image { order: 2; }
.split--reverse .split__copy  { order: 1; }

.split__image {
  overflow: hidden;
  border-radius: 8px;
}

.split__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}

.split__image:hover img { transform: scale(1.03); }

.split__copy { padding: clamp(1rem, 3vw, 2.5rem) 0; }

.split__copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.section--dark .split__copy h2,
.section--black .split__copy h2 { color: var(--cream); }

.split__copy p {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.section--dark .split__copy p,
.section--black .split__copy p { color: rgba(250,246,239,0.6); }

.split__copy .btn { margin-top: 1rem; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  text-decoration: none;
  color: var(--cream);
}

.service-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-card:hover .service-card__bg img { transform: scale(1.06); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(12,11,9,0.82) 0%, rgba(12,11,9,0.08) 60%);
  transition: background var(--medium);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(12,11,9,0.9) 0%, rgba(12,11,9,0.15) 60%);
}

.service-card__body { position: relative; z-index: 2; }

.service-card__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.6);
  transition: color var(--fast), gap var(--fast);
}

.service-card__arrow::after { content: '→'; }
.service-card:hover .service-card__arrow { color: var(--cream); gap: 0.75rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { overflow: hidden; }

.testimonials__track {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 0.65s var(--ease);
}

.testimonial {
  flex: 0 0 min(100%, 42rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 2rem;
}

.testimonial__author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.testimonials__dot {
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--fast), width var(--fast);
  border: none;
}

.testimonials__dot.active { width: 3.5rem; background: var(--gold); }

/* ===== CTA SECTION ===== */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: var(--section-v) var(--page-pad);
}

.cta-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cta-copy p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,246,239,0.6);
  line-height: 1.7;
}

/* ===== FORM ===== */
.form { display: grid; gap: 1rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.45);
}

.form__input,
.form__textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--fast);
  width: 100%;
  min-width: 0;
}

.form__input:focus,
.form__textarea:focus { border-color: var(--gold); }

.form__input::placeholder,
.form__textarea::placeholder { color: rgba(250,246,239,0.22); }

.form__textarea { resize: vertical; min-height: 7rem; }

/* Light form variant (contact page) */
.form--light .form__label { color: var(--muted); }
.form--light .form__input,
.form--light .form__textarea {
  background: var(--cream);
  border-color: rgba(45,42,38,0.18);
  color: var(--ink);
}
.form--light .form__input::placeholder,
.form--light .form__textarea::placeholder { color: rgba(45,42,38,0.3); }
.form--light .form__input:focus,
.form--light .form__textarea:focus { border-color: var(--gold); }

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.stat {
  background: var(--cream);
  padding: 2.25rem 1.75rem;
}

.section--dark .stats { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.08); }
.section--dark .stat { background: var(--charcoal); }

.stat__number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.section--dark .stat__number { color: var(--cream); }

.stat__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== PERKS / WHAT YOU GET ===== */
.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.perk {
  padding: 2.25rem;
  border: 1px solid var(--sand);
  border-radius: 8px;
  transition: border-color var(--fast);
  text-align: center;
}

.perk:hover { border-color: var(--gold); }

.perk__icon {
  width: 44px;
  height: 44px;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  margin-inline: auto;
}
.perk__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.perk__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.perk__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq { border-top: 1px solid var(--sand); }
.faq__item { border-bottom: 1px solid var(--sand); }

.section--dark .faq { border-top-color: rgba(255,255,255,0.1); }
.section--dark .faq__item { border-bottom-color: rgba(255,255,255,0.1); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  text-align: right;
  color: var(--ink);
  transition: color var(--fast);
}

.section--dark .faq__question { color: var(--cream); }
.faq__question:hover { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--medium) var(--ease), color var(--fast);
  color: var(--muted);
}

.faq__item.open .faq__icon { transform: rotate(45deg); color: var(--gold); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--medium) var(--ease);
}

.faq__answer p {
  padding-bottom: 1.75rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

.section--dark .faq__answer p { color: rgba(250,246,239,0.55); }

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card__image {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.blog-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.75s var(--ease);
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  transition: color var(--fast);
}

.blog-card:hover .blog-card__title { color: var(--gold); }

.blog-card__excerpt {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.blog-card__date {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--beige);
  margin-top: 1rem;
}

/* ===== BLOG ARTICLE ===== */
.article-hero { padding: var(--section-v) var(--page-pad) clamp(2rem, 5vw, 4rem); }
.article-hero__label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.article-hero__title { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 300; line-height: 0.92; letter-spacing: -0.04em; max-width: 22ch; margin-bottom: 1.5rem; }
.article-hero__meta { font-size: 0.82rem; color: var(--muted); }

.article-body { max-width: 46rem; margin: 0 auto; padding: 0 var(--page-pad) var(--section-v); }
.article-body h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; letter-spacing: -0.03em; margin: 2.5rem 0 1rem; color: var(--ink); }
.article-body p { font-size: 1.08rem; font-weight: 300; color: var(--ink); line-height: 1.8; margin-bottom: 1.5rem; }
.article-body img { border-radius: 8px; margin: 2rem 0; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 7rem;
}

.about-sticky img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.about-copy h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}

.about-copy p {
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-info h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details { display: grid; gap: 1.25rem; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail__value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
}

/* ===== LOGIN GATE ===== */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 2rem;
  overflow: hidden;
  touch-action: none;
}

.gate__bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.gate__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gate__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  text-align: center;
  color: var(--cream);
}

.gate__brand {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.gate__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.gate__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250,246,239,0.5);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.gate__form { display: grid; gap: 0.85rem; text-align: left; }

.gate__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.4);
  margin-bottom: 0.35rem;
}

.gate__input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--fast);
}

.gate__input:focus { border-color: var(--gold); }
.gate__input::placeholder { color: rgba(250,246,239,0.2); }

.gate__error {
  font-size: 0.85rem;
  color: #e05555;
  min-height: 1.2rem;
  text-align: center;
}

.gate.hidden { display: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) var(--page-pad) 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.footer__hebrew {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-top: 0.25rem;
}

.footer__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250,246,239,0.45);
  line-height: 1.75;
  max-width: 22rem;
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links { display: grid; gap: 0.7rem; }

.footer__links a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250,246,239,0.5);
  transition: color var(--fast);
}

.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(250,246,239,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom a { color: inherit; transition: color var(--fast); }
.footer__bottom a:hover { color: var(--cream); }

.footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer__legal-links .footer__a11y-link {
  font-size: 0.76rem;
  color: rgba(250,246,239,0.35);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.footer__legal-links .footer__a11y-link:hover { color: var(--cream); }
.footer__legal-links .footer__a11y-link:focus-visible {
  outline: 2px solid var(--gold, #b89060);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

@media (max-width: 768px) {
  .fade-up {
    transform: none;
    transition: opacity 0.7s var(--ease);
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.fade-up.visible,
.fade-in.visible { opacity: 1; transform: none; transition: none; }

.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.24s; }
.fade-up:nth-child(4) { transition-delay: 0.36s; }
.fade-up:nth-child(5) { transition-delay: 0.48s; }

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* ===== UTILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--cream);
  color: var(--black);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.82rem;
  transform: translateY(-200%);
  transition: transform var(--fast);
}
.skip-link:focus { transform: translateY(0); }

/* ===== WHATSAPP NAV BUTTON ===== */
.nav__toggle-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
}

.nav__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  text-decoration: none;
  opacity: 0.8;
  transition: transform var(--fast), opacity var(--fast);
  z-index: 101;
}

.nav__wa-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav__wa-btn:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img-wrap {
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
  display: block;
  user-select: none;
  pointer-events: none;
}
.lightbox__img.fade { opacity: 0; }
.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(12,11,9,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}
.lightbox__close:hover {
  background: rgba(12,11,9,0.9);
  transform: scale(1.08);
}
.lightbox__close svg { display: block; }
.lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-family: var(--font);
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  left: 1.5rem;
  bottom: 2rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(12,11,9,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: rgba(12,11,9,0.85);
  transform: translateY(-3px);
}
.scroll-top svg { display: block; }
.scroll-top.hidden-by-nav { opacity: 0 !important; pointer-events: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery--home { columns: 2; }
  .gallery--grid { columns: 2; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav.menu-open {
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav.menu-open::before {
    display: none;
  }

  .nav.menu-open .nav__logo {
    opacity: 0;
    pointer-events: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(14,13,12,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    overflow-y: auto;
    gap: 0;
    z-index: 200;
    text-align: center;
  }

  .nav.menu-open .nav__toggle {
    z-index: 201;
  }

  .nav.menu-open .nav__toggle-group {
    position: relative;
    z-index: 201;
  }

  .nav__links.open > li {
    width: 100%;
    text-align: center;
  }

  .nav__links.open > li:not(.nav__social-bar) > a,
  .nav__links.open .nav__sub-btn {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    display: block;
    padding: 0.75rem 1rem;
    min-height: 44px;
    width: 100%;
  }

  .nav__links.open .nav__social-bar a,
  .nav__links.open .nav__social-bar button {
    display: flex;
    width: auto;
    padding: 0;
  }

  .nav__links.open .nav__social-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding-top: 1.5rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(250,246,239,0.15);
  }

  .nav__social-bar a,
  .nav__social-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,246,239,0.75);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color var(--fast) var(--ease);
  }

  .nav__social-bar a:hover,
  .nav__social-bar button:hover {
    color: var(--cream);
  }

  .gallery--home { columns: 2; }
  .gallery--grid { columns: 2; }
  .gallery--2col { columns: 1; }

  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__image { order: 0; }
  .split--reverse .split__copy  { order: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }

  .cta-grid {
    grid-template-columns: 1fr;
    padding: var(--section-v) var(--page-pad);
  }

  .form__row { grid-template-columns: 1fr; }
  .perks { gap: 0.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .page-hero {
    height: 65vh;
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .gallery--home { columns: 1; }
  .gallery--grid { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }

  .a11y-trigger,
  .scroll-top {
    width: 2.75rem;
    height: 2.75rem;
  }
  .a11y-trigger { right: 1rem; bottom: 1.25rem; }
  .scroll-top { left: 1rem; }
  .nav__wa-btn { width: 1.75rem; height: 1.75rem; }
}

/* Logo centering is defined in .nav__logo above — always absolute center */

/* ===== NAV: DROPDOWNS ===== */
.nav__links .has-sub { position: relative; }

.nav__sub-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  transition: color var(--fast) var(--ease);
}

.has-sub:hover .nav__sub-btn,
.has-sub.open .nav__sub-btn { color: var(--champagne); }

.nav__sub {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 180px;
  background: rgba(12,11,9,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 200;
  /* GPU-accelerated: no visibility, no height, no layout reflow */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.has-sub:hover .nav__sub,
.has-sub.open .nav__sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav__sub a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.6);
  transition: color var(--fast);
  white-space: nowrap;
}

.nav__sub a:hover { color: var(--cream); }

.nav__sub-divider {
  padding: 0.75rem 1.25rem 0.3rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(250,246,239,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.35rem;
  cursor: default;
  list-style: none;
}

/* Mobile dropdown — height measured by JS, only opacity/height transition */
@media (max-width: 768px) {
  .nav__links.open .has-sub .nav__sub {
    position: static;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    overflow: hidden;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    will-change: height, opacity;
    transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.18s ease;
  }

  .nav__links.open .has-sub.open .nav__sub {
    opacity: 1;
    pointer-events: auto;
    padding: 0.25rem 0 0.75rem 0;
    /* explicit height set by JS */
  }

  .nav__links.open .nav__sub a {
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0;
    color: rgba(250,246,239,0.5);
  }

  .nav__links.open > li {
    width: 100%;
    text-align: center;
  }

  .nav__links.open > li:not(.nav__social-bar) > a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav__links.open > li > a.nav__cta {
    display: inline-block;
    width: auto;
  }

  .nav__links.open .nav__social-bar a,
  .nav__links.open .nav__social-bar button {
    display: flex;
    width: auto;
    padding: 0;
  }

  .nav__links.open .nav__sub-btn {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    width: 100%;
    justify-content: center;
  }
}

/* Ensure inline height from mobile JS doesn't bleed into desktop */
@media (min-width: 769px) {
  .nav__sub { height: auto !important; }
}

/* ===== LOGOS CAROUSEL ===== */
.clients-section { overflow: hidden; padding: var(--section-v) 0; }

.clients-section .container { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.logos-carousel-mask {
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  direction: ltr;
  will-change: transform;
}

.logo-slide {
  width: 220px;
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.55);
}

.logo-slide img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  opacity: 1;
  display: block;
  pointer-events: none;
}

/* ===== ACCESSIBILITY SYSTEM ===== */

/* Floating trigger button */
.a11y-trigger {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 9999;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--charcoal, #1a1816);
  border: none;
  color: var(--gold, #b89060);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  /* Always render on top of the panel */
  isolation: isolate;
}
.a11y-trigger__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.a11y-trigger:hover {
  transform: scale(1.08);
  background: var(--gold, #b89060);
  color: var(--charcoal, #1a1816);
  box-shadow: 0 8px 24px rgba(184,144,96,0.4);
}
.a11y-trigger:focus-visible {
  outline: 3px solid var(--gold, #b89060);
  outline-offset: 4px;
}

/* Background overlay */
.a11y-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9050;
  display: none;
  cursor: pointer;
}
.a11y-overlay.open { display: block; }

/* Panel drawer */
.a11y-panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9080;
  width: min(340px, 94vw);
  background: #0e0d0c;
  border-left: 1px solid rgba(184,144,96,0.2);
  color: var(--cream, #faf6ef);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.a11y-panel.open { transform: translateX(0); }

/* Panel header */
.a11y-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,144,96,0.15);
  flex-shrink: 0;
}
.a11y-panel__title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #b89060);
  margin: 0;
}
.a11y-panel__close {
  background: none;
  border: none;
  color: rgba(250,246,239,0.6);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}
.a11y-panel__close:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.a11y-panel__close:focus-visible {
  outline: 2px solid var(--gold, #b89060);
  outline-offset: 2px;
}

/* Toggle items list */
.a11y-items {
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

/* Individual toggle row */
.a11y-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 400;
  font-family: inherit;
  color: rgba(250,246,239,0.75);
  text-align: right;
  width: 100%;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.a11y-item:hover {
  background: rgba(184,144,96,0.07);
  border-color: rgba(184,144,96,0.22);
  color: var(--cream);
}
.a11y-item:focus-visible {
  outline: 2px solid var(--gold, #b89060);
  outline-offset: 2px;
}
.a11y-item.active {
  background: rgba(184,144,96,0.11);
  border-color: rgba(184,144,96,0.38);
  color: var(--cream);
}
.a11y-item__label { flex: 1; }

/* RTL toggle switch */
.a11y-toggle {
  position: relative;
  width: 2.6rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  transition: background 0.2s;
}
.a11y-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: transform 0.2s, background 0.2s;
}
.a11y-item.active .a11y-toggle { background: var(--gold, #b89060); }
.a11y-item.active .a11y-toggle::after {
  transform: translateX(-1.2rem);
  background: #fff;
}

/* Font size section */
.a11y-font-section { display: flex; flex-direction: column; gap: 0.5rem; }
.a11y-font-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.35);
  margin: 0;
}
.a11y-font-controls { display: flex; gap: 0.5rem; }
.a11y-font-btn {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(250,246,239,0.7);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.a11y-font-btn:nth-child(1) { font-size: 0.85rem; }
.a11y-font-btn:nth-child(2) { font-size: 1rem; }
.a11y-font-btn:nth-child(3) { font-size: 1.15rem; }
.a11y-font-btn:hover {
  background: rgba(184,144,96,0.07);
  border-color: rgba(184,144,96,0.22);
  color: var(--cream);
}
.a11y-font-btn:focus-visible {
  outline: 2px solid var(--gold, #b89060);
  outline-offset: 2px;
}
.a11y-font-btn.active {
  background: rgba(184,144,96,0.11);
  border-color: rgba(184,144,96,0.38);
  color: var(--cream);
}

/* Reset button */
.a11y-reset {
  margin-top: auto;
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(250,246,239,0.45);
  cursor: pointer;
  font-size: 0.82rem;
  font-family: inherit;
  width: 100%;
  text-align: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.a11y-reset:hover { background: rgba(255,255,255,0.07); color: var(--cream); }
.a11y-reset:focus-visible {
  outline: 2px solid var(--gold, #b89060);
  outline-offset: 2px;
}

/* Statement link at bottom of panel */
.a11y-stmt-link {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250,246,239,0.3);
  text-decoration: none;
  transition: color 0.15s;
  padding: 0.25rem;
  flex-shrink: 0;
}
.a11y-stmt-link:hover { color: var(--gold, #b89060); }
.a11y-stmt-link:focus-visible {
  outline: 2px solid var(--gold, #b89060);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Accessibility statement link in footer */
.footer__a11y-link {
  font-size: 0.76rem;
  color: rgba(250,246,239,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__a11y-link:hover { color: var(--gold, #b89060); }

/* ---- Applied accessibility modes ---- */

/* High contrast — filter applied to content children only, NOT body.
   Reason: filter on body turns it into a containing block for position:fixed,
   which rips nav/buttons off the viewport. Applying to children avoids this. */
body.a11y-contrast > nav,
body.a11y-contrast > main,
body.a11y-contrast > footer,
body.a11y-contrast > #gate,
body.a11y-contrast > .skip-link,
body.a11y-contrast > .whatsapp-btn {
  filter: contrast(1.55);
}

/* Grayscale — same child-only approach */
body.a11y-grayscale:not(.a11y-contrast) > nav,
body.a11y-grayscale:not(.a11y-contrast) > main,
body.a11y-grayscale:not(.a11y-contrast) > footer,
body.a11y-grayscale:not(.a11y-contrast) > #gate,
body.a11y-grayscale:not(.a11y-contrast) > .skip-link,
body.a11y-grayscale:not(.a11y-contrast) > .whatsapp-btn {
  filter: grayscale(1);
}

/* Combined: contrast + grayscale */
body.a11y-contrast.a11y-grayscale > nav,
body.a11y-contrast.a11y-grayscale > main,
body.a11y-contrast.a11y-grayscale > footer,
body.a11y-contrast.a11y-grayscale > #gate,
body.a11y-contrast.a11y-grayscale > .skip-link,
body.a11y-contrast.a11y-grayscale > .whatsapp-btn {
  filter: contrast(1.55) grayscale(1);
}

/* Link highlighting */
body.a11y-links a {
  text-decoration: underline !important;
  text-decoration-color: var(--gold, #b89060) !important;
  text-underline-offset: 3px;
  outline: 1px solid rgba(184,144,96,0.25);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Stop all animations */
body.a11y-no-anim *,
body.a11y-no-anim *::before,
body.a11y-no-anim *::after {
  animation-duration:       0.001ms !important;
  animation-iteration-count: 1     !important;
  transition-duration:      0.001ms !important;
  scroll-behavior:          auto   !important;
}

/* Font scaling */
body.a11y-font-lg { font-size: 110%; }
body.a11y-font-xl { font-size: 125%; }

/* Enhanced keyboard focus */
body.a11y-focus *:focus-visible,
body.a11y-focus *:focus {
  outline: 3px solid var(--gold, #b89060) !important;
  outline-offset: 3px !important;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════
   Service strips — index.html #work section
   Full-width horizontal banners, text above each image
   ═══════════════════════════════════════════════════════ */

.svc-strips {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 0 var(--page-pad);
  margin-top: 3.5rem;
}

/* ── Single strip wrapper (is the <a> tag) ── */
.svc-strip {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── Text header above the image ── */
.svc-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184, 144, 96, 0.2);
  transition: border-color 0.35s ease;
}

.svc-strip:hover .svc-strip__head,
.svc-strip:focus-visible .svc-strip__head {
  border-color: rgba(184, 144, 96, 0.6);
}

.svc-strip__meta {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}

.svc-strip__eye {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

.svc-strip__name {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.svc-strip:hover .svc-strip__name,
.svc-strip:focus-visible .svc-strip__name {
  color: var(--gold);
}

/* Arrow link — right side (logical end in RTL = left) */
.svc-strip__link {
  font-size: 0.78rem;
  color: var(--muted, #8a7f74);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.svc-strip:hover .svc-strip__link,
.svc-strip:focus-visible .svc-strip__link {
  color: var(--gold);
  gap: 0.7rem;
}

.svc-strip__link::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.svc-strip:hover .svc-strip__link::before {
  width: 3.5rem;
}

/* ── Description text ── */
.svc-strip__desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted, #8a7f74);
  max-width: 52ch;
  margin: 0.6rem 0 1.4rem;
}

/* ── Image container ── */
.svc-strip__img {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--charcoal);
  aspect-ratio: 21 / 6;
  border-radius: 4px;
}

.svc-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.svc-strip:hover .svc-strip__img img,
.svc-strip:focus-visible .svc-strip__img img {
  transform: scale(1.04);
}

/* Subtle darkening overlay on hover */
.svc-strip__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0);
  transition: background 0.5s ease;
  pointer-events: none;
}

.svc-strip:hover .svc-strip__img::after {
  background: rgba(26, 24, 22, 0.12);
}

/* ── Desktop: text right / image left ── */
@media (min-width: 769px) {
  .svc-strip {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 4rem;
    align-items: start;
  }

  /* Remove the bottom separator line — use top border on strip instead */
  .svc-strip__head {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(184, 144, 96, 0.2);
    transition: border-color 0.35s ease;
  }

  .svc-strip:hover .svc-strip__head,
  .svc-strip:focus-visible .svc-strip__head {
    border-color: rgba(184, 144, 96, 0.6);
  }

  .svc-strip__desc {
    grid-column: 1;
    grid-row: 2;
    margin: 0.5rem 0 0;
    max-width: none;
  }

  .svc-strip__link {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    margin-top: 1.5rem;
  }

  .svc-strip__img {
    grid-column: 2;
    grid-row: 1 / 4;
    aspect-ratio: 4 / 3;
  }
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  .svc-strips      { gap: 3.5rem; margin-top: 2rem; }
  .svc-strip__img  { aspect-ratio: 16 / 7; }
  .svc-strip__name { font-size: 1.3rem; }
  .svc-strip__desc { font-size: 0.88rem; max-width: none; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .svc-strips      { gap: 2.5rem; padding: 0 1rem; }
  .svc-strip__img  { aspect-ratio: 4 / 3; }
  .svc-strip__name { font-size: 1.15rem; }
  .svc-strip__meta { gap: 0.75rem; }
  .svc-strip__link { display: none; }
  .svc-strip__desc { font-size: 0.85rem; margin-bottom: 1rem; }
}
