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

:root {
  --sand-50:  #FDF8F0;
  --sand-100: #FAF0DC;
  --sand-200: #F5E4C0;
  --sand-300: #EDD49A;
  --sand-400: #E0BF78;
  --orange-400: #E8752A;
  --orange-500: #D4611E;
  --orange-600: #BE5219;
  --orange-glow: rgba(212, 97, 30, 0.12);
  --text-900: #1E1410;
  --text-700: #4A3728;
  --text-500: #000000;
  --text-300: #B8A494;
  --white: #FEFCF8;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand-50);
  color: var(--text-900);
  overflow-x: hidden;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--orange-500);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--sand-50);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.55);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.loader-line {
  width: 140px; height: 1px;
  background: rgba(253,248,240,0.2);
  margin-top: 2.5rem; overflow: hidden;
  opacity: 0; animation: fadeUp 0.7s 0.9s forwards;
}
.loader-fill { height: 100%; background: var(--sand-100); width: 0; animation: fill 1.6s 1.1s ease forwards; }
@keyframes fill { to { width: 100%; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── FLOAT ANIMATION ── */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 9px; height: 9px;
  background: var(--orange-500); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(212,97,30,0.35); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
body:has(a:hover) .cursor { width: 0; height: 0; }
body:has(a:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--orange-500); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 5%;
  transition: all 0.5s var(--transition);
}
nav.scrolled {
  background: rgba(253,248,240,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 5%;
  border-bottom: 1px solid rgba(212,97,30,0.12);
  box-shadow: 0 4px 32px rgba(30,20,16,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--sand-50); letter-spacing: 0.06em;
  text-decoration: none; transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--text-900); }
.nav-logo span { color: var(--sand-200); }
nav.scrolled .nav-logo span { color: var(--orange-500); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(253,248,240,0.75); text-decoration: none;
  transition: color 0.3s; position: relative;
}
nav.scrolled .nav-links a { color: var(--text-500); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange-500); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--orange-400) !important; }

.nav-cta {
  padding: 0.52rem 1.4rem;
  background: var(--sand-100); color: var(--orange-600);
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s; font-weight: 500;
}
nav.scrolled .nav-cta { background: var(--orange-500); color: white; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,97,30,0.3); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--sand-100); transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--text-900); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--orange-500);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300;
  color: var(--sand-50); text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--sand-200); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--sand-50);
  font-size: 1.4rem; cursor: pointer;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--orange-500);
  position: relative; display: flex; align-items: center; overflow: hidden;
}

/* Texture overlay */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(253,248,240,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30,20,16,0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Grain overlay */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

.hero-grid-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-grid-lines::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(253,248,240,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(253,248,240,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 24s linear infinite;
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 80px 80px; } }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1.2fr;
  align-items: center; gap: 2rem;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem;
}
.eyebrow-line { width: 36px; height: 1px; background: rgba(253,248,240,0.5); }
.hero-eyebrow span {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(253,248,240,0.65); font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.04; color: var(--sand-50);
  margin-bottom: 1.75rem;
}
.hero-title em { font-style: italic; color: var(--sand-200); }
.hero-title .reveal { overflow: hidden; display: block; }
.hero-title .reveal span {
  display: block; animation: slideUp 0.8s var(--transition) both;
}
.hero-title .reveal:nth-child(1) span { animation-delay: 0.15s; }
.hero-title .reveal:nth-child(2) span { animation-delay: 0.3s; }
.hero-title .reveal:nth-child(3) span { animation-delay: 0.45s; }
@keyframes slideUp { from { transform: translateY(105%); } to { transform: translateY(0); } }

.hero-desc {
  font-size: 1rem; line-height: 1.82; color: rgba(253,248,240,0.78);
  max-width: 460px; margin-bottom: 2.75rem;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  padding: 0.88rem 2.2rem;
  background: var(--sand-50); color: var(--orange-600);
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s; font-weight: 500;
}
.btn-primary:hover {
  background: var(--sand-100);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,20,16,0.2);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  padding: 0.88rem 2.2rem;
  background: transparent; color: var(--sand-100);
  border: 1px solid rgba(253,248,240,0.3); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(253,248,240,0.65);
  background: rgba(253,248,240,0.08);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(253,248,240,0.18);
  opacity: 0; animation: fadeUp 0.8s 1.3s forwards;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--sand-50); line-height: 1;
}
.stat-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,248,240,0.5); margin-top: 0.3rem;
}

