/* =========================================================
   Beyond The Desk — Shared Stylesheet
   All theme colors live in CSS variables below for easy
   updates once Canva branding is finalized.
   ========================================================= */

:root {
  /* Theme colors — matched to Canva palette */
  --color-primary: #4a2c1d;       /* Rich chocolate brown */
  --color-primary-dark: #3a2216;
  --color-accent: #8a5a3d;        /* Warm caramel */
  --color-accent-dark: #6d4328;
  --color-cream: #ece5d7;         /* Soft beige background */
  --color-surface: #ffffff;
  --color-text: #2d1c12;
  --color-muted: #6b5a4e;
  --color-border: #d8cfbf;

  /* Typography */
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Allura", "Alex Brush", "Pinyon Script", cursive;

  /* Spacing */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(26, 45, 74, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 45, 74, 0.1);

  /* Layout */
  --max-width: 1180px;
}

/* -------- Reset + base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

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

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: .75rem;
}

/* -------- Navigation -------- */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: .5px;
}
.nav__brand span { color: var(--color-accent-dark); }
.nav__toggle {
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  display: none;
}
.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav__links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}
.nav__cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: .6rem 1.1rem !important;
  border-radius: var(--radius-md);
  border: none !important;
  transition: background .2s ease;
}
.nav__cta:hover {
  background: var(--color-accent-dark);
  color: #fff !important;
}

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: .02em;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* -------- Hero -------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(201, 166, 107, .18), transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(201, 166, 107, .12), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Smaller hero for inner pages */
.hero--sub {
  padding: 3.5rem 0 3rem;
}
.hero--sub h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

/* Two-column layout for 'The Opportunity' section (text + partner logo) */
.opportunity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.opportunity-grid__text {
  max-width: 780px;
}
.opportunity-grid__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.opportunity-grid__logo img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 820px) {
  .opportunity-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .opportunity-grid__logo { order: -1; }
  .opportunity-grid__logo img { max-width: 220px; }
}

/* Hero with brand logo acting as the title (e.g. Community page) */
.hero--logo .eyebrow {
  margin-bottom: .75rem;
}

/* Photo wall backdrop for the community hero (team photos under the logo) */
.hero--with-photos {
  position: relative;
  overflow: hidden;
  padding: 0;          /* the photo wall now drives the hero height */
}
/* CSS Grid collage — photos fill their cells tightly, with a small slice of
   the brown hero background showing between them as a built-in border. */
.hero__photo-wall {
  position: relative;
  background: var(--color-primary-dark);
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 4px;
  z-index: 0;
  pointer-events: none;
}
.hero__photo-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* fill the cell so photos sit tight together */
  object-position: center;
  display: block;
  filter: brightness(.9) saturate(.95);
  opacity: .95;
  image-orientation: from-image;
}
/* Cell shapes per photo orientation */
.hero__photo-wall .ph--p    { grid-column: span 1; grid-row: span 2; } /* portrait  */
.hero__photo-wall .ph--ls   { grid-column: span 2; grid-row: span 2; } /* landscape */
.hero__photo-wall .ph--wide { grid-column: span 3; grid-row: span 1; } /* panoramic */
/* Soft centred halo behind the logo + text so they remain readable,
   without dimming the photos at the edges of the hero. */
.hero--with-photos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 65% at center,
    rgba(58, 34, 22, .78) 0%,
    rgba(58, 34, 22, .55) 45%,
    rgba(58, 34, 22, 0) 80%
  );
  z-index: 1;
  pointer-events: none;
}
/* Logo + text overlaid in the centre of the photo collage */
.hero--with-photos .hero__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 780px;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.hero--with-photos .hero-logo,
.hero--with-photos .hero-logo img { margin-left: auto; margin-right: auto; }
.hero--with-photos .hero__subtitle,
.hero--with-photos .lead { margin-left: auto; margin-right: auto; }
/* subtle text shadow for extra legibility against any bright photo edges */
.hero--with-photos .hero__subtitle,
.hero--with-photos .lead,
.hero--with-photos .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

