/* =============================================
   SPACE OF SHADES — Design System & Stylesheet
   Version 2.0 | June 2026
   Brand Palette: Warm Earthy / Interior Edition
   ============================================= */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors */
  --ivory: #FDFAF5;
  --charcoal: #2C2016;
  --gold: #8B6234;
  --gold-light: rgba(139, 98, 52, 0.12);
  --tan: #A0896B;
  --linen: #F5EFE5;
  --stone: #7A6A58;
  --white: #FFFFFF;
  --dark: #1E1510;
  --border: #E8E0D3;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --container-max: 1280px;
  --gap-card: 28px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(44,32,22,0.07);
  --shadow-hover: 0 12px 40px rgba(44,32,22,0.13);

  /* Transitions */
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Custom Cursor --- */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.3s;
}
body.cursor-hover #cursor-dot { opacity: 0; }
body.cursor-hover #cursor-ring {
  width: 48px; height: 48px;
  background: rgba(139, 98, 52, 0.12);
  border-color: var(--gold);
}
@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
}

/* --- Loading Screen --- */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
}
#loading-screen.fade-out { opacity: 0; pointer-events: none; }
.loading-logo {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  animation: loadLogoIn 0.7s 0.2s forwards ease;
}
.loading-bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loading-bar-inner {
  height: 100%;
  background: var(--gold);
  animation: loadBar 1s 0.3s forwards ease;
  width: 0;
}
@keyframes loadLogoIn { to { opacity: 1; transform: translateY(0); } }
@keyframes loadBar { to { width: 100%; } }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* --- Section Label --- */
.section-label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* --- Typography Base --- */
h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--charcoal);
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
}
h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(139,98,52,0.32); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}
.btn-white:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: #fff; color: var(--charcoal); }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--ivory);
  box-shadow: 0 2px 20px rgba(44,32,22,0.07);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active,
.nav-links a:hover { color: var(--gold); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
/* Mobile Menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  transition: color var(--transition);
}
#mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--ivory);
}
.hero-bg-decor {
  position: absolute;
  top: -80px; right: -80px;
  width: 55vw;
  max-width: 680px;
  opacity: 0.18;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-pre {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
}
.hero-pre::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.06;
  margin-bottom: 24px;
  opacity: 0;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 4px;
}
/* Hero Image */
.hero-image-wrap {
  position: relative;
  height: calc(100vh - 140px);
  min-height: 500px;
  opacity: 0;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-image-accent {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.hero-image-badge {
  position: absolute;
  top: 28px; left: -28px;
  background: var(--charcoal);
  color: #fff;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
}
.hero-image-badge p {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tan);
}
.hero-image-badge strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  display: block;
  margin-top: 2px;
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: bounceIn 2s 2.5s forwards;
}
.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--stone);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translate(0,0)} 50%{transform:rotate(45deg) translate(3px,3px)} }
@keyframes bounceIn { to { opacity: 1; } }

/* Hero responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .hero-image-wrap { height: 360px; }
  .hero-image-badge { display: none; }
  .hero-stats { gap: 24px; }
}

/* =============================================
   ABOUT TEASER
   ============================================= */