/* Hero right: visual panel */
.hero-panel {
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  overflow: visible; position: relative;
}
.hero-panel-inner {
  background: none; border: none; padding: 0;
}
.hero-panel img {
  width: 140%; max-width: none;
  margin-left: -20%; margin-top: -4rem; margin-bottom: -4rem;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(30,20,16,0.35));
  animation: float 4s ease-in-out infinite;
}
.hero-panel-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(253,248,240,0.12) 0%, rgba(253,248,240,0.04) 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; margin-bottom: 1.5rem;
}
.hero-panel-tag {
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sand-300); margin-bottom: 0.5rem;
}
.hero-panel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--sand-50); font-weight: 300; line-height: 1.3;
  margin-bottom: 1rem;
}
.hero-panel-row {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(253,248,240,0.1);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sand-200);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.45; }
}
.hero-panel-status {
  font-size: 0.72rem; color: rgba(253,248,240,0.55); letter-spacing: 0.08em;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--sand-100); padding: 0.85rem 0;
  overflow: hidden; position: relative; z-index: 2;
  border-top: 1px solid rgba(212,97,30,0.15);
  border-bottom: 1px solid rgba(212,97,30,0.15);
}
.marquee-inner {
  display: flex; animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap; padding: 0 2rem; flex-shrink: 0;
}
.marquee-item span {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-500); font-weight: 400;
}
.marquee-dot { width: 3px; height: 3px; background: var(--orange-400); border-radius: 50%; opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SHOWCASE SLIDER (hero panel) ── */
.hero-panel-inner {
  background: none; border: none; padding: 0;
  border-radius: 16px; overflow: hidden;
}
.showcase-wrap {
  position: relative; overflow: hidden; border-radius: 16px;
  height: 480px;
}
.showcase-track {
  display: flex; width: 100%; height: 100%;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.showcase-slide {
  min-width: 100%; width: 100%; height: 100%; position: relative;
  overflow: hidden; flex-shrink: 0;
}
.showcase-slide img {
  width: 120%; height: 115%; object-fit: cover; display: block;
  transform: scale(1.06); transition: transform 5.5s ease;
}
.showcase-slide.active img { transform: scale(1); }
.showcase-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(to top, rgba(30,20,16,0.8) 0%, transparent 100%);
}
.showcase-cat {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-400); display: block; margin-bottom: 0.4rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.55s 0.2s ease, transform 0.55s 0.2s ease;
}
.showcase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300; color: var(--sand-50); line-height: 1.1;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.55s 0.32s ease, transform 0.55s 0.32s ease;
}
.showcase-slide.active .showcase-cat,
.showcase-slide.active .showcase-name { opacity: 1; transform: translateY(0); }
.showcase-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(253,248,240,0.12); border: 1px solid rgba(253,248,240,0.2);
  color: rgba(253,248,240,0.8); font-size: 0.95rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2;
}
.showcase-arrow:hover { background: var(--orange-500); border-color: var(--orange-500); color: white; }
.showcase-prev { left: 0.75rem; }
.showcase-next { right: 0.75rem; }
.showcase-footer {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 0 0 16px 16px;
}
.showcase-dots { display: flex; gap: 0.4rem; }
.sc-dot {
  width: 5px; height: 5px; border-radius: 3px;
  background: rgba(253,248,240,0.2); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.sc-dot.active { width: 18px; background: rgb(255, 255, 255); }
.showcase-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; white-space: nowrap;
}
#showcaseCurr { color: var(--sand-200); }
.showcase-sep { color: rgba(253,248,240,0.2); }

/* ── SECTION BASE ── */
section { padding: 7rem 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem;
}
.section-label-line { width: 26px; height: 1px; background: var(--orange-500); }
.section-label span {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange-500); font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--text-900); margin-bottom: 1.1rem;
}
.section-title em { font-style: italic; color: var(--orange-500); }
.section-desc { font-size: 1rem; line-height: 1.82; color: var(--text-500); max-width: 540px; }