@media (max-width: 900px) {
  .hero__photo-wall {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
  .hero__photo-wall .ph--wide { grid-column: span 4; }
}
@media (max-width: 560px) {
  .hero__photo-wall {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    padding: 4px;
    gap: 3px;
  }
  .hero__photo-wall .ph--wide { grid-column: span 3; }
  .hero__photo-wall .ph--ls   { grid-column: span 2; }
}
.hero-logo {
  margin: 0 0 1.5rem;
}
.hero-logo img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  /* logo is black on transparent — invert to white against the dark hero */
  filter: brightness(0) invert(1);
}
.hero__subtitle {
  font-family: var(--font-heading, serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 680px;
}
@media (max-width: 720px) {
  .hero-logo img { max-width: 340px; }
}

/* -------- Cards / Grids -------- */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
@media (max-width: 720px) {
  .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-top: 0; }
.card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* -------- Contact methods (email + WhatsApp) -------- */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

/* Bottom row of cards (What to expect + FAQs) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}
.info-grid > .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.info-grid .faq-carousel__viewport {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.info-grid .faq-carousel__track { width: 100%; }

@media (max-width: 720px) {
  .contact-methods,
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.contact-method__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
}
.contact-method__text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.contact-method__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
}
.contact-method__value {
  font-size: .95rem;
  color: var(--color-muted);
  word-break: break-word;
}

/* -------- Team -------- */
.team-member {
  text-align: center;
}
.team-member__photo {
  width: 170px;
  height: 170px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-muted);
  font-family: var(--font-heading);
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.team-member h3 { margin: .5rem 0 .25rem; }
.team-member .role {
  color: var(--color-accent-dark);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: .75rem;
}

/* -------- Calendar -------- */
.calendar-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-header h3 { margin: 0; }
.calendar-nav button {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.calendar-nav button:hover { background: var(--color-accent); border-color: var(--color-accent); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-grid .dow,
.calendar-grid .day {
  padding: .5rem 0;
  text-align: center;
  font-size: .9rem;
  border-radius: var(--radius-sm);
}
.calendar-grid .dow {
  font-weight: 600;
  color: var(--color-muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.calendar-grid .day {
  background: var(--color-cream);
  color: var(--color-text);
}
.calendar-grid .day.empty { background: transparent; }
.calendar-grid .day.today { outline: 2px solid var(--color-accent); font-weight: 700; }
.calendar-grid .day.has-event {
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}
.calendar-grid .day.has-event::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-accent);
}
.calendar-grid .day.has-event:hover { background: var(--color-accent-dark); }

.event-list { margin-top: 1.5rem; }
.event-list__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}
.event-list__item:first-child { border-top: 0; }
.event-list__date {
  flex: 0 0 62px;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .4rem;
  font-family: var(--font-heading);
}
.event-list__date .d { font-size: 1.3rem; display: block; font-weight: 700; line-height: 1; }
.event-list__date .m { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.event-list__body h4 { margin: 0 0 .25rem; }
.event-list__body p { margin: 0; color: var(--color-muted); font-size: .9rem; }

/* -------- Community -------- */
.pillar {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: 2rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pillar h3 {
  margin-top: 0;
  margin-bottom: .6rem;
  font-size: 1.35rem;
}
.pillar p {
  margin: 0;
  line-height: 1.65;
}

/* -------- CTA band -------- */
.cta-band {
  background-image: linear-gradient(rgba(58,34,22,.85), rgba(58,34,22,.9)), url('../assets/palm-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

/* Wrap CTA band + footer with one continuous palm background */
.palm-footer-wrap {
  background-image: linear-gradient(rgba(58,34,22,.85), rgba(58,34,22,.92)), url('../assets/palm-bg.jpg');
  background-size: cover;
  background-position: center;
}
.palm-footer-wrap .cta-band,
.palm-footer-wrap .site-footer {
  background: transparent;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 1.5rem; }

/* -------- Footer -------- */
.site-footer {
  background-image: linear-gradient(rgba(58,34,22,.85), rgba(58,34,22,.92)), url('../assets/palm-bg.jpg');
  background-size: cover;
  background-position: center;
  color: rgba(255,255,255,.85);
  padding: 2.5rem 0 1.5rem;
  font-size: .9rem;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .4rem; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 720px) {
  .site-footer .container { grid-template-columns: 1fr; }
}

/* -------- Misc -------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.placeholder-note {
  background: #fff8e5;
  border: 1px dashed var(--color-accent);
  color: #6b5a2f;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  margin: 1.5rem 0;
}

/* =========================================================
   Canva-inspired additions
   ========================================================= */

/* Nav brand in script */
.nav__brand--script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0;
}
.nav__brand--script span { color: var(--color-accent-dark); }
@media (max-width: 520px) {
  .nav__brand--script { font-size: 1.85rem; }
}

/* Image-only hero — uses the Canva design as a single screenshot
   with an invisible clickable overlay where the LEARN MORE button sits. */
.hero--image {
  padding: 0;
  background: var(--color-primary-dark);
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
}
/* Hotspot matches the white "LEARN MORE" button in homepage-hero.jpg
   (button bbox: x 839→1168 of 2006, y 908→963 of 1126) */
.hero-image__cta {
  position: absolute;
  left: 41.8%;
  top: 80.6%;
  width: 16.4%;
  height: 4.9%;
  border-radius: 2px;
  z-index: 2;
  /* invisible hotspot — no background, no border, just clickable */
}
.hero-image__cta:hover,
.hero-image__cta:focus-visible {
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Script hero (Welcome to / script wordmark / tagline / button) */
.hero--script {
  padding: 5rem 0 4.5rem;
  text-align: center;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.hero--script .hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .7;
  z-index: 0;
}
.hero--script::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,34,22,.3) 0%, rgba(58,34,22,.5) 100%);
  z-index: 1;
}
.hero--script .hero__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 900px;
}
.hero__welcome {
  display: inline-block;
  color: #fff;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.hero__script {
  font-family: var(--font-script);
  color: #fff;
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 1;
  margin: 0 0 1rem;
  font-weight: 400;
  letter-spacing: .02em;
}
/* Canva-exported wordmark image replacing the script text */
.hero__script-wrap {
  margin: 2rem 0 1rem;
  line-height: 1;
  font-size: 0; /* collapse extra inline gaps */
}
.hero__script-img {
  display: block;
  margin: 0 auto;
  width: clamp(280px, 70vw, 760px);
  height: auto;
}

/* Plane with curved trail — sits above the script wordmark */
.hero__plane {
  display: block;
  width: clamp(200px, 30vw, 320px);
  height: auto;
  margin: 0 auto .5rem;
  color: #fff;
  opacity: .95;
}
.hero__tagline {
  color: #fff;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .85rem;
  font-family: var(--font-heading);
  margin-bottom: .35rem;
}
.hero__est {
  color: #fff;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: .9rem;
  opacity: .9;
  margin-bottom: 2.25rem;
}
.hero__btn-light {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  padding: .85rem 2.25rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all .2s ease;
}
.hero__btn-light:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Full-width warm-brown section — matches the footer's solid brown */
.section--brown {
  background: var(--color-primary-dark);
  color: #fff;
}
.section--brown h2,
.section--brown h3,
.section--brown h4 { color: #fff; }
.section--brown .eyebrow { color: #e7d3b8; }
.hero .eyebrow,
.hero--sub .eyebrow,
.section--dark-img .eyebrow,
.cta-band .eyebrow { color: #e7d3b8; }
.section--brown p { color: rgba(255,255,255,.9); }

/* Palm-tree dark background for 'Booking with' + 'Host Agency' */
.section--dark-img {
  background: var(--color-primary-dark);
  color: #fff;
  position: relative;
}
.section--dark-img h2,
.section--dark-img h3,
.section--dark-img h4 { color: #fff; }
.section--dark-img p { color: rgba(255,255,255,.88); }

/* About Me layout: photo + text side by side */
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-align: center;
  overflow: hidden;
  line-height: 0;
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.about-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .25rem;
}
.about-body .subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: #e7d3b8;
  margin-bottom: 1.5rem;
  display: block;
}
.about-body p { line-height: 1.8; }

@media (max-width: 780px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo { max-width: 320px; margin: 0 auto; }
}

/* Booking-with feature boxes — outlined style over dark bg */
.feature-box {
  border: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
  background: #fff;
}
.feature-box .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  font-size: 1.8rem;
  border-radius: 50%;
}
.feature-box p { font-size: .95rem; }

/* Process steps (My Travel Services 1-2-3-4) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.process-step {
  border: 1px solid var(--color-border);
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  background: var(--color-surface);
  position: relative;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.process-step__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: .5rem 0 1rem;
  font-size: 1.25rem;
}
.process-step p {
  font-size: .9rem;
  color: var(--color-muted);
  margin: 0;
}

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

/* Stat tiles (Host Agency Value) */
.stat-tile {
  border: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
  background: #fff;
}
.stat-tile .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  font-size: 2rem;
  border-radius: 50%;
}
.stat-tile p {
  font-size: 1rem;
  margin: 0;
}

/* Accreditation / partner logo row (Host Agency Value section) */
.accreditations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  margin: 2.5rem auto 0;
  max-width: 900px;
}
.accreditations img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .accreditations {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Placeholder box for images user hasn't dropped in yet */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-cream);
  border: 1px dashed var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: .85rem;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
}

/* =========================================================
   Testimonials (Community page) — fading carousel
   ========================================================= */
.testimonials { gap: 1.5rem; }

.testimonial-carousel {
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 4px; /* breathing room so card shadows aren't clipped */
}

/* Stack slides so we can crossfade between them */
.testimonial-carousel__track {
  display: grid;
  grid-template-areas: "slide";
}

/* Each slide holds two testimonials side by side */
.testimonial--slide {
  grid-area: slide;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
  pointer-events: none;
}

.testimonial--slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-in-out, visibility 0s linear 0s;
  pointer-events: auto;
}

