/* 
   West End Pod - Warm & Organic Redesign
   A cozy, scrapbook-inspired design system tailored for early learning.
   Replaces the generic layout with warm, soft, and playful elements.
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  /* Organic Brand Colors */
  --color-sky: #A7C7E7;          /* Soft Blue */
  --color-sky-light: rgba(167, 199, 231, 0.15);
  --color-leaf: #82C773;         /* Soft Green */
  --color-leaf-light: rgba(130, 199, 115, 0.15);
  --color-sun: #F79007;          /* Warm Orange */
  --color-sun-light: rgba(247, 144, 7, 0.15);
  --color-blossom: #9777F4;      /* Soft Purple */
  --color-blossom-light: rgba(151, 119, 244, 0.15);
  
  /* Text & Neutral Canvas */
  --color-earth: #1E2D32;        /* Dark Charcoal for text */
  --color-canvas: #FCFAF6;       /* Warm linen background */
  --color-paper: #FFFFFF;        /* Cozy card white */
  --color-linen: #F3ECE2;        /* Soft separator background */
  --color-border: rgba(30, 45, 50, 0.08);
  
  /* Typography */
  --font-header: 'Fredoka', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  
  /* Borders & Spacing */
  --radius-pill: 9999px;
  --radius-cozy: 32px;           /* Soft pillowy cards */
  --radius-polaroid: 16px;
  --transition-wiggle: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-earth);
  background-color: var(--color-canvas);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Soft blur blob decorations behind content to feel warm & organic */
body::before, body::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

body::before {
  top: 10%;
  left: -150px;
  background-color: var(--color-sky-light);
}

body::after {
  top: 40%;
  right: -150px;
  background-color: var(--color-leaf-light);
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  color: var(--color-earth);
  font-weight: 600;
  line-height: 1.25;
}

p {
  font-weight: 500;
  color: #43545A;
}

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

/* Reusable Containers */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
  position: relative;
}

/* Scrapbook title decoration */
.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--color-earth);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 60px;
  color: #556B73;
}

/* Sticky Header navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 250, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed var(--color-border);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-wiggle);
}

.logo:hover img {
  transform: rotate(-3deg) scale(1.05);
}

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

.nav-links a:not(.btn) {
  font-family: var(--font-header);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-earth);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
}

.nav-links a:not(.btn):hover {
  color: var(--color-sun);
  background-color: var(--color-sun-light);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--color-earth);
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

/* Playful, Rounded Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition-wiggle);
}

.btn-primary {
  background-color: var(--color-sky);
  color: var(--color-earth);
  border: 2px solid var(--color-earth);
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(1deg);
  background-color: var(--color-paper);
  box-shadow: 0 8px 15px rgba(167, 199, 231, 0.4);
}

.btn-secondary {
  background-color: var(--color-sun);
  color: var(--color-paper);
  border: 2px solid var(--color-earth);
}

.btn-secondary:hover {
  transform: translateY(-3px) rotate(-1deg);
  background-color: var(--color-paper);
  color: var(--color-earth);
  box-shadow: 0 8px 15px rgba(247, 144, 7, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-earth);
  border: 2px solid var(--color-earth);
}

.btn-outline:hover {
  background-color: var(--color-linen);
  transform: translateY(-3px);
}

/* Scrapbook Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--color-canvas);
  border-bottom: 2px dashed var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  background-color: var(--color-leaf-light);
  color: var(--color-leaf-hover);
  border: 2px solid var(--color-earth);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #43545A;
}

.hero-ctas {
  display: flex;
  gap: 20px;
}

/* Polaroid Photo Style for Hero Image */
.hero-image-wrapper {
  position: relative;
  transform: rotate(2deg);
  transition: var(--transition-wiggle);
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: -15px;
  border: 2px solid var(--color-earth);
  background-color: var(--color-sun);
  border-radius: var(--radius-polaroid);
  z-index: 1;
}

