/* Import Premium Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@200;300;400;500;600&display=swap');

/* High-End Design System Variables */
:root {
  --primary-dark: #1E201E;
  /* Deep luxury charcoal */
  --bg-dark-section: #2C302E;
  /* Soothing slate/sage dark */
  --accent-gold: #C2A383;
  /* Muted champagne gold */
  --accent-gold-light: #E6DCD2;
  /* Soothing sand tone */
  --accent-gold-dark: #A58567;
  --bg-cream: #FAF9F6;
  /* Alabaster / Off-white (extremely soothing) */
  --bg-white: #FFFFFF;
  --bg-stone: #F2F1EC;
  /* Soft platinum/stone to break monotony */
  --accent-vibrant: #E63946;
  /* Vibrant energetic crimson/orange */
  --text-dark: #2C302E;
  --text-slate: #6C726F;
  --text-light: #F4F6F5;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-luxe: 0 20px 50px rgba(44, 48, 46, 0.04);
  --shadow-luxe-hover: 0 30px 60px rgba(44, 48, 46, 0.08);

  --max-width: 1100px;
  scroll-behavior: smooth;
}

/* Aurora 3D Animated Background */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #fdfbf7;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(230, 220, 200, 0.5) 0%, rgba(230, 220, 200, 0) 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 245, 230, 0.4) 0%, rgba(255, 245, 230, 0) 70%);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.orb-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(240, 230, 215, 0.4) 0%, rgba(240, 230, 215, 0) 70%);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(5vw, 10vh) scale(1.1);
  }

  100% {
    transform: translate(-10vw, 5vh) scale(0.9);
  }
}

/* Glassmorphism Background Utilities */
.bg-white {
  background-color: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.bg-cream {
  background-color: rgba(250, 249, 246, 0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-stone {
  background-color: rgba(242, 241, 236, 0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Reset & Base Styles */
html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: transparent;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Elegant Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
}

/* Layout Containers */
.container {
  width: 88%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 140px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark-section);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--bg-white);
}

/* Section Title Styling */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
}

.section-title {
  font-size: 3.2rem;
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
}

/* Soothing handwritten underline simulation via subtle thin gold SVG line */
.hand-underline {
  position: relative;
  display: inline-block;
  font-style: italic;
}

.hand-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q50,0 100,5' stroke='%23C2A383' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Premium Minimal Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 40px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  position: fixed;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header.scrolled .logo-text-main {
  color: var(--primary-dark);
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--bg-white);
}

.logo-text-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--accent-gold);
  color: var(--bg-white) !important;
  padding: 12px 28px;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white) !important;
}

.nav-cta::after {
  display: none;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 1px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(30, 32, 30, 0.6), rgba(30, 32, 30, 0.55)),
    url('https://drive.google.com/thumbnail?sz=w3000&id=1cC7XoKB16gqdweXuVYCTsSqDFKZ2aA8m') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-top: 180px;
  color: var(--bg-white);
  position: relative;
  /* Premium curved wave separator (smooth cubic bezier layout) */
  clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 120px;
}

.hero-mobile-image {
  display: none;
}

.hero-tagline {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 4.8rem;
  color: var(--bg-white);
  margin-bottom: 30px;
  line-height: 1.1;
  font-family: var(--font-serif);
  font-weight: 300;
}

/* Elegant gold/champagne text highlight box */
.hero-title-highlight {
  display: inline-block;
  background-color: rgba(194, 163, 131, 0.25);
  backdrop-filter: blur(5px);
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  padding: 2px 25px;
  border: 1px solid rgba(194, 163, 131, 0.4);
  margin-top: 5px;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
  max-width: 620px;
  font-weight: 300;
  line-height: 1.9;
}

.hero-description strong {
  font-weight: 400;
  color: var(--bg-white);
}

.hero-cta-group {
  display: flex;
  gap: 25px;
}

/* Minimalist luxury buttons */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  text-align: center;
  border-radius: 0;
}

.btn-primary {
  background-color: var(--accent-vibrant);
  color: var(--bg-white);
  border: 1px solid var(--accent-vibrant);
  border-radius: 40px;
  /* More friendly, modern pill shape */
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-vibrant);
  border-color: var(--accent-vibrant);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.15);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

/* Sophisticated gold border profile card frame */
.brush-frame-container {
  position: relative;
  width: 330px;
  height: 410px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px;
}

