@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:     #c9b49a;
  --champagne: #e0cba8;
  --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: var(--cream);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

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);
  transition:
    background var(--medium) var(--ease),
    padding var(--medium) var(--ease),
    box-shadow var(--medium) var(--ease);
}

.nav.scrolled {
  background: rgba(12,11,9,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 101;
  text-decoration: none;
}

.nav__logo-img {
  height: 2.75rem;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.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__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;
  left: 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); }

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

.gallery__item {
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}

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

.gallery--grid .gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

.perk__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}

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

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

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.fade-up.visible,
.fade-in.visible { opacity: 1; transform: 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); }

/* ===== SOCIAL FLOATING BUTTONS ===== */
.whatsapp-btn {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 90;
  width: 3.25rem;
  height: 3.25rem;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--fast), box-shadow var(--fast);
  text-decoration: none;
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.whatsapp-btn:hover {
  transform: scale(1.09) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.whatsapp-btn svg { display: block; }

/* ===== 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 {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav.menu-open .nav__logo {
    opacity: 0;
    pointer-events: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 200;
  }

  .nav.menu-open .nav__toggle {
    z-index: 201;
  }

  .nav__links.open a {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }

  .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 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery--home { columns: 1; }
  .gallery--grid { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ===== NAV: LOGO CENTER (non-sticky) ===== */
.nav:not(.scrolled) .nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== 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);
}

.nav__sub-btn::after { content: '›'; transition: transform var(--fast) var(--ease); }
.has-sub:hover .nav__sub-btn,
.has-sub.open .nav__sub-btn { color: var(--champagne); }
.has-sub:hover .nav__sub-btn::after,
.has-sub.open .nav__sub-btn::after { transform: rotate(90deg); }

.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;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease), visibility 0s var(--fast);
  list-style: none;
  z-index: 200;
}

.has-sub:hover .nav__sub,
.has-sub.open .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.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 in overlay */
@media (max-width: 768px) {
  .nav__links.open .has-sub .nav__sub {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: max-height var(--medium) var(--ease), opacity var(--medium) var(--ease), visibility 0s var(--medium);
  }

  .nav__links.open .has-sub.open .nav__sub {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.25rem 0 0.75rem 1.5rem;
    transition: max-height var(--medium) var(--ease), opacity var(--medium) var(--ease);
  }

  .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 .nav__sub-divider {
    font-size: 0.72rem;
    padding: 0.5rem 0 0.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.35rem;
    color: rgba(250,246,239,0.4);
    letter-spacing: 0.08em;
  }

  .nav__links.open .nav__sub-btn {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--cream);
  }
}

/* ===== CLIENT CAROUSEL ===== */
.clients-section { overflow: hidden; padding: var(--section-v) 0; }

.clients-section .container { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.clients-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: carouselScroll 32s linear infinite;
  padding: 0.5rem 0;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--medium), transform var(--medium);
  cursor: default;
}

.client-logo:hover { opacity: 1; transform: scale(1.08); }