/* ── ABOUT ── */
#about { background: var(--sand-50); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: stretch; margin-top: 5rem;
}
/* .about-img-wrap {
  border-radius: 10px; overflow: hidden;
  min-height: 500px; background: var(--sand-200);
  border: 1px solid rgba(212,97,30,0.12);
  box-shadow: 0 16px 60px rgba(212,97,30,0.1);
  display: flex; align-items: center; justify-content: center;
} */
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  animation: float 4s ease-in-out infinite;
}
.about-img-placeholder {
  font-size: 5rem; color: var(--orange-400); opacity: 0.35;
}

.principles-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.principle-card {
  display: flex; gap: 1.5rem; padding: 1.6rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1); border-radius: 8px;
  transition: all 0.4s var(--transition); cursor: default;
}
.principle-card:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(212,97,30,0.25);
}
.principle-card:hover .pc-num { color: rgba(253,248,240,0.25); }
.principle-card:hover .pc-title { color: var(--sand-50); }
.principle-card:hover .pc-desc { color: rgba(253,248,240,0.65); }
.pc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: rgb(212, 97, 30); line-height: 1;
  transition: color 0.4s; flex-shrink: 0; width: 48px;
}
.pc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--text-900);
  margin-bottom: 0.3rem; transition: color 0.4s;
}
.pc-desc { font-size: 0.82rem; line-height: 1.72; color: var(--text-500); transition: color 0.4s; }

/* ── SOLUTIONS ── */
#solutions {
  background: linear-gradient(160deg, var(--sand-100) 0%, var(--sand-200) 100%);
}
.solutions-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 4.5rem;
}
.solutions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1);
  border-radius: 10px; padding: 2.25rem 2rem;
  transition: all 0.45s var(--transition);
  position: relative; overflow: hidden; cursor: default;
}
.solution-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(212,97,30,0.2);
  border-color: transparent;
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover .sc-icon { background: rgba(253,248,240,0.15); }
.solution-card:hover .sc-tag { color: rgba(253,248,240,0.55); }
.solution-card:hover .sc-title { color: var(--sand-50); }
.solution-card:hover .sc-desc { color: rgba(253,248,240,0.65); }
.solution-card:hover .sc-moq { background: rgba(253,248,240,0.12); color: var(--sand-100); border-color: rgba(253,248,240,0.2); }
.solution-card:hover .sc-arrow { color: var(--sand-200); transform: translate(4px,-4px); }
.solution-card-inner { position: relative; z-index: 1; }
.sc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.75rem; }
.sc-icon {
  width: 50px; height: 50px; border-radius: 8px;
  background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: all 0.4s;
}
.sc-arrow { color: rgba(125,98,81,0.35); font-size: 1.1rem; transition: all 0.35s; }
.sc-tag {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange-500); margin-bottom: 0.5rem;
  transition: color 0.4s; display: block;
}
.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400; color: var(--text-900);
  margin-bottom: 0.7rem; line-height: 1.2; transition: color 0.4s;
}
.sc-desc { font-size: 0.8rem; line-height: 1.72; color: var(--text-500); margin-bottom: 1.5rem; transition: color 0.4s; }
.sc-moq {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  background: var(--orange-glow);
  border: 1px solid rgba(212,97,30,0.15); border-radius: 20px;
  font-size: 0.67rem; letter-spacing: 0.08em; color: var(--text-500); transition: all 0.4s;
}

/* ── PROCESS ── */
#process {
  background: var(--orange-500); position: relative; overflow: hidden;
}
#process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(253,248,240,0.06) 0%, transparent 55%);
  pointer-events: none;
}
#process .section-title { color: #ffffff; }
#process .section-title em { color: #000000; }
#process .section-desc { color: rgba(0,0,0,0.6); }
#process .section-label span { color: #000000; }
#process .section-label-line { background: #000000; }

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 50px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), rgba(0,0,0,0.35), rgba(0,0,0,0.2), transparent);
}
.process-step { padding: 0 1rem; text-align: center; position: relative; }
.ps-number {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: #000000;
  transition: all 0.4s; position: relative; z-index: 1;
}
.process-step:hover .ps-number {
  background: #ffffff; color: var(--orange-500);
  transform: scale(1.15); border-color: #ffffff;
}
.ps-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: #ffffff; margin-bottom: 0.6rem;
}
.ps-desc { font-size: 0.77rem; line-height: 1.7; color: rgba(0,0,0,0.55); }
.process-quote {
  text-align: center; margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  background: rgba(0,0,0,0.06);
}
.process-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-style: italic;
  color: #ffffff; max-width: 680px;
  margin: 0 auto; line-height: 1.55;
}

