/* Import Google Fonts for headings and body text */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;600&display=swap');

/* Global styles */
* {
  box-sizing: border-box;
}

:root {
  /* Updated colour palette to match the light beige and dark brown scheme requested. */
  /* Dark brown used for headings, icons and borders. */
  --primary-color: #4a3524;
  /* Secondary colour mirrors the primary to keep a cohesive palette. */
  --secondary-color: #4a3524;
  /* Warm accent used for subtle highlights (e.g. active nav link). */
  --accent-color: #c27d55;
  /* Light colour for neutral backgrounds (cards, grids). */
  --light-color: #ffffff;
  /* Beige colour used for hero, contact and footer sections. */
  --beige-color: #f4eee9;
  /* Default text colour. */
  --text-color: #4a3524;
  --max-width: 1200px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

html {
	scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header styles */
header {
  /* Rounded, light header inspired by provided example */
  background-color: var(--beige-color);
  color: var(--text-color);
  border-radius: 999px;
  margin: 1rem auto;
  padding: 0.5rem 2rem;
  width: 95%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

nav .nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav .nav-list a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav .nav-list a:hover {
  opacity: 0.8;
}

/* Active navigation link */
nav .nav-list a.active {
  color: var(--accent-color);
}

/* Navigation call-to-action button. This appears in the header as a prominent link to the contact page. */
.btn-nav {
  background-color: #fde5d6; /* soft peach tone reminiscent of the provided example */
  color: var(--text-color);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-nav:hover {
  background-color: var(--accent-color);
  color: var(--beige-color);
}

/* Hero section */
.hero {
  /* Use a soft beige background instead of the previous blue gradient. */
  background-color: var(--beige-color);
  color: var(--text-color);
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  margin-top: 0;
  font-size: 2.5rem;
  font-weight: 600;
}

.hero h1 {
	margin-top: 0;
	font-size: 2.6rem;
	font-weight: 700;
}

.hero p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
}

/* Primary button style - rounded outline similar to provided example */
.btn-primary {
  background-color: transparent;
  color: #4a3524;
  padding: 0.75rem 2rem;
  border: 2px solid #4a3524;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: #4a3524;
  color: #fff;
}

/* Secondary button style for alternate CTAs (e.g. Ask a Question) */
.btn-secondary {
  background-color: var(--accent-color);
  color: var(--beige-color);
  padding: 0.75rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-secondary:hover {
  background-color: var(--text-color);
  color: var(--beige-color);
}

/* Intro section */
.intro p {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Hero specific elements */
.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.quick-contact {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}
.quick-contact a {
  color: var(--text-color);
  text-decoration: underline;
}

/* More lessons link under the service grid */
.more-lessons {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
}
.more-lessons a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* FAQ styles */
.faq {
  padding: 3rem 0;
  background-color: var(--light-color);
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}
.faq-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
}

/* Services section */
.services {
  padding: 3rem 0;
  background-color: #fff;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.service-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
}

/* About section */
.about {
  padding: 3rem 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Contact section */
/* Contact section now uses a soft beige background with dark text. */
.contact {
  background-color: var(--beige-color);
  color: var(--text-color);
  padding: 3rem 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
}

/* Modern form card wrapper to match provided mockup */
.form-card {
  background-color: var(--beige-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Contact form layout – two-column grid with pill inputs */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.contact-form input,
.contact-form select {
  background-color: #fff;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(74, 53, 36, 0.12);
  border-radius: 999px;
  font-size: 1rem;
  height: 52px;
}

.contact-form textarea {
  background-color: #fff;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(74, 53, 36, 0.12);
  border-radius: 16px;
  font-size: 1rem;
  min-height: 160px;
  resize: vertical;
  grid-column: 1 / -1;
}

.contact-form ::placeholder {
  color: #9a958f;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--accent-color);
}

/* Contact form button uses the same pill‑style as primary buttons */
.contact-form button {
  grid-column: 1 / -1;
  padding: 0.95rem 2rem;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  background-color: #fbd6c1; /* soft peach */
  color: #3b2a1d;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.1s ease, filter 0.2s ease;
}

.contact-form button:hover {
  filter: brightness(0.97);
}

.contact-form button:active { transform: scale(0.99); }

/* Make checkbox/note span both columns cleanly */
.contact-form label,
.contact-form .small-note,
#g-recaptcha-response {
  grid-column: 1 / -1;
}

/* Footer */
/* Footer uses the same beige background as other highlighted sections and dark text. */
footer {
  background-color: var(--beige-color);
  color: var(--text-color);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Benefits section (top benefits on home and service pages) */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.benefit-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
}

/* Values list for mission & values and achievements sections */
.values-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.values-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.values-list li strong {
  color: var(--primary-color);
}

/* Timeline styles for company history */
.timeline {
  margin-top: 2rem;
  border-left: 2px solid var(--primary-color);
  padding-left: 1.5rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
}

.timeline-item h4 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.timeline-item p {
  margin: 0;
  font-size: 1rem;
}

/* CTA section with dark background for call-to-action and contact info */
.cta-section {
  /* Make call-to-action sections neutral so the inner container stands out */
  background-color: transparent;
  color: inherit;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.cta-dual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  /* Add soft container styling similar to provided side-by-side example */
  background-color: var(--beige-color);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-dual .form-col {
  flex: 1 1 300px;
}

.cta-dual .info-col {
  flex: 1 1 250px;
  text-align: left;
}

.cta-dual .info-col p {
  margin: 0.4rem 0;
  font-size: 1rem;
}

.cta-dual .info-col a {
  /* Link colour inside contact/info columns should match the dark text for readability. */
  color: var(--text-color);
  text-decoration: underline;
}

/* Steps section styles */
.steps {
  padding: 3rem 0;
  background-color: #fff;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-item {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.step-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.step-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
}

/* Testimonials section override for backgrounds */
.testimonials {
  padding: 3rem 0;
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.testimonial-item span {
  font-weight: 600;
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	header {
		padding: 0.25rem 1rem;
	}
	.header-container {
		flex-direction: column;
		gap: 0.5rem;
	}
	nav .nav-list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.75rem;
	}
  .cta-dual {
    flex-direction: column;
    align-items: center;
  }
  .cta-dual .info-col {
    text-align: center;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
	.logo { font-size: 1.2rem; }
	header { border-radius: 16px; }
  .hero h2 {
    font-size: 2rem;
  }
	.hero h1 { font-size: 2.1rem; }
  .hero p {
    font-size: 1rem;
  }
	.hero { padding: 2.5rem 0; }
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
	.values-list li { font-size: 0.95rem; }
}

/* Typography */
/* Apply a modern serif for headings and a clean sans‑serif for body text */
body {
  font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Video container styling */
.video-container {
  margin-top: 1.5rem;
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Two‑column layout for the "Meet Dchenin" section */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.about-media {
  flex: 1 1 45%;
}
.about-content {
  flex: 1 1 50%;
  text-align: left;
}
.about-content h2 {
  text-align: left;
}
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }
  .about-content h2 {
    text-align: center;
  }
  .about-content {
    text-align: center;
  }
}

/* Pre‑footer CTA bar */
.prefooter-cta {
  background-color: var(--beige-color);
  color: var(--text-color);
  padding: 2rem 0;
  text-align: center;
}
.prefooter-cta h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
}
.prefooter-cta p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.prefooter-cta .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== HERO: text left, media right (no color changes) ===== */
.dv-hero { padding-block: clamp(48px, 9vw, 140px); }
.dv-hero__inner { display: grid; grid-template-columns: 1fr; align-items: center; gap: clamp(16px, 4vw, 64px); }
.dv-hero__copy { text-align: left; max-width: 68ch; }
.dv-hero__copy h1 { margin: 0 0 12px 0; line-height: 1.05; letter-spacing: -0.02em; font-size: clamp(36px, 8vw, 82px); }
.dv-hero .tagline { margin: 0 0 20px 0; font-size: clamp(16px, 2.2vw, 22px); }
.dv-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; margin-bottom: 10px; }
.dv-hero .quick-contact { margin-top: 12px; }
.dv-hero__media { justify-self: center; max-width: 680px; width: 100%; }
.dv-hero__media img { display: block; width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 45px rgba(0,0,0,.15); }
@media (min-width: 960px) { .dv-hero__inner { grid-template-columns: 1.05fr 0.95fr; } .dv-hero__media { justify-self: end; max-width: 760px; } }

/* ===== What to Expect (card grid, no images) ===== */
.dv-steps { padding-block: clamp(20px, 6vw, 64px); }
.dv-steps__grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 3vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.dv-card {
  position: relative;
  background: var(--card-bg, #fff);
  border-radius: 16px;
  padding: clamp(16px, 3.5vw, 24px);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.dv-card::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1;
  margin-bottom: 6px;
  opacity: .9;
}
.dv-card h3 { margin: 6px 0 6px; font-size: clamp(18px, 2.5vw, 22px); }
.dv-card p  { margin: 0; font-size: clamp(14px, 2.2vw, 16px); }
@media (min-width: 640px) { .dv-steps__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 960px) { .dv-steps__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1200px) { .dv-steps__grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }

/* ===== Meet Dchenin (text left, video right) ===== */
.dv-bio { padding-block: clamp(28px, 7vw, 96px); }
.dv-bio__grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: clamp(16px, 4vw, 48px); }
.dv-bio__copy { text-align: left; max-width: 70ch; }
.dv-bio__lead { font-size: clamp(16px, 2.4vw, 20px); margin: 0 0 16px 0; }
.dv-bio__points { display: grid; gap: 10px; padding: 0; margin: 0 0 20px 0; list-style: none; }
.dv-bio__points li { display: flex; gap: 10px; align-items: flex-start; }
.dv-bio__points li::before { content: "✓"; opacity: .7; line-height: 1.2; }
.dv-bio__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.dv-bio__media { justify-self: center; max-width: 780px; width: 100%; }
.dv-video { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.dv-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 960px) {
  .dv-bio__grid { grid-template-columns: 1.05fr 0.95fr; column-gap: clamp(24px, 4vw, 64px); }
  .dv-bio__media { justify-self: end; }
}

/* ===== Contact section: map left, card right ===== */
.dv-contact { padding-block: clamp(24px, 7vw, 96px); }
.dv-contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 4vw, 32px); align-items: center; }
/* Map */
.dv-contact__map { width: 100%; max-width: 980px; justify-self: center; }
.dv-contact__map iframe { width: 100%; height: 100%; border: 0; aspect-ratio: 16/9; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.12); background: transparent; }
/* Card */
.dv-contact__card { background: var(--beige-color, transparent); border: 1px solid rgba(0,0,0,.08); border-radius: 24px; padding: clamp(16px, 3vw, 24px); }
.dv-contact__card h2 { margin-top: 0; text-align: left; }
.dv-contact__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.dv-contact__row { display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 12px; }
.dv-contact__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; background: rgba(0,0,0,.06); color: currentColor; }
.dv-contact__label { font-weight: 700; margin-bottom: 4px; }
.dv-contact__text { margin: 0; }
.dv-contact__row a { text-decoration: underline; }
@media (min-width: 1024px) { .dv-contact__grid { grid-template-columns: 1.15fr 0.85fr; column-gap: clamp(24px, 5vw, 64px); } .dv-contact__map { justify-self: stretch; } }

/* ===== FAQ (accordion) ===== */
.dv-faq { padding-block: clamp(28px, 7vw, 96px); }
.dv-faq__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: clamp(12px, 2.2vw, 13px); text-align: center; margin: 0 0 6px; opacity: .9; }
.dv-faq h2 { text-align: center; margin: 0 0 10px; font-size: clamp(28px, 6vw, 54px); line-height: 1.1; }
.dv-faq__intro { text-align: center; max-width: 70ch; margin: 0 auto 22px; }
.dv-faq__list { max-width: 960px; margin: 0 auto; display: grid; gap: 14px; }
.dv-faq details { background: var(--beige-color, rgba(0,0,0,.03)); border: 1px solid rgba(0,0,0,.08); border-radius: 18px; overflow: hidden; }
.dv-faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: clamp(12px, 2.8vw, 18px) clamp(14px, 3vw, 20px); }
.dv-faq summary::-webkit-details-marker { display: none; }
.dv-faq__chev { transition: transform .2s ease; }
.dv-faq details[open] .dv-faq__chev { transform: rotate(180deg); }
.dv-faq__content { background: var(--card-bg, #fff); border-top: 1px solid rgba(0,0,0,.06); margin: 0 clamp(8px, 1.5vw, 10px) clamp(8px, 1.5vw, 10px); border-radius: 12px; padding: clamp(12px, 2.8vw, 16px) clamp(14px, 3vw, 18px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.dv-faq__content p { margin: 0; }

/* ===== Centered header + body (no color overrides) ===== */
.dv-intro { padding-block: clamp(32px, 7vw, 120px); }
.dv-intro__inner { max-width: 80ch; margin-inline: auto; text-align: center; }
.dv-intro__eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: clamp(12px, 2.2vw, 13px); margin: 0 0 6px 0; opacity: .9; }
.dv-intro h2 { margin: 0 0 12px 0; line-height: 1.1; letter-spacing: -0.01em; font-size: clamp(28px, 6.5vw, 64px); }
.dv-intro__lead { margin: 0; font-size: clamp(16px, 2.4vw, 20px); }
.dv-intro--tint { background: var(--beige-color); }

/* ===== Gallery grid ===== */
.dv-gallery { padding-block: clamp(24px, 6vw, 80px); }
.dv-gallery__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(10px, 2vw, 16px); }
.dv-gallery__grid figure { margin: 0; }
.dv-gallery__grid img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
/* Footer with four columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  background-color: var(--beige-color);
  color: var(--text-color);
}
.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}
.footer-col p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: var(--text-color);
  text-decoration: none;
}
.footer-col ul li a:hover {
  text-decoration: underline;
}
.footer-bottom-bar {
  background-color: var(--beige-color);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-bottom-bar a {
  color: var(--text-color);
  text-decoration: underline;
}
.small-note {
  font-size: 0.85rem;
  font-style: italic;
}

/* Accessibility: skip link and focus styles */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid #0ea5e9; outline-offset: 2px; }

/* (reverted mobile drawer styles) */
