
/* ─────────────────────────────────────────────────────
   ROOT VARIABLES
───────────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold2:       #E8C97A;
  --gold-pale:   #FDF6E3;
  --black:       #080808;
  --ink:         #111111;
  --gray:        #666666;
  --light:       #F9F8F6;
  --white:       #FFFFFF;
  --border:      #E5E0D8;
  --accent-blue: #1A3A5C;
  --accent-teal: #0B5C55;
  --accent-rust: #8B2E16;
  --accent-plum: #4A1A4A;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────────────
   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: transform 0.1s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  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: all 0.15s ease;
  opacity: 0.6;
}

/* ─────────────────────────────────────────────────────
   BANNER SECTION
───────────────────────────────────────────────────── */
.about-banner {
  min-height: 100vh;
  background: var(--ink);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.banner-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.12);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  animation: floatText 8s ease-in-out infinite;
}

@keyframes floatText {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-20px); }
}

.banner-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: scanLine 4s ease-in-out infinite;
}

.banner-line:nth-child(1) { height:200px; left:15%; top:10%; animation-delay:0s; }
.banner-line:nth-child(2) { height:140px; left:35%; top:60%; animation-delay:1.5s; }
.banner-line:nth-child(3) { height:180px; right:20%; top:20%; animation-delay:3s; }
.banner-line:nth-child(4) { height:100px; right:8%;  top:65%; animation-delay:0.8s; }

@keyframes scanLine {
  0%,100% { opacity:0; transform: scaleY(0); }
  50%      { opacity:1; transform: scaleY(1); }
}

.banner-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: pulseDot 6s ease-in-out infinite;
}

.banner-dot:nth-child(5) { width:400px;height:400px; top:-100px; right:-100px; animation-delay:0s; }
.banner-dot:nth-child(6) { width:200px;height:200px; bottom:50px; left:-50px; animation-delay:2s; }

@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity:0.1; }
  50%      { transform: scale(1.15); opacity:0.18; }
}

.banner-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.banner-eyebrow::before {
  content:''; width:50px; height:1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.about-banner h1 .line-gold {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.about-banner .sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 500px;
  font-weight: 300;
  text-align: justify;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.banner-cta {
  margin-top: 44px;
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black);
  padding: 15px 36px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: none;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}

.btn-gold::before {
  content:'';
  position:absolute; top:0; left:-100%; width:100%; height:100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.btn-gold:hover::before { left:120%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.35); color: var(--black); }

.btn-outline-light-prem {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 14px 34px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.btn-outline-light-prem:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.banner-right-stats {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 60px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.bstat { margin-bottom: 44px; }
.bstat:last-child { margin-bottom: 0; }

.bstat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700; line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 60%, var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.bstat .l {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 500; margin-top: 6px;
}

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint::after {
  content:''; width:1px; height:40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: grow 2s ease-in-out infinite;
}

@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes grow   { 0%,100%{transform:scaleY(0);opacity:0} 50%{transform:scaleY(1);opacity:1} }

/* ─────────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content:''; width:32px; height:2px;
  background: var(--gold);
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────────────────
   WHO WE ARE — Sticky Left + Scroll Right
───────────────────────────────────────────────────── */
.sticky-section {
  padding: 0;
  position: relative;
}

.sticky-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink);
  padding: 80px 70px;
  overflow: hidden;
}

.sticky-left::after {
  content:'';
  position: absolute; top:0; right:0; width:1px; height:100%;
  background: linear-gradient(180deg, transparent, var(--gold) 40%, transparent);
}

.sticky-left-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sticky-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}

.sticky-left h2 span {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic;
}

.sticky-left p {
  font-size: 14px; color: #ffffff;
  line-height: 1.9; font-weight: 300;
  max-width: 360px;
  text-align: justify;
}

.sticky-progress {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 16px;
}

.sp-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s;
}

.sp-item.active { color: var(--gold); }

.sp-item::before {
  content:''; width:6px; height:6px;
  border-radius:50%; border: 1px solid currentColor;
  transition: background 0.3s;
  flex-shrink: 0;
}

.sp-item.active::before { background: var(--gold); border-color: var(--gold); }

/* RIGHT SCROLL PANELS */
.scroll-panels {
  padding: 0;
}