/* ── VERTICALS ── */
#verticals { background: var(--sand-50); }
.verticals-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-top: 5rem;
}
.verticals-table-wrap {
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.12);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(212,97,30,0.06);
}
.v-table { width: 100%; border-collapse: collapse; }
.v-table th {
  padding: 1rem 1.25rem; text-align: left;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-500); background: var(--sand-100);
  border-bottom: 1px solid rgba(212,97,30,0.1); font-weight: 400;
}
.v-table td {
  padding: 1.05rem 1.25rem; font-size: 0.82rem;
  color: var(--text-900);
  border-bottom: 1px solid rgba(212,97,30,0.06);
  vertical-align: middle;
}
.v-table tr:last-child td { border-bottom: none; }
.v-table tr { transition: background 0.3s; }
.v-table tr:hover td { background: rgba(212,97,30,0.04); }
.v-tag {
  display: inline-flex; padding: 0.22rem 0.65rem;
  background: rgba(212,97,30,0.08);
  border: 1px solid rgb(212, 97, 30);
  border-radius: 20px; font-size: 0.66rem;
  color: var(--orange-500); letter-spacing: 0.05em;
}
.verticals-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.v-card {
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1);
  border-radius: 10px; padding: 1.4rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: all 0.4s var(--transition); cursor: default;
}
.v-card:hover {
  border-color: var(--orange-500);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(212,97,30,0.12);
}
.v-card-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(212,97,30,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: all 0.4s;
}
.v-card:hover .v-card-icon { background: var(--orange-500); transform: rotate(8deg); }
.v-card-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange-500); margin-bottom: 0.18rem;
}
.v-card-title { font-size: 0.86rem; font-weight: 500; color: var(--text-900); }

/* ── TESTIMONIALS (REDESIGNED) ── */
#testimonials {
  background: var(--text-900); position: relative; overflow: hidden;
}
#testimonials::before {
  content: ''; position: absolute;
  top: -20%; right: -8%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,97,30,0.1) 0%, transparent 68%);
  pointer-events: none;
}
#testimonials .section-label span { color: var(--orange-400); }
#testimonials .section-label-line { background: var(--orange-400); }
#testimonials .section-title { color: var(--sand-50); }
#testimonials .section-title em { color: var(--orange-400); }

.testi-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 5rem;
}
.testi-nav { display: flex; align-items: center; gap: 1.25rem; }
.testi-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(253,248,240,0.14);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,248,240,0.45); transition: all 0.3s; font-size: 1.1rem;
}
.testi-btn:hover {
  background: var(--orange-500); border-color: var(--orange-500); color: white;
}
.testi-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; min-width: 70px; text-align: center;
  white-space: nowrap;
}
#testiCurrent { color: var(--sand-100); font-size: 1.15rem; }
.testi-slash { color: rgba(253,248,240,0.25); }

.testi-stage {
  position: relative; min-height: 300px;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.testi-item {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none; transform: translateY(14px);
}
.testi-item.active {
  opacity: 1; position: relative; pointer-events: auto; transform: translateY(0);
}
.testi-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6.5rem; line-height: 0.65;
  color: var(--orange-500); opacity: 0.45;
  display: block; margin-bottom: 1.25rem;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-style: italic; line-height: 1.72;
  color: var(--sand-100); margin-bottom: 2.5rem;
}
.testi-author {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.75rem;
  background: rgba(253,248,240,0.04);
  border: 1px solid rgba(253,248,240,0.1); border-radius: 50px;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; color: white; font-weight: 500; flex-shrink: 0;
}
.testi-name { font-size: 0.84rem; font-weight: 500; color: var(--sand-100); }
.testi-role { font-size: 0.72rem; color: rgba(253,248,240,0.38); }

.testi-progress {
  height: 1px; background: rgba(253,248,240,0.08);
  max-width: 200px; margin: 3rem auto 0; border-radius: 1px; overflow: hidden;
}
.testi-progress-fill {
  height: 100%; background: var(--orange-500);
  width: 20%; transition: width 0.55s ease;
}
.carousel-dots {
  display: flex; gap: 0.5rem; margin-top: 1.25rem; justify-content: center;
}
.c-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(253,248,240,0.15); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.c-dot.active { width: 22px; background: var(--orange-500); }


