:root {
  --primary-color: #613B41; /* Dark maroon/brown */
  --accent-color: #D6AA63; /* Gold/Mustard */
  --bg-color: #FAF5F0; /* Very light cream */
  --text-dark: #333333;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --border-color: #E6E6E6;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.text-accent { color: var(--accent-color); }
.text-primary { color: var(--primary-color); }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.btn-outline {
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--text-light);
}

/* Topbar & Header */
.site-header {
  position: relative;
  z-index: 100;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: var(--white);
}

.topbar-logo img {
  height: 40px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.topbar-item i {
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  margin-top: -1.5rem;
  position: relative;
  z-index: 101;
}

.nav-links {
  display: flex;
  background: var(--white);
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-light);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.divider {
  width: 1px;
  height: 12px;
  background-color: #E0E0E0;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 14rem 0;
  background-color: #F8F2E9; /* Fallback */
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 50%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.pill i {
  color: var(--primary-color);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.8;
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.carousel-dots.center {
  justify-content: center;
}

.carousel-dots.left-aligned {
  justify-content: flex-start;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C4B5B7;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Tabs Section */
.tabs-section {
  position: relative;
  z-index: 10;
  margin-top: -6rem;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.tab {
  background: var(--white);
  padding: 1.5rem 3rem;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  text-align: center;
  cursor: pointer;
  min-width: 200px;
}

.tab h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tab-line {
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  margin: 0.5rem 0;
  transition: var(--transition);
}

.tab:not(.active) .tab-line {
  background: transparent;
}

.tab-subtitle {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent-color);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-light);
  font-size: 0.85rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #E0E0E0;
}

/* Booking Section */
.booking-section {
  padding: 2rem 0 6rem;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group select, .form-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--white);
  color: var(--text-light);
  appearance: none;
  transition: var(--transition);
}

.form-group select:focus, .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(214, 170, 99, 0.1);
}

.select-icon, .input-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.form-btn {
  width: max-content;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.test-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.test-left {
  position: relative;
  height: 400px;
}

.t-img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.t-img-1 { width: 90px; height: 90px; top: 20%; left: 15%; }
.t-img-2 { width: 140px; height: 140px; top: 35%; left: 35%; }
.t-img-3 { width: 70px; height: 70px; top: 10%; left: 45%; }
.t-img-4 { width: 80px; height: 80px; bottom: 15%; left: 20%; }
.t-img-5 { width: 80px; height: 80px; bottom: 5%; left: 60%; }

.test-right {
  position: relative;
}

.test-watermark {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.test-content {
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent-color);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.quote-icon.right {
  text-align: right;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.quote-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-info {
  margin-bottom: 1.5rem;
}

/* Team Section Slider */
.team-section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.team-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  gap: 3rem;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.team-img {
  width: 380px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.team-info {
  flex: 1;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-info .role {
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1.5rem;
}

.team-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  color: #4A4A4A;
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--primary-color);
}

.faq-q i {
  color: var(--text-light);
  transition: var(--transition);
}

.faq-a {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

/* Programs Section */
.programs-section {
  padding: 5rem 0;
}

.programs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #FCF8F2;
  border-radius: 12px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.programs-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.15;
  pointer-events: none;
}

.programs-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid #EBE4DB;
  padding-right: 2rem;
  z-index: 1;
}

.prog-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: #BDBDBD;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.prog-item.active {
  color: var(--primary-color);
}

.programs-right {
  padding-left: 4rem;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.programs-right h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.programs-right h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.programs-right p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Brands Section */
.brands-section {
  padding: 4rem 0;
}

.brands-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Newsletter Section */
.newsletter-section {
  background: #D9A95C;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-wm-left {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.2;
  pointer-events: none;
}

.newsletter-wm-right {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.2;
  pointer-events: none;
}

.nl-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nl-left {
  color: var(--white);
}

.nl-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.nl-left h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.2;
}

.nl-form-wrapper {
  display: flex;
  background: transparent;
  border-radius: 50px;
  border: 1px solid var(--white);
  padding: 0.25rem;
  align-items: center;
}

.nl-form-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
}

.nl-form-wrapper input::placeholder {
  color: rgba(255,255,255,0.8);
}

.nl-form-wrapper .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Footer Section */
.site-footer {
  background: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #FAF5F0;
  border-radius: 6px;
  color: var(--primary-color);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.links-grid {
  display: flex;
  gap: 3rem;
}

.links-grid ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-grid a {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 0.5rem;
}

.hours-time {
  color: var(--accent-color);
}

/* Animations & Hover Effects */

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Utils */
.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hover-text {
  transition: color 0.3s ease;
  cursor: pointer;
}
.hover-text:hover {
  color: var(--primary-color) !important;
}

.hover-img-scale {
  transition: transform 0.5s ease;
}
.team-card:hover .hover-img-scale {
  transform: scale(1.03);
}

/* Booking form status */
.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.success {
  color: #2e7d32;
  font-weight: 600;
}
.form-status.error {
  color: #b71c1c;
  font-weight: 600;
}
.booking-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
  .container { padding: 0 1.25rem; }

  /* Header */
  .topbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  .topbar-right {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8rem;
  }

  .navbar { margin-top: 0; padding: 0.5rem 1rem; }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    gap: 0.6rem 1rem;
    border-radius: 16px;
  }
  .nav-links a { font-size: 0.7rem; }
  .divider { display: none; }

  /* Hero */
  .hero { padding: 5rem 0 7rem; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 3rem; }
  .hero h2 { font-size: 1.25rem; }
  .hero p { max-width: 100%; font-size: 0.9rem; margin-bottom: 1.75rem; }

  /* Tabs */
  .tabs-section { margin-top: -3rem; }
  .tabs-wrapper { flex-wrap: wrap; gap: 1rem; }
  .tab {
    min-width: 0;
    flex: 1 1 calc(33.33% - 1rem);
    padding: 1rem 1.25rem;
  }
  .tab h3 { font-size: 1.05rem; }

  /* Stats */
  .stats-section { padding: 3rem 0; }
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 2.5rem; }

  /* Booking */
  .booking-section { padding: 1rem 0 4rem; }
  .booking-title { font-size: 1.4rem; line-height: 1.3; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .booking-form { gap: 1rem; }
  .form-group select, .form-input {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }
  .form-btn { width: 100%; }

  /* Testimonials */
  .testimonials-section { padding: 3rem 0; }
  .test-container { grid-template-columns: 1fr; gap: 2rem; }
  .test-left {
    height: 280px;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  .test-watermark { width: 400px; right: -25%; opacity: 0.1; }
  .quote-icon { font-size: 4rem; }
  .quote-text { font-size: 0.95rem; }

  /* Team */
  .team-section { padding: 3rem 0; }
  .section-title { font-size: 1.75rem; margin-bottom: 2rem; }
  .team-card {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .team-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
  }
  .team-info h4 { font-size: 1.5rem; }
  .team-info p { font-size: 0.95rem; }
  .social-icons { justify-content: center; }

  /* FAQ */
  .faq-section { padding: 3rem 0; }
  .faq-q { font-size: 0.95rem; padding: 1.25rem 0; gap: 1rem; }

  /* Programs */
  .programs-section { padding: 3rem 0; }
  .programs-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  .programs-left {
    border-right: none;
    border-bottom: 1px solid #EBE4DB;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .programs-right { padding-left: 0; }
  .programs-right h3 { font-size: 1.6rem; }
  .programs-right h4 { font-size: 1rem; }
  .programs-watermark { width: 300px; opacity: 0.1; right: -10%; }

  /* Brands */
  .brands-section { padding: 2.5rem 0; }
  .brands-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
  }
  .brand-logo { font-size: 1.5rem !important; }

  /* Newsletter */
  .newsletter-section { padding: 4rem 0; }
  .nl-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .nl-left h2 { font-size: 2rem; }
  .nl-form-wrapper {
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.5rem;
    border-radius: 16px;
  }
  .nl-form-wrapper input { width: 100%; text-align: center; }
  .nl-form-wrapper .btn { width: 100%; }
  .newsletter-wm-left, .newsletter-wm-right { width: 300px; opacity: 0.1; }

  /* Footer */
  .site-footer { padding: 3rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .links-grid { gap: 2rem; }
}

/* ============================================
   RESPONSIVE — PHONE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero { padding: 4rem 0 5.5rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero h2 { font-size: 1.05rem; }

  .booking-title { font-size: 1.15rem; }
  .booking-title .text-accent { display: block; margin-top: 0.4rem; }

  .tabs-wrapper { flex-direction: column; }
  .tab { flex: 1 1 100%; }

  .stat-num { font-size: 2rem; }

  .quote-text { font-size: 0.9rem; line-height: 1.7; }
  .author-info h4 { font-size: 1.05rem; }

  .nl-left h2 { font-size: 1.6rem; }

  .topbar-right { font-size: 0.75rem; gap: 0.75rem; }
  .topbar-right .btn-outline {
    padding: 0.6rem 1.25rem;
    font-size: 0.7rem;
  }

  .links-grid { flex-direction: column; gap: 1.5rem; }
  .hours-list li { gap: 0.5rem; flex-wrap: wrap; }

  .programs-card { padding: 1.5rem 1rem; }
  .programs-right h3 { font-size: 1.4rem; }
}