.scroll-panel {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 70px 80px 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.scroll-panel:last-child { border-bottom: none; }

/* Panel accent strips */
.scroll-panel::before {
  content:'';
  position: absolute; top:0; left:0;
  width: 4px; height: 100%;
}

.panel-mission::before   { background: linear-gradient(180deg, var(--gold), var(--gold2)); }
.panel-vision::before    { background: linear-gradient(180deg, #1A3A5C, #3E7CB1); }
.panel-values::before    { background: linear-gradient(180deg, #0B5C55, #1A9B8E); }
.panel-services::before  { background: linear-gradient(180deg, #8B2E16, #D45A2E); }
.panel-why::before       { background: linear-gradient(180deg, #4A1A4A, #9B3A9B); }

.scroll-panel .panel-num {
  position: absolute; top: 50px; right: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.06);
  pointer-events: none; user-select: none;
  line-height: 1;
}

.scroll-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.scroll-panel .lead-text {
  font-size: 15px; color: var(--gray);
  line-height: 1.9; font-weight: 300;
  text-align: justify;
  margin-bottom: 36px;
}

/* MISSION panel */
.panel-mission { background: var(--white); }
.panel-mission h3 { color: var(--ink); }

.mission-highlight {
  background: linear-gradient(135deg, var(--ink) 0%, #2A2A2A 100%);
  color: var(--white);
  padding: 32px 36px;
  margin-bottom: 32px;
  position: relative; overflow: hidden;
}

.mission-highlight::before {
  content:''; position:absolute;
  top:0; left:0; width:4px; height:100%;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
}

.mission-highlight blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: var(--gold2); line-height: 1.5;
  font-weight: 400; margin:0;
}

/* VISION panel */
.panel-vision { background: var(--light); }
.panel-vision h3 { color: var(--accent-blue); }

.vision-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 8px;
}

.vc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vc-card::after {
  content:''; position:absolute;
  bottom:0; left:0; width:100%; height:3px;
  background: linear-gradient(90deg, var(--accent-blue), #3E7CB1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.vc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.vc-card:hover::after { transform: scaleX(1); }

.vc-card .vc-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent-blue), #3E7CB1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
  margin-bottom: 16px;
}

.vc-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}

.vc-card p {
  font-size: 12px; color: var(--gray);
  line-height: 1.7; font-weight: 300;
}

/* VALUES panel */
.panel-values { background: var(--white); }
.panel-values h3 { color: var(--accent-teal); }

.value-list { display: flex; flex-direction: column; gap: 0; }

.vl-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, padding 0.3s;
  cursor: default;
}

.vl-item:first-child { border-top: 1px solid var(--border); }

.vl-item:hover { padding-left: 12px; }

.vl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--accent-teal); font-weight: 600;
  min-width: 28px; padding-top: 5px;
}

.vl-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-teal), #1A9B8E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}

.vl-text h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  margin-bottom: 6px; letter-spacing: -0.01em;
}

.vl-text p {
  font-size: 13px; color: var(--gray);
  line-height: 1.75; font-weight: 300;
  text-align: justify;
}

/* SERVICES panel */
.panel-services { background: var(--light); }
.panel-services h3 { color: var(--accent-rust); }

.srv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: all 0.35s ease;
}

.srv-card .srv-bg {
  position: absolute; bottom:-20px; right:-20px;
  width: 80px; height: 80px; border-radius:50%;
  background: var(--accent-rust);
  opacity: 0.04;
  transition: all 0.4s ease;
}

.srv-card:hover .srv-bg { transform: scale(4); opacity: 0.07; }

.srv-card:hover { border-color: var(--accent-rust); }

.srv-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent-rust), #D45A2E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.srv-card:hover .srv-icon { transform: rotate(5deg) scale(1.1); }

.srv-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}

.srv-card p {
  font-size: 12px; color: var(--gray);
  line-height: 1.7; font-weight: 300;
  text-align: justify;
}

/* WHY panel */
.panel-why { background: var(--white); }
.panel-why h3 { color: var(--accent-plum); }

.why-items { display: flex; flex-direction: column; gap: 20px; }

.wi-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}