#about-teaser {
  background: var(--linen);
  padding: var(--section-py) 0;
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-collage {
  position: relative;
  height: 520px;
}
.collage-img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.collage-img img { width: 100%; height: 100%; object-fit: cover; }
.collage-img-1 { width: 68%; height: 65%; top: 0; right: 0; }
.collage-img-2 { width: 52%; height: 52%; bottom: 0; left: 0; }
.collage-img-3 { width: 38%; height: 36%; top: 40%; right: 38%; }
.collage-accent {
  position: absolute;
  top: -16px; left: 10px;
  width: 80px; height: 80px;
  background: var(--gold);
  opacity: 0.13;
  z-index: 0;
}
.about-content {}
.about-content h2 { margin-bottom: 20px; }
.about-content p {
  color: var(--stone);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap var(--transition);
}
.about-link:hover { gap: 16px; }
@media (max-width: 900px) {
  .about-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-collage { height: 340px; }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services {
  background: var(--white);
  padding: var(--section-py) 0;
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header p {
  color: var(--stone);
  font-size: 17px;
  max-width: 560px;
  margin: 16px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
}
.service-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.service-card-img {
  position: absolute;
  inset: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,32,22,0.88) 0%, rgba(44,32,22,0.3) 60%, transparent 100%);
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(44,32,22,0.82) 0%, rgba(44,32,22,0.48) 60%, rgba(44,32,22,0.1) 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  color: #fff;
}
.service-num {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--tan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(4px);
  opacity: 0;
  transition: all 0.3s ease;
}
.service-card:hover .service-arrow { transform: translateY(0); opacity: 1; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 360px; }
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
#projects {
  background: var(--ivory);
  padding: var(--section-py) 0;
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.projects-header-left {}
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--stone);
  border-radius: 2px;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.projects-masonry {
  columns: 3;
  column-gap: var(--gap-card);
}
.project-card {
  break-inside: avoid;
  margin-bottom: var(--gap-card);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: block;
}
.project-card.hidden { display: none; }
.project-card-img { position: relative; overflow: hidden; }
.project-card-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,32,22,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.project-card:hover .project-card-info { transform: translateY(0); opacity: 1; }
.project-card-info h4 { color: #fff; font-size: 18px; font-family: var(--font-display); }
.project-card-meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.project-badge {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--gold);
  color: #fff;
  border-radius: 1px;
}
.project-location {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.project-card:hover .project-view { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.projects-cta {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .projects-masonry { columns: 2; }
  .projects-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .projects-masonry { columns: 1; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  background: var(--charcoal);
  padding: var(--section-py) 0;
  overflow: hidden;
}
#testimonials .section-label { color: var(--gold); }
#testimonials h2 { color: #fff; margin-bottom: 48px; }
.testimonials-header { margin-bottom: 48px; }
.swiper-testimonials { overflow: hidden; }
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 2px;
  height: auto;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 16px; }
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-photo-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--charcoal); }
.testimonial-designation { font-size: 13px; color: var(--stone); margin-top: 2px; }
.swiper-pagination-testimonials {
  margin-top: 40px;
  text-align: center;
}
.swiper-pagination-testimonials .swiper-pagination-bullet {
  background: rgba(255,255,255,0.3);
  opacity: 1;
  width: 8px; height: 8px;
}
.swiper-pagination-testimonials .swiper-pagination-bullet-active { background: var(--gold); }

/* =============================================
   PROCESS SECTION
   ============================================= */
#process {
  background: var(--linen);
  padding: var(--section-py) 0;
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 72px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--tan) 50%, var(--gold) 100%);
  border-top: 1px dashed var(--tan);
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(139,98,52,0.1);
  line-height: 1;
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-card);
}
.step-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; }
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--stone); line-height: 1.6; }
/* Why Us */
.why-us {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
}
.why-item {
  background: var(--white);
  padding: 32px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
.why-item h4 { margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--stone); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .why-us { grid-template-columns: 1fr; }
}

/* =============================================
   CTA BANNER
   ============================================= */
