/* ==========================================================================
   Minchu's Den & Pet Grooming Spot - Website Design System & Styling
   Theme: Warm Pearl White, Soft Blush Pink, Elegant Grey & Golden Retriever Honey
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  /* Soft Blush Pinks & Lilac */
  --brand-pink: #ec4899;
  --brand-pink-hover: #db2777;
  --brand-pink-light: #fdf2f8;
  --brand-pink-soft: #fce7f3;
  --brand-pink-border: #fbcfe8;

  /* Golden Retriever Fur Honey & Amber */
  --gold-accent: #d97706;
  --gold-warm: #f59e0b;
  --gold-light: #fef3c7;
  --gold-shimmer: #fbbf24;
  --gold-border: #fde68a;
  --gold-glow: rgba(245, 158, 11, 0.25);

  /* Clean Pearl White & Soft Greys */
  --site-bg: #faf8f7;
  --site-bg-alt: #f3f0ec;
  --site-surface: #ffffff;
  --site-surface-card: #ffffff;
  --site-surface-elevated: #f8fafc;
  --site-surface-hover: #fff1f2;

  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-pink-glow: rgba(236, 72, 153, 0.25);

  /* High-Contrast Crisp Typography */
  --text-main: #0f172a;
  --text-sub: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: 'Caveat', cursive;

  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-card-hover: 0 20px 40px -10px rgba(236, 72, 153, 0.15), 0 8px 16px -4px rgba(217, 119, 6, 0.1);
  --shadow-glow: 0 0 25px rgba(236, 72, 153, 0.18);
  --shadow-gold-glow: 0 0 25px rgba(245, 158, 11, 0.25);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--site-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Brand Navbar */
.web-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 36px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.web-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.husky-logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, #fce7f3 0%, #fbcfe8 60%, #f472b6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
  border: 2px solid #ffffff;
  font-size: 26px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.web-brand-text h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.web-brand-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-pink);
  font-weight: 700;
}

.web-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.web-nav-item a {
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.web-nav-item a:hover {
  color: var(--brand-pink);
}

.web-nav-item a.active {
  color: var(--brand-pink);
  font-weight: 700;
}

.web-nav-item a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-pink) 0%, var(--gold-warm) 100%);
  border-radius: 4px;
}

.web-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-book-now {
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--gold-accent) 100%);
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  transition: all 0.25s ease;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.45);
  filter: brightness(1.05);
}

.btn-ops-login {
  background: var(--site-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-sub);
  padding: 10px 18px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-ops-login:hover {
  background: var(--brand-pink-light);
  border-color: var(--brand-pink-border);
  color: var(--brand-pink-hover);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  padding: 80px 36px 70px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 52px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-pink-soft) 0%, var(--gold-light) 100%);
  border: 1px solid var(--gold-border);
  color: var(--gold-accent);
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--site-surface);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.hero-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-pink);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.hero-point-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.hero-point-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mascot Portrait Showcase Card */
.mascot-hero-card {
  background: linear-gradient(145deg, #ffffff 0%, var(--brand-pink-light) 60%, var(--gold-light) 100%);
  border: 2px solid var(--gold-border);
  border-radius: 32px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 20px 45px -10px rgba(217, 119, 6, 0.12), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.mascot-glow-bg {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(245, 158, 11, 0.15) 50%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}

.mascot-avatar-wrapper {
  width: 175px;
  height: 175px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, var(--brand-pink-soft) 70%, var(--gold-light) 100%);
  padding: 8px;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25), 0 0 0 4px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-kannada-blessing {
  font-family: var(--font-hand);
  font-size: 2.1rem;
  color: var(--gold-accent);
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mascot-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}

.mascot-card-sub {
  font-size: 0.88rem;
  color: var(--brand-pink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 14px;
}

.mascot-story-quote {
  font-size: 0.92rem;
  color: var(--text-sub);
  font-style: italic;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.mascot-social-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-accent);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mascot-social-handle:hover {
  background: var(--gold-shimmer);
  color: #78350f;
  transform: translateY(-1px);
}

/* Feature Sections */
.section-wrapper {
  padding: 85px 36px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}

.section-tag {
  color: var(--brand-pink);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 5 Golden Promises Grid */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.promise-card {
  background: var(--site-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.promise-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-pink-border);
  box-shadow: var(--shadow-card-hover);
}

.promise-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-pink-soft) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-accent);
  margin-bottom: 20px;
  border: 1px solid var(--gold-border);
}

