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

:root {
  --black:    #060606;
  --dark:     #0E0E0E;
  --gold:     #BF9A40;
  --gold-lt:  #D4AF5E;
  --white:    #FFFFFF;
  --off:      #EDEBE5;
  --gray:     #595959;
  --border-d: rgba(255,255,255,0.07);
  --border-l: rgba(0,0,0,0.1);
  --font:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --serif:    'Cormorant Garant', Georgia, serif;
}

html { scroll-behavior: smooth; }
@keyframes pageReveal { from { opacity: 0; } to { opacity: 1; } }
body { font-family: var(--font); background: var(--black); color: var(--white); overflow-x: hidden; animation: pageReveal 0.6s ease forwards; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TYPE SCALE ===== */
h1 { font-family: var(--serif); font-size: clamp(3.2rem, 6.5vw, 6.4rem); font-weight: 600; line-height: 1.0; letter-spacing: -0.01em; }
h2 { font-family: var(--serif); font-size: clamp(2.3rem, 4.5vw, 3.6rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.3; }
p  { font-size: 1.05rem; line-height: 1.82; }

.eyebrow {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1.3rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
section { padding: 110px 0; }

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 28px; height: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
.logo-text .sub  { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,8,8,0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-d);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 3rem; height: 68px;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-nav {
  background: var(--gold); color: var(--black);
  padding: 0.55rem 1.3rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  font-family: var(--font); transition: background 0.2s; display: inline-block;
}
.btn-nav:hover { background: var(--gold-lt); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 0.9rem 2.2rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; border: none;
  font-family: var(--font); transition: all 0.2s;
}
.btn-gold  { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-dark  { background: var(--black); color: var(--white); }
.btn-dark:hover { opacity: 0.75; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark { background: transparent; color: rgba(0,0,0,0.45); border: 1px solid rgba(0,0,0,0.2); }
.btn-ghost-dark:hover { border-color: var(--black); color: var(--black); }

.link-arrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.link-arrow:hover { color: var(--gold); }

/* ===== HERO (homepage split) ===== */
.hero-split {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}
.hero-split-left {
  display: flex; align-items: center;
  padding: 5rem 3rem 5rem 3rem;
}
.hero-split-right {
  background: rgba(191,154,64,0.03);
  border-left: 1px solid rgba(191,154,64,0.1);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem;
}
.hero-split-left .eyebrow { margin-bottom: 2rem; }
.hero-split-left h1 { margin-bottom: 1.8rem; }
.hero-split-left h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.42); line-height: 1.8;
  max-width: 420px; margin-bottom: 2.8rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* Triangle diagram */
.tri-diagram { width: 100%; max-width: 420px; }
.tri-diagram svg { width: 100%; height: auto; overflow: visible; }
.tri-outline {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  animation: draw 3.5s ease forwards 0.4s, triGlow 6s ease-in-out infinite 5s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.tri-fade { opacity: 0; animation: fadein 1s ease forwards 4.4s; }
@keyframes fadein { to { opacity: 1; } }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--black); padding: 150px 0 90px;
  border-bottom: 1px solid var(--border-d);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -5%; top: 50%;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 440' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='250,10 490,430 10,430' fill='rgba(191,154,64,0.04)'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  animation: ghostSpin 80s linear infinite;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.2rem; max-width: 700px; }
.page-hero p  { color: rgba(255,255,255,0.4); max-width: 520px; font-size: 1.05rem; font-weight: 300; }

/* ===== THREE FORCES ===== */
.forces { background: var(--off); color: var(--black); }
.forces h2 { max-width: 560px; margin-bottom: 4rem; }
.forces-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--black);
}
.force-col { padding: 3rem 2.5rem 3rem 0; border-right: 1px solid var(--border-l); }
.force-col:nth-child(2) { padding-left: 2.5rem; }
.force-col:last-child  { padding-left: 2.5rem; border-right: none; padding-right: 0; }
.force-tri {
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--gold);
  margin-bottom: 1.4rem;
}
.force-num  { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.force-name { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.7rem; }
.force-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--black); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.how-text h2 { margin-bottom: 1.8rem; }
.how-text p  { color: rgba(255,255,255,0.42); font-weight: 300; margin-bottom: 0.9rem; }
.how-text .link-arrow { margin-top: 1.5rem; }

/* ===== SERVICE GRID ===== */
.services { background: var(--dark); border-top: 1px solid var(--border-d); }
.services h2 { max-width: 480px; margin-top: 0.5rem; margin-bottom: 0; }
.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 3.5rem;
}
.svc-card {
  padding: 2.5rem; border: 1px solid var(--border-d);
  position: relative; overflow: hidden; transition: background 0.2s;
}
.svc-card:hover { background: rgba(191,154,64,0.03); }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--gold); transition: height 0.3s;
}
.svc-card:hover::before { height: 100%; }
.svc-pillar { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(191,154,64,0.5); display: block; margin-bottom: 0.8rem; }
.svc-name   { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.svc-desc   { font-size: 0.88rem; color: rgba(255,255,255,0.32); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-gold { background: var(--gold); text-align: center; }
.cta-gold h2 { color: var(--black); margin-bottom: 0.8rem; }
.cta-gold h2 em { font-style: italic; font-weight: 300; }
.cta-gold p { color: rgba(0,0,0,0.5); margin-bottom: 2.5rem; }

/* ===== ABOUT ===== */
.about-intro { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { color: rgba(255,255,255,0.42); font-weight: 300; margin-bottom: 1rem; }
.about-text .btn { margin-top: 1rem; }
.about-visual-box {
  border: 1px solid var(--border-d);
  padding: 4rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.about-visual-box::after {
  content: ''; position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%; border: 1px solid rgba(191,154,64,0.2); z-index: -1;
}
.about-visual-box svg { width: 70px; height: auto; margin-bottom: 1.5rem; }
.about-visual-box .tri-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); line-height: 2;
}

.diff-section { background: var(--off); color: var(--black); }
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 2px solid var(--black); margin-top: 3.5rem;
}
.diff-item {
  padding: 2.5rem; border-right: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
}
.diff-item:nth-child(even) { border-right: none; }
.diff-item:nth-last-child(-n+2) { border-bottom: none; }
.diff-item .force-tri { margin-bottom: 1rem; }
.diff-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.diff-item p  { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

.serve-section { background: var(--black); }
.serve-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.serve-card {
  border: 1px solid var(--border-d); padding: 2rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.serve-card .tri { flex-shrink: 0; margin-top: 3px; }
.serve-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.serve-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ===== PHILOSOPHY ===== */
.quote-section {
  background: var(--gold); padding: 80px 0; text-align: center;
}
.quote-section blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 500; font-style: italic;
  letter-spacing: -0.01em; line-height: 1.38;
  color: var(--black); max-width: 840px; margin: 0 auto 1.2rem;
}
.quote-section cite { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(0,0,0,0.45); font-style: normal; }

.pillars { background: var(--black); }
.pillars h2 { margin-bottom: 4rem; max-width: 480px; }
.pillar-list { display: flex; flex-direction: column; }
.pillar-row {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 2.5rem; padding: 2.5rem 0;
  border-top: 1px solid var(--border-d); align-items: start;
}
.pillar-row:last-child { border-bottom: 1px solid var(--border-d); }
.pillar-num { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; color: var(--gold); opacity: 0.2; line-height: 1; }
.pillar-body h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.pillar-body p  { font-size: 0.97rem; color: rgba(255,255,255,0.42); line-height: 1.85; }

.commitment { background: var(--off); color: var(--black); }
.commitment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.commitment-text h2 { margin-bottom: 1.5rem; }
.commitment-text p  { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.commitment-text .btn { margin-top: 1rem; }
.commitment-visual { display: flex; align-items: center; justify-content: center; }

/* ===== CONTACT ===== */
.contact-section { background: var(--black); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 38px; height: 38px; border: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }
.ci-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 2px; }
.ci-value { font-size: 0.9rem; font-weight: 500; }

.contact-note {
  padding: 1.2rem 1.2rem 1.2rem 1.5rem;
  border-left: 2px solid var(--gold); background: rgba(191,154,64,0.05);
}
.contact-note p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

.contact-form-wrap {
  background: var(--dark); border: 1px solid var(--border-d); padding: 3rem;
}
.contact-form-wrap h3 { margin-bottom: 2rem; font-size: 1.3rem; }
.form-group { margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-d);
  color: var(--white); font-family: var(--font); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s; border-radius: 0;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BF9A40' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.8rem;
  cursor: pointer;
}
select option { background: var(--dark); color: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 0.5rem; font-size: 0.82rem; }

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid var(--border-d);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-d);
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.25); margin-top: 1rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.18);
}
.footer-tri svg { width: 18px; opacity: 0.25; }