#cta-banner {
  background: linear-gradient(135deg, #5C3D18 0%, var(--gold) 50%, #A0733A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#cta-banner h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}
#cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(139,98,52,0.15);
  border: 1px solid rgba(139,98,52,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
  font-size: 16px;
}
.social-btn:hover { background: var(--gold); color: #fff; transform: scale(1.1); }
.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span { font-size: 13px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
#wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s infinite;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
#wa-float svg { width: 28px; height: 28px; fill: #fff; }
#wa-float .wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
/* =============================================
   ABOUT PAGE — V3 Enhanced
   ============================================= */

/* ---- ABOUT HERO ---- */
.about-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0s linear;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,14,8,0.78) 0%, rgba(20,14,8,0.5) 60%, rgba(20,14,8,0.3) 100%);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb--1 {
  width: 400px; height: 400px;
  right: -80px; top: 10%;
  background: radial-gradient(circle, rgba(139,98,52,0.15) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb--2 {
  width: 300px; height: 300px;
  left: 5%; bottom: 15%;
  background: radial-gradient(circle, rgba(139,98,52,0.10) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.06); }
}

.about-hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-top: 72px;
}
.about-hero-content { max-width: 700px; }

.about-hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4.5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
}
.about-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}
.about-hero-h1 em { font-style: italic; color: var(--gold); }
.about-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(16px);
}
.about-hero-breadcrumb a { color: var(--gold); }
.about-hero-breadcrumb span:last-child { color: rgba(255,255,255,0.8); }

/* Scroll pill */
.about-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 120px;
  right: 48px;
  opacity: 0;
  transform: translateY(10px);
}
.scroll-pill {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-pill-inner {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollPill 2s ease-in-out infinite;
}
@keyframes scrollPill {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  81%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}
.about-hero-scroll span {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* Hero stats bar at bottom */
.about-hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(20,14,8,0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  opacity: 0;
  transform: translateY(20px);
}
.ahsb-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
}
.ahsb-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ahsb-item span {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}
.ahsb-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Hero entrance animation classes */
.abt-in-1, .abt-in-2, .abt-in-3, .abt-in-4, .abt-in-5 {
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.abt-in-1.abt-visible { opacity: 1; transform: translateY(0); }
.abt-in-2.abt-visible { opacity: 1; transform: translateY(0); }
.abt-in-3.abt-visible { opacity: 1; transform: translateY(0); }
.abt-in-4.abt-visible { opacity: 1; transform: translateY(0); }
.abt-in-5.abt-visible { opacity: 1; transform: translateY(0); }

/* ---- ORIGIN SECTION ---- */
.about-origin {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.origin-media-stack {
  position: relative;
  height: 560px;
}
.om-img {
  position: absolute;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow-hover);
}
.om-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.om-img--main {
  width: 78%;
  height: 70%;
  top: 0; left: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(.22,1,.36,1);
}
.om-img--accent {
  width: 52%;
  height: 52%;
  bottom: 0; right: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(.22,1,.36,1) 0.2s;
}
.om-img--main.revealed,
.om-img--accent.revealed { clip-path: inset(0% 0% 0% 0%); }

.om-year-badge {
  position: absolute;
  top: 56%;
  left: 63%;
  background: var(--charcoal);
  color: #fff;
  padding: 18px 22px;
  border-radius: 2px;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.6) rotate(-8deg);
  transition: opacity 0.6s ease 0.6s, transform 0.6s cubic-bezier(.22,1,.36,1) 0.6s;
  border: 1px solid rgba(139,98,52,0.3);
}
.om-year-badge.revealed { opacity: 1; transform: scale(1) rotate(-4deg); }
.om-year-badge span { display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
.om-year-badge strong { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1.1; }

.om-ring {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1.5px dashed rgba(139,98,52,0.2);
  bottom: -20px; left: -20px;
  animation: rotateSlow 20s linear infinite;
}

/* Origin text */
.origin-text {}
.about-h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 0;
}
.about-divider-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease 0.2s;
}
.about-divider-line.revealed { transform: scaleX(1); }

