:root {
  /* Brand palette (Adama Haya) */
  --brand-ivory: #e2e1dd; /* light warm neutral */
  --brand-brown: #8f724e; /* primary accent */
  --brand-white: #ffffff;

  /* Theme tokens derived from brand */
  --bg: var(--brand-white);
  --bg-alt: #f3f2ef; /* subtle variant of ivory */
  --bg-earth: var(--brand-ivory);
  --card: var(--brand-white);
  --muted: #7a7063; /* desaturated brown/neutral for secondary text */
  --text: #2b2620; /* deep brownish text */
  --accent: var(--brand-brown);
  --accent-2: #b9976e; /* lighter brown for hovers */
  --warning: #c8b68f; /* brand-compatible gold-ish */
  --maxw: 1120px;
  --radius: 16px;
  --shadow: 0 14px 28px rgba(43, 38, 32, .12);
  --cta-width: 360px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; width: 100%; max-width: 100%; }
html { overflow-x: hidden; overflow-y: auto; }
body { position: relative; }
header, main, footer, .section, .container, .super-hero { width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--brand-white);
  color: var(--text);
  font-family: 'Heebo', 'Assistant', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-y: visible; /* ensure only root (html) handles vertical scrolling */
}

.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 24px;
  margin-inline: auto;
}
.container, .section, .super-hero, .super-hero-inner { min-width: 0; }
img { max-width: 100%; height: auto; }
.about-mobile-img { display: none !important; }
.super-hero .container { max-width: 1200px; }

/* Header */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 0; /* remove thin separator below header */
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 88px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-logo { width: 76px; height: 76px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.15)); }
.brand-logo.sm { width: 72px; height: 72px; }
.brand-name { font-weight: 800; letter-spacing: .2px; }
.main-nav { margin-inline-start: auto; display: none; gap: 20px; }
.main-nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.main-nav a:hover { color: var(--accent); }
.btn-cta { display: none; }