/* ── CTA BANNER ── */
#cta-banner {
  background: var(--sand-200); padding: 5rem 5%; position: relative; overflow: hidden;
  border-top: 1px solid rgba(212,97,30,0.15);
  border-bottom: 1px solid rgba(212,97,30,0.15);
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,97,30,0.08) 0%, transparent 60%);
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300;
  color: var(--text-900); line-height: 1.1;
}
.cta-title em { font-style: italic; color: var(--orange-500); }
.btn-orange {
  padding: 0.9rem 2.2rem;
  background: var(--orange-500); color: white;
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s; font-weight: 500;
}
.btn-orange:hover {
  background: var(--orange-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,97,30,0.35);
}

/* ── CONTACT ── */
#contact { background: var(--sand-50); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 5rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1.25rem; padding: 1.4rem 1.5rem;
  background: var(--white); border: 1px solid rgba(212,97,30,0.1);
  border-radius: 8px; transition: all 0.3s; cursor: default;
}
.contact-item:hover { border-color: var(--orange-500); transform: translateX(6px); }
.ci-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(212,97,30,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: all 0.3s;
}
.contact-item:hover .ci-icon { background: var(--orange-500); transform: rotate(8deg); }
.ci-label { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-500); margin-bottom: 0.28rem; }
.ci-value { font-size: 0.86rem; color: var(--text-900); }
.contact-social-row {
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1); border-radius: 8px;
}
.contact-social-icons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.csoc-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(212,97,30,0.18);
  background: var(--sand-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-700); text-decoration: none;
  transition: all 0.3s;
}
.csoc-btn:hover {
  background: var(--orange-500); border-color: var(--orange-500);
  color: white; transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212,97,30,0.3);
}
.contact-accent {
  padding: 2rem; background: var(--orange-500); border-radius: 10px; margin-top: 0.25rem;
}
.contact-accent-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--sand-50); font-weight: 300; line-height: 1.4; margin-bottom: 0.65rem;
}
.contact-accent-sub { font-size: 0.76rem; color: rgba(253,248,240,0.5); line-height: 1.7; }

.contact-form-wrap {
  background: var(--white); border: 1px solid rgba(212,97,30,0.1);
  border-radius: 10px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(212,97,30,0.06);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; color: var(--text-900); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block; font-size: 0.69rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-500); margin-bottom: 0.48rem;
}
.form-input {
  width: 100%; padding: 0.78rem 1rem;
  background: var(--sand-50);
  border: 1px solid rgba(212,97,30,0.12); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text-900);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-input:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(212,97,30,0.08); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--orange-500); color: white; border: none; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.form-submit:hover {
  background: var(--orange-600); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,97,30,0.3);
}
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--orange-500);
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
}

/* ── FOOTER ── */
footer { background: var(--text-900); padding: 4rem 5% 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,248,240,0.07); margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; color: var(--sand-100); margin-bottom: 0.6rem;
}
.footer-brand span { color: var(--orange-400); }
.footer-tagline { font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(253,248,240,0.3); margin-bottom: 1.25rem; }
.footer-about { font-size: 0.78rem; line-height: 1.72; color: rgba(253,248,240,0.28); max-width: 240px; }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 1.2rem; font-weight: 400;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.8rem; color: rgba(253,248,240,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--sand-100); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: rgba(253,248,240,0.25);
}
.footer-social { display: flex; gap: 0.85rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(253,248,240,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,248,240,0.35); text-decoration: none; font-size: 0.72rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--orange-400); color: var(--orange-400); background: rgba(212,97,30,0.1); }

/* ── SCROLL TOP ── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 42px; height: 42px; background: var(--orange-500);
  color: white; border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: all 0.4s;
  z-index: 500; box-shadow: 0 8px 24px rgba(212,97,30,0.35);
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--orange-600); transform: translateY(-4px); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-content, .about-grid, .solutions-header,
  .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .verticals-layout { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-panel { display: block; }
  .showcase-wrap { height: 320px; }
}
@media(max-width:768px) {
  section { padding: 5rem 5%; }
  nav { padding: 1rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .solutions-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 290px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}
@media(max-width:480px) {
  .testimonial-card { min-width: 260px; padding: 1.75rem; }
  .footer-top { grid-template-columns: 1fr; }
}

[data-aos] { backface-visibility: hidden; }
