/* ========================================================================
   RAHUL YADAV, ADVOCATE — Editorial Legal Aesthetic
   Palette: Deep Navy + Cream + Burnished Gold + Burgundy accent
   Typography: Cormorant Garamond (display) · Cinzel (eyebrows) · Inter (body)
   ======================================================================== */

:root {
  --navy:        #1a2332;
  --navy-deep:   #0f1825;
  --navy-soft:   #2a3548;
  --cream:       #f5f0e6;
  --cream-soft:  #faf6ed;
  --paper:       #fdfaf2;
  --gold:        #c9a961;
  --gold-deep:   #a88a45;
  --gold-light:  #e0c98a;
  --burgundy:    #6b1d2a;
  --ink:         #1a1a1a;
  --ink-soft:    #4a4a4a;
  --ink-mute:    #8a8a8a;
  --line:        rgba(26,35,50,0.12);
  --line-strong: rgba(26,35,50,0.25);

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-accent:  'Cinzel', 'Trajan Pro', serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--navy-deep); }

/* ========================================================================
   TYPOGRAPHY UTILITIES
   ======================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--f-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}

.section-sub {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.55;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 var(--gutter);
}
.section-head .section-sub { margin: 0 auto; }

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--f-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(201,169,97,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
}
.btn-block { width: 100%; }

/* ========================================================================
   HEADER / NAVIGATION
   ======================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 250, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(253, 250, 242, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 30px -10px rgba(26,35,50,0.15);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  border: 1px solid var(--gold);
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201,169,97,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: var(--f-accent);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--navy-deep); }
.nav-link:hover::after { width: 100%; }
.nav-link--active { color: var(--navy-deep); }
.nav-link--active::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 0.75rem 1.4rem !important;
  font-family: var(--f-accent);
  font-size: 11px !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  padding: 9rem var(--gutter) 6rem;
  background:
    radial-gradient(ellipse at top left, rgba(201,169,97,0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,35,50,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,35,50,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-content { animation: heroSlide 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  margin: 1rem 0 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 8px;
  background: rgba(201,169,97,0.25);
  z-index: -1;
}

.hero-lead {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Hero Portrait */
.hero-portrait { position: relative; animation: heroSlide 1.1s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.portrait-frame {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  aspect-ratio: 4/5;
  background: var(--navy);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.95);
  mix-blend-mode: normal;
}
.portrait-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep);
  box-shadow: 0 8px 30px -12px rgba(26,35,50,0.25);
}
.portrait-badge svg { color: var(--gold-deep); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.5; }
}

/* ========================================================================
   MARQUEE
   ======================================================================== */
.marquee {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
}
.marquee-track span:nth-child(even) { color: var(--gold); font-style: normal; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================================================
   SERVICES
   ======================================================================== */
.services {
  padding: 7rem var(--gutter);
  background: var(--paper);
  position: relative;
}
.service-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 3rem 2.25rem 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 25px 60px -25px rgba(26,35,50,0.25);
  background: var(--paper);
}
.service-card:hover::before { width: 100%; }
.service-card--feature {
  background: var(--navy);
  color: var(--cream);
}
.service-card--feature h3 { color: var(--cream); }
.service-card--feature p { color: rgba(245,240,230,0.85); }
.service-card--feature .service-num { color: var(--gold); }
.service-card--feature .service-list li::before { background: var(--gold); }
.service-card--feature .service-list li { color: rgba(245,240,230,0.85); border-color: rgba(245,240,230,0.15); }
.service-card--feature .service-icon { color: var(--gold); }
.service-card--feature:hover { background: var(--navy-deep); }

.service-num {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.service-card p { color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.65; }
.service-list { list-style: none; }
.service-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
}
.service-list li:first-child { border-top: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px;
  height: 1px;
  background: var(--gold-deep);
}

/* ========================================================================
   ABOUT
   ======================================================================== */
.about {
  padding: 7rem var(--gutter);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text .section-title { text-align: left; }
.about-text .eyebrow { margin-bottom: 1rem; }
.about-lead {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--navy-deep);
  margin: 1rem 0 1.5rem;
  font-style: italic;
}
.about-text p { color: var(--ink-soft); margin-bottom: 1.25rem; }