.hero-img {
  position: relative;
  z-index: 2;
  border: 2px solid var(--color-earth);
  background-color: var(--color-paper);
  padding: 16px 16px 60px 16px; /* Polaroid card signature padding */
  border-radius: var(--radius-polaroid);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Cozy Quick Facts Bar */
.quick-facts {
  background-color: var(--color-linen);
  border-bottom: 2px dashed var(--color-border);
  padding: 50px 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fact-card {
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  border-radius: var(--radius-cozy);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: var(--transition-wiggle);
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.fact-icon {
  font-size: 2.25rem;
  margin-bottom: 12px;
  display: inline-block;
}

.fact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.fact-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #556B73;
}

/* Pillars / Philosophy Section */
.pillars {
  background-color: var(--color-canvas);
  border-bottom: 2px dashed var(--color-border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Playful, pill-shaped and squirkle card themes */
.pillar-card {
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  padding: 45px 35px;
  border-radius: var(--radius-cozy);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: var(--transition-wiggle);
  position: relative;
}

.pillar-card::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 25px;
  width: 40px;
  height: 20px;
  background-color: rgba(30, 45, 50, 0.06); /* Fake tape effect */
  transform: rotate(15deg);
  border-radius: 4px;
}

.pillar-card:nth-child(even)::after {
  transform: rotate(-10deg);
  left: 25px;
  right: auto;
}

.pillar-card:nth-child(1) { border-bottom: 8px solid var(--color-sky); }
.pillar-card:nth-child(2) { border-bottom: 8px solid var(--color-leaf); }
.pillar-card:nth-child(3) { border-bottom: 8px solid var(--color-blossom); }

.pillar-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 30px rgba(0,0,0,0.06);
}

.pillar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.85rem;
  margin-bottom: 24px;
  border: 2px solid var(--color-earth);
}

.pillar-card:nth-child(1) .pillar-badge { background-color: var(--color-sky); }
.pillar-card:nth-child(2) .pillar-badge { background-color: var(--color-leaf); }
.pillar-card:nth-child(3) .pillar-badge { background-color: var(--color-blossom); }

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.pillar-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Scrapbook Gallery Section */
.gallery {
  background-color: var(--color-linen);
  border-bottom: 2px dashed var(--color-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Polaroid Scrapbook Frames */
.gallery-item {
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  padding: 16px 16px 50px 16px; /* Polaroid bottom spacing */
  border-radius: var(--radius-polaroid);
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
  transition: var(--transition-wiggle);
  overflow: hidden;
  position: relative;
}

/* Alternating rotations to feel like photos dropped on a table */
.gallery-item:nth-child(3n+1) { transform: rotate(-1.5deg); }
.gallery-item:nth-child(3n+2) { transform: rotate(1deg); }
.gallery-item:nth-child(3n+3) { transform: rotate(-0.5deg); }

.gallery-item::after {
  content: '📎';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  font-size: 1.5rem;
  z-index: 10;
  opacity: 0.8;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--color-earth);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Meet the Educator Section */
.educators {
  background-color: var(--color-canvas);
  border-bottom: 2px dashed var(--color-border);
}

.educator-single-container {
  display: flex;
  justify-content: center;
}

.educator-card.educator-single {
  display: flex;
  gap: 40px;
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  padding: 50px;
  border-radius: var(--radius-cozy);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  max-width: 850px;
  width: 100%;
  align-items: center;
  position: relative;
}

/* Small tag sticker for Ariella's profile card */
.educator-card.educator-single::before {
  content: 'Teacher!';
  position: absolute;
  top: -15px;
  left: 40px;
  background-color: var(--color-blossom);
  color: var(--color-paper);
  border: 2px solid var(--color-earth);
  padding: 4px 16px;
  font-family: var(--font-header);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transform: rotate(-5deg);
}

.educator-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--color-earth);
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.educator-info h3 {
  font-size: 1.85rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.educator-role {
  color: var(--color-blossom);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.educator-bio {
  font-size: 1.05rem;
}

/* Daily Rhythm Section (Playful timeline) */
.rhythm {
  background-color: var(--color-linen);
  border-bottom: 2px dashed var(--color-border);
}

.rhythm-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.timeline-item {
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  border-radius: var(--radius-cozy);
  padding: 35px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: var(--transition-wiggle);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

/* Alternating dot backgrounds for daily rhythm steps */
.timeline-item::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--color-sky);
  border: 2px solid var(--color-earth);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:nth-child(2)::before { background-color: var(--color-leaf); }
.timeline-item:nth-child(3)::before { background-color: var(--color-sun); }
.timeline-item:nth-child(4)::before { background-color: var(--color-blossom); }

.timeline-time {
  display: inline-block;
  background-color: var(--color-canvas);
  border: 2px solid var(--color-earth);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-earth);
  margin-bottom: 18px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ Accordion Section */
.faq {
  background-color: var(--color-canvas);
  border-bottom: 2px dashed var(--color-border);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--radius-cozy);
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 26px 35px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-earth);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-sky-light);
  color: var(--color-earth);
  border: 2px solid var(--color-earth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background-color: var(--color-sky);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 35px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 35px 30px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
  font-size: 1rem;
  color: #43545A;
}

/* Contact & Tour Request Section */
.contact {
  background-color: var(--color-linen);
  border-bottom: 2px dashed var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background-color: var(--color-earth);
  color: var(--color-paper);
  padding: 50px 40px;
  border-radius: var(--radius-cozy);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-info h3 {
  color: var(--color-paper);
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-info p {
  color: #B9C6CB;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-sky);
  border: 2px solid var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  color: var(--color-paper);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-detail-content p, .contact-detail-content a {
  color: #B9C6CB;
  font-size: 0.95rem;
}

.contact-detail-content a:hover {
  color: var(--color-sky);
}

.contact-form-card {
  background-color: var(--color-paper);
  border: 2px solid var(--color-earth);
  padding: 50px;
  border-radius: var(--radius-cozy);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-form-card h3 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-form-card p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: #556B73;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-earth);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--color-earth);
  border-radius: var(--radius-polaroid);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-earth);
  background-color: var(--color-canvas);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background-color: var(--color-paper);
  box-shadow: 0 0 0 4px var(--color-sky-light);
}

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

.form-feedback {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-polaroid);
  font-size: 0.95rem;
  border: 2px solid var(--color-earth);
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: var(--color-leaf-light);
  color: var(--color-earth);
}

.form-feedback.error {
  display: block;
  background-color: var(--color-sun-light);
  color: var(--color-earth);
}

/* Footer Section */
footer {
  background-color: var(--color-earth);
  color: var(--color-paper);
  padding: 60px 0 30px;
  border-top: 2px dashed rgba(255, 255, 255, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo-area {
  max-width: 360px;
}

.footer-logo {
  color: var(--color-paper);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-area p {
  color: #B9C6CB;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-paper);
  transition: var(--transition-wiggle);
}

.social-link:hover {
  background-color: var(--color-sky);
  color: var(--color-earth);
  transform: rotate(-10deg) scale(1.1);
}

.footer-links-col h4 {
  color: var(--color-paper);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #B9C6CB;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-sky);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #8E9EA5;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #8E9EA5;
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--color-sky);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 460px;
    margin: 0 auto;
  }
  
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .educator-card.educator-single {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--color-canvas);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 2px dashed var(--color-border);
    gap: 20px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .rhythm-timeline {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 40px auto 0;
  }
  
  .timeline-item::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}