/* ===== SCROLL REVEAL SYSTEM ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(5px);
  will-change: transform, opacity, filter;
  transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1),
              transform 1.2s cubic-bezier(0.16,1,0.3,1),
              filter 1s ease;
}
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
  transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1),
              transform 1.2s cubic-bezier(0.16,1,0.3,1),
              filter 1s ease;
}
.reveal-left.is-visible { opacity: 1; transform: none; filter: blur(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(3px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
              transform 1s cubic-bezier(0.16,1,0.3,1),
              filter 0.8s ease;
}
.stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; filter: blur(0); transition-delay: 0.1s; }
.stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; filter: blur(0); transition-delay: 0.3s; }
.stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; filter: blur(0); transition-delay: 0.5s; }
.stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; filter: blur(0); transition-delay: 0.7s; }

/* ===== HERO ENTRANCE ANIMATIONS ===== */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero-enter { opacity: 0; animation: heroUp 1.4s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-d1 { animation-delay: 0.2s; }
.hero-d2 { animation-delay: 0.55s; }
.hero-d3 { animation-delay: 0.9s; }
.hero-d4 { animation-delay: 1.25s; }

/* Line-by-line h1 slide-up reveal (homepage) */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.14em; }
.line-inner {
  display: block; opacity: 0; transform: translateY(110%);
  animation: lineSlide 1.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes lineSlide { to { opacity: 1; transform: translateY(0); } }

/* Page hero text entrance (inner pages) */
.page-hero .eyebrow { opacity: 0; animation: heroUp 1.1s cubic-bezier(0.16,1,0.3,1) forwards 0.3s; }
.page-hero h1       { opacity: 0; animation: heroUp 1.4s cubic-bezier(0.16,1,0.3,1) forwards 0.6s; }
.page-hero p        { opacity: 0; animation: heroUp 1.1s cubic-bezier(0.16,1,0.3,1) forwards 0.95s; }

/* ===== TRIANGLE ANIMATIONS ===== */
@keyframes triFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-20px); }
}
.tri-diagram { animation: triFloat 10s ease-in-out infinite 5s; }

