/* ============================================================
   CUSTOM FONT
   ============================================================ */
@font-face {
  font-family: 'Mauritius';
  src: url('mauritius-regular-fm.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --black:       #1d3d34;
  --near-black:  #172e27;
  --dark:        #243f37;
  --card:        #1e3d35;
  --border:      rgba(255, 255, 255, 0.07);
  --border-mid:  rgba(255, 255, 255, 0.12);
  --text:        #ede9e1;
  --muted:       rgba(237, 233, 225, 0.52);
  --dim:         rgba(237, 233, 225, 0.12);
  --accent:      #8aab7f;          /* forest green */
  --accent-low:  rgba(138, 171, 127, 0.25);
  --accent-mid:  rgba(138, 171, 127, 0.55);
  --white:       #ffffff;

  --ff-display:  'Heebo', sans-serif;
  --fw-display:  900;
  --ff-num:      'Bebas Neue', sans-serif;
  --ff-serif:    'Mauritius', 'Frank Ruhl Libre', serif;
  --ff-body:     'Heebo', sans-serif;

  --max:     1340px;
  --gutter:  clamp(1.5rem, 5vw, 4rem);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  direction: rtl;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.5;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--accent-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, opacity .25s ease, border-color .25s ease;
  will-change: left, top;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor.is-hover  { width: 56px; height: 56px; border-color: var(--accent); }
.cursor.is-hidden { opacity: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
  transition: background .4s ease, backdrop-filter .4s ease, padding .3s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(20, 42, 35, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding-top: .85rem;
  padding-bottom: .85rem;
  border-color: var(--border);
}

/* Logo image — white pill so it's legible on dark bg */
.header-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 60px;
  width: auto;
  background: transparent;
  transition: opacity .2s ease;
}

.header-logo-wrap:hover .header-logo-img { opacity: .85; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.header-nav a {
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0;   /* RTL: underline starts from right */
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .28s ease;
}

.header-nav a:hover             { color: var(--text); }
.header-nav a:hover::after      { width: 100%; }

.header-nav .nav-cta {
  color: var(--black);
  background: var(--accent);
  padding: 0.45rem 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  align-self: center;
  transition: background .2s ease, transform .15s ease;
}
.header-nav .nav-cta::after { display: none; }
.header-nav .nav-cta:hover  { background: #9fbc95; transform: translateY(-1px); color: var(--black); }

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
  z-index: 201;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--near-black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  padding: 0 var(--gutter);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-family: var(--ff-body);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s ease;
}

.mobile-nav-link:first-child { border-top: 1px solid var(--border); }
.mobile-nav-link:hover { color: var(--text); }

.mobile-nav-cta {
  margin-top: 1.8rem;
  border: none !important;
  background: var(--accent);
  color: #fff !important;
  padding: 1rem 3rem !important;
  font-size: 1.1rem;
}

.mobile-nav-ext {
  border: none !important;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dim) !important;
  letter-spacing: 0.1em;
  text-transform: none;
  margin-top: 0.5rem;
}

.drawer-close {
  position: absolute;
  top: 1.4rem;
  left: var(--gutter);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.4rem;
  cursor: none;
  transition: color .2s ease, transform .2s ease;
}

.drawer-close:hover {
  color: var(--text);
  transform: rotate(90deg);
}

@media (max-width: 760px) {
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 85svh;
  min-height: 560px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image — full-bleed */
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroFloat 22s ease-in-out infinite alternate;
  will-change: transform;
}

/* Dark overlay to preserve moody feel with full-bleed image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 28, 0.45);
}

@keyframes heroFloat {
  from { transform: scaleX(-1) scale(0.9); }
  to   { transform: scaleX(-1) scale(0.94); }
}

/* Radial vignette deepens edges */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 65% at 50% 50%,
    transparent 45%,
    rgba(29, 61, 52, 0.70) 75%,
    rgba(29, 61, 52, 0.97) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Hero text — full-width, pinned to bottom */
.hero-content {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3.5rem);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
}

.hero-eyebrow {
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-align: start;
  opacity: 0;
  animation: fadeUp .7s ease .3s forwards;
}

.hero-bottom-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  padding-inline-end: 8rem;
}

