/* ── 1. Font ── */
/*-- Apply Lora or other  font locally NO URL */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

/* ── 2. Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }

/* ── 3. Variables ── */
:root {
  --primary-dark:     hsl(2, 53%, 12%);
  --primary-mid:      hsl(2, 48%, 24%);
  --primary:          hsl(2, 65%, 46%);
  --primary-light:    hsl(2, 65%, 66%);
  --accent:           hsl(108, 54%, 28%);
  --accent-light:     hsl(108, 54%, 48%);
  --accent-secondary: hsl(190, 60%, 35%);
  --accent-secondary-light: hsl(190, 60%, 55%);
  --tertiary:         hsl(25, 75%, 45%);
  --tertiary-light:   hsl(25, 75%, 65%);
  --bg-light:         hsl(2, 79%, 97%);
  --bg:               hsl(2, 79%, 93%);
  --bg-dark:          hsl(2, 79%, 87%);
  --text:             hsl(2, 58%, 7%);
  --text-muted:       hsl(2, 12%, 43%);
  --white:        hsl(0, 0%, 100%);

  --shadow-s:
  inset 0 1px 2px hsla(0, 0%, 100%, 0.1),
  0 1px 2px hsla(0, 0%, 0%, 0.05),
  0 2px 4px hsla(0, 0%, 0%, 0.01);
  --shadow-m:
  inset 0 1px 2px hsla(0, 0%, 100%, 0.1),
  0 2px 4px hsla(0, 0%, 0%, 0.05),
  0 4px 8px hsla(0, 0%, 0%, 0.1);
  --shadow-l:
  inset 0 1px 2px hsla(0, 0%, 100%, 0.1),
  0 4px 6px hsla(0, 0%, 0%, 0.05),
  0 6px 10px hsla(0, 0%, 0%, 0.1);

  --radius:    14px;
  --gap:       clamp(10px, 1.5vw, 16px);
  --pad:       clamp(1rem, 4vw, 2.5rem);
  --max-width: 1100px;
}

/* ── 4. Base ── */
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  /* Should this match the OG font? maybe via @font face? ¡Lora is not in the assets folder!*/
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
/* ¡Lora is not in the assets folder! */
h1, h2, h3 { font-family: 'Lora', serif; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem);   font-weight: 700; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-muted); line-height: 1.75; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── 5. Layout shell ── */
main {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem) var(--pad);
}

/* ── 6. Header ── */
.site-header {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.75rem;
  padding: 1rem var(--pad);
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .5rem;/* adjusts Biz name spacing */
}

.header-logo {
  width: 45px;
  border-radius: 50%;/* logo is still not centered and there is too much whitespace around it. */
  /*object-fit: fill;*/
  /*align-items: center;*/
  height: auto;
  background: var(--bg-light);
}
.site-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  gap: .25rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-name span {
  color: var(--primary-light);
}

/* ── 7. Nav ── */
.site-nav { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.25s ease; }
.nav-open .site-nav { max-height: 400px; opacity: 1; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-links li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--white); text-decoration: none; }
.nav-links li a.active { font-weight: 600; color: var(--primary-light); }

.nav-cta {
  display: block;
  margin: 0.75rem 0 0.25rem;
  text-align: center;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}

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

/* Tablet+: nav becomes a row */
@media (min-width: 768px) {
  .site-header    { flex-direction: row; align-items: center; padding: 0 var(--pad); height: 68px; gap: 0; }
  .header-top     { flex: 1; border-bottom: none; padding: 0; }
  .nav-toggle     { display: none; }
  .site-nav       { max-height: none; opacity: 1; overflow: visible; display: flex; align-items: center; gap: 1.5rem; }
  .nav-links      { flex-direction: row; gap: 0; padding: 0; border-top: none; }
  .nav-links li a { padding: 0 0.75rem; border-bottom: none; font-size: 0.9rem; }
  .nav-cta        { margin: 0; }
}

/* ── 8. Bento grid container ── */
.bento-grid {
  display: grid;
  gap: var(--gap);
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  /* grid-template-columns and grid-template-areas
     live in the page CSS files only */
}

/* ── 9. Cards ── */
.card {
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--text-muted);
  height: 100%;
  min-height: 120px;
}

/* ── Card-Hero ── */
.card-hero {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}

.card-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #5a3220 0%, var(--primary-dark) 70%);
  opacity: 0.6;
}