.brush-frame-container::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--accent-gold);
  pointer-events: none;
  opacity: 0.5;
}

.brush-frame-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brush-frame-image svg {
  width: 110px;
  height: 110px;
  opacity: 0.35;
  color: var(--accent-gold);
}

/* Seamless logo slider */
.marquee-container {
  background-color: transparent;
  padding: 50px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 65s linear infinite;
  align-items: center;
}

.marquee-item {
  width: 260px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-slate);
  display: flex;
  justify-content: center;
  align-items: center;
}

.marquee-item img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.marquee-item img:hover {
  transform: scale(1.08);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-260px * 9));
  }
}

/* About Section */
.about-section {
  background-color: var(--bg-dark-section);
  color: var(--bg-white);
  padding: 140px 0;
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* Elegant Smooth Top Arch */
.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-dark-section);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Elegant Smooth Bottom Arch */
.about-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-dark-section);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

.about-section .container {
  max-width: 1300px;
  width: 90%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-visual-box {
  position: relative;
  padding: 0;
}

.about-brush-frame {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.about-brush-frame svg {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--accent-gold);
  opacity: 0.5;
  padding: 70px;
}

.about-content h2 {
  font-size: 3.8rem;
  color: var(--bg-white);
  margin-bottom: 10px;
}

.about-content-sub {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 35px;
  display: block;
}

.about-bio-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.about-btn-group {
  display: flex;
  gap: 20px;
  margin-top: 45px;
}

/* Premium tab filters */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 30px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-slate);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.tab-btn.active {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-color: var(--primary-dark);
}

/* Grid Workshop Cards */
.workshop-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.workshop-card {
  background-color: var(--bg-white);
  padding: 50px 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: var(--shadow-luxe);
}

/* Premium Card Color Alternation */
.workshop-card:nth-child(odd) {
  background-color: var(--bg-white);
}

.workshop-card:nth-child(even) {
  background-color: var(--bg-stone);
}

/* 10th Capstone Module */
.workshop-card:nth-child(10) {
  grid-column: 1 / -1;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border: none;
}

.workshop-card:nth-child(10) .workshop-num {
  color: var(--accent-gold-light);
}

.workshop-card:nth-child(10) .workshop-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 800px;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxe-hover);
  border-color: rgba(194, 163, 131, 0.2);
}

.carousel-controls-mobile {
  display: none;
}

.workshop-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-weight: 300;
}

.workshop-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.workshop-desc {
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.8;
}

/* Program Formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.format-card {
  background-color: var(--bg-white);
  padding: 50px 25px;
  text-align: center;
  box-shadow: var(--shadow-luxe);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.01);
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxe-hover);
}

.format-icon {
  background-color: var(--bg-cream);
  color: var(--accent-gold-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 1.4rem;
}

.format-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Books Section */
.books-section {
  background-color: var(--bg-dark-section);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.book-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.book-card img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.book-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.035);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.book-card:hover img {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.book-cover-placeholder {
  background: transparent;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  color: var(--bg-white);
  border-bottom: none;
}

.book-cover-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.book-cover-author {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
}

.book-details {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.book-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 15px;
}

.book-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.book-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  flex-grow: 1;
  font-weight: 300;
}

.book-cta {
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.book-cta:hover {
  color: var(--bg-white);
}

/* Why Invite Section */
.why-invite-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.why-invite-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-invite-item {
  display: flex;
  gap: 30px;
}

.why-invite-icon {
  background-color: rgba(194, 163, 131, 0.1);
  color: var(--accent-gold-dark);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-invite-info h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.why-invite-info p {
  color: var(--text-slate);
  font-size: 1rem;
}

.why-invite-visual {
  background-color: var(--bg-white);
  padding: 60px;
  box-shadow: var(--shadow-luxe);
  border-left: 2px solid var(--accent-gold);
}

.why-invite-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.why-invite-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 80px;
}

.testimonials-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem; /* Large chevron arrow character styling */
  line-height: 1;
  color: #ccc;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.2);
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  width: 100%;
  flex-shrink: 0;
}

/* Centered content styles to match screenshot */
.testimonial-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.testimonial-avatar-large {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--bg-white);
}

.testimonial-quote {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 400;
}

.testimonial-meta {
  margin-top: 10px;
}

.client-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 5px;
}

.client-role {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #666;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

/* High-End Overlapping Collage Styles */
.collage-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0;
}