.hero-name {
  font-family: var(--ff-display);
  font-weight: var(--fw-display);
  font-size: clamp(2.8rem, 5.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  align-items: flex-start;
}

.hero-benefits {
  margin-top: 1.8rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s ease 1.3s forwards;
}

.hero-line--accent { color: #ffffff; }

.hero-line {
  display: block;
  opacity: 0;
  animation: nameReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-line:nth-child(1) { animation-delay: .45s; }
.hero-line:nth-child(2) { animation-delay: .65s; }
.hero-line:nth-child(3) { animation-delay: .85s; }

@keyframes nameReveal {
  from { opacity: 0; transform: translateY(60px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);    /* Visual left — decorative, LTR position */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}

.hero-scroll span {
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-mid), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(.6); }
}

/* Hero CTA button */
.hero-cta {
  display: inline-block;
  flex-shrink: 0;
  align-self: flex-end;
  margin-top: 0;
  padding: 1.3rem 3.3rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  animation: fadeUp .7s ease 1.1s forwards;
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(138,171,127,0.35), 0 8px 32px rgba(138,171,127,0.28);
  transition: background .3s ease, box-shadow .3s ease, transform .25s ease;
}

.hero-cta:hover {
  background: #9fbc95;
  box-shadow: 0 0 0 2px rgba(138,171,127,0.5), 0 12px 40px rgba(138,171,127,0.4);
  transform: translateY(-2px);
}

/* Fade to next section */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(29, 61, 52, .70) 40%,
    rgba(29, 61, 52, .96) 72%,
    var(--black) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   BENEFITS STRIP
   ============================================================ */
.benefits-strip {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--gutter);
}

.benefits-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2.5rem;
}

.benefit-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.benefit-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.benefit-divider {
  width: 1px;
  height: 1.6rem;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ============================================================
   SHARED — SECTION NUMBER
   ============================================================ */
.section-num {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: var(--gutter);
  font-family: var(--ff-num);
  font-size: clamp(5rem, 10vw, 13rem);
  line-height: 1;
  color: var(--dim);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   SHARED — SECTION HEADING
   ============================================================ */
.section-heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-display);
  font-size: clamp(4.95rem, 9.35vw, 12.65rem);
  line-height: 0.88;
  color: var(--text);
  margin-bottom: 2.8rem;
}

.section-heading span { display: block; }

.section-heading em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

/* ============================================================
   02 — ABOUT
   ============================================================ */
.about {
  position: relative;
  background: var(--near-black);
  padding: clamp(7rem, 14vh, 13rem) var(--gutter) clamp(6rem, 12vh, 12rem);
  border-top: 1px solid var(--border);
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.meta-row {
  display: flex;
  gap: 1.8rem;
  align-items: baseline;
}

.meta-label {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 130px;
  flex-shrink: 0;
}

.meta-val {
  font-size: 1.23rem;
  letter-spacing: .03em;
  color: var(--muted);
}

.about-bio blockquote {
  font-family: var(--ff-serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  padding-right: 1.6rem;
  border-right: 2px solid var(--accent);
  margin-bottom: 1.8rem;
}

.about-bio .about-lead {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.about-bio blockquote cite {
  display: block;
  margin-top: .55rem;
  font-size: 1.0rem;
  letter-spacing: .15em;
  font-style: normal;
  text-transform: uppercase;
  color: var(--accent);
}

.about-bio p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: .9rem;
  max-width: 60ch;
}


/* ============================================================
   02 — ACTIVITIES
   ============================================================ */
.activities {
  position: relative;
  background: var(--black);
  padding: clamp(7rem, 14vh, 13rem) var(--gutter) clamp(6rem, 12vh, 12rem);
  border-top: 1px solid var(--border);
}

.activities-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.activities-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vh, 6rem);
}

.activities-header .section-heading { margin-bottom: 0; }

.activities-sub {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
  padding-bottom: .5rem;
}

/* 3 × 2 grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.act-card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background .35s ease;
}

/* Animated accent line — sweeps up from bottom on hover */
.act-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;   /* RTL: animates from the reading start */
  transition: transform .45s cubic-bezier(.25, 1, .5, 1);
}

.act-card:hover { background: var(--dark); }
.act-card:hover::after { transform: scaleX(1); }

.act-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  gap: 1rem;
}

.act-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.2;
}

.act-num {
  font-family: var(--ff-num);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent-low);
  flex-shrink: 0;
  transition: color .35s ease;
}

.act-card:hover .act-num { color: var(--accent-mid); }

