@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #f3ebe0;
  --color-bg-2: #efe6d8;
  --color-surface: #fffaf2;
  --color-surface-2: #faf3e8;
  --color-text: #382f28;
  --color-text-soft: #7a6e62;
  --color-accent: #a87167;
  --color-accent-hover: #8f5d54;
  --color-accent-soft: #f1e0db;
  --color-accent-deep: #7a4e46;
  --color-terracotta: #c38b64;
  --color-border: #e3d6c4;
  --color-border-soft: #ede2d1;
  --color-gold: #b89878;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --max-width: 1120px;
  --focus-ring: 1.5px solid var(--color-accent);

  --shadow-sm: 0 1px 2px rgba(56, 47, 40, 0.06), 0 2px 6px rgba(56, 47, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(56, 47, 40, 0.08), 0 1px 3px rgba(56, 47, 40, 0.05);
  --shadow-lg: 0 18px 40px -18px rgba(56, 47, 40, 0.25), 0 4px 12px rgba(56, 47, 40, 0.08);
  --shadow-photo: 0 20px 50px -20px rgba(120, 80, 60, 0.35), 0 8px 20px -8px rgba(120, 80, 60, 0.2);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  background-image:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--color-terracotta) 8%, transparent) 0%, transparent 42%),
    radial-gradient(circle at 88% 72%, color-mix(in srgb, var(--color-accent) 7%, transparent) 0%, transparent 48%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.65;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); font-weight: 500; }
h3 { font-size: 1.55rem; font-weight: 500; }
h4 { font-size: 0.82rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

p { margin: 0 0 var(--space-4); color: var(--color-text); }

a {
  color: var(--color-accent-deep);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
a:hover { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

:focus { outline: none; }
:focus-visible { outline: var(--focus-ring); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--color-accent-soft); color: var(--color-text); }

.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 200;
  font-size: 13px;
  font-weight: 500;
}
.skip-link:focus { right: 0; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

section { padding-block: clamp(56px, 10vw, 104px); }

.section-head {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 6vw, 60px);
  position: relative;
}
.section-head::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 20px auto 0;
  opacity: 0.5;
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.lede {
  font-size: 16px;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--color-text);
  background: transparent;
  border: 1px solid transparent;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  transition: all 0.2s var(--ease-soft);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: 0.08s; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px -4px color-mix(in srgb, var(--color-accent) 45%, transparent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 6px 18px -4px color-mix(in srgb, var(--color-accent-hover) 55%, transparent);
}

.btn-secondary {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--color-text-soft);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--color-text);
  color: var(--color-text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-block { width: 100%; margin-top: var(--space-2); }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--color-border) 85%, transparent);
  background: color-mix(in srgb, var(--color-bg) 94%, transparent);
}

/* הפס עצמו נשאר מקצה לקצה, לא מוגבל לרוחב התוכן של --max-width */
.site-header .container {
  max-width: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: 16px;
}

.brand {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  transition: opacity 0.2s var(--ease);
}
.brand:hover { color: var(--color-text); text-decoration: none; opacity: 0.85; }

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(56, 47, 40, 0.08));
}

.brand-name-part {
  position: relative;
  top: 1px;
}

.nav-toggle {
  order: 1;
  display: inline-flex;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.15s var(--ease);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.nav-toggle:hover { border-color: var(--color-text-soft); }
.nav-toggle:active { transform: scale(0.95); }
.nav-toggle svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--color-text-soft);
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  position: relative;
  transition: color 0.15s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.22s var(--ease-soft);
}
.nav-links a:hover {
  color: var(--color-text);
  text-decoration: none;
}
.nav-links a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.nav-cta {
  order: 3;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
  text-decoration: none;
  padding: 6px 2px;
  transition: color 0.15s var(--ease);
}
.nav-login-link:hover {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile nav */
.nav-links {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  flex-direction: column;
  align-items: stretch;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) clamp(20px, 5vw, 48px) var(--space-6);
  gap: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.22s var(--ease-soft);
  box-shadow: var(--shadow-md);
}
.nav-links.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 15px;
}
.nav-links a::after { display: none; }
.nav-links a:last-child { border-bottom: none; }