.collage-info-block h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.collage-info-block p {
  font-size: 1.1rem;
  color: var(--text-slate);
  margin-bottom: 30px;
}

.collage-container {
  position: relative;
  height: 530px;
  width: 100%;
}

.single-image-container {
  width: 100%;
}

.collage-card-single {
  background: var(--bg-white);
  padding: 15px;
  box-shadow: var(--shadow-luxe-hover);
  border: 1px solid rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.collage-card-single:hover {
  transform: translateY(-8px) scale(1.02);
}

.collage-card {
  position: absolute;
  background: var(--bg-white);
  padding: 15px;
  box-shadow: var(--shadow-luxe-hover);
  border: 1px solid rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.collage-card:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 10;
}

.collage-card-main {
  width: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}

.collage-card-overlay {
  width: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.collage-img-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #eaeae0 0%, #d4bea5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.collage-card-caption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-slate);
  margin-top: 15px;
  display: block;
}

.collage-video-card {
  width: 65%;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--bg-white);
  padding: 12px;
  box-shadow: var(--shadow-luxe-hover);
}

.collage-video-placeholder {
  width: 100%;
  height: 220px;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}

.collage-video-placeholder::before {
  content: "▶";
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.collage-video-placeholder:hover::before {
  transform: scale(1.2);
}

/* Contact & CTA Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 25px;
}

.contact-icon {
  background-color: rgba(194, 163, 131, 0.1);
  color: var(--accent-gold-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details p {
  color: var(--text-slate);
  font-size: 1.05rem;
}

/* Form Styles */
.contact-form {
  background-color: var(--bg-white);
  padding: 60px;
  box-shadow: var(--shadow-luxe);
  border: 1px solid rgba(0, 0, 0, 0.01);
}

.form-group {
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
}

input,
textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  background-color: var(--bg-cream);
  border-radius: 0;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(194, 163, 131, 0.05);
}

.submit-btn {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  width: 100%;
  padding: 18px;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-white);
}

/* Ultra-Premium Expansive Footer */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 120px 0 60px 0;
  font-family: var(--font-sans);
}

.footer-top-cta {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.footer-headline {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--bg-white);
  font-weight: 300;
  margin-bottom: 40px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}

.footer-brand-col .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-brand-col .footer-logo span:first-child {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--bg-white);
  line-height: 1;
}

.footer-logo-tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-top: 10px;
  text-transform: uppercase;
}

.footer-bio-short {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 400px;
}