@keyframes triGlow {
  0%,100% { filter: drop-shadow(0 0 0px rgba(191,154,64,0)); }
  50%     { filter: drop-shadow(0 0 20px rgba(191,154,64,0.6)); }
}

@keyframes ghostSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Vertex pulse dots */
@keyframes vPulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(2.5); }
}
.tri-vertex-dot {
  opacity: 0;
  animation: fadein 1s ease forwards 5s, vPulse 4s ease-in-out infinite 6.5s;
  transform-origin: center;
  transform-box: fill-box;
}

/* Vertex ripple rings */
@keyframes rippleOut {
  0%   { transform: scale(1); opacity: 0.75; stroke-width: 1.5; }
  100% { transform: scale(8); opacity: 0;    stroke-width: 0.3; }
}
.ripple-ring {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: fadein 0.01s ease forwards 5s, rippleOut 3.2s ease-out infinite 5.1s;
}

/* ===== BUTTON SHIMMER ===== */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg);
}
.btn-gold:hover::after { animation: shimmer 0.9s ease; }
@keyframes shimmer { to { left: 165%; } }

/* ===== LOGO HOVER ===== */
.logo svg { transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1); }
.logo:hover svg { transform: scale(1.2) rotate(-8deg); }

/* ===== CARD & ROW HOVER LIFTS ===== */
.serve-card { transition: border-color 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; }
.serve-card:hover { border-color: rgba(191,154,64,0.3); transform: translateY(-7px); box-shadow: 0 20px 45px rgba(0,0,0,0.55); }
.diff-item { transition: background 0.35s; }
.diff-item:hover { background: rgba(0,0,0,0.05); }
.pillar-row { transition: background 0.3s; }
.pillar-row:hover { background: rgba(255,255,255,0.025); }