.wi-item::before {
  content:''; position:absolute;
  left:0; top:0; width:3px; height:0;
  background: linear-gradient(180deg, var(--accent-plum), #9B3A9B);
  transition: height 0.4s ease;
}

.wi-item:hover { border-color: var(--accent-plum); transform: translateX(6px); }
.wi-item:hover::before { height:100%; }

.wi-icon {
  width: 48px; height: 48px; flex-shrink:0;
  background: linear-gradient(135deg, var(--accent-plum), #9B3A9B);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}

.wi-item h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  margin-bottom: 6px; letter-spacing: -0.01em;
}

.wi-item p {
  font-size: 13px; color: var(--gray);
  line-height: 1.7; font-weight: 300;
  text-align: justify;
}

/* ─────────────────────────────────────────────────────
   TEAM SECTION
───────────────────────────────────────────────────── */
.section-team {
  padding: 120px 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}

.section-team::before {
  content:'TEAM';
  position: absolute; bottom:-30px; left:-20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.07);
  pointer-events:none; user-select:none;
  line-height:1;
}

.section-team h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 64px;
}

.section-team h2 em {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic;
}

.team-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.3);
}

.team-img-wrap { position: relative; overflow: hidden; height: 300px; }

.team-img {
  width:100%; height:100%;
  object-fit:cover;
  filter: grayscale(40%) brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.95);
}

.team-overlay {
  position: absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.85) 100%);
}

.team-social {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(60px);
  transition: transform 0.4s ease;
}

.team-card:hover .team-social { transform: translateX(0); }

.team-social a {
  width: 34px; height: 34px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}

.team-social a:hover { background: var(--gold2); }

.team-body {
  padding: 28px 28px 32px;
}

.team-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-body .role {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 14px;
}

.team-body p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.75; font-weight: 300; text-align:justify;
}

/* ─────────────────────────────────────────────────────
   COUNTER STRIP
───────────────────────────────────────────────────── */
.counter-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}

.counter-strip::before {
  content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 30px,
    rgba(0,0,0,0.025) 30px, rgba(0,0,0,0.025) 31px
  );
}

.ctr-item { text-align: center; position: relative; z-index:1; }

.ctr-item::after {
  content:''; position:absolute;
  right:0; top:20%; height:60%; width:1px;
  background: rgba(0,0,0,0.12);
}

.col-lg-3:last-child .ctr-item::after { display:none; }

.ctr-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700; line-height:1;
  letter-spacing: -0.03em; color: var(--black);
}

.ctr-label {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 700;
  color: rgba(0,0,0,0.55); margin-top: 8px;
}

/* ─────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────── */
.section-cta {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
  position: relative; overflow: hidden;
}

.section-cta::before {
  content:'';
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  pointer-events:none;
}

.section-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-cta h2 span {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic;
}

.section-cta p {
  font-size: 16px; color: var(--gray);
  line-height: 1.8; font-weight: 300;
  max-width: 560px; margin: 0 auto 44px;
  text-align:justify;
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sticky-left {
    position: relative; height: auto;
    padding: 60px 40px;
    min-height: unset;
  }

  .sticky-left p { max-width: 100%; }

  .scroll-panel {
    padding: 60px 40px;
    min-height: unset;
  }

  .vision-cards,
  .srv-grid { grid-template-columns: 1fr; }

  .banner-right-stats {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-left: 0; padding-top: 40px; margin-top: 40px;
    display: flex; flex-wrap: wrap; gap: 32px;
  }

  .bstat { margin-bottom: 0; }
}

@media (max-width: 767px) {
  .about-banner h1 { font-size: clamp(46px,10vw,70px); }
  .about-banner { min-height: auto; padding: 100px 0 60px; }
  .cursor-dot, .cursor-ring { display:none; }
  .scroll-panel { padding: 50px 20px; }
  .sticky-left { padding: 50px 20px; }
  .banner-right-stats { flex-direction: column; }
  .section-cta h2 { font-size: clamp(32px,8vw,52px); }
}






















/* ── SERVICES SECTION ────────────────────────────── */
.srv-section {
  padding: 24px 0 56px;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

/* animated grid background */
.srv-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* radial glow */
.srv-section::after {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── HEADER ─────────────────────────────────────── */
.srv-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative; z-index: 2;
}

.srv-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.45em;
  text-transform: uppercase; color: #C9A84C;
  margin-bottom: 20px;
}

