
/* ============================================
   SECTIONS — base
   ============================================ */
section{ position:relative; padding: 100px 0; }
.section-alt{ background: var(--bg-alt); }
.section-dark{ background: var(--navy); color: var(--text-inverse); }
.section-dark .text-muted{ color: rgba(244,241,234,.6); 
}


/* ============================================
   OUR STORY
   ============================================ */
.story-grid{
  display:grid; gap: 60px;
  align-items:center;
}
@media(min-width:900px){ .story-grid{ grid-template-columns: 1fr 1.05fr; } }
.story-media{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/5;
}
.story-media img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}
.story-media:hover img{ transform: scale(1); }
.story-badge{
  position:absolute; bottom:24px; left:24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 18px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight:700;
  display:flex; flex-direction:column; line-height:1.2;
}
.story-badge .big{ font-size:1.9rem; }
.story-badge .small{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; font-family:var(--font-body); font-weight:600; }
.story-copy{ display:flex; flex-direction:column; gap:8px; }
.story-copy p{ color: var(--text-muted); margin-bottom: 18px; }
.story-actions{ margin-top:14px; display:flex; gap:24px; align-items:center; flex-wrap:wrap; }

/* ============================================
   MISSION & VISION — GLASS CARDS
   ============================================ */
.mv-section{
  position:relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--text-inverse);
  overflow:hidden;
}
.mv-section::before{
  content:'';
  position:absolute; inset:0;
  background-image: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?q=80&w=1800&auto=format&fit=crop');
  background-size:cover; background-position:center;
  opacity:.12; mix-blend-mode: luminosity;
}
.mv-grid{
  position:relative; z-index:1;
  display:grid; gap:28px;
  grid-template-columns: 1fr;
}
@media(min-width:768px){ .mv-grid{ grid-template-columns: repeat(2,1fr); } }
.mv-card{
  background: rgba(244,241,234,.06);
  border: 1px solid rgba(244,241,234,.14);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.5);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.mv-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.5);
  background: rgba(244,241,234,.09);
}
.mv-icon{
  width:60px; height:60px; border-radius:50%;
  border: 1px solid rgba(212,175,55,.4);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:26px;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.mv-card:hover .mv-icon{ background: var(--gold); transform: rotate(-10deg); }
.mv-icon svg{ width:26px; height:26px; stroke: var(--gold); transition: stroke .35s var(--ease); }
.mv-card:hover .mv-icon svg{ stroke: var(--navy-deep); }
.mv-card h3{ color: var(--text-inverse); margin-bottom:14px; }
.mv-card p{ color: rgba(244,241,234,.7); }

/* ============================================
   CORE VALUES
   ============================================ */
.values-grid{
  display:grid; gap: 28px;
  grid-template-columns: repeat(1,1fr);
}
@media(min-width:680px){ .values-grid{ grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .values-grid{ grid-template-columns: repeat(3,1fr); } }
.value-card{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.value-card:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -30px rgba(212,175,55,.45);
}
.value-icon{
  width:54px; height:54px; border-radius:50%;
  background: var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  transition: background .35s var(--ease);
}
[data-theme="dark"] .value-icon{ background: var(--bg-page); }
.value-card:hover .value-icon{ background: var(--gold); }
.value-icon svg{ width:24px; height:24px; stroke: var(--navy); transition: stroke .35s var(--ease); }
[data-theme="dark"] .value-icon svg{ stroke: var(--gold); }
.value-card:hover .value-icon svg{ stroke: var(--navy-deep); }
.value-card h3{ font-size:1.1rem; margin-bottom:10px; }
.value-card p{ font-size:.92rem; color: var(--text-muted); }

/* ============================================
   WHY CHOOSE US (split)
   ============================================ */
.choose-grid{
  display:grid; gap:60px; align-items:center;
}
@media(min-width:900px){ .choose-grid{ grid-template-columns: 1fr 1.05fr; } }
.choose-media{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 4/5;
}
.choose-media img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}
.choose-media:hover img{ transform: scale(1); }
.feature-list{ display:flex; flex-direction:column; gap:0; }
.feature-item{
  display:flex; align-items:flex-start; gap:18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-item:first-child{ padding-top:0; }
.feature-item:last-child{ border-bottom:none; }
.feature-check{
  width:42px; height:42px; border-radius:50%;
  background: var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
[data-theme="dark"] .feature-check{ background: var(--bg-page); }
.feature-item:hover .feature-check{ background: var(--gold); transform: rotate(360deg); }
.feature-check svg{ width:18px; height:18px; stroke: var(--navy); transition: stroke .35s var(--ease); }
[data-theme="dark"] .feature-check svg{ stroke: var(--gold); }
.feature-item:hover .feature-check svg{ stroke: var(--navy-deep); }
.feature-text h4{ font-family: var(--font-display); font-size:1.1rem; margin-bottom:4px; }
.feature-text p{ font-size:.92rem; color: var(--text-muted); }

/* ============================================
   STATS
   ============================================ */
.stats-section{
  position:relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--text-inverse);
  overflow:hidden;
}
.stats-section::before{
  content:'';
  position:absolute; inset:0;
  background-image: url('https://images.unsplash.com/photo-1517581177682-a085bb7ffb15?q=80&w=1800&auto=format&fit=crop');
  background-size:cover; background-position:center;
  opacity:.10; mix-blend-mode: luminosity;
}
.stats-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: repeat(2,1fr); gap: 40px;
  text-align:center;
}
@media(min-width:768px){ .stats-grid{ grid-template-columns: repeat(5,1fr); } }
.stat-num{
  font-family: var(--font-display);
  font-weight:800; font-size: clamp(2.2rem,5.6vw,3.6rem);
  color: var(--gold);
  display:flex; align-items:baseline; justify-content:center; gap:4px;
}
.stat-label{
  margin-top:10px; font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  color: rgba(244,241,234,.6);
}

/* ============================================
   TEAM
   ============================================ */
.team-grid{
  display:grid; gap: 28px;
  grid-template-columns: repeat(1,1fr);
}
@media(min-width:640px){ .team-grid{ grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .team-grid{ grid-template-columns: repeat(4,1fr); } }
.team-card{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow:hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.team-card:hover{ transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(10,35,66,.3); }
.team-media{ position:relative; aspect-ratio: 4/5; overflow:hidden; }
.team-media img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.05);
  transition: transform 1s var(--ease), filter 1s var(--ease);
  filter: saturate(.9);
}
.team-card:hover .team-media img{ transform: scale(1.12); filter: saturate(1.05); }
.team-social{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  display:flex; justify-content:center; gap:10px;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(6,20,39,.85));
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.team-card:hover .team-social{ transform: translateY(0); }
.team-social a{
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(244,241,234,.4);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-inverse);
  transition: all .3s var(--ease);
}
.team-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.team-social svg{ width:14px; height:14px; }
.team-body{ padding: 22px; }
.team-body h3{ font-size:1.1rem; margin-bottom:2px; }
.team-role{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color: var(--gold); margin-bottom:12px; }
.team-bio{ font-size:.9rem; color: var(--text-muted); }