.credentials {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.cred-label {
  display: block;
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.cred-value {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-deep);
}

.about-quote {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid var(--gold);
  margin-top: 2rem;
}
.about-quote::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,169,97,0.2);
  pointer-events: none;
}
.quote-mark {
  width: 50px;
  height: 50px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-quote blockquote {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-quote cite {
  font-family: var(--f-accent);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================================================
   PROCESS
   ======================================================================== */
.process {
  padding: 7rem var(--gutter);
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process .section-title { color: var(--cream); }
.process .section-title em { color: var(--gold); }
.process .eyebrow { color: var(--gold); }

.process-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(201,169,97,0.2);
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(201,169,97,0.2);
  position: relative;
  transition: background 0.4s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--navy-deep); }
.step-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.process-step h4 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.process-step p {
  font-size: 0.95rem;
  color: rgba(245,240,230,0.7);
  line-height: 1.55;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  padding: 7rem var(--gutter);
  background: var(--paper);
}
.testimonial-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--cream-soft);
  padding: 2.25rem 2rem;
  border-left: 3px solid var(--gold);
  transition: all 0.4s ease;
  position: relative;
}
.testimonial:hover {
  background: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -25px rgba(26,35,50,0.2);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-family: var(--f-display);
  font-size: 5rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
}
.testimonial figcaption { border-top: 1px solid var(--line); padding-top: 1rem; }
.t-name {
  display: block;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.t-role {
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq {
  padding: 7rem var(--gutter);
  background: var(--cream);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}
.faq-item summary {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--burgundy); }
.faq-item p {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 70ch;
}

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact {
  padding: 7rem var(--gutter);
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact .section-title { color: var(--cream); text-align: left; }
.contact .section-title em { color: var(--gold); }
.contact .eyebrow { color: var(--gold); }

.contact-lead {
  font-family: var(--f-display);
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(245,240,230,0.8);
  margin-bottom: 3rem;
  font-style: italic;
}

.contact-items { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.contact-ico svg { width: 20px; height: 20px; }
.contact-label {
  display: block;
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-value {
  display: block;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.4;
}
a.contact-value:hover { color: var(--gold); }

.social-row { display: flex; gap: 0.75rem; padding-top: 2rem; border-top: 1px solid rgba(201,169,97,0.2); }
.social-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,240,230,0.2);
  color: var(--cream);
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

/* Form */
.contact-form {
  background: var(--cream);
  color: var(--ink);
  padding: 2.5rem;
  border: 1px solid var(--gold);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,169,97,0.3);
  pointer-events: none;
}
.form-title {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.field { margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--f-body);
  font-size: 15px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: all 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 1rem;
}
.form-note a { color: var(--burgundy); text-decoration: underline; }
.form-success {
  background: rgba(34,139,34,0.1);
  border: 1px solid #228b22;
  color: #155a15;
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245,240,230,0.7);
  padding: 5rem var(--gutter) 2rem;
  position: relative;
  border-top: 1px solid var(--gold-deep);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}
.footer-col h5 {
  font-family: var(--f-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li { line-height: 1.5; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,97,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: rgba(245,240,230,0.55);
}
.footer-links { display: flex; gap: 0.75rem; align-items: center; }
.footer-links a:hover { color: var(--gold); }

.bci-notice {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245,240,230,0.6);
}
.bci-notice strong { color: var(--gold); font-weight: 500; }

/* ========================================================================
   WHATSAPP FLOAT
   ======================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 25px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ========================================================================
   PRIVACY POLICY PAGE
   ======================================================================== */
.page-policy { background: var(--paper); }
.policy-hero {
  padding: 9rem var(--gutter) 4rem;
  background:
    radial-gradient(ellipse at top, rgba(201,169,97,0.1), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.policy-hero-inner { max-width: 800px; margin: 0 auto; }
.policy-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.05;
  margin: 1rem 0;
  letter-spacing: -0.015em;
}
.policy-hero h1 em { font-style: italic; color: var(--burgundy); }
.policy-hero p {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.policy-updated {
  display: inline-block;
  font-family: var(--f-accent);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
}

.policy { padding: 5rem var(--gutter); }
.policy-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 100px;
  padding: 1.5rem;
  background: var(--cream-soft);
  border: 1px solid var(--line);
}
.policy-toc h4 {
  font-family: var(--f-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.policy-toc ul { list-style: none; }
.policy-toc li { margin-bottom: 0.55rem; }
.policy-toc a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.25s ease;
  display: block;
  padding-left: 0;
}
.policy-toc a:hover { color: var(--burgundy); padding-left: 6px; }

.policy-body section { margin-bottom: 3rem; scroll-margin-top: 100px; }
.policy-body h2 {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.policy-body h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--burgundy);
  margin: 1.5rem 0 0.75rem;
}
.policy-body p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.policy-body ul { margin: 1rem 0 1rem 1.25rem; }
.policy-body ul li {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.policy-body ul li::marker { color: var(--gold-deep); }
.policy-body strong { color: var(--navy-deep); font-weight: 600; }

.contact-card {
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.contact-card p { margin-bottom: 0.75rem; }
.contact-card a { color: var(--burgundy); text-decoration: underline; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding-top: 2rem; }
  .hero-portrait { order: -1; max-width: 380px; margin: 0 auto; }
  .portrait-frame { margin: 0 auto; }
  .hero { padding-top: 7rem; min-height: auto; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid rgba(201,169,97,0.2); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .policy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .policy-toc { position: static; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { color: var(--cream); font-size: 18px; font-family: var(--f-display); }
  .nav-links .nav-link::after { background: var(--gold); }
  .nav-links .nav-cta {
    background: var(--gold);
    color: var(--navy-deep) !important;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    padding: 1rem !important;
    font-size: 12px !important;
  }
  .nav-toggle { display: flex; z-index: 1001; }
  .brand-sub { display: none; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.4rem; }
  .brand-name { font-size: 1.1rem; }

  .hero { padding: 6rem 1.25rem 4rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; text-align: left; }
  .portrait-frame { max-width: 300px; }
  .portrait-frame::after { width: 50px; height: 50px; }
  .scroll-indicator { display: none; }

  .services, .about, .process, .testimonials, .faq, .contact { padding: 4.5rem 1.25rem; }
  .section-head { margin-bottom: 2.5rem; padding: 0; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(201,169,97,0.2); }
  .process-step:last-child { border-bottom: none; }
  .credentials { grid-template-columns: 1fr; gap: 1rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 1.75rem; }

  .marquee-track { font-size: 1rem; gap: 1.5rem; }
  .about-quote { padding: 2rem 1.5rem; }
  .about-quote blockquote { font-size: 1.2rem; }

  .policy { padding: 3rem 1.25rem; }
  .policy-hero { padding: 7rem 1.25rem 3rem; }
  .policy-body h2 { font-size: 1.55rem; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ========================================================================
   SCROLL ANIMATIONS
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