.srv-eyebrow::before,
.srv-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C);
}

.srv-eyebrow::after {
  background: linear-gradient(90deg, #C9A84C, transparent);
}

.srv-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.025em; color: #fff;
  margin-bottom: 20px;
}

.srv-header h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #C9A84C, #E8C97A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.srv-header p {
  font-size: 15px;
  font-weight: 300; line-height: 1.8;
  max-width: 540px; margin: 0 auto;
}

/* ── GRID ───────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 2;
}

.srv-card {
  padding: 40px 30px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  cursor: default;
  transition: background 0.4s ease;
  background: rgba(255,255,255,0.01);
}

/* remove right border on last of each row */
.srv-card:nth-child(4n)  { border-right: none; }
/* remove bottom border on last row */
.srv-card:nth-last-child(-n+4) { border-bottom: none; }

/* hover fill */
.srv-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--card-color, #C9A84C);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.srv-card:hover::before { opacity: 0.06; }

/* top accent line */
.srv-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-color, #C9A84C);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.srv-card:hover::after { transform: scaleX(1); }

/* number watermark */
.card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
  transition: opacity 0.4s;
}

.srv-card:hover .card-num { opacity: 0.4; }

/* icon wrapper */
.card-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  transition: all 0.4s ease;
}

.srv-card:hover .card-icon-wrap {
  background: var(--card-color, #C9A84C);
  border-color: var(--card-color, #C9A84C);
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--card-color,#C9A84C) 40%, transparent);
}

.card-icon-wrap i {
  font-size: 24px;
  color: var(--card-color, #C9A84C);
  transition: color 0.3s ease;
}

.srv-card:hover .card-icon-wrap i { color: #fff; }

/* text */
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 700;
  line-height: 1.25; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 10px;
  position: relative; z-index: 1;
  transition: color 0.3s;
}

.card-desc {
  font-size: 12.5px; color: rgba(255,255,255,0.38);
  line-height: 1.75; font-weight: 300;
  position: relative; z-index: 1;
  transition: color 0.3s;
}

.srv-card:hover .card-desc { color: rgba(255,255,255,0.6); }

/* arrow */
.card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--card-color, #C9A84C);
  text-decoration: none;
  margin-top: 18px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s ease;
}

.srv-card:hover .card-arrow { opacity: 1; transform: translateY(0); }

.card-arrow i { font-size: 9px; transition: transform 0.3s; }
.card-arrow:hover i { transform: translateX(4px); }

/* ── BOTTOM CTA ─────────────────────────────────── */
.srv-cta {
  text-align: center;
  margin-top: 60px;
  position: relative; z-index: 2;
}

.srv-cta p {
  font-size: 14px;
  font-weight: 300; margin-bottom: 24px;
}

.btn-srv {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  color: #0A0A0A;
  padding: 15px 40px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  border: none; position: relative; overflow: hidden;
  transition: all 0.35s ease;
}

.btn-srv::before {
  content: '';
  position: absolute; top:0; left:-100%; width:100%; height:100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.btn-srv:hover::before { left: 120%; }
.btn-srv:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,0.35); color: #0A0A0A; }

/* ── REVEAL ANIMATION ───────────────────────────── */
.srv-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.srv-reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1199px) {
  .srv-grid { grid-template-columns: repeat(3, 1fr); }
  .srv-card:nth-child(4n)        { border-right: 1px solid rgba(255,255,255,0.07); }
  .srv-card:nth-child(3n)        { border-right: none; }
  .srv-card:nth-last-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .srv-card:nth-last-child(-n+3) { border-bottom: none; }
}

@media (max-width: 767px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-card:nth-child(3n)        { border-right: 1px solid rgba(255,255,255,0.07); }
  .srv-card:nth-child(2n)        { border-right: none; }
  .srv-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .srv-card:nth-last-child(-n+2) { border-bottom: none; }
  .srv-section { padding: 29px 0 80px; }
}

@media (max-width: 480px) {
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card { border-right: none !important; }
  .srv-card:last-child { border-bottom: none; }
}