.card-hero > * {
  position: relative; z-index: 1;
}
/* hero is picked out white text color */
.card-hero h1,
.card-hero h2,
.card-hero p  {
  color: var(--white);
}
/* gives text a touch of transparency */
.card-hero p  {
  color: rgba(255,255,255,0.75);
}

/* ── Card-Feature ── */

.card-feature {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: .35rem;
  position: relative; /*what does this do?*/
  overflow: hidden;
}

.card-feature h2 {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
}


/* ── Card Feature 2 ── */
.card-feature2 {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .35rem;
  position: relative;
  overflow: hidden;
}

.card-feature2 h2 {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
}

.card-feature2 h3 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

/* ── Card Form ── */
.card-form {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .35rem;/* this is why there was no gap between flex items */
  position: relative;
  overflow: hidden;
}

.card-form h2 {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
}

/* ── Card-Bullet ── */

.card-bullet {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .35rem;
  position: relative;
  overflow: hidden;
}

.card-bullet h2 {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
}

.list-benefit {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.list-item-benefit {

}

/* ── Card-Trust ── */
.card-trust {
  background: var(--bg-light);
  border-color: var(--text-muted);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 1rem;
  min-height: 80px;
  padding-block: 1.25rem;
}

.trust-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  justify-content: space-evenly;
  align-items: center;
}

.trust-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: 'Lora', serif;
}
.trust-stat span {
  font-size: 1rem;
  color: var(--text-muted);
}



/* ── Card-Info ── */
.card-info {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  color: black;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .75rem;
  position: relative;
  overflow: hidden;
}

.card-info h2 {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
}

.card-info strong {

}

/* ── Card Pricing & Packaging ── */
.card-pricing-packaging {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .75rem;
  position: relative;
  overflow: hidden;
}

.card-pricing-packaging h2 {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
}

.card-pricing-packaging h3 {
  margin-bottom: .5rem;
}

.tier1, .tier2, .tier3 {

}

.tier-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  gap: 0.5rem;
}

/* ── Card-Qn ── */
.card-qn {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}

.card-qn h2 {
  margin-top: .5rem;
  font-size: 1.35rem;
}

/* ── Card Contact Steps ── */
.card-contact-steps {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .35rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 2.5rem;
}

.card-contact-steps h3 {
  text-align: center;
  margin-top: .25rem;
  font-size: 1.25rem;
}

/* ── Card-CTA ── */
.card-cta {
  background: var(--primary);
  border-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .35rem;
  position: relative;
  overflow: hidden;
}

.card-cta h2,
.card-cta h3,
.card-cta p {
  color: var(--white);
}

.card-dark {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
}

.card-dark h2,
.card-dark h3,
.card-dark p { color: var(--white); }

.card-format {}

/* mov to images? -- */
.card-profile-pic {
  background: var(--bg-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* mov to images? -- */
.card-multi-instrument-strip {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
  margin-top: 1rem;
}

/* ------  Reviews --  */

.quote-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.75rem;
}

.fig-quote-block {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.75rem;
}

.review-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
}

blockquote {
  /* controls the quote indent */
  padding-inline: 3rem;
}

.asterisk {
  padding-inline: 2rem;
  margin-bottom: .85rem;
}
/* might be unnecessary and unused ---------------- */
/*.review-stars {*/
/*  display: flex;*/
/*  justify-content: flex-start;*/
/*  align-items: center;*/
/*  gap: .25rem;*/
/*}*/
/* __________________________________________________________________________*/

/* ── 9.1 Images, Icons, bullet points── */

.feature-image-wrapper {
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* parent container */
.feature-wrapper {
  display: flex;
  justify-content: space-evenly;

  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: contain;
  position: relative;
}

.feature-inner-wrapper {

}


/* child element */
.feature-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid black;
}

/* 2nd child element */
.feature-main {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: .8rem;
  margin-top: .65rem;
}

/* photo galleries */
.student-pic-gallery {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
  margin-top: 1rem;
}

/* icon element */
.icon-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: .75rem;
  align-items: center;
}

.my-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
}

.my-icon-mini {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
}

/*-- style bullets here --*/
ul {
  list-style-type: circle;
}

/* ── 10. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  /*how smooth the buttons?*/
  transition: background-color 0.85ms ease-in-out;
  width: fit-content;
}

.btn:hover  {
  opacity: 0.88;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent-light);
  color: var(--white);
  border-color: var(--accent);
  margin-top: .5rem;/*-- gives cta btn breathing room -- */
}

