/* ============================================
   OLIVE STONE LLC — STYLESHEET
   Aesthetic: Refined luxury editorial
   Palette: Greyscale — white + charcoal
   ============================================ */

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

:root {
  --forest:   #111111;
  --forest-md:#1e1e1e;
  --forest-lt:#2a2a2a;
  --cream:    #ffffff;
  --cream-dk: #f4f4f4;
  --gold:     #b8965a;
  --gold-lt:  #d4af6e;
  --gold-pale:#f0ddb0;
  --stone:    #888888;
  --stone-lt: #aaaaaa;
  --white:    #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dk); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 28px;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-heading.centered { text-align: center; }
.section-heading.light { color: var(--cream); }
.section-heading.light em { color: var(--gold-lt); }

.body-text {
  font-size: 0.98rem;
  color: #444444;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 540px;
}
.mt { margin-top: 32px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); transform: translateY(-2px); }


/* ============ NAV ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px !important;
  width: auto !important;
  max-width: 190px !important;
  display: block;
  object-fit: contain;
}
.logo-mark {
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--forest) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(17,17,17,0.98);
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.25s;
}
.mobile-link:hover { color: var(--gold-lt); }


/* ============ HERO ============ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    #0a0a0a 0%,
    #141414 40%,
    #1e1e1e 70%,
    #111111 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-heading em { font-style: italic; color: var(--gold-lt); }
.hero-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Gold accent line behind hero content */
#hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}


/* ============ STATEMENT BAND ============ */
.statement-band {
  background: var(--forest);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.statement-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.statement-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
}


/* ============ ADVISORY ============ */
.section-advisory {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 16px;
}
.advisory-left { padding-top: 8px; }
.advisory-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.card-icon {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
}


/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--forest-lt);
  padding: 64px 0;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-num span {
  font-size: 2rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-lt);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}


/* ============ VALUATION ============ */
.section-valuation {
  padding: 120px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.section-valuation::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.valuation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.val-image-block {
  position: relative;
  padding: 60px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
}
.val-accent-line {
  position: absolute;
  top: 0; left: 40px;
  width: 60px; height: 3px;
  background: var(--gold);
}
.val-quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
}
.val-attribution {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.valuation-text-col .section-label { margin-top: 0; }
.valuation-text-col .section-heading { color: var(--cream); }
.valuation-text-col .section-heading em { color: var(--gold-lt); }
.valuation-text-col .body-text { color: rgba(255,255,255,0.72); }

.val-services { margin-top: 32px; }
.val-service-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}
.val-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}


/* ============ PROCESS ============ */
.section-process {
  padding: 120px 0;
  background: var(--cream-dk);
}
.section-process .section-label { text-align: center; }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 0 10px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.83rem;
  color: var(--stone);
  line-height: 1.7;
}
.process-connector {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin-top: 42px;
}


/* ============ ABOUT ============ */
.section-about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.about-values { padding-top: 60px; }
.value-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.value-item:first-child { padding-top: 0; }
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
}


/* ============ CONTACT ============ */
.section-contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; }
.contact-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    145deg,
    #0a0a0a 0%,
    #141414 45%,
    #1a1a1a 100%
  );
}
.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.section-label.light { color: var(--gold); }
.contact-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.8;
}
.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px 40px;
  max-width: 340px;
  flex: 1;
  text-align: center;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.contact-card-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(120,120,120,0.4);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.contact-link:hover { color: var(--gold-pale); border-color: var(--gold-pale); }

.contact-schedule-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 11px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s, transform 0.25s var(--ease);
}
.contact-schedule-btn:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

.contact-location {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}


/* ============ FOOTER ============ */
.site-footer {
  background: #111111;
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.footer-inner .nav-logo,
.footer-inner .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .advisory-grid { grid-template-columns: 1fr; gap: 60px; }
  .advisory-right { grid-template-columns: 1fr 1fr; }
  .valuation-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { padding-top: 0; }
  .stat-divider { display: none; }
  .process-steps { gap: 20px; }
  .process-connector { display: none; }
  .process-step { max-width: 45%; }
}

@media (max-width: 680px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 80px; }
  .advisory-right { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: column; align-items: center; }
  .process-step { max-width: 100%; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .section-advisory, .section-valuation, .section-process, .section-about, .section-contact {
    padding: 80px 0;
  }
}