.reveal-para {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-para.revealed { opacity: 1; transform: translateY(0); }
.reveal-para:nth-child(2) { transition-delay: 0.12s; }
.reveal-para:nth-child(3) { transition-delay: 0.24s; }

.origin-quote {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--linen);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
  position: relative;
}
.oq-mark {
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  user-select: none;
}
.origin-quote blockquote {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ---- TIMELINE ---- */
.about-timeline-section {
  padding: 120px 0;
  background: var(--linen);
  overflow: hidden;
}
.about-section-header { margin-bottom: 72px; }
.about-section-sub { color: var(--stone); max-width: 520px; margin-top: 16px; font-size: 16px; }
.about-section-header.text-center .about-section-sub { margin-left: auto; margin-right: auto; }

.about-timeline {
  position: relative;
  padding: 24px 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
.atl-spine {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.atl-spine-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(to bottom, var(--gold), rgba(139,98,52,0.3));
  transition: height 2s cubic-bezier(.22,1,.36,1);
}

.atl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 36px);
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.atl-item[data-side="right"] {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 36px);
}
.atl-item.revealed { opacity: 1; transform: translateX(0) !important; }

.atl-dot {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translate(-50%, 0);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--linen);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 2;
  transition: transform 0.3s ease;
}
.atl-item:hover .atl-dot { transform: translate(-50%, 0) scale(1.4); }

.atl-card {
  background: var(--white);
  border-radius: 4px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}
.atl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.atl-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 4px;
}
.atl-emoji { font-size: 22px; margin-bottom: 10px; }
.atl-card h4 { font-size: 15px; color: var(--charcoal); margin-bottom: 8px; }
.atl-card p { font-size: 13px; color: var(--stone); line-height: 1.6; }

@media (max-width: 768px) {
  .atl-spine { left: 20px; }
  .atl-item,
  .atl-item[data-side="right"] {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 52px;
  }
  .atl-dot { left: 20px; }
  .atl-card { max-width: 100%; }
}