/* מובייל: הכול צר יותר כדי שכל חלקי הפס (תפריט, לוגו, כניסה+הצטרפות) ייכנסו בלי גלישה */
@media (max-width: 859.98px) {
  .brand { font-size: 1.15rem; gap: 6px; }
  .brand-mark { width: 28px; height: 28px; }
  .nav-cta { gap: 8px; }
  .nav-login-link { font-size: 12.5px; padding: 6px 0; }
  .nav-cta .btn-sm { padding: 0.55em 0.9em; font-size: 12.5px; }
}

/* Desktop nav: שלוש עמודות — קישורים בימין, לוגו+שם באמצע, כפתורים בשמאל */
@media (min-width: 860px) {
  .nav-toggle { display: none; }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    align-items: center;
  }

  .nav-links {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border-bottom: none;
    padding: 0;
    gap: var(--space-8);
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }
  .nav-links a {
    padding: 4px 0;
    border-bottom: none;
    font-size: 14px;
    display: inline;
  }
  .nav-links a::after { display: block; }

  .brand { grid-column: 2; grid-row: 1; justify-self: center; }
  .nav-cta { grid-column: 3; grid-row: 1; justify-self: end; }

  .nav-cta .nav-login-link { display: inline; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 72px) 0 clamp(56px, 10vw, 100px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent-soft) 80%, transparent) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-gold) 22%, transparent) 0%, transparent 70%);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.55;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 7vw, 72px);
  align-items: center;
}

.hero-copy { order: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.hero h1 {
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 500;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-soft);
  margin: 0 0 34px;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--color-text-soft);
}
.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.4;
  display: inline-block;
}
.hero-meta span:not(.dot) {
  opacity: 0.95;
}

.hero-art {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-soft);
}
.hero-art-frame:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-art-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(56, 47, 40, 0.06));
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-art-frame { max-width: 240px; padding: 24px; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-lede { margin-inline: auto; }
}

@media (max-width: 560px) {
  .hero-art-frame { max-width: 260px; padding: 20px; }
  .hero-inner { text-align: right; }
  .hero-actions, .hero-meta { justify-content: flex-start; }
  .hero-lede { margin-inline: 0; }
}

/* ============================================================
   PLANS / PRICING
   ============================================================ */

#plans {
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 38px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all 0.3s var(--ease-soft);
  box-shadow: var(--shadow-sm);
}
.plan-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.plan-card.is-featured {
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--color-accent) 96%, #000) 0%,
      var(--color-accent-deep) 100%);
  color: var(--color-surface);
  border-color: transparent;
}
.plan-card.is-featured h3 { color: var(--color-surface); }
.plan-card.is-featured .plan-tag { color: color-mix(in srgb, var(--color-surface) 72%, transparent); }
.plan-card.is-featured .plan-price .unit { color: color-mix(in srgb, var(--color-surface) 70%, transparent); }
.plan-card.is-featured .plan-price .amount { color: #fff; }
.plan-card.is-featured .plan-features li { color: color-mix(in srgb, var(--color-surface) 88%, transparent); }
.plan-card.is-featured .plan-features svg { color: var(--color-accent-soft); }
.plan-card.is-featured .btn-primary {
  background: #fff;
  color: var(--color-accent-deep);
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.25);
}
.plan-card.is-featured .btn-primary:hover {
  background: var(--color-surface);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.35);
}