/* Solo slide (odd-count leftover) — centred, not full-width */
.testimonial--slide--solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 52%;
  margin: 0 auto;
}

/* Stack to one column on narrow screens */
@media (max-width: 720px) {
  .testimonial--slide { grid-template-columns: 1fr; }
  .testimonial--slide--solo { max-width: 100%; }
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
}

.testimonial-carousel__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  padding: 0;
  flex: 0 0 auto;
}
.testimonial-carousel__btn:hover,
.testimonial-carousel__btn:focus-visible {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
  outline: none;
}

.testimonial-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem;
  max-width: 360px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.testimonial-dot.is-active {
  background: var(--color-accent-dark);
  transform: scale(1.3);
}
.testimonial-dot:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
}

.testimonial {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.75rem 1.75rem;
  margin: 0;
  border-left: 3px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial__mark {
  position: absolute;
  top: -.35rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: .55;
  pointer-events: none;
}

.section--brown .testimonial .testimonial__quote,
.testimonial .testimonial__quote {
  color: var(--color-text);
  font-size: .97rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  font-style: italic;
  flex: 1;
}

.section--brown .testimonial .testimonial__author,
.testimonial .testimonial__author {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
  margin: 0;
}

/* Small "scroll for more..." prompt in sub-hero */
.hero__scroll-prompt {
  margin: 1.5rem 0 0;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e7d3b8;
  opacity: .85;
  animation: scrollPromptBob 2.4s ease-in-out infinite;
}

@keyframes scrollPromptBob {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* =========================================================
   FAQ Carousel (Book a Call page)
   ========================================================= */
.faq-carousel { position: relative; }
.faq-carousel__top { margin-bottom: .75rem; }
.faq-carousel__top h3 { margin: 0; }

.faq-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

/* Stack all slides in the same grid cell so the container
   sizes to the tallest slide and we can crossfade between them. */
.faq-carousel__track {
  display: grid;
  grid-template-areas: "slide";
}

.faq-slide {
  grid-area: slide;
  padding: .25rem .1rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
  pointer-events: none;
}

.faq-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-in-out, visibility 0s linear 0s;
  pointer-events: auto;
}

.faq-q {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 .6rem;
}

.faq-a {
  color: var(--color-text);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}

.faq-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .5rem;
}

.faq-carousel__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  padding: 0;
}
.faq-carousel__btn:hover,
.faq-carousel__btn:focus-visible {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
  outline: none;
}

.faq-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  flex: 1;
}

.faq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.faq-dot.is-active {
  background: var(--color-accent-dark);
  transform: scale(1.25);
}
.faq-dot:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
}
