:root {
  /* Color Palette - Traditional & Serene matching logo */
  --bg-primary: #fbfaf8;
  --bg-secondary: #f4eee8;
  --text-primary: #2b1f1c;
  --text-secondary: #4a3831;
  /* Deep Maroon red from logo */
  --accent: #501000;
  --accent-dark: #3a0b00;
  --accent-light: #8a3a26;
  --gold: #b58b5a;
  --white: #ffffff;
  --border: rgba(80, 16, 0, 0.1);

  /* Typography */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Lora", serif;
  --font-display: "Cinzel", serif;

  /* Spacing & Misc */
  --max-width: 1200px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 10px rgba(80, 16, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(80, 16, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(80, 16, 0, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.9);
  opacity: 0;
  animation: heroFade 20s infinite;
}

.hero-slide-1 {
  background-image: url("assets/Hero/hero_3.jpg");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("assets/Hero/hero_2.jpg");
  animation-delay: 5s;
}

.hero-slide-3 {
  background-image: url("assets/Hero/hero_4.jpg");
  animation-delay: 10s;
}

.hero-slide-4 {
  background-image: url("assets/Hero/hero_1.jpg");
  background-position: center 30%;
  animation-delay: 15s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  background: linear-gradient(to bottom,
      rgba(20, 10, 8, 0.75) 0%,
      rgba(20, 10, 8, 0.55) 50%,
      rgba(20, 10, 8, 0.85) 100%);
}

/* --- Navigation --- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 75px;
  height: 75px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-md);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Hero Content --- */
.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: var(--white);
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  text-wrap: balance;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.intro {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

.hero-schedule {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}

.hero-schedule-card {
  background: rgba(20, 10, 8, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 350px;
  max-width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.hero-schedule-card:hover {
  background: rgba(20, 10, 8, 0.85);
  border-color: rgba(181, 139, 90, 0.4);
  transform: translateX(-10px);
  box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(181, 139, 90, 0.15);
}

.hero-schedule-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

.hero-schedule-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.hero-schedule-card p span {
  color: var(--gold);
  margin: 0 0.5rem;
}

.btn-primary,
.btn-secondary {
  font-family: var(--font-display);
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.hero-dots {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.dot {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
}

main section {
  padding: 5rem 5vw;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

/* --- About Section --- */
.about {
  background: var(--white);
}

.about-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  height: 600px;
}

.about-photo {
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-photo:hover {
  transform: scale(1.02);
  z-index: 10;
}

.about-photo-main {
  grid-column: 1 / 6;
  grid-row: 1 / 6;
  background-image: url("assets/aspy/about_1.jpg");
}

.about-photo-side-1 {
  grid-column: 4 / 7;
  grid-row: 4 / 7;
  background-image: url("assets/aspy/about_2.jpg");
  border: 8px solid var(--white);
}

.about-copy h3 {
  font-size: 1.8rem;
  color: var(--accent);
}

.about-intro {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.about-points {
  margin: 2rem 0;
}

.about-points ul {
  list-style: none;
  padding: 0;
}

.about-points li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.about-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.about-highlight {
  padding: 2rem;
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent);
  margin-top: 2rem;
}

.about-highlight p {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

.about-highlight span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

/* --- Vision & Impact Combined --- */
.vision-impact {
  padding: 5rem 5vw;
  background: var(--bg-primary);
  overflow: hidden;
}

.vision-impact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.impact-photo {
  flex: 1;
  height: 500px;
}

.impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.impact-content {
  flex: 1.5;
  text-align: center;
  padding: 0 2rem;
}

.impact-content blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-primary);
  font-style: italic;
  margin: 2rem 0 0;
  border: none;
  padding: 0;
}


/* --- Offerings Section --- */
.offerings {
  padding: 6rem 5vw;
  background: var(--bg-primary);
}

.offerings-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.offering-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.offering-row:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.offering-row.reverse {
  flex-direction: row-reverse;
}

.offering-content {
  flex: 1;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offering-content .tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--bg-secondary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
  border-radius: 4px;
}

.offering-content h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin: 0;
}

.offering-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.offering-content .btn-primary {
  align-self: flex-start;
  margin-top: 1rem;
}

.offering-visual {
  flex: 1.2;
  height: 500px;
}

.offering-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
}

/* --- Schedule Section --- */
.schedule {
  background: var(--white);
}

.schedule-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.schedule-grid div {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.schedule-grid div:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.schedule-grid h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.time {
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Testimonials Section --- */
.testimonials {
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonial-slider {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.role {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-controls {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.testimonial-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
}

.testimonial-arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: center;
}

.contact-info {
  text-align: left;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-item a {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-map {
  line-height: 0;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
}

/* --- Footer --- */
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 1.5rem 5vw;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.footer-maintainer {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-maintainer a {
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2px;
}

.footer-maintainer a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* --- Philosophy Section --- */
.philosophy {
  background: var(--bg-secondary);
  padding: 5rem 5vw;
}

.philosophy-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.principles-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.principles-list li {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
}

.principles-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.philosophy-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--accent);
  margin: 0;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--accent-light);
}

/* --- Gallery Section --- */
.gallery {
  background: var(--white);
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.large {
  grid-column: span 1;
  grid-row: span 2;
}

/* --- Essence Section --- */
.essence {
  background: var(--bg-secondary);
  padding: 5rem 5vw;
}

.essence-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.essence-card-content {
  padding: 3.5rem;
  flex-grow: 1;
}

.essence-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.essence-visual {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
}

.essence-image-stack {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  cursor: pointer;
  perspective: 1200px;
}

.stack-img {
  grid-area: stack;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  opacity: 0;
  transform: scale(0.95) translateY(20px) rotate(2deg);
  pointer-events: none;
}

.stack-img.active {
  z-index: 2;
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0);
  pointer-events: auto;
}

.stack-instruction {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  pointer-events: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.essence-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.essence-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 2.5rem;
  color: var(--accent);
  position: relative;
  line-height: 1.1;
}

.essence-card h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.essence-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- Vision Section --- */


/* --- Pillars Section --- */
.pillars {
  padding: 5rem 5vw;
  background: var(--white);
}

.pillars-intro {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pillars-grid {
  max-width: var(--max-width);
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 3rem 2rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pillar-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-light);
  line-height: 1;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text-primary);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.pillars-footer {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 0;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

  .about-layout,
  .philosophy-grid,
  .contact-container,
  .offering-row, .offering-row.reverse {
    flex-direction: column;
    gap: 0;
  }

  .offering-content {
    padding: 3rem 2rem;
  }

  .offering-visual {
    width: 100%;
    height: 350px;
  }

  .essence-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-gallery {
    height: 450px;
    margin-bottom: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-item {
    height: 400px;
  }

  .nav-links {
    display: none;
    /* Hide for mobile simplified nav */
  }
}

@media (max-width: 768px) {
  main section {
    padding: 4rem 5vw;
  }

  .about-gallery {
    height: 350px;
    margin-bottom: 2rem;
  }

  .philosophy-quote blockquote {
    font-size: 1.4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-item {
    height: 350px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 2rem 0;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-schedule {
    align-items: center;
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .vision-impact-container {
    flex-direction: column;
    gap: 4rem;
  }

  .impact-photo {
    width: 100%;
    height: 400px;
  }

  .impact-stats {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .offering-row, .offering-row.reverse {
    flex-direction: column;
    gap: 0;
  }

  .offering-content {
    padding: 3rem 2rem;
  }

  .offering-visual {
    width: 100%;
    height: 350px;
  }

  .essence-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .essence-visual {
    /* height: auto; - Removed as grid handles height naturally */
    margin-top: 2rem;
  }

  .stack-img {
    transform: scale(0.9) translateY(20px) rotate(2deg);
  }

  .stack-img.active {
    transform: scale(1) translateY(0) rotate(0);
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}