@media (min-width: 901px) {
  .plan-card.is-featured {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px -22px color-mix(in srgb, var(--color-accent-deep) 55%, transparent),
                var(--shadow-md);
  }
  .plan-card.is-featured:hover {
    transform: translateY(-14px);
  }
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: var(--color-terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin: 0;
  box-shadow: 0 4px 10px -3px color-mix(in srgb, var(--color-terracotta) 50%, transparent);
}

.plan-name { font-size: 1.85rem; margin: 0; }

.plan-tag {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0;
  margin-top: -6px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border-soft);
}
.plan-card.is-featured .plan-price {
  border-bottom-color: color-mix(in srgb, var(--color-surface) 18%, transparent);
}
.plan-price .amount {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 3.2rem;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.025em;
}
.plan-price .unit {
  font-size: 14px;
  color: var(--color-text-soft);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-soft);
}
.plan-features svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.1em;
  color: var(--color-accent);
}

.plans-footnote {
  text-align: center;
  margin-top: 36px;
  color: var(--color-text-soft);
  font-size: 13px;
}

/* ============================================================
   TAGS
   ============================================================ */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text-soft);
  background: transparent;
}
.tag-accent-2 {
  background: var(--color-accent-soft);
  color: var(--color-accent-deep);
}

/* ============================================================
   FRIDAYS STRIP
   ============================================================ */

.fridays-strip {
  background:
    linear-gradient(160deg,
      var(--color-text) 0%,
      color-mix(in srgb, var(--color-text) 92%, var(--color-accent-deep)) 100%);
  color: var(--color-surface);
  padding-block: clamp(48px, 8vw, 76px);
  position: relative;
  overflow: hidden;
}
.fridays-strip::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 30%, transparent) 0%, transparent 70%);
  opacity: 0.35;
}

.fridays-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.fridays-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--color-surface);
  margin: 0;
  letter-spacing: -0.01em;
}

.fridays-sub {
  color: color-mix(in srgb, var(--color-surface) 62%, transparent);
  font-size: 14px;
  margin: 0;
}

.fridays-track-wrap { position: relative; }
.fridays-track-wrap::before,
.fridays-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}
.fridays-track-wrap::before {
  right: 0;
  background: linear-gradient(to left, var(--color-text), transparent);
}
.fridays-track-wrap::after {
  left: 0;
  background: linear-gradient(to right, var(--color-text), transparent);
}

.fridays-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-block: 0.5rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-surface) 30%, transparent) transparent;
}
.fridays-track::-webkit-scrollbar { height: 4px; }
.fridays-track::-webkit-scrollbar-track { background: transparent; }
.fridays-track::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-surface) 25%, transparent);
  border-radius: 2px;
}

.friday-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 82px;
  position: relative;
  padding-inline: 1rem;
}
.friday-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to left, color-mix(in srgb, var(--color-surface) 22%, transparent) 50%, transparent 0%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.6;
}
.friday-card:first-child::before { display: none; }

.friday-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent-soft) 25%, transparent);
}
.friday-card:nth-child(4n+1) .friday-dot {
  background: color-mix(in srgb, var(--color-terracotta) 95%, #fff);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-terracotta) 20%, transparent);
}

.friday-daynum {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-surface);
  line-height: 1;
}
.friday-month {
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--color-surface) 55%, transparent);
  margin-top: 3px;
}
.friday-label {
  font-size: 0.65rem;
  color: var(--color-accent-soft);
  margin-top: 5px;
  letter-spacing: 0.05em;
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px 30px;
  position: relative;
}

.step {
  position: relative;
  padding-top: 54px;
}

.step-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.step-icon svg { width: 19px; height: 19px; color: var(--color-accent); }

.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.bouquet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all 0.3s var(--ease-soft);
  box-shadow: var(--shadow-sm);
}
.bouquet-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 25%, var(--color-border));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bouquet-art {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
}

.bouquet-caption { padding: 18px 20px 22px; }
.bouquet-caption h3 { font-size: 1.2rem; margin-bottom: 4px; }
.bouquet-caption p { font-size: 13.5px; color: var(--color-text-soft); margin: 0; }

.gallery-note {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 13px;
  margin-top: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: color-mix(in srgb, var(--color-accent) 28%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 24px;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 15.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  color: var(--color-text);
  transition: background-color 0.15s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--color-surface-2); }