.promise-card h3 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.promise-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Service Cards Grid */
.services-deck {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.service-box {
  background: var(--site-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold-warm);
  box-shadow: var(--shadow-card-hover);
}

.service-tier-pill {
  display: inline-block;
  background: var(--brand-pink-soft);
  color: var(--brand-pink-hover);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
  border: 1px solid var(--brand-pink-border);
}

.service-price-tag {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.service-price-tag span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-box h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.92rem;
  color: var(--text-sub);
  margin-bottom: 22px;
  line-height: 1.6;
}

.service-features-list {
  list-style: none;
  margin-bottom: 26px;
}

.service-features-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features-list li::before {
  content: '✓';
  color: var(--gold-accent);
  font-weight: 800;
}

/* ==========================================================================
   OTHER SERVICES: CAGE-FREE BOARDING & PET TRAINING SHOWCASE
   ========================================================================== */
.other-services-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 10px;
}

.spotlight-service-card {
  background: var(--site-surface);
  border: 2px solid var(--border-subtle);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.spotlight-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-warm);
  box-shadow: var(--shadow-card-hover);
}

.spotlight-service-card.gold-theme {
  background: linear-gradient(150deg, #ffffff 0%, var(--gold-light) 100%);
  border-color: var(--gold-border);
}

.spotlight-service-card.pink-theme {
  background: linear-gradient(150deg, #ffffff 0%, var(--brand-pink-light) 100%);
  border-color: var(--brand-pink-border);
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.spotlight-badge.gold {
  background: var(--gold-light);
  color: #92400e;
  border: 1px solid var(--gold-border);
}

.spotlight-badge.pink {
  background: var(--brand-pink-soft);
  color: var(--brand-pink-hover);
  border: 1px solid var(--brand-pink-border);
}

.spotlight-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.25;
}

.spotlight-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 24px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.curriculum-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  border-radius: 14px;
}

.curriculum-item strong {
  display: block;
  font-size: 0.86rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.curriculum-item span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INSTAGRAM FEED SECTION (@rowdy_minchu_piscu)
   ========================================================================== */
.insta-section-bg {
  background: linear-gradient(180deg, var(--site-bg) 0%, #fff 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 85px 36px;
}

.insta-header-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 18px;
}

.insta-profile-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.insta-profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.insta-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.insta-stories-bar {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0 24px;
  margin-bottom: 20px;
}

.insta-story-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.story-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transition: transform 0.2s ease;
}

.insta-story-circle:hover .story-ring {
  transform: scale(1.06);
}

.story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.story-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-sub);
}

.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.insta-post-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
}

.insta-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.insta-media-box {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.insta-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.insta-post-card:hover .insta-media-box img {
  transform: scale(1.05);
}

.insta-reel-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.insta-post-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insta-stats-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.insta-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Locations Showcase */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.location-card {
  background: var(--site-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  padding: 34px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.location-card:hover {
  transform: translateY(-4px);
}

.location-card.featured {
  border: 2px solid var(--gold-warm);
  background: linear-gradient(160deg, #ffffff 0%, var(--gold-light) 100%);
}

.location-zone-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-pink-hover);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.location-card h3 {
  font-size: 1.45rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

.location-meta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-sub);
  margin-bottom: 22px;
}

.location-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.amenity-chip {
  background: var(--site-bg-alt);
  color: var(--text-sub);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
}

/* Footer */
.web-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 65px 36px 32px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--brand-pink);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  .hero-points {
    text-align: left;
  }
  .other-services-deck {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .web-nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