/* ============================================
   WORKSHOP GALLERY + LIGHTBOX
   ============================================ */
.gallery-grid{
  display:grid; gap: 20px;
  grid-template-columns: repeat(2,1fr);
}
@media(min-width:768px){ .gallery-grid{ grid-template-columns: repeat(4,1fr); } }
.gallery-item{
  position:relative; border-radius: var(--radius-md); overflow:hidden; isolation:isolate;
  aspect-ratio: 1/1; cursor: pointer;
}
@media(min-width:768px){
  .gallery-item.tall{ grid-row: span 2; aspect-ratio: 1/2; }
  .gallery-item.wide{ grid-column: span 2; aspect-ratio: 2/1; }
}
.gallery-item img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform: scale(1.1);
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img{ transform: scale(1); }
.gallery-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, transparent 45%, rgba(6,20,39,.9) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 20px;
  color: var(--text-inverse);
  opacity:0; transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover .gallery-overlay{ opacity:1; transform: translateY(0); }
.gallery-overlay .tag{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:4px; }
.gallery-overlay h4{ font-family: var(--font-display); font-size:1.05rem; }
.gallery-zoom{
  position:absolute; top:16px; right:16px; z-index:2;
  width:38px; height:38px; border-radius:50%;
  background: rgba(244,241,234,.15);
  border: 1px solid rgba(244,241,234,.3);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-inverse);
  opacity:0; transform: scale(.8);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery-item:hover .gallery-zoom{ opacity:1; transform: scale(1); }