/* Hero */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-earth { background: var(--bg-earth); }
.super-hero { position: relative; padding: 48px 0; color: #ffffff; overflow: hidden; display: grid; grid-template-columns: minmax(320px, 42%) 1fr; grid-template-areas: "media content"; align-items: stretch; background: linear-gradient(90deg, #6f583a 0%, #8f724e 100%); height: clamp(520px, 70vh, 680px); min-height: 480px; direction: ltr; }
.super-hero-media { position: relative; background-image: url('assets/6dd26e22-a891-4a27-85b3-b91e79fefb55.jfif'); background-size: cover; background-position: left center; grid-area: media; align-self: stretch; }
.super-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.0) 40%, rgba(0,0,0,.10) 100%); }
.super-hero-inner { text-align: right; max-width: 880px; margin-inline: 0; padding: 0 24px; padding-right: 128px; display: flex; flex-direction: column; justify-content: center; grid-area: content; direction: rtl; justify-self: end; }
.super-hero .badge-line { display: none; }
.super-hero .hero-meta { color: #fff; background: transparent; display: block; margin-top: 10px; font-weight: 900; font-size: clamp(24px, 3vw, 34px); text-shadow: 0 2px 10px rgba(0,0,0,.35); }

@media (max-width: 900px) {
  .super-hero { grid-template-columns: 1fr; grid-template-areas: "media" "content"; height: auto; min-height: 0; overflow: visible; padding: 28px 0; }
  .super-hero-inner { text-align: center; padding: 24px; justify-self: center; }
  .super-hero-media { min-height: 220px; height: auto; }
  /* Extra spacing above the 'mini course' eyebrow text on mobile */
  .super-hero-inner .eyebrow { margin-top: 12px; }
  /* Center the hero CTA button on mobile */
  .super-hero-inner .btn { align-self: center; margin-inline: auto; }
  /* Header: center logo and hide controls on mobile */
  .header-inner { justify-content: center; }
  .main-nav, .btn-cta { display: none !important; }
  .brand { margin: 0 auto; }
}
.super-hero-inner .btn { margin-top: 16px; align-self: flex-start; }
.super-hero-inner .btn.btn-lg { padding: 20px 40px; border: 2px solid #ffffff; font-size: 26px; }
.super-hero-title { font-size: clamp(40px, 6vw, 72px); line-height: 1.08; margin: 8px 0 12px; text-shadow: 0 8px 24px rgba(0,0,0,.35); font-weight: 900; }
.super-hero-sub { color: #f7f3ec; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.6; margin: 0 0 14px; text-shadow: 0 4px 16px rgba(0,0,0,.28); }
.hero { position: relative; padding-top: 100px; color: #ffffff; }
.hero-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr; align-items: stretch;
}
.hero-content {
  background: linear-gradient(180deg, rgba(143,114,78,.80) 0%, rgba(143,114,78,.65) 100%);
  border: 1px solid rgba(143,114,78,.35);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2; opacity: 1;
  background-size: cover; background-position: center;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(47, 36, 24, .80) 0%, rgba(47, 36, 24, .62) 45%, rgba(47, 36, 24, .28) 100%); }

/* Lead banner styles */
.lead-banner { background: var(--bg-earth); }
.lead-banner-inner { max-width: 940px; margin-inline: auto; text-align: center; display: grid; gap: 16px; }
.lead-heading { font-size: clamp(36px, 5vw, 56px); margin: 0; line-height: 1.15; font-weight: 900; }
.lead-sub { font-size: clamp(18px, 2.2vw, 24px); margin: 0 0 8px; font-weight: 700; }
.lead-banner .form-field { text-align: right; }
.lead-banner .form-field label { font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; }
.lead-banner input[type="text"],
.lead-banner input[type="tel"],
.lead-banner input[type="email"] { height: 64px; font-size: 20px; border-radius: 12px; }
.lead-banner .btn { font-family: 'Assistant', 'Heebo', system-ui, -apple-system, sans-serif; font-weight: 900; letter-spacing: .1px; }
.lead-banner .btn.btn-lg { padding: 20px 32px; font-size: 30px; border-radius: 12px; }

/* Align phone placeholder to the right (RTL) */
#webinar-form #phone { text-align: right; direction: rtl; }
#webinar-form #phone::placeholder { text-align: right; }

/* Larger, clearer consent checkbox like the example */
.lead-banner .form-checkbox { grid-template-columns: 28px 1fr; align-items: center; gap: 4px; justify-items: start; text-align: right; }
.lead-banner .form-checkbox input { width: 24px; height: 24px; margin-top: 0; }
.lead-banner .form-checkbox label { font-size: 18px; font-weight: 700; text-align: right; }
.eyebrow { color: #ffffff; font-weight: 800; letter-spacing: .3px; margin: 0 0 10px; font-size: clamp(18px, 2.2vw, 24px); opacity: .95; }
.hero-title { font-size: clamp(28px, 4vw, 48px); line-height: 1.15; margin: 0 0 12px; text-shadow: 0 4px 18px rgba(0,0,0,.35); font-weight: 900; }
.hero-subtitle { color: #f5efe6; margin: 0 0 16px; text-shadow: 0 2px 10px rgba(0,0,0,.25); }

.badge-list { list-style: none; padding: 0; margin: 20px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.badge-list .badge { width: 100%; display: inline-flex; justify-content: center; }
.badge { background: rgba(255,255,255,.94); border: 1px solid rgba(43,38,32,.14); padding: 12px 16px; border-radius: 999px; color: var(--text); font-weight: 800; box-shadow: 0 8px 18px rgba(43,38,32,.10); font-size: 18px; }

.countdown { display: grid; gap: 10px; align-items: center; margin: 18px 0 8px; text-align: center; justify-items: center; }
.countdown > span { font-size: 20px; font-weight: 800; }
.timer { display: inline-flex; align-items: center; justify-content: center; gap: 18px; background: transparent; padding: 0; border-radius: 0; color: var(--text); box-shadow: none; margin-inline: auto; width: auto; }
.time { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 96px; height: 96px; border-radius: 18px; background: rgba(255,255,255,.92); border: 1px solid rgba(43,38,32,.12); box-shadow: 0 10px 22px rgba(43,38,32,.14); }
.time span { font-size: 28px; font-weight: 900; }
.time small { color: var(--muted); font-size: 14px; font-weight: 700; }
.sep { display: none; }

.hero-cta { display: grid; gap: 10px; margin-top: auto; padding-top: 12px; }
 .trust-note { color: #eaf7f1; font-size: 14px; text-align: center; }

.lead-card {
  background: var(--card);
  border: 1px solid rgba(43,38,32,.12);
  box-shadow: var(--shadow);
  border-radius: 18px; padding: 22px; position: sticky; top: 96px;
}
.thankyou { display: grid; place-items: center; text-align: center; min-height: 340px; gap: 8px; color: var(--text); }
.thankyou p { color: var(--text); font-size: 18px; line-height: 1.7; }
.thank-emoji { font-size: 32px; }
.card-title { margin: 0 0 12px; font-size: 28px; color: var(--text); }
.form-field { display: grid; gap: 6px; margin: 10px 0; }
.form-field label { font-weight: 600; color: var(--text); }
.form-field input { height: 44px; border-radius: 12px; border: 1px solid rgba(43,38,32,.22); background: #ffffff; color: #2b2620; padding: 0 12px; caret-color: #2b2620; font-size: 18px; }
.form-field input::placeholder { color: #8d8579; opacity: 1; }
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus { -webkit-text-fill-color: #2b2620; box-shadow: 0 0 0px 1000px #ffffff inset; }
.form-field input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form-checkbox { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; margin: 12px 0; }
.form-checkbox input { margin-top: 4px; accent-color: var(--accent); width: 18px; height: 18px; }
.form-checkbox label { color: #2b2620; line-height: 1.5; font-weight: 500; }
.error { color: #ff6b6b; min-height: 18px; font-size: 16px; font-weight: 600; }
.form-checkbox .error { grid-column: 1 / -1; margin-top: 6px; white-space: nowrap; }
.form-status { margin-top: 8px; font-size: 14px; }
.fine-print { color: var(--muted); font-size: 12px; }

/* Sections */
.section-title { margin: 0 0 14px; font-size: clamp(28px, 3.4vw, 40px); }
.section-intro { color: #2b2620; margin: 0 0 14px; font-size: clamp(18px, 2vw, 22px); font-weight: 700; }

/* About typography sizing */
.about-content h3 { margin: 8px 0 6px; font-size: clamp(20px, 2.4vw, 26px); }
.about-content p { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.85; }
.about-brand { display: flex; align-items: center; gap: 8px; margin: 10px 0; }
.bullets { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; font-size: clamp(18px, 2vw, 22px); }
.note { background: #f1ede6; border: 1px solid rgba(143,114,78,.35); color: #6f583a; padding: 12px 14px; border-radius: 12px; margin-top: 16px; }

/* Bigger copy in benefits section */
#benefits .section-intro + .bullets li { font-size: 18px; }
.benefits-cta { margin-top: 18px; font-weight: 700; color: #4b3f33; font-size: 20px; }

.agenda-grid { display: grid; gap: 14px; }
.agenda-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.agenda-item { background: var(--card); border: 1px solid rgba(43,38,32,.12); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow); display: grid; gap: 6px; }
.agenda-item strong { font-size: clamp(18px, 2.4vw, 22px); }
.agenda-item span { color: var(--muted); font-size: clamp(16px, 1.8vw, 18px); }

/* Benefits side-by-side layout */
.benefits-layout { display: grid; gap: 24px; align-items: center; direction: ltr; }
.benefits-illustration { margin: 0; }
.benefits-illustration img { width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(43,38,32,.10); box-shadow: var(--shadow); }
.benefits-content { display: grid; direction: rtl; text-align: right; }
@media (min-width: 1000px) {
  .benefits-layout { grid-template-columns: 1fr 1.05fr; }
  /* Place image on the left, text on the right while keeping RTL text direction */
  .benefits-illustration { order: 1; }
  .benefits-content { order: 2; }
}

/* Message banners */
.message-banner { background: var(--bg-earth); }
.message-banner.alt { background: #e8e6e1; }
.message-banner .section-title { margin-bottom: 10px; }
.message-banner p { font-size: clamp(18px, 2vw, 22px); line-height: 1.9; }
.message-banner.cta { background: var(--bg-alt); }

/* Stories section */
.stories { background: var(--bg-alt); }
.stories-grid { display: grid; gap: 16px; }
.stories-grid figure { margin: 0; }
.stories-grid img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid rgba(43,38,32,.10); box-shadow: var(--shadow); }
@media (min-width: 900px) {
  /* First row 3 items, second row 2 items */
  .stories-grid { grid-template-columns: repeat(6, 1fr); }
  .stories-grid figure { grid-column: span 2; }
  .stories-grid figure:nth-child(n+4) { grid-column: span 3; }
}

/* Image duo layout between banners */
.image-duo-grid { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: center; }
.image-duo-grid figure { margin: 0; }
.image-duo-grid img { width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(43,38,32,.10); box-shadow: var(--shadow); }
@media (min-width: 720px) { .image-duo-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .image-duo .container { max-width: 1280px; } }
.image-wide img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid rgba(43,38,32,.1); box-shadow: var(--shadow); }
@media (min-width: 720px) {
  /* Show this image at half the container width on larger screens */
  .image-wide img { width: 50%; margin-inline: auto; }
}
.agenda-day { background: #ffffff; border: 1px solid rgba(43,38,32,.12); border-radius: 14px; padding: 16px; box-shadow: var(--shadow); }
.agenda-day h3 { margin: 0 0 6px; font-size: 20px; }
.agenda-day p { margin: 0 0 10px; }
.sub-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.highlight { background: #f8f3e8; border: 1px solid rgba(200,182,143,.75); color: var(--text); padding: 10px 12px; border-radius: 12px; }

/* Agenda images */
.agenda-img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(20,43,30,.08); margin-bottom: 10px; box-shadow: 0 8px 18px rgba(16,36,25,.08); }

.two-col { display: grid; gap: 24px; }
.about-media img { width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(43,38,32,.10); box-shadow: var(--shadow); }
.about-gallery { display: grid; gap: 12px; }
/* Extra spacing between the two about images */
#about .about-gallery { gap: 22px; }
@media (min-width: 720px) {
  .about-gallery { grid-template-columns: 1fr 1fr; }
}

/* About: stacked images on the left, with spacing to text */
#about .about-media img { max-width: 320px; }
@media (min-width: 720px) { #about .about-gallery { grid-template-columns: 1fr; } }
@media (min-width: 900px) { #about .two-col { grid-template-columns: 1fr 1.25fr; column-gap: 40px; } #about .about-media { justify-self: start; align-self: start; margin-top: 240px; margin-left: -24px; } }
@media (min-width: 900px) { #about .about-gallery img:last-child { margin-top: 220px; } }

/* gallery-strip removed */

.testimonials-section { background: var(--bg-alt); }
.testimonials { display: grid; gap: 14px; }
blockquote { margin: 0; padding: 14px; background: var(--card); border: 1px solid rgba(43,38,32,.12); border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
blockquote .testimonial-photo { width: 100%; height: auto; aspect-ratio: 3 / 2; border-radius: 12px; object-fit: cover; border: 1px solid rgba(43,38,32,.12); margin-bottom: 10px; box-shadow: 0 6px 14px rgba(43,38,32,.10); display: block; }
blockquote p { margin: 0 0 8px; font-size: 18px; line-height: 1.8; }
blockquote footer { color: var(--muted); margin-top: 6px; font-size: 16px; }
.testimonial-stars { display: inline-flex; gap: 4px; color: #c8b68f; margin-top: 4px; font-size: 22px; }
.testimonials-section .section-title { text-align: center; }

.faq-list { display: grid; gap: 10px; }
details { background: var(--card); border: 1px solid rgba(43,38,32,.12); border-radius: 12px; padding: 10px 12px; box-shadow: var(--shadow); }
summary { cursor: pointer; font-weight: 600; font-size: 18px; }
/* Enlarge FAQ text */
#faq .section-title { font-size: clamp(28px, 3.2vw, 40px); }
#faq summary { font-size: clamp(18px, 2.2vw, 22px); }
#faq details p { font-size: clamp(16px, 1.9vw, 20px); line-height: 1.8; }
/* Enlarge the CTA button in the FAQ section */
#faq .btn { padding: 18px 32px; font-size: 22px; }

/* FAQ layout with illustration */
.faq-layout { display: grid; gap: 18px; align-items: start; }
.faq-content { display: grid; gap: 14px; }

.final-cta { text-align: center; }
.badge-line { color: var(--muted); }
.final-cta p { font-size: 20px; }

/* Final section badges */
.final-info { display: grid; gap: 8px; font-size: 22px; font-weight: 800; color: #2b2620; margin-bottom: 16px; }

/* Ensure CTA button is prominent and visible */
.final-cta .btn.btn-secondary.btn-lg { display: inline-block; min-width: 360px; font-weight: 900; }

.center { text-align: center; margin-top: 18px; }
.section#agenda .center, #agenda .center { margin-top: 32px; }
#agenda .center .btn { font-size: 20px; padding: 16px 28px; }
.narrow { max-width: 820px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; color: #2b2620; font-weight: 800; letter-spacing: .2px; border-radius: 999px; padding: 12px 18px; border: 0; cursor: pointer; transition: transform .06s ease, box-shadow .2s ease; font-size: 16px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #ffffff; box-shadow: 0 10px 24px rgba(143,114,78,.35); text-shadow: 0 1px 0 rgba(0,0,0,.10); }
.btn-secondary { background: linear-gradient(180deg, var(--brand-ivory) 0%, #d7d1c7 100%); color: #3a2a00; box-shadow: 0 10px 24px rgba(200,182,143,.35); }
.btn-lg { padding: 16px 28px; font-size: 20px; }
.btn-block { width: 100%; }

/* Specific agenda CTA button: "אני בפנים! שלחו לי קישור לזום" */
#agenda .center .btn.btn-secondary {
  background: #9d7f59;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(157,127,89,.35);
}

/* Improve legibility for the main submit button in the lead card */
.lead-card .btn { font-size: 18px; padding: 14px 22px; }
.lead-card button.btn { font-family: 'Assistant', 'Heebo', system-ui, -apple-system, sans-serif; font-weight: 700; letter-spacing: .1px; }

/* Match timer pill width to CTA on larger screens */
@media (max-width: 420px) {
  :root { --cta-width: 100%; }
  .timer { width: 100%; }
}

/* Mobile refinements */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .lead-banner input[type="text"],
  .lead-banner input[type="tel"],
  .lead-banner input[type="email"] { height: 56px; font-size: 18px; }
  /* Hide any accidental secondary scrollbars on body in WebKit */
  body { overflow-x: hidden; }
  body::-webkit-scrollbar { width: 0; height: 0; }

  /* Buttons - reduce sizing on mobile */
  .btn { padding: 10px 14px; font-size: 14px; }
  .btn-lg { padding: 12px 18px; font-size: 18px; }
  .super-hero-inner .btn.btn-lg { padding: 12px 18px; font-size: 18px; border-width: 2px; }
  .lead-banner .btn.btn-lg { padding: 14px 18px; font-size: 20px; border-radius: 10px; }
  #faq .btn { padding: 12px 18px; font-size: 18px; }
  .final-cta .btn.btn-secondary.btn-lg { min-width: 0; width: 100%; padding: 14px 18px; font-size: 18px; }

  /* About images centered on mobile */
  #about .about-gallery { justify-items: center; }
  #about .about-media img { margin-inline: auto; display: block; }
  /* Show inline about images in mobile text flow; hide side gallery */
  .about-mobile-img { display: block !important; width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(43,38,32,.10); box-shadow: var(--shadow); margin: 14px 0; }
  #about .about-media { display: none !important; }
}

/* Announcement bar (top countdown) */
.announcement-bar { background: var(--warning); backdrop-filter: none; border-top: 0; border-bottom: 0; }
.announcement-bar .countdown { display: grid; justify-items: center; gap: 6px; margin: 0; padding: 8px 0; }
.announcement-bar .countdown > span { font-size: 16px; font-weight: 800; color: #ffffff; margin: 0; text-align: center; }
.announcement-bar .time { width: 64px; height: 64px; border-radius: 12px; background: var(--accent); color: #ffffff; border: 1px solid rgba(255,255,255,.35); }
.announcement-bar .time small { color: #ffffff; opacity: .9; }
.announcement-bar .time span { font-size: 22px; }
.announcement-bar .time small { font-size: 12px; }

/* Footer */
.site-footer { background: #2b2620; border-top: 1px solid rgba(255,255,255,.08); color: #efece6; padding: 28px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 24px; min-height: 140px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, max-content); gap: 12px 48px; align-content: start; }
.footer-col { display: grid; gap: 10px; }
.footer-nav a { color: #e2e1dd; text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: #ffffff; }
.footer-copy { color: #d7d1c7; font-size: 14px; width: 100%; text-align: center; margin-top: 8px; }

@media (max-width: 720px) {
  .footer-nav { grid-template-columns: 1fr; }
}
.footer-links a { color: #e2e1dd; text-decoration: none; margin-inline: 6px; }
.footer-links a:hover { color: var(--brand-white); }
.footer-copy { color: #d7d1c7; font-size: 14px; }

/* Footer logo crisp and large */
.footer-logo { width: 140px; height: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }

/* Responsive */
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .btn-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; align-items: stretch; }
  .hero { padding-top: 140px; }
  .agenda-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  /* Ensure inline about images are hidden on desktop */
  .about-mobile-img { display: none !important; }
}