.faq-item summary .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s var(--ease-soft);
  color: var(--color-text-soft);
}
.faq-item[open] summary .icon {
  transform: rotate(45deg);
  border-color: var(--color-accent);
  color: #fff;
  background: var(--color-accent);
}
.faq-item summary .icon::before,
.faq-item summary .icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-item summary .icon::before { width: 9px; height: 1px; }
.faq-item summary .icon::after { width: 1px; height: 9px; }

.faq-answer {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 60px);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 20px 22px;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.contact-list li:hover {
  border-color: color-mix(in srgb, var(--color-accent) 25%, var(--color-border));
  box-shadow: var(--shadow-md);
}
.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1em;
}
.contact-list strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 3px;
}
.contact-list span {
  font-size: 14px;
  color: var(--color-text-soft);
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-row label {
  display: block;
  font-size: 12px;
  margin-bottom: 7px;
  color: var(--color-text-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 15px;
  font: inherit;
  font-size: 14.5px;
  color: var(--color-text);
  caret-color: var(--color-accent);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.15s var(--ease);
}
.form-row textarea {
  min-height: 110px;
  resize: vertical;
  padding: 13px 15px;
  line-height: 1.65;
}
.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border));
}
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-surface);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 12%, transparent);
}

.plan-seg {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 100%;
  background: var(--color-bg);
}
.plan-seg-opt {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 10px;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s var(--ease);
  color: var(--color-text-soft);
}
.plan-seg-opt + .plan-seg-opt {
  border-right: 1px solid var(--color-border);
}
.plan-seg-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.plan-seg-opt:has(input:checked) {
  background: var(--color-accent);
  color: #fff;
}
.plan-seg-opt:not(:has(input:checked)):hover {
  background: var(--color-border-soft);
  color: var(--color-text);
}
.plan-seg-opt:has(input:focus-visible) {
  outline: 1.5px solid var(--color-accent);
  outline-offset: -2px;
}