.btn-primary:hover {
  opacity: 0.88;
  text-decoration: none;
  background: var(--primary-light);
  color: var(--text);
  border-color: var(--accent-secondary-light)
}

.btn-secondary {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--accent-secondary-light);
}

.btn-secondary:hover  {
  opacity: 0.88;
  text-decoration: none;
  background: var(--accent-light);
  color: var(--text);
  border-color: var(--primary)
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-bullet_wrapper {
  text-align: center;
}

/* ── 11. Card eyebrow ── */
.eyebrow {
  display: flex;
  /*justify-content: flex-start;*/
  align-items: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 0.35rem;

}

/* ── 12. Stars ── */
.stars {
  color: var(--accent-light);
  font-size: 1.15rem;
  letter-spacing: 0.15rem;
}

.reviewer {
   font-style: italic;
}

/* ── 13. Footer ── */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem var(--pad);
  background: var(--primary-dark);
  color: rgba(255,255,255,0.6);
}

.footer-brand-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: .75rem;
}

.footer-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;

}
.footer-name span { color: var(--primary-light); }

.footer-logo {
  width: 38px;
  border-radius: 50%;
  /*object-fit: fill;*/
  height: auto;
  background: var(--bg-light);
}

.site-name-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .25rem;/* adjusts Biz name spacing */
}
.footer-tagline {
  font-size: 0.85rem;
  color:rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/*------------------questionable queries related to feature image --------------------------*/
/* Tablet media query */

@media (min-width: 768px) {
  .feature-image-container {
    height: 350px; /* Adjusts fixed height for larger screens */
  }
} /* Desktop media query */

@media (min-width: 1024px) {
  .feature-image-container {
    height: 450px; /* Adjusts fixed height for desktop views */
  }
}



@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3rem var(--pad);
  }
  .footer-brand { max-width: 240px; }
}

/* ── 14. Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── 15. Form styles (contact.html) ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-required { color: var(--primary); margin-left: 2px; }
.form-optional  { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 98, 26, 0.15);
}

.form-input.input-error,
.form-select.input-error,
.form-textarea.input-error { border-color: var(--primary); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6a5f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  background-color: var(--bg-light);
}

.form-radio-group,
.form-checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-radio,
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

.form-radio input,
.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Honeypot — visually hidden but not display:none */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── 16. What-happens-next steps (contact.html) ── */
.expect-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1rem;
}

.expect-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.expect-step strong { font-size: 0.95rem; color: var(--text); display: block; margin-bottom: 0.2rem; }
.expect-step p      { font-size: 0.875rem; margin: 0; }

/* ── 17. Trust mini stats (contact.html) ── */

/* ── Card Trust Mini ── */
.card-trust-mini {
  background: var(--bg-light);
  border-color: var(--primary-dark);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: .35rem;
  position: relative;
  overflow: hidden;
}

.card-trust-mini h3 {
  text-align: center;
  margin-top: .25rem;
  font-size: 1.25rem;
}

.trust-mini {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: .5rem;
  flex-wrap: nowrap;
  margin-top: .5rem;
}

.trust-mini div  {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: 0.1rem;
}
.trust-mini strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Lora', serif;
  display: block;
}
.trust-mini span   {
  font-size: 0.75rem;
  color: var(--text-muted);
}
/* ----Media Queries ----*/

/* ---- hamburger related ----*/

@media (min-width: 768px) {
  .site-header    { flex-direction: row; align-items: center; padding: 0 var(--pad); height: 68px; gap: 0; }
  .header-top     { flex: 1; border-bottom: none; padding: 0; }
  .nav-toggle     { display: none; }
  .site-nav       { max-height: none; opacity: 1; overflow: visible; display: flex; align-items: center; gap: 1.5rem; }
  .nav-links      { flex-direction: row; gap: 0; padding: 0; border-top: none; }
  .nav-links li a { padding: 0 0.75rem; border-bottom: none; font-size: 0.9rem; }
  .nav-cta        { margin: 0; }
}

/* ---- feature image related ----*/

/* Tablet media query */

@media (min-width: 768px) {
  .feature-image-container {
    height: 350px; /* Adjusts fixed height for larger screens */
  }
} /* Desktop media query */

@media (min-width: 1024px) {
  .feature-image-container {
    height: 450px; /* Adjusts fixed height for desktop views */
  }
}

@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3rem var(--pad);
  }
  .footer-brand { max-width: 240px; }
}

/* ── 14. Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
