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

/* --- CUSTOM PROPERTIES --- */
:root {
  --primary-gold: #F59E0B;
  --primary-amber: #D97706;
  --accent-honey: #FFB800;
  --accent-light: #FFFBEB;
  --accent-warm: #FEF3C7;
  
  --dark-charcoal: #0F172A;
  --dark-slate: #1E293B;
  --text-dark: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  
  --glass-bg: #FFFFFF;
  --glass-border: rgba(245, 158, 11, 0.1);
  --glass-shadow: 0 4px 20px 0 rgba(217, 119, 6, 0.04);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAF8F5;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Comb pattern background overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--accent-warm) 0.5px, transparent 0.5px), radial-gradient(var(--accent-warm) 0.5px, #FAF8F5 0.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.25;
  z-index: -10;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-charcoal);
  font-weight: 700;
  line-height: 1.25;
}

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

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

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-amber) 0%, var(--accent-honey) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-honey) 0%, var(--primary-amber) 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
  background: linear-gradient(135deg, var(--primary-amber) 0%, var(--accent-honey) 100%);
}

.btn-secondary {
  background: white;
  color: var(--primary-amber);
  border: 2px solid var(--primary-amber);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.08);
}

.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
}

.section-padding {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '🍯';
  font-size: 1.5rem;
  position: absolute;
  right: -40px;
  bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  padding: 12px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-charcoal);
}

.logo span {
  color: var(--primary-amber);
}

.logo-pot {
  font-size: 1.8rem;
  animation: float 4s ease-in-out infinite;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

nav ul a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-slate);
  position: relative;
  padding: 6px 0;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-amber);
  transition: var(--transition-smooth);
}

nav ul a:hover {
  color: var(--primary-amber);
}

nav ul a:hover::after,
nav ul a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-charcoal);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  min-height: 95vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-warm);
  color: var(--primary-amber);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding-top: 24px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary-amber);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.12);
  border: 4px solid white;
  transition: var(--transition-smooth);
}

.hero-media-wrapper:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(217, 119, 6, 0.18);
}

/* floating blobs - removed for less gloss */
.blob {
  display: none;
}

/* --- THE PROBLEM vs SOLUTION --- */
.comparison {
  background: var(--accent-light);
  position: relative;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.comparison-card {
  padding: 40px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
}

.comparison-card.problem {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.comparison-card.solution {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid var(--accent-warm);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.06);
}

.comparison-card h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-card.problem h3 {
  color: #EF4444;
}

.comparison-card.solution h3 {
  color: var(--primary-amber);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}

.comparison-list li i {
  margin-top: 4px;
  font-size: 1.1rem;
}

.comparison-card.problem li i {
  color: #F87171;
}

.comparison-card.solution li i {
  color: #10B981;
}

.comparison-card.solution li {
  font-weight: 500;
}

/* --- SERVICES & TRAINING --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 36px;
  border-radius: var(--border-radius-lg);
  background: white;
  border: 1px solid rgba(245, 158, 11, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: flex-start;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  color: var(--primary-amber);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  border: 1px solid var(--accent-warm);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary-amber);
  color: white;
  transform: rotate(6deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #FAF8F5;
  padding-top: 16px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--primary-amber);
  font-size: 0.9rem;
}

/* --- FOUNDER STORY --- */
.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media-card {
  position: relative;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--primary-gold) 100%);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-media-card h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 6px;
}

.story-media-card .role {
  font-weight: 500;
  opacity: 0.9;
  font-size: 1rem;
  margin-bottom: 24px;
}

.story-quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 24px;
  position: relative;
}

.story-quote::before {
  content: '“';
  font-size: 4rem;
  position: absolute;
  top: -30px;
  left: -10px;
  opacity: 0.2;
}

.signature {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.mv-card {
  padding: 24px;
  border-radius: var(--border-radius-md);
  background: white;
  border: 1px solid rgba(245, 158, 11, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.mv-card h4 {
  font-size: 1.15rem;
  color: var(--primary-amber);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- TEAM GRID --- */
.team {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: #FAF8F5;
  border-radius: var(--border-radius-md);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.04);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.06);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-honey) 100%);
  color: var(--primary-amber);
  font-size: 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 3px solid white;
  box-shadow: 0 6px 12px rgba(217, 119, 6, 0.1);
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar {
  transform: scale(1.08) rotate(4deg);
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-amber) 100%);
  color: white;
}