.form-hint {
  font-size: 12.5px;
  color: var(--color-text-soft);
  margin: 0;
}
.form-hint[data-state="checking"] { color: var(--color-text-soft); }
.form-hint[data-state="ok"] { color: color-mix(in srgb, #4a7a4a 80%, var(--color-text)); font-weight: 600; }
.form-hint[data-state="error"] { color: color-mix(in srgb, var(--color-terracotta) 75%, #000); font-weight: 600; }

.form-status {
  padding: 0.95em 1.1em;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  margin: 0;
}
.form-status-success {
  background: color-mix(in srgb, var(--color-accent-soft) 75%, var(--color-surface));
  color: var(--color-accent-deep);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
}
.form-status-error {
  background: color-mix(in srgb, var(--color-terracotta) 14%, transparent);
  color: color-mix(in srgb, var(--color-terracotta) 75%, #000);
  border: 1px solid color-mix(in srgb, var(--color-terracotta) 28%, transparent);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background:
    linear-gradient(180deg,
      var(--color-surface) 0%,
      var(--color-surface-2) 100%);
  color: var(--color-text);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-text);
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.8;
  max-width: 42ch;
  margin: 0;
}

.footer-col h4 {
  color: var(--color-text);
  font-size: 0.72rem;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  color: var(--color-text-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s var(--ease);
}
.footer-col a:hover {
  color: var(--color-accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--color-text-soft);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 500;
  background: var(--color-surface);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: var(--space-5) clamp(20px, 5vw, 48px);
  box-shadow: 0 -12px 40px -18px rgba(56, 47, 40, 0.18);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.32s var(--ease-soft);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner[hidden] { display: none; }

.cookie-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 360px;
  font-size: 14px;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.65;
}
.cookie-text a { color: var(--color-accent-deep); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-hero {
  background:
    linear-gradient(160deg,
      var(--color-text) 0%,
      color-mix(in srgb, var(--color-text) 92%, var(--color-accent-deep)) 100%);
  color: var(--color-surface);
  padding-block: clamp(48px, 9vw, 84px);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 28%, transparent) 0%, transparent 70%);
  opacity: 0.35;
}
.legal-hero h1 {
  color: var(--color-surface);
  margin-bottom: 0.35em;
}
.legal-hero p {
  color: color-mix(in srgb, var(--color-surface) 68%, transparent);
  margin: 0;
  font-size: 16.5px;
}

.legal-body {
  max-width: 720px;
  margin-inline: auto;
  padding-block: clamp(48px, 8vw, 76px);
}
.legal-body h2 {
  margin-top: 2.3em;
  font-size: 1.6rem;
  padding-bottom: 0.55em;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 1.2rem;
  margin-top: 1.6em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text);
}
.legal-body p { color: var(--color-text-soft); line-height: 1.85; }
.legal-body ul, .legal-body ol { padding-inline-start: 1.4em; color: var(--color-text-soft); }
.legal-body li { margin-bottom: 0.55em; line-height: 1.8; }

.legal-body .placeholder {
  background: var(--color-accent-soft);
  color: var(--color-accent-deep);
  padding: 0.14em 0.55em;
  border-radius: 4px;
  font-weight: 600;
  font-family: monospace;
  font-size: 0.92em;
}

.draft-notice {
  background: var(--color-accent-soft);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  border-radius: var(--radius-md);
  padding: 1.3em 1.6em;
  margin-bottom: 44px;
  color: var(--color-text);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.draft-notice strong {
  color: var(--color-accent-deep);
  display: block;
  margin-bottom: 0.45em;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-toc {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.7em 2em;
  margin-bottom: 52px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 {
  font-size: 0.95rem;
  border: none;
  margin: 0 0 1em;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text);
}
.legal-toc ol {
  columns: 2;
  margin: 0;
  font-size: 0.95rem;
  column-gap: 36px;
}
.legal-toc ol li {
  break-inside: avoid;
}
@media (max-width: 560px) {
  .legal-toc ol { columns: 1; }
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-bottom: var(--space-6);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-surface { background: var(--color-surface); }

/* ==========================================================================
   כפתור ופאנל נגישות
   ========================================================================== */
.a11y-widget {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 200;
}

.a11y-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--color-text);
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease-soft);
}
.a11y-toggle:hover { transform: scale(1.06); }
.a11y-toggle:active { transform: scale(0.94); }
.a11y-toggle svg { width: 24px; height: 24px; }

.a11y-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 232px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.a11y-panel:not([hidden]) { display: flex; }

.a11y-panel-title {
  font-weight: 700;
  font-size: 13.5px;
  margin: 0 0 4px;
}

.a11y-panel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
}

.a11y-panel-reset {
  margin-top: 6px;
  border: 1px solid var(--color-border);
  background: none;
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font-size: 12.5px;
  color: var(--color-text);
  cursor: pointer;
}
.a11y-panel-reset:hover { background: var(--color-bg); }

/* --- אפקטים שהכפתור מפעיל --- */
html.a11y-large-text { font-size: 112.5%; }

html.a11y-high-contrast {
  --color-bg: #ffffff;
  --color-bg-2: #ffffff;
  --color-surface: #ffffff;
  --color-surface-2: #ffffff;
  --color-text: #000000;
  --color-text-soft: #000000;
  --color-border: #000000;
  --color-border-soft: #000000;
  --color-accent: #a80030;
  --color-accent-hover: #7a0022;
  --color-accent-deep: #a80030;
}
html.a11y-high-contrast img { filter: contrast(1.15); }

html.a11y-underline-links a { text-decoration: underline !important; }

html.a11y-readable-font body {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

html.a11y-stop-motion *,
html.a11y-stop-motion *::before,
html.a11y-stop-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><path d="M4 2l14 8-6 2 4 7-3 1.5-4-7-4 5V2z" fill="black" stroke="white" stroke-width="1"/></svg>') 4 4, auto !important;
}

@media (max-width: 640px) {
  .a11y-widget { bottom: 12px; left: 12px; }
  .a11y-panel { width: min(232px, calc(100vw - 24px)); }
}
