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

:root {
  --maroon:     #861F41;
  --orange:     #E5751F;
  --mid:        #C04B2A;
  --black:      #0d0d0d;
  --dark:       #111111;
  --dark2:      #1a1a1a;
  --dark3:      #222222;
  --border:     rgba(255,255,255,0.08);
  --text:       #f0ede8;
  --text-muted: #888888;
  --text-dim:   #555555;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; color: var(--orange); margin: 1.5rem 0 0.5rem; font-family: var(--sans); }
em { font-style: italic; color: var(--orange); }
p { margin-bottom: 1rem; color: rgba(240,237,232,0.8); }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 560px; margin: 0.75rem auto 0; }
.section-eyebrow {
  display: inline-block; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--maroon), var(--orange));
  color: #fff; font-family: var(--sans); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.06em; border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.full-width { display: block; width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block; padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.2); color: var(--text);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(229,117,31,0.06); }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 0.75rem 2.5rem; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-grid {
  display: grid; grid-template-columns: repeat(3, 8px);
  grid-template-rows: repeat(3, 8px); gap: 2px;
}
.nav-grid span { border-radius: 1.5px; display: block; }
.nav-grid.small { grid-template-columns: repeat(3, 6px); grid-template-rows: repeat(3, 6px); }

.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-gpg { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: #fff; }
.nav-ent { font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.22em; color: var(--orange); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .nav-cta {
  padding: 0.5rem 1.25rem; border: 1px solid var(--orange);
  color: var(--orange); border-radius: 2px; transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover { background: var(--orange); color: #fff; }
.nav-links .nav-cta.active { background: var(--orange); color: #fff; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.2s, opacity 0.2s; }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: var(--dark2); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1.5rem 2.5rem;
}
.mobile-menu a { padding: 0.75rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 2.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(134,31,65,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134,31,65,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg-grid::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(134,31,65,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(229,117,31,0.07) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.5rem; display: block;
}
.hero-headline { margin-bottom: 1.5rem; color: var(--text); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 0; margin-top: 5rem;
  border-top: 1px solid var(--border); padding-top: 2.5rem;
  flex-wrap: wrap; gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 600;
  color: var(--text); line-height: 1;
}
.stat-plus { color: var(--orange); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 0.4rem; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── INTRO STRIP ─────────────────────────────────────────────────────── */
.intro-strip {
  background: var(--dark2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 3.5rem 2.5rem;
  text-align: center;
}
.intro-strip p {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; color: var(--text); max-width: 780px;
  margin: 0 auto 1rem; line-height: 1.6;
}
.intro-attr { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--orange); }

/* ── SERVICES PREVIEW ────────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.service-card {
  display: flex; flex-direction: column; padding: 2.5rem 2rem;
  background: var(--dark2); border-right: 1px solid var(--border);
  transition: background 0.2s; position: relative;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--dark3); }
.service-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 600;
  color: rgba(134,31,65,0.25); line-height: 1; margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text); }
.service-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.service-arrow {
  display: inline-block; margin-top: 1.5rem; color: var(--orange);
  font-size: 1.1rem; transition: transform 0.2s;
}
.service-card:hover .service-arrow { transform: translateX(4px); }

/* ── CREDIBILITY BAND ────────────────────────────────────────────────── */
.cred-band { background: var(--dark); }
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.cred-item { padding: 0; }
.cred-icon { font-size: 1.2rem; color: var(--orange); margin-bottom: 0.75rem; }
.cred-item h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--text); margin: 0 0 0.5rem; letter-spacing: 0; }
.cred-item p { font-size: 0.85rem; }

/* ── CTA SECTION ─────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(134,31,65,0.15) 0%, rgba(229,117,31,0.1) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 6rem 2.5rem; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { margin-bottom: 2rem; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────── */
.page-hero {
  padding: 10rem 2.5rem 5rem; background: var(--dark);
  border-bottom: 1px solid var(--border); position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(134,31,65,0.1) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.page-hero-content .section-eyebrow { display: block; margin-bottom: 1rem; }
.page-hero-content h1 { color: var(--text); }

/* ── ABOUT PAGE ──────────────────────────────────────────────────────── */
.bio-section { padding-top: 5rem; }
.bio-grid { display: grid; grid-template-columns: 280px 1fr; gap: 5rem; align-items: start; }
.bio-sidebar { position: sticky; top: 100px; }
.bio-portrait {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--orange));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.bio-initials { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: #fff; }
.bio-credentials { display: flex; flex-direction: column; gap: 0.75rem; }
.cred-line { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--text-muted); }
.cred-badge {
  display: inline-block; padding: 2px 8px; background: rgba(134,31,65,0.2);
  border: 1px solid rgba(134,31,65,0.4); border-radius: 2px;
  font-size: 0.65rem; font-weight: 500; color: var(--orange); letter-spacing: 0.06em;
  flex-shrink: 0;
}
.bio-body h2 { margin-bottom: 0.25rem; }
.bio-title-line { font-size: 0.85rem; color: var(--orange); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.bio-body h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--text); }
.bio-body p { font-size: 0.95rem; }

/* TIMELINE */
.timeline-section { background: var(--dark2); padding: 6rem 2rem; }
.timeline-section .section-header { max-width: 1100px; margin: 0 auto 3rem; text-align: center; }
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 110px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--maroon), var(--orange));
}
.tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; padding: 0 0 3rem 0; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  color: var(--orange); letter-spacing: 0.04em; padding-top: 0.2rem;
  text-align: right; padding-right: 1.5rem;
}
.tl-content { padding-left: 2rem; position: relative; }
.tl-content::before {
  content: ''; position: absolute; left: -0.45rem; top: 0.55rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--dark2);
}
.tl-content h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--text); margin: 0 0 0.4rem; letter-spacing: 0; }
.tl-content p { font-size: 0.85rem; }