/* ---- VALUES ---- */
.about-values-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.values-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(139,98,52,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(139,98,52,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.about-values-section .about-section-header { color: #fff; }
.about-values-section .about-section-header h2 { color: #fff; }
.about-values-section .about-section-sub { color: rgba(255,255,255,0.5); }

.values-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Flip card */
.value-flip {
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
  outline: none;
}
.value-flip:focus .vf-inner,
.value-flip:hover .vf-inner { transform: rotateY(180deg); }
.vf-inner {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
}
.vf-front, .vf-back {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 32px 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.vf-front {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.vf-back {
  background: var(--gold);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.vf-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(139,98,52,0.12);
  border: 1px solid rgba(139,98,52,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vf-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.vf-front h4 { color: #fff; font-size: 16px; font-weight: 600; }
.vf-hover-hint { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); font-family: var(--font-accent); }
.vf-back h4 { color: #fff; font-size: 17px; font-weight: 700; }
.vf-back p { color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.7; }

@media (max-width: 900px) { .values-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid-v2 { grid-template-columns: 1fr; } }

/* ---- TEAM ---- */
.about-team-section {
  padding: 120px 0;
  background: var(--ivory);
}
.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card-v2 {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease;
}
.team-card-v2.revealed { opacity: 1; transform: translateY(0); }
.team-card-v2:hover { box-shadow: var(--shadow-hover); }

.tc2-photo-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.tc2-photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,1,.36,1); }
.team-card-v2:hover .tc2-photo-wrap img { transform: scale(1.07); }
.tc2-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card-v2:hover .tc2-photo-overlay { opacity: 1; }
.tc2-bio-peek {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.tc2-bio-peek p { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.team-card-v2:hover .tc2-bio-peek { opacity: 1; transform: translateY(0); }

.tc2-info { padding: 20px 20px 24px; }
.tc2-info h4 { font-size: 16px; color: var(--charcoal); margin-bottom: 4px; }
.tc2-role {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) { .team-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid-v2 { grid-template-columns: 1fr; } }

/* ---- STATS BAND ---- */
.about-stats-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.asb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.asb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,8,0.82);
}
.asb-container { position: relative; z-index: 2; }
.asb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.asb-item { padding: 0 32px; position: relative; }
.asb-item + .asb-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.asb-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.asb-label {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 768px) {
  .asb-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .asb-item::before { display: none; }
}

/* ---- ABOUT CTA ---- */
.about-cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.about-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,8,0.80);
}
.about-cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.1;
}
.about-cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ---- RESPONSIVE ABOUT ---- */
@media (max-width: 1024px) {
  .origin-grid { grid-template-columns: 1fr; }
  .origin-media-stack { height: 380px; margin-bottom: 40px; }
}
@media (max-width: 768px) {
  .about-origin,
  .about-timeline-section,
  .about-values-section,
  .about-team-section { padding: 80px 0; }
  .about-hero-stats-bar { display: grid; grid-template-columns: 1fr 1fr; padding: 20px; gap: 16px; }
  .ahsb-sep { display: none; }
  .about-hero-scroll { display: none; }
}
/* =============================================
   SERVICES PAGE
   ============================================= */
.service-detail {
  padding: 80px 0;
}
.service-detail:nth-child(even) { background: var(--linen); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-photo {
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-badge {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-detail-content h2 { margin-bottom: 20px; }
.scope-list { margin: 20px 0 28px; }
.scope-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--charcoal);
}
.scope-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}
.service-detail-note {
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 24px;
  border-radius: 0 2px 2px 0;
}
@media (max-width: 900px) {
  .service-detail-inner, .service-detail-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-photo { height: 300px; }
}

/* FAQ Accordion */
.faq-section { background: var(--white); padding: 80px 0; }
.faq-section h2 { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--charcoal);
  gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =============================================
   PROJECTS PAGE
   ============================================= */
.projects-page-hero { height: 40vh; }

/* =============================================
   CONTACT PAGE
   ============================================= */
#contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
}
.contact-details h3 { margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-info-item span { font-size: 14px; color: var(--stone); }
.contact-socials { display: flex; gap: 12px; margin: 24px 0; }
.contact-map {
  border-radius: 2px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border);
}
/* Contact Form */
.contact-form {}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group textarea { height: 120px; padding: 14px 16px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(139,98,52,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: #dc2626; font-size: 12px; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  display: none;
}
.form-success.show { display: block; }
.success-check { font-size: 48px; margin-bottom: 12px; }
.form-success h4 { color: #15803d; margin-bottom: 8px; }
.form-success p { color: #166534; font-size: 14px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   ADMIN PANEL STYLES
   ============================================= */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #F9F5EF;
}
.admin-sidebar {
  width: 240px;
  background: var(--charcoal);
  border-right: 1px solid rgba(139,98,52,0.18);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-sidebar-logo {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(139,98,52,0.18);
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}
.admin-sidebar-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.admin-nav { flex: 1; padding: 20px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
}
.admin-nav a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex-shrink: 0; }
.admin-nav a:hover, .admin-nav a.active {
  color: var(--gold);
  background: rgba(139,98,52,0.1);
}
.admin-nav a.active { border-left: 2px solid var(--gold); }
.admin-nav .nav-logout { color: rgba(255,255,255,0.28); margin-top: 8px; }
.admin-nav .nav-logout:hover { color: #ef4444; background: rgba(239,68,68,0.08); }
.admin-main {
  flex: 1;
  overflow-y: auto;
  padding: 36px;
  background: #F9F5EF;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-header h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--charcoal);
  font-weight: 600;
}
.admin-header p { color: var(--stone); font-size: 14px; margin-top: 4px; }
/* Admin Widgets */
.admin-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.admin-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.admin-widget-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.admin-widget-value {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.admin-widget-value.alert { color: #ef4444; }
.admin-widget-sub { font-size: 12px; color: var(--stone); margin-top: 4px; }
/* Admin Table */
.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-card-header h3 {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--linen);
}
.admin-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--linen); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.status-new { background: rgba(239,68,68,0.1); color: #b91c1c; }
.status-read { background: var(--linen); color: var(--stone); }
.status-replied { background: rgba(22,163,74,0.1); color: #15803d; }
.status-published { background: var(--gold-light); color: #5C3D18; }
.status-draft { background: var(--linen); color: var(--stone); }
/* Admin Forms */
.admin-form { padding: 28px; }
.admin-form-group { margin-bottom: 20px; }
.admin-form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
  font-weight: 600;
}
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  height: 44px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.admin-form-group textarea { height: 120px; padding: 12px 14px; resize: vertical; }
.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus { border-color: var(--gold); }
.admin-form-group input::placeholder { color: var(--stone); opacity: 0.6; }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) {
  .admin-widgets { grid-template-columns: repeat(2, 1fr); }
  .admin-form-row { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITY / ANIMATION CLASSES
   ============================================= */
.section { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE MEDIA
   ============================================= */
@media (max-width: 600px) {
  :root { --section-py: 48px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-number { font-size: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-dark-grid { grid-template-columns: repeat(2, 1fr); }
  #navbar { height: 60px; }
  .nav-inner { height: 60px; }
}
/* =============================================
   ENHANCED HOME — V3 Cinematic Animations
   ============================================= */

/* ---- HERO V2 ---- */
.hero-v2 {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-parallax-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.08);
  will-change: transform;
}
.hero-bg-img.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 20, 12, 0.72) 0%,
    rgba(28, 20, 12, 0.45) 50%,
    rgba(28, 20, 12, 0.3) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-text-block { max-width: 700px; }

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow.hero-in { opacity: 1; transform: translateY(0); transition: all 0.8s cubic-bezier(.22,1,.36,1) 0.2s; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line span, .hero-line em {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(.22,1,.36,1);
}
.hero-line--em em {
  font-style: italic;
  color: var(--gold);
}
.hero-h1.hero-in .hero-line span,
.hero-h1.hero-in .hero-line em { transform: translateY(0); }
.hero-h1.hero-in .hero-line:nth-child(2) span,
.hero-h1.hero-in .hero-line:nth-child(2) em { transition-delay: 0.12s; }
.hero-h1.hero-in .hero-line:nth-child(3) span { transition-delay: 0.24s; }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub.hero-in { opacity: 1; transform: translateY(0); transition: all 0.8s cubic-bezier(.22,1,.36,1) 0.5s; }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-buttons.hero-in { opacity: 1; transform: translateY(0); transition: all 0.8s cubic-bezier(.22,1,.36,1) 0.65s; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600; letter-spacing: 1px;
  padding: 16px 32px; border-radius: 2px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-hero-primary:hover { background: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(139,98,52,0.4); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600; letter-spacing: 1px;
  padding: 16px 32px; border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
}
.btn-hero-ghost:hover { border-color: #fff; transform: translateY(-3px); }

/* Stats strip */
.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
}
.hero-stats-strip.hero-in { opacity: 1; transform: translateY(0); transition: all 0.8s cubic-bezier(.22,1,.36,1) 0.8s; }
.stat-pill { flex: 1; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-pill span { font-size: 11px; color: rgba(255,255,255,0.55); font-family: var(--font-accent); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Slide counter */
.hero-slide-counter {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.hero-slide-current { color: #fff; font-size: 18px; font-weight: 600; }
.hero-slide-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }

/* Hero dots */
.hero-dots {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scale(1.4); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.4s forwards ease;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollLine 2s 1.6s infinite ease;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-hint span {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@keyframes fadeInUp { to { opacity: 1; } }

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.marquee-dot { color: var(--gold) !important; font-size: 8px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- ABOUT SECTION ---- */
.section-about {
  padding: 120px 0;
  overflow: hidden;
  background: var(--ivory);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images-stack {
  position: relative;
  height: 560px;
}
.about-img {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--back {
  width: 75%;
  height: 72%;
  top: 0; left: 0;
  clip-path: inset(0% 0 0 0);
  transition: clip-path 1s cubic-bezier(.22,1,.36,1);
}
.about-img--front {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  clip-path: inset(0% 0 0 0);
  transition: clip-path 1s cubic-bezier(.22,1,.36,1) 0.2s;
}
.no-js .about-img,
.about-img { clip-path: inset(0% 0 0 0); }
.js .about-img { clip-path: inset(100% 0 0 0); }
.js .about-img.revealed { clip-path: inset(0% 0 0 0); }
.about-img.revealed { clip-path: inset(0% 0 0 0); }

.about-img-badge {
  position: absolute;
  top: 55%;
  left: 62%;
  background: var(--gold);
  color: #fff;
  padding: 20px 24px;
  border-radius: 2px;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.7) rotate(-6deg);
  transition: all 0.6s cubic-bezier(.22,1,.36,1) 0.5s;
}
.about-img-badge.revealed { opacity: 1; transform: scale(1) rotate(-3deg); }
.badge-year { display: block; font-size: 10px; font-family: var(--font-accent); letter-spacing: 2px; opacity: 0.7; }
.badge-num { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1; }
.badge-city { display: block; font-size: 10px; font-family: var(--font-accent); letter-spacing: 1px; opacity: 0.7; }

.about-img-accent-circle {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1.5px dashed rgba(139,98,52,0.25);
  bottom: -20px; left: -20px;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.about-content { }
.about-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.3s;
}
.about-divider.revealed { transform: scaleX(1); }
.reveal-para {
  color: var(--stone);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}
.reveal-para.revealed { opacity: 1; transform: translateY(0); }

.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  position: relative;
}
.about-cta-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.about-cta-link:hover::after { width: 100%; }
.cta-arrow-wrap {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.about-cta-link:hover .cta-arrow-wrap { background: var(--gold); color: #fff; transform: rotate(45deg); }

/* ---- SERVICES TRACK ---- */
.section-services { padding: 0 0 120px; background: var(--ivory); }
.section-header { margin-bottom: 64px; }
.section-header p { color: var(--stone); max-width: 480px; margin-top: 16px; }

.services-track {
  display: flex;
  height: 540px;
  gap: 3px;
  border-radius: 4px;
  overflow: hidden;
}
.service-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(.22,1,.36,1);
  display: block;
  text-decoration: none;
}
.service-panel:hover { flex: 2.4; }
.service-panel:hover .sp-desc,
.service-panel:hover .sp-cta { opacity: 1; transform: translateY(0); }
.service-panel:hover .sp-title { transform: translateY(-8px); }
.service-panel:hover .sp-bg { transform: scale(1.06); }

.sp-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(.22,1,.36,1);
}
.sp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.92) 0%, rgba(20,14,8,0.3) 60%, rgba(20,14,8,0.1) 100%);
}
.sp-label {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  user-select: none;
}
.sp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
}
.sp-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  transition: transform 0.5s ease;
  white-space: nowrap;
}
.sp-desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease 0.05s;
  margin-bottom: 16px;
}
.sp-cta {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease 0.1s;
}
.sp-expand-hint {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-accent);
  writing-mode: vertical-rl;
}

/* ---- PROJECTS ---- */
.section-projects { padding: 120px 0; background: var(--linen); }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.projects-masonry .project-card:nth-child(1),
.projects-masonry .project-card:nth-child(4) { grid-row: span 2; }

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
}
.project-card.revealed { opacity: 1; transform: translateY(0) scale(1); }
.project-card:hover { box-shadow: 0 24px 60px rgba(44,32,22,0.2); }
.project-card-img { width: 100%; height: 100%; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(.22,1,.36,1); }
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.85) 0%, transparent 55%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.project-card:hover .project-card-info { transform: translateY(0); }
.project-card-info h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.project-card-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.project-badge {
  background: rgba(139,98,52,0.9);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.project-location { font-size: 12px; color: rgba(255,255,255,0.6); }
.project-view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.35s ease;
}
.project-card:hover .project-view-btn { opacity: 1; transform: translateY(0); }
.projects-cta { text-align: center; margin-top: 48px; }

/* ---- PARALLAX QUOTE BAND ---- */
.parallax-quote-band {
  position: relative;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
}
.parallax-quote-inner {
  width: 100%;
  background: var(--charcoal);
  padding: 60px 48px;
  will-change: transform;
}
.parallax-quote-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
}
.parallax-quote-inner blockquote::before,
.parallax-quote-inner blockquote::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* ---- TESTIMONIALS ---- */
.section-testimonials { padding: 120px 0; background: var(--ivory); }
.testimonial-card {
  background: #fff;
  border-radius: 4px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(139,98,52,0.08);
  line-height: 1;
  user-select: none;
}
.testimonial-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { color: var(--stone); font-size: 15px; line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-photo-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--charcoal); }
.testimonial-designation { font-size: 12px; color: var(--stone); margin-top: 2px; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-pagination { margin-top: 32px; position: relative !important; bottom: auto !important; }

/* ---- PROCESS TIMELINE ---- */
.section-process { padding: 120px 0; background: var(--linen); }
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 64px 0 80px;
}
.process-line-track {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 1.5s ease;
}
.process-step-v2 {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step-v2.revealed { opacity: 1; transform: translateY(0); }
.pstep-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}
.pstep-icon {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(44,32,22,0.06);
}
.pstep-icon svg { width: 24px; height: 24px; color: var(--gold); }
.process-step-v2:hover .pstep-icon { background: var(--gold); border-color: var(--gold); box-shadow: 0 8px 32px rgba(139,98,52,0.3); }
.process-step-v2:hover .pstep-icon svg { color: #fff; }
.process-step-v2 h4 { font-size: 16px; color: var(--charcoal); margin-bottom: 10px; }
.process-step-v2 p { font-size: 14px; color: var(--stone); line-height: 1.6; }

/* Why us pills */
.why-us-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-pill {
  background: #fff;
  border-radius: 4px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-pill svg { color: var(--gold); margin-bottom: 4px; }
.why-pill strong { font-size: 15px; color: var(--charcoal); }
.why-pill span { font-size: 13px; color: var(--stone); line-height: 1.5; }

/* ---- CTA SECTION ---- */
.section-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,14,8,0.88) 0%, rgba(20,14,8,0.65) 100%);
}
.cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-heading {
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  margin: 16px 0 20px;
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 480px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600; letter-spacing: 1px;
  padding: 18px 40px; border-radius: 2px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-cta-primary:hover { background: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(139,98,52,0.4); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600; letter-spacing: 1px;
  padding: 18px 40px; border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
}
.btn-cta-ghost:hover { border-color: #fff; transform: translateY(-3px); }

/* ---- REVEAL BASE ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.split-heading { overflow: hidden; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-images-stack { height: 400px; }
  .services-track { height: auto; flex-direction: column; }
  .service-panel { height: 300px; flex: none !important; }
  .sp-desc, .sp-cta { opacity: 1; transform: translateY(0); }
  .projects-masonry { grid-template-columns: repeat(2, 1fr); }
  .projects-masonry .project-card:nth-child(1),
  .projects-masonry .project-card:nth-child(4) { grid-row: span 1; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-line-track { display: none; }
  .why-us-strip { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-v2 { padding-bottom: 100px; }
  .hero-dots, .hero-slide-counter { display: none; }
  .hero-stats-strip { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-divider { display: none; }
  .projects-masonry { grid-template-columns: 1fr; }
  .section-about, .section-services, .section-projects,
  .section-testimonials, .section-process { padding: 80px 0; }
  .process-timeline { grid-template-columns: 1fr; }
  .why-us-strip { grid-template-columns: 1fr; }
  .projects-header { flex-direction: column; align-items: flex-start; }
}

/* ---- FILTER ---- */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--stone);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ---- HIDE/SHOW project cards ---- */
.project-card.hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}