.act-desc {
  font-size: 1.0rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================================
   03 — GALLERY TEASER
   ============================================================ */
.gallery-teaser {
  position: relative;
  background: var(--near-black);
  padding: clamp(7rem, 14vh, 13rem) var(--gutter) clamp(6rem, 12vh, 12rem);
  border-top: 1px solid var(--border);
}

.gallery-teaser-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-teaser .section-heading {
  margin-bottom: 3rem;
}

.gallery-strip {
  position: relative;
  overflow: hidden;
  background: var(--black);
  max-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-strip img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;   /* Show the full collage strip */
  transition: transform .9s cubic-bezier(.25, 1, .5, 1);
}

.gallery-strip:hover img { transform: scale(1.025); }

/* Subtle gradient at edges */
.gallery-strip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(23,46,39,.6) 0%, transparent 15%, transparent 85%, rgba(23,46,39,.6) 100%),
    linear-gradient(to bottom, rgba(23,46,39,.3) 0%, transparent 12%, transparent 88%, rgba(23,46,39,.3) 100%);
  pointer-events: none;
}

.gallery-caption {
  margin-top: 1.6rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .07em;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   04 — CONTACT / REGISTRATION
   ============================================================ */
.contact {
  position: relative;
  background: var(--black);
  padding: clamp(7rem, 14vh, 14rem) var(--gutter) clamp(6rem, 12vh, 12rem);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 9rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-display);
  font-size: clamp(5.5rem, 9.9vw, 14.3rem);
  line-height: 0.87;
}

.contact-heading span { display: block; }

.contact-heading em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

/* Contact details list */
.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:first-child { padding-top: 0; }

.contact-label {
  font-size: 0.91rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-row a,
.contact-row span:last-child {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--text);
  transition: color .2s ease;
}

.contact-row a:hover { color: var(--accent); }

/* CTA button */
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2.8rem;
  padding: 1.1rem 2.4rem;
  border: 1px solid var(--accent);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .35s ease;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25, 1, .5, 1);
}