.footer-col-title {
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-link-small {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.footer-link-small:hover {
  color: var(--bg-white);
}

/* Masonry Photo Gallery */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 60px;
}

.masonry-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-luxe);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.masonry-item:hover {
  transform: scale(1.03) translateY(-5px);
  z-index: 10;
  box-shadow: var(--shadow-luxe-hover);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

/* Stagger heights for masonry look */
.masonry-item:nth-child(1) {
  grid-row: span 2;
}

.masonry-item:nth-child(2) {
  grid-row: span 1;
}

.masonry-item:nth-child(3) {
  grid-row: span 2;
}

.masonry-item:nth-child(4) {
  grid-row: span 2;
}

.masonry-item:nth-child(5) {
  grid-row: span 2;
}

.masonry-item:nth-child(6) {
  grid-row: span 1;
}

/* Vibrant & Lively Scroll Reveals */

/* 1. 3D Fly-in */
.reveal-3d {
  opacity: 0;
  transform: perspective(1200px) rotateX(15deg) translateY(60px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-3d.active {
  opacity: 1;
  transform: perspective(1200px) rotateX(0) translateY(0) scale(1);
}

/* 2. Energetic Scale-Down Reveal */
.reveal-clip {
  opacity: 0;
  transform: scale(1.1) translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-clip.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 3. Bouncy Blur Focus */
.reveal-blur {
  opacity: 0;
  filter: blur(15px);
  transform: scale(1.1);
  transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-blur.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* 4. Playful Fade-up for text */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays - Faster sequencing */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* 3D Tilt Wrapper */
.tilt-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.tilt-content {
  transform: translateZ(20px);
}

/* ===========================
   Community in Action Section
   =========================== */

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.community-section {
  padding-top: 80px;
}

.community-section .section-title-wrapper {
  margin-bottom: 60px;
}

.community-strip {
  width: 100%;
  overflow: hidden;
  margin-bottom: 18px;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.community-strip:last-of-type {
  margin-bottom: 0;
}

.community-strip-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  /* Ensure GPU compositing is on the track only */
  transform: translateZ(0);
}

.community-strip-left .community-strip-track {
  animation: scrollLeft 70s linear infinite;
}

.community-strip-right .community-strip-track {
  animation: scrollRight 70s linear infinite;
}

.community-strip-slow .community-strip-track {
  animation-duration: 70s;
}


.community-photo {
  width: 300px;
  height: 210px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.community-photo:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  z-index: 2;
}

.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.community-photo:hover img {
  transform: scale(1.08);
}

/* =========================================
   Comprehensive Responsive Styles
   ========================================= */

/* === TABLET (max-width: 1024px) === */
@media (max-width: 1024px) {

  .section {
    padding: 100px 0;
  }

  /* Hero */
  .hero {
    padding-top: 140px;
    clip-path: none;
    background-position: center, 80% center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 3.8rem;
  }

  /* About */
  .about-section {
    padding: 100px 0;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-content h2 {
    font-size: 3rem;
  }
  .about-brush-frame {
    max-width: 100%;
  }

  /* VOICE / Collage sections — override inline style too */
  .collage-section-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 60px 0;
  }

  /* On tablet, switch collage from absolute to stacked */
  .collage-container {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .collage-card,
  .collage-video-card {
    position: relative !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
  }

  /* Books */
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .books-section {
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
  }

  /* Why Invite */
  .why-invite-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-invite-visual {
    padding: 40px;
  }

  /* Formats */
  .formats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Workshop Cards */
  .workshop-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-form {
    padding: 40px;
  }

  /* Footer */
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-headline {
    font-size: 2.8rem;
  }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {

  .section-title {
    font-size: 2.4rem;
  }
  .section {
    padding: 80px 0;
  }
  .section-title-wrapper {
    margin-bottom: 50px;
  }

  /* Header */
  .header {
    padding: 20px 0;
  }
  .logo-text-main {
    font-size: 1.4rem;
  }

  /* Hero — prevent overflow & reduce footprint */
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 30px;
    clip-path: none;
    background: linear-gradient(135deg, #1e201e 0%, #121312 100%);
  }
  .hero-mobile-image {
    display: block;
    margin: 0 auto 5px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  .hero-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 15px;
    gap: 15px;
  }
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
    word-break: break-word;
    margin-bottom: 5px;
  }
  .hero-tagline {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    word-break: break-word;
    white-space: normal;
    margin-bottom: 5px;
  }
  .hero-description {
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .hero-cta-group {
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .hero-cta-group .btn {
    width: auto;
    flex: 0 1 auto;
    padding: 10px 16px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* Marquee */
  .marquee-item {
    width: 160px;
  }
  .marquee-track {
    animation: scrollMarqueeMobile 65s linear infinite;
  }
  @keyframes scrollMarqueeMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-160px * 9));
    }
  }

  /* About */
  .about-section {
    padding: 40px 0;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .about-section::before {
    height: 20px;
    top: -20px;
  }
  .about-section::after {
    height: 20px;
    bottom: -20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  .about-brush-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  .about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  .about-content-sub {
    font-size: 0.72rem;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  .about-bio-text {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .about-btn-group {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  .about-btn-group .btn {
    text-align: center;
    width: auto;
    flex: 1;
    max-width: 140px;
    padding: 10px 12px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* Collage sections — premium overlapping layout on mobile */
  .collage-section-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 30px 0;
  }
  .collage-container {
    position: relative;
    height: 235px;
    width: 100%;
    margin-top: 10px;
  }
  .collage-card {
    padding: 6px !important;
  }
  .collage-card-main {
    position: absolute !important;
    width: 64% !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1 !important;
  }
  .collage-card-overlay,
  .collage-video-card {
    position: absolute !important;
    width: 50% !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    left: auto !important;
    z-index: 2 !important;
    border: none !important;
    background: var(--bg-white);
    padding: 6px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  }
  .collage-img-placeholder {
    height: 145px !important;
  }
  .collage-video-placeholder {
    height: 105px !important;
  }
  .collage-card-single {
    padding: 6px !important;
  }
  .collage-card-single .collage-img-placeholder {
    height: 200px !important;
  }
  .collage-info-block h2 {
    font-size: 2.4rem;
  }
  .collage-info-block p {
    font-size: 1rem;
  }

  /* Workshops */
  .tabs-container {
    gap: 8px;
    margin-bottom: 40px;
  }
  .tab-btn {
    padding: 10px 14px;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* Workshops — horizontal swipe carousel on mobile */
  .workshop-cards-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 15px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .workshop-cards-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .workshop-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    padding: 35px 25px;
    min-height: 250px;
    height: auto;
    border-radius: 12px;
    margin: 0;
  }
  .workshop-card:nth-child(10) {
    flex: 0 0 82%;
    scroll-snap-align: center;
    position: relative !important;
    top: auto !important;
    margin: 0;
  }
  .carousel-controls-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-bottom: 10px;
  }
  .carousel-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
  }
  .carousel-control-btn:active {
    background: var(--bg-stone);
    transform: scale(0.93);
  }

  /* Formats — horizontal swipe carousel */
  .formats-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 10px 5% 30px;
    margin: 20px -5% 0;
    grid-template-columns: unset;
  }
  .formats-grid::-webkit-scrollbar {
    display: none;
  }
  .format-card {
    flex-shrink: 0;
    width: 180px;
    scroll-snap-align: center;
    padding: 30px 18px;
  }

  /* Books — horizontal swipe carousel */
  .books-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding: 10px 5% 30px;
    margin: 0 -5%;
    max-width: none;
    grid-template-columns: unset;
  }
  .books-grid::-webkit-scrollbar {
    display: none;
  }
  .book-card {
    flex-shrink: 0;
    width: 76vw;
    max-width: 290px;
    scroll-snap-align: center;
  }

  .books-section {
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
    padding: 50px 0;
  }
  .book-cover-placeholder {
    height: 190px;
    padding: 20px 20px 0 20px;
  }
  .book-details {
    padding: 20px !important;
  }
  .book-tag {
    margin-bottom: 8px !important;
    font-size: 0.65rem !important;
  }
  .book-title {
    font-size: 1.25rem !important;
    margin-bottom: 8px !important;
  }
  .book-description {
    font-size: 0.8rem !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
  }

  /* Why invite */
  .why-invite-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-invite-visual {
    padding: 30px;
  }
  .why-invite-quote {
    font-size: 1.3rem;
  }
  .why-invite-list {
    gap: 25px !important;
  }
  .why-invite-item {
    gap: 15px;
  }
  .why-invite-icon {
    width: 42px !important;
    height: 42px !important;
  }
  .why-invite-icon svg,
  .why-invite-icon i,
  .why-invite-icon span {
    font-size: 0.9rem !important;
  }
  .why-invite-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px !important;
  }
  .why-invite-info p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  /* Testimonials */
  .testimonials-slider-container {
    padding: 0 45px;
  }
  .testimonials-slider-wrapper {
    padding: 0;
  }
  .testimonial-quote {
    font-size: 0.95rem;
  }
  .testimonial-avatar-large {
    width: 90px;
    height: 90px;
  }

  /* Community photo strips */
  .community-photo {
    width: 200px;
    height: 150px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info-block {
    gap: 18px;
  }
  .contact-item {
    gap: 12px;
  }
  .contact-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
  }
  .contact-details h4 {
    font-size: 0.85rem !important;
    margin-bottom: 3px !important;
    letter-spacing: 0.5px !important;
  }
  .contact-details p {
    font-size: 0.85rem !important;
  }
  .contact-form {
    padding: 20px 15px !important;
  }
  .form-group {
    margin-bottom: 15px !important;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form label {
    margin-bottom: 6px !important;
    font-size: 0.62rem !important;
    letter-spacing: 1px !important;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
  }
  .contact-form .submit-btn {
    padding: 12px !important;
    font-size: 0.75rem !important;
  }

  /* Footer */
  .footer {
    padding: 70px 0 40px;
  }
  .footer-top-cta {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .footer-headline {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-legal {
    gap: 20px;
  }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {

  .container {
    width: 92%;
  }

  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }

  .formats-grid {
    grid-template-columns: 1fr;
  }

  .tabs-container {
    flex-direction: column;
    align-items: center;
  }
  .tab-btn {
    width: 100%;
    max-width: 260px;
  }

  .testimonials-slider-container {
    padding: 0 35px;
  }
  .testimonials-slider-wrapper {
    padding: 0;
  }

  .community-photo {
    width: 160px;
    height: 120px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .footer-headline {
    font-size: 1.7rem;
  }
}