/* Pillar row stagger delays */
.pillar-list .reveal-left:nth-child(1) { transition-delay: 0s; }
.pillar-list .reveal-left:nth-child(2) { transition-delay: 0.15s; }
.pillar-list .reveal-left:nth-child(3) { transition-delay: 0.3s; }
.pillar-list .reveal-left:nth-child(4) { transition-delay: 0.45s; }
.pillar-list .reveal-left:nth-child(5) { transition-delay: 0.6s; }
.pillar-list .reveal-left:nth-child(6) { transition-delay: 0.75s; }

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
  background-size: 200% 100%;
  width: 0%; z-index: 300;
  animation: progressShimmer 2.5s linear infinite;
  transition: width 0.1s linear;
  pointer-events: none;
}
@keyframes progressShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== SVC CARD 3D TILT ===== */
.svc-card { transform-style: preserve-3d; }

/* ===== FORM FOCUS GLOW ===== */
input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 2px rgba(191,154,64,0.12); }

/* ===== PROCESS / ENGAGEMENT MODEL ===== */
.process-section { background: var(--dark); border-top: 1px solid var(--border-d); }
.process-section h2 { max-width: 540px; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem; border-top: 1px solid var(--border-d);
}
.process-step { padding: 2.5rem 2.5rem 2.5rem 0; border-right: 1px solid var(--border-d); }
.process-step:not(:first-child) { padding-left: 2.5rem; }
.process-step:last-child { border-right: none; padding-right: 0; }
.process-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--gold); opacity: 0.18; line-height: 1; margin-bottom: 1.2rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.process-step p  { font-size: 0.88rem; color: rgba(255,255,255,0.38); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-section { background: var(--black); }
#faq { scroll-margin-top: 90px; }
.faq-section h2 { max-width: 520px; margin-bottom: 3.5rem; }
.faq-list { max-width: 800px; }
.faq-item { border-top: 1px solid var(--border-d); }
.faq-item:last-child { border-bottom: 1px solid var(--border-d); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 0; cursor: pointer; gap: 2rem; user-select: none;
}
.faq-q span { font-size: 1rem; font-weight: 500; line-height: 1.4; transition: color 0.2s; }
.faq-q:hover span { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15); position: relative; transition: border-color 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold); top: 50%; left: 50%;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s; }
.faq-item.open .faq-icon { border-color: var(--gold); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1); }
.faq-a p { font-size: 0.95rem; color: rgba(255,255,255,0.42); line-height: 1.88; padding-bottom: 1.8rem; font-weight: 300; }

/* ===== PRIVACY POLICY ===== */
.policy-section { background: var(--black); }
.policy-meta { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 3.5rem; display: block; }
.policy-content { max-width: 780px; }
.policy-content h3 { font-family: var(--serif); font-size: 1.15rem; margin: 2.8rem 0 0.8rem; color: var(--white); }
.policy-content p  { font-size: 0.93rem; color: rgba(255,255,255,0.42); line-height: 1.92; margin-bottom: 0.8rem; font-weight: 300; }
.policy-content ul { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }
.policy-content ul li { font-size: 0.93rem; color: rgba(255,255,255,0.42); line-height: 1.92; font-weight: 300; padding-left: 1.6rem; position: relative; margin-bottom: 0.3rem; }
.policy-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; }
.policy-content strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* Footer links */
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== TABLET INTERMEDIATE (iPad landscape, 900–1100px) ===== */
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(even) { border-right: none; padding-right: 0; }
  .process-step:nth-child(odd):not(:first-child) { padding-left: 0; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--border-d); padding-bottom: 2.5rem; }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-bottom: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  section { padding: 75px 0; }
  .nav-inner { padding: 0 1.5rem; }
  .btn-nav { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--black); gap: 2.5rem; z-index: 100;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-split-right { display: none; }
  .hero-split-left { padding: 4rem 1.5rem; }

  .forces-grid { grid-template-columns: 1fr; border-top: none; }
  .force-col { padding: 2rem 0; border-right: none; border-bottom: 1px solid var(--border-l); }
  .force-col:nth-child(2) { padding-left: 0; }
  .force-col:last-child { padding-left: 0; border-bottom: none; }

  .how-inner, .about-grid, .commitment-inner, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual-box::after { display: none; }
  .svc-grid, .diff-grid, .serve-grid { grid-template-columns: 1fr; }
  .diff-item:nth-child(even) { border-right: none; }
  .diff-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-l); }
  .diff-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 0; border-right: none; border-bottom: 1px solid var(--border-d); }
  .process-step:not(:first-child) { padding-left: 0; }
  .process-step:last-child { border-bottom: none; padding-bottom: 0; }
  .page-hero { padding: 120px 0 70px; }
}