.contact-cta:hover { color: #111; }
.contact-cta:hover::before { transform: translateX(0); }

.contact-cta span { position: relative; z-index: 1; }

.contact-map {
  width: 100%;
  height: 220px;
  margin-top: 2.2rem;
  border: none;
  border-radius: 10px;
  opacity: 0.88;
  filter: grayscale(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  padding: 1.8rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHARED KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   LIGHT SECTION THEME (CSS-variable override)
   ============================================================ */
.section--light {
  /* Override all colour tokens for child elements */
  --black:       #faf6ef;
  --near-black:  #faf6ef;
  --dark:        #e8e3da;
  --card:        #ece7de;
  --border:      rgba(17, 17, 17, 0.11);
  --border-mid:  rgba(17, 17, 17, 0.18);
  --text:        #111111;
  --muted:       rgba(17, 17, 17, 0.6);
  --dim:         rgba(17, 17, 17, 0.07);
  --accent:      #4e7c45;          /* darker green for contrast on cream */
  --accent-low:  rgba(78, 124, 69, 0.18);
  --accent-mid:  rgba(78, 124, 69, 0.5);

  background: #fffff5;
  color: #111111;
}

/* blockquote border flips to dark on light bg */
.section--light .about-bio blockquote {
  border-right-color: #4e7c45;
}

.section--light .about-bio blockquote cite { color: #4e7c45; }

/* contact rows on light bg */
.section--light .contact-row a,
.section--light .contact-row span:last-child { color: #111111; }

.section--light .contact-row a:hover { color: #4e7c45; }

/* CTA on light bg */
.section--light .contact-cta {
  border-color: #4e7c45;
  color: #111111;
}
.section--light .contact-cta::before { background: #4e7c45; }
.section--light .contact-cta:hover   { color: #fff; }

/* ============================================================
   01 — INFO SECTION  (מידע חשוב)
   ============================================================ */
.info-section {
  position: relative;
  padding: clamp(3.5rem, 7vh, 6rem) var(--gutter) clamp(3rem, 6vh, 5rem);
  border-top: 1px solid var(--border);
}

.info-section .section-heading {
  font-size: clamp(3rem, 5.5vw, 7.5rem);
  margin-bottom: 0;
}

.info-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.info-heading-col {
  position: sticky;
  top: 7rem;
}

.info-content-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ============================================================
   02 — ABOUT SECTION  (מי אנחנו)
   ============================================================ */
/* Override about-inner for new 2-col layout (heading | text) */
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-heading-col {
  position: sticky;
  top: 7rem;
}

.about-text-col { padding-top: .25rem; }

/* "נלמד ביחד" block */
.learn-together {
  margin-top: 2.8rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.learn-label {
  font-size: 0.94rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}

.learn-text {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
}

/* ============================================================
   04 — GALLERY GRID
   ============================================================ */
.gallery-section {
  position: relative;
  background: var(--near-black);
  padding: clamp(7rem, 14vh, 13rem) var(--gutter) clamp(6rem, 12vh, 12rem);
  border-top: 1px solid var(--border);
}

.gallery-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-inner .section-heading { margin-bottom: 3rem; }

/* Carousel */
.gallery-carousel-wrap {
  position: relative;
  padding: 0 3.8rem;
}

.gallery-carousel {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

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

.carousel-slide {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.88) saturate(.9);
  transition: filter .4s ease;
}

.carousel-slide:hover img {
  filter: brightness(1) saturate(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 25, 20, 0.82);
  border: 1px solid var(--border-mid);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  cursor: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  z-index: 2;
  padding: 0;
}

.carousel-btn:hover {
  background: rgba(8, 22, 18, 0.97);
  border-color: var(--accent);
  color: var(--accent);
}

/* Arrows sit in the wrap's side padding */
.carousel-btn--prev { right: 0; }
.carousel-btn--next { left: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.4rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-mid);
  border: none;
  cursor: none;
  transition: background .25s ease, transform .25s ease;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.45);
}

.gallery-caption {
  margin-top: 1.6rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .07em;
  color: var(--muted);
  text-align: center;
}

/* Carousel controls on light gallery background */
.section--light .carousel-dot {
  background: rgba(0, 0, 0, 0.18);
}
.section--light .carousel-dot.is-active {
  background: var(--accent);
}
.section--light .carousel-btn {
  background: rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 0, 0, 0.15);
  color: #1d3d34;
}
.section--light .carousel-btn:hover {
  background: rgba(0, 0, 0, 0.28);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   DATES GRID
   ============================================================ */
.dates-section {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.dates-label {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}

.dates-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.date-chip {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  min-width: 110px;
  transition: border-color .25s ease, background .25s ease;
}

.date-chip:hover {
  border-color: var(--accent-mid);
  background: var(--dark);
}

.date-idx {
  font-family: var(--ff-num);
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: .05em;
}

.date-range {
  font-family: var(--ff-num);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: .03em;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  position: relative;
  background: var(--near-black);
  padding: clamp(5rem, 10vh, 10rem) var(--gutter) clamp(4rem, 8vh, 8rem);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 4vw, 6rem);
  align-items: start;
}

.faq-heading-col {
  position: sticky;
  top: 7rem;
}

.faq-section .section-heading {
  font-size: clamp(3rem, 5vw, 7rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: right;
  cursor: none;
  transition: color .2s ease;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  position: relative;
  transition: border-color .25s ease, transform .35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease, transform .35s ease;
}

.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-q[aria-expanded="true"] .faq-icon {
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-a > p {
  overflow: hidden;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 0;
  transition: padding-bottom .35s ease;
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-a > p {
  padding-bottom: 1.4rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .info-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }
  .info-heading-col,
  .about-heading-col { position: static; }
  .activities-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .activities-sub { padding-bottom: 0; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 860px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; }
  .faq-heading-col { position: static; }

  /* Hero — stack bottom row */
  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-inline-end: 0;
  }
  .hero-name {
    font-size: clamp(2.4rem, 10vw, 4.5rem);
    gap: 0.08em;
  }
  .hero-cta {
    align-self: auto;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    width: auto;
  }
  .hero-benefits {
    font-size: 0.78rem;
    margin-top: 1.2rem;
    letter-spacing: 0.14em;
  }
  /* Info — single column */
  .info-inner { grid-template-columns: 1fr; }
  .info-heading-col { position: static; }
  .info-section .section-heading { margin-bottom: 1.5rem; }
  .info-content-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .dates-list { grid-template-columns: repeat(3, 1fr); }
  /* About / activities */
  .about-inner { grid-template-columns: 1fr; }
  .about-heading-col { position: static; }
  .about-bio blockquote { font-size: 1.5rem; }
  .about-bio .about-lead { font-size: 1.4rem; }
  .learn-text { font-size: 1.4rem; }
}

@media (max-width: 600px) {
  .header-nav  { display: none; }
  .header-logo-img { height: 54px; }
  .activities-grid { grid-template-columns: 1fr; }
  .gallery-carousel-wrap { padding: 0 3rem; }
  .gallery-carousel { gap: 0; }
  .carousel-slide { flex: 0 0 100%; aspect-ratio: 1 / 1; }
  .hero-eyebrow { font-size: 0.8rem; color: #ffffff; }
  /* Hide decorative section numbers on mobile */
  .section-num { display: none; }
  /* Pad bottom for sticky bar */
  body { padding-bottom: 60px; }
}

/* Mobile sticky CTA bar */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  body { padding-bottom: 60px; }
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--accent);
    padding: 1rem var(--gutter);
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  }
  .mobile-sticky-cta a {
    color: #fff;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   TOUCH DEVICES — remove cursor
   ============================================================ */
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}