/* ── SERVICES DETAIL PAGE ────────────────────────────────────────────── */
.services-detail { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.service-detail-item { padding: 4rem 0; }
.sd-header { display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 2.5rem; }
.sd-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 600;
  color: rgba(134,31,65,0.2); line-height: 1; flex-shrink: 0;
}
.sd-header h2 { color: var(--text); }
.sd-body { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.sd-lead { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--text); margin-bottom: 1.25rem; }
.sd-text ul { padding-left: 1.25rem; margin-top: 0.5rem; }
.sd-text ul li { font-size: 0.9rem; color: rgba(240,237,232,0.75); padding: 0.3rem 0; position: relative; }
.sd-text ul li::before { content: '—'; position: absolute; left: -1.25rem; color: var(--orange); }
.sd-aside { display: flex; flex-direction: column; gap: 1rem; }
.sd-highlight {
  background: var(--dark2); border: 1px solid var(--border);
  border-left: 3px solid var(--orange); padding: 1.25rem 1.5rem;
  border-radius: 2px;
}
.sd-hl-num { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--orange); line-height: 1; }
.sd-hl-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.4; }
.sd-hl-label-lg { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text); line-height: 1.3; }
.sd-hl-sub { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; }
.sd-divider { border: none; border-top: 1px solid var(--border); }

/* ── CONTACT PAGE ────────────────────────────────────────────────────── */
.contact-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-intro { font-family: var(--serif); font-size: 1.15rem; color: var(--text); line-height: 1.6; margin-bottom: 2.5rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-method {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--dark2); border: 1px solid var(--border);
  border-radius: 4px; transition: border-color 0.2s;
}
a.contact-method:hover { border-color: var(--orange); }
.cm-icon { font-size: 1rem; color: var(--orange); margin-top: 2px; flex-shrink: 0; width: 18px; text-align: center; }
.cm-body { display: flex; flex-direction: column; }
.cm-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.cm-value { font-size: 0.9rem; color: var(--text); }
.contact-note {
  border-left: 3px solid var(--maroon); padding-left: 1.25rem;
}
.contact-note p { font-size: 0.85rem; font-style: italic; color: var(--text-muted); }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-muted); }
.form-optional { color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--sans); font-size: 0.9rem;
  padding: 0.75rem 1rem; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s; outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: rgba(229,117,31,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: -0.25rem; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--black); border-top: 1px solid var(--border); padding: 3.5rem 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 3rem; align-items: start; margin-bottom: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 2rem; justify-content: center; align-items: center; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-contact { display: flex; flex-direction: column; gap: 0.3rem; align-items: flex-end; }
.footer-contact a, .footer-contact span { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.footer-bottom span { font-size: 0.72rem; color: var(--text-dim); }

/* ── THANK YOU PAGE ──────────────────────────────────────────────────── */
.thanks-section {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; padding: 8rem 2rem;
}
.thanks-inner { text-align: center; max-width: 520px; }
.thanks-icon {
  font-size: 2.5rem; color: var(--orange); display: block; margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.thanks-inner h1 { margin-bottom: 1rem; }
.thanks-inner p { margin-bottom: 2rem; color: var(--text-muted); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
  .sd-body { grid-template-columns: 1fr; }
  .sd-aside { flex-direction: row; flex-wrap: wrap; }
  .sd-highlight { flex: 1; min-width: 180px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-contact { align-items: flex-start; }
  .timeline::before { left: 80px; }
  .tl-item { grid-template-columns: 80px 1fr; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .cred-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .sd-header { flex-direction: column; gap: 0.5rem; }
  .sd-num { font-size: 2.5rem; }
  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .tl-content::before { display: none; }
  .tl-content { padding-left: 0; }
}