.gallery-zoom svg{ width:16px; height:16px; }

.lightbox{
  position:fixed; inset:0; z-index:2000;
  background: rgba(6,20,39,.92);
  display:flex; align-items:center; justify-content:center;
  padding: 40px;
  opacity:0; visibility:hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width:min(900px,90vw); max-height:80vh; object-fit:contain;
  border-radius: var(--radius-md);
  transform: scale(.92);
  transition: transform .4s var(--ease);
}
.lightbox.open img{ transform: scale(1); }
.lightbox-close{
  position:absolute; top:32px; right:32px;
  width:48px; height:48px; border-radius:50%;
  border:1px solid rgba(244,241,234,.3);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-inverse);
  transition: all .3s var(--ease);
}
.lightbox-close:hover{ background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.lightbox-close svg{ width:20px; height:20px; }
.lightbox-caption{
  position:absolute; bottom:40px; left:0; right:0; text-align:center;
  color: var(--text-inverse); font-size:.9rem; letter-spacing:.12em; text-transform:uppercase;
}

/* ============================================
   PROCESS — VERTICAL TIMELINE
   ============================================ */
.vtimeline{
  position:relative;
  max-width: 760px; margin: 0 auto;
}
.vtimeline::before{
  content:'';
  position:absolute; top:0; bottom:0; left:29px;
  width:2px;
  background: repeating-linear-gradient(180deg, var(--gold) 0 10px, transparent 10px 20px);
}
@media(min-width:768px){
  .vtimeline::before{ left:50%; transform: translateX(-1px); }
}
.vstep{
  position:relative;
  display:grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding-bottom: 48px;
}
.vstep:last-child{ padding-bottom:0; }
@media(min-width:768px){
  .vstep{ grid-template-columns: 1fr 60px 1fr; gap:24px; align-items:start; }
  .vstep .vstep-body{ grid-column:1; text-align:right; }
  .vstep .vstep-num{ grid-column:2; }
  .vstep .vstep-spacer{ grid-column:3; display:block; }
  .vstep:nth-child(even) .vstep-body{ grid-column:3; text-align:left; }
  .vstep:nth-child(even) .vstep-spacer{ grid-column:1; }
  .vstep:nth-child(even) .vstep-num{ grid-column:2; }
}
.vstep-num{
  width:60px; height:60px; border-radius:50%;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-display); font-weight:700; font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  border: 4px solid var(--bg-page);
  position:relative; z-index:1;
}
.vstep-body h3{ margin-bottom:8px; }
.vstep-body p{ color: var(--text-muted); font-size:.94rem; }
.vstep-spacer{ display:none; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-wrap{ position:relative; max-width:760px; margin:0 auto; }
.testi-track{ overflow:hidden; }
.testi-slides{ display:flex; transition: transform .6s var(--ease); }
.testi-slide{ flex:0 0 100%; padding: 0 6px; }
.testi-card{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align:center;
}
.testi-stars{ color: var(--gold); font-size:1.1rem; letter-spacing:4px; margin-bottom:20px; }
.testi-quote{
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2.4vw,1.5rem);
  font-style:italic; line-height:1.6;
  margin-bottom: 28px;
}
.testi-person{ display:flex; align-items:center; justify-content:center; gap:14px; }
.testi-person img{ width:54px; height:54px; border-radius:50%; object-fit:cover; }
.testi-person .name{ font-weight:600; font-family:var(--font-display); }
.testi-person .role{ font-size:12px; color: var(--text-muted); letter-spacing:.08em; text-transform:uppercase; }
.testi-nav{ display:flex; justify-content:center; gap:14px; margin-top:34px; }
.testi-dot{ width:10px; height:10px; border-radius:50%; border:1px solid var(--gold); transition: background .3s var(--ease); }
.testi-dot.active{ background: var(--gold); }
.testi-arrow{
  width:50px; height:50px; border-radius:50%;
  border:1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:center;
  position:absolute; top:50%; transform:translateY(-50%);
  transition: all .3s var(--ease);
}
.testi-arrow:hover{ background: var(--navy); color: var(--text-inverse); border-color: var(--navy); }
.testi-arrow.prev{ left:-70px; }
.testi-arrow.next{ right:-70px; }
@media(max-width:900px){ .testi-arrow{ display:none; } }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner{
  position:relative; overflow:hidden;
  color: var(--text-inverse);
  text-align:center;
  padding: 130px 0;
}
.cta-bg{
  position:absolute; inset:-10%;
  background: url('https://images.unsplash.com/photo-1616137148982-3c1c30134777?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  will-change: transform;
}
.cta-bg::after{ content:''; position:absolute; inset:0; background: rgba(6,20,39,.78); }
.cta-banner .container{ position:relative; z-index:1; }
.cta-banner h2{ color: var(--text-inverse); margin-bottom:24px; }
.cta-banner p{ color: rgba(244,241,234,.75); max-width:560px; margin: 0 auto 38px; }
.cta-actions{ display:flex; justify-content:center; gap:18px; flex-wrap:wrap; }

/* ============================================
   FOOTER (identical to homepage)
   ============================================ */
.site-footer{ background: var(--navy-deep); color: var(--text-inverse); padding-top: 90px; }
.footer-grid{
  display:grid; gap: 48px;
  grid-template-columns: repeat(1,1fr);
}
@media(min-width:768px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-logo{ font-family: var(--font-display); font-size:1.6rem; font-weight:800; margin-bottom:18px; }
.footer-logo span{ color: var(--gold); }
.footer-about p{ color: rgba(244,241,234,.6); font-size:.92rem; margin-bottom:24px; max-width:320px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(244,241,234,.18);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s var(--ease);
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-head{ font-family: var(--font-display); font-size:1.05rem; margin-bottom:22px; letter-spacing:.04em; }
.footer-links li{ margin-bottom:13px; }
.footer-links a{ color: rgba(244,241,234,.6); font-size:.92rem; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer-links a:hover{ color: var(--gold); padding-left:6px; }
.footer-contact li{ display:flex; gap:12px; margin-bottom:16px; font-size:.92rem; color: rgba(244,241,234,.7); align-items:flex-start; }
.footer-contact svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color: var(--gold); }
.newsletter{ margin-top:26px; }
.newsletter-form{ display:flex; border:1px solid rgba(244,241,234,.2); border-radius: var(--radius-sm); overflow:hidden; }
.newsletter-form input{ flex:1; background:transparent; border:none; padding:14px 16px; color: var(--text-inverse); font-size:.9rem; }
.newsletter-form input::placeholder{ color: rgba(244,241,234,.4); }
.newsletter-form button{
  background: var(--gold); color: var(--navy-deep); padding: 0 20px;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s var(--ease);
}
.newsletter-form button:hover{ background: var(--gold-soft); }
.footer-bottom{
  margin-top:70px; padding: 26px 0;
  border-top: 1px solid rgba(244,241,234,.08);
  display:flex; flex-direction:column; gap:12px; align-items:center; text-align:center;
  font-size:.85rem; color: rgba(244,241,234,.5);
}
@media(min-width:768px){ .footer-bottom{ flex-direction:row; justify-content:space-between; } }
.footer-bottom-links{ display:flex; gap:24px; }
.footer-bottom-links a:hover{ color: var(--gold); }

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-stack{
  position:fixed; right: 26px; bottom: 26px; z-index: 900;
  display:flex; flex-direction:column; gap:14px; align-items:center;
}
.fab{
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(10,35,66,.4);
  transition: transform .3s var(--ease);
}
.fab:hover{ transform: scale(1.08); }
.fab-whatsapp{ background: var(--emerald); color: #fff; }
.fab-chat{ background: var(--navy); color: var(--gold-soft); }
[data-theme="dark"] .fab-chat{ background: var(--gold); color: var(--navy-deep); }
.fab svg{ width:26px; height:26px; }
.totop{
  width:46px; height:46px; border-radius:50%;
  background: var(--bg-surface); border:1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: all .4s var(--ease);
}
.totop.show{ opacity:1; visibility:visible; transform:translateY(0); }
.totop svg{ width:18px; height:18px; }

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle-icon-dark{ display:none; }
[data-theme="dark"] .theme-toggle-icon-light{ display:none; }
[data-theme="dark"] .theme-toggle-icon-dark{ display:block; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .page-hero-bg, .cta-bg{ transform:none !important; }
  .float-shape{ animation:none !important; }
}