.team-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.team-card p {
  color: var(--primary-amber);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-bio-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hexagon background pattern for cards */
.team-card::after {
  content: '⬢';
  position: absolute;
  bottom: -15px;
  right: -10px;
  font-size: 4rem;
  color: var(--accent-warm);
  opacity: 0.15;
  pointer-events: none;
}

/* --- SOCIAL CHANNELS BOARD --- */
.social-board {
  background: var(--accent-light);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
  color: white;
}

.social-card.whatsapp { background: #25D366; }
.social-card.tiktok { background: #010101; }
.social-card.facebook { background: #1877F2; }
.social-card.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
.social-card.youtube { background: #FF0000; }

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.social-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.social-card h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.social-card p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 16px;
}

.social-link-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.social-card:hover .social-link-btn {
  background: white;
  color: var(--dark-charcoal);
  border-color: white;
}

/* --- CONTACT & BOOKING --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info-panel {
  padding: 40px;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info-panel > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border: 1px solid var(--accent-warm);
  color: var(--primary-amber);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-text a:hover {
  color: var(--primary-amber);
}

.booking-promo {
  background: var(--accent-warm);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--primary-gold);
  text-align: center;
}

.booking-promo h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.booking-promo p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-form-wrapper {
  padding: 48px;
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  background: #FAF8F5;
  border-radius: var(--border-radius-sm);
  color: var(--dark-charcoal);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.08);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23D97706' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
}

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

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #10B981;
  color: white;
  padding: 16px 28px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- FOOTER --- */
footer {
  background: var(--dark-charcoal);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 5px solid var(--primary-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand h3 span {
  color: var(--primary-gold);
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--primary-gold);
  color: var(--dark-charcoal);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

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

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

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

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #94A3B8;
}

.footer-contact-list i {
  color: var(--primary-gold);
  margin-top: 4px;
}

.footer-contact-list a {
  color: #94A3B8;
}

.footer-contact-list a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- ANIMATIONS --- */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
  0% { transform: scale(1) translate(0px, 0px); }
  33% { transform: scale(1.08) translate(10px, -15px); }
  66% { transform: scale(0.95) translate(-10px, 10px); }
  100% { transform: scale(1) translate(0px, 0px); }
}

/* Scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .story-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #FAF8F5;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    padding: 100px 40px;
    transition: var(--transition-smooth);
    border-left: 2px solid var(--accent-warm);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .mv-card {
    grid-column: span 2;
  }
}

/* --- CONTACT SECTION POLISH --- */
.contact-grid-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  text-align: center;
}

.contact-card-centered {
  background: white;
  padding: 32px 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(245, 158, 11, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.contact-card-centered:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.06);
}

.contact-card-centered .info-icon {
  margin: 0 auto 4px auto;
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
}

.contact-card-centered h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-card-centered .contact-link {
  font-weight: 700;
  color: var(--primary-amber);
  font-size: 0.85rem;
  word-break: break-all;
  display: block;
}

.contact-card-centered p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.3;
}

/* Responsive override for contact grid */
@media (max-width: 768px) {
  .contact-grid-centered {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-card-centered {
    padding: 32px 24px;
  }
  
  .contact-card-centered .contact-link {
    font-size: 0.95rem;
  }
}

/* --- TEAM PORTRAIT & MANAGEMENT MODAL STYLES --- */
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.admin-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-container {
  background: #FAF8F5;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-overlay.active .admin-modal-container {
  transform: translateY(0) scale(1);
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-modal-header h3 {
  font-size: 1.4rem;
  color: var(--dark-charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-modal-header h3 i {
  color: var(--primary-amber);
}

.admin-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
  line-height: 1;
}

.admin-close-btn:hover {
  color: var(--primary-amber);
  transform: rotate(90deg);
}

.admin-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex-grow: 1;
}

.admin-editor-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.admin-pane-list, .admin-pane-form {
  background: white;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  padding: 24px;
}

.admin-members-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Custom scrollbar for list */
.admin-members-rows::-webkit-scrollbar {
  width: 6px;
}

.admin-members-rows::-webkit-scrollbar-thumb {
  background-color: rgba(217, 119, 6, 0.15);
  border-radius: 10px;
}

.admin-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-fast);
}

.admin-member-row:hover {
  background: var(--accent-light);
  border-color: rgba(245, 158, 11, 0.15);
}

.admin-member-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-member-mini-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-amber);
  overflow: hidden;
}

.admin-member-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-member-info {
  text-align: left;
}

.admin-member-info h5 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--dark-charcoal);
}

.admin-member-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.admin-member-actions {
  display: flex;
  gap: 8px;
}

.admin-action-btn {
  border: none;
  background: none;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.85rem;
}

.admin-action-btn.edit {
  color: var(--primary-amber);
  background: var(--accent-light);
}

.admin-action-btn.edit:hover {
  background: var(--primary-amber);
  color: white;
}

.admin-action-btn.delete {
  color: #EF4444;
  background: #FEF2F2;
}

.admin-action-btn.delete:hover {
  background: #EF4444;
  color: white;
}

.admin-action-btn.move-up, .admin-action-btn.move-down {
  color: var(--text-muted);
  background: #E2E8F0;
}

.admin-action-btn.move-up:hover, .admin-action-btn.move-down:hover {
  background: var(--primary-gold);
  color: white;
}

.admin-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .admin-editor-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
