@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #C8321A;
  --red-dark: #A82814;
  --dark: #0D0D0D;
  --mid: #3D3D3D;
  --light: #787878;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --border: #E4E0D8;
  --border-light: #F0EDE8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--dark); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); padding: 0 6%; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--mid); transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--dark); }
.nav-links .nav-cta { background: var(--red); color: var(--white); padding: 0.55rem 1.35rem; border-radius: 3px; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s; }
.nav-links .nav-cta:hover { background: var(--red-dark); color: var(--white); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 6%; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.95rem; font-weight: 500; color: var(--mid); padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--dark); }

/* LAYOUT */
.inner { max-width: 1180px; margin: 0 auto; padding: 0 6%; }
section { padding: 88px 0; }
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.75rem); line-height: 1.2; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 1.25rem; }
.section-body { font-size: 1rem; color: var(--mid); line-height: 1.8; max-width: 580px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* HERO */
.hero-wrap { background: var(--dark); padding: 100px 0 88px; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 6%; display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center; }
.hero-left { }
.hero-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 1.75rem; }
.hero-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.hero-h1 { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.15; letter-spacing: -0.01em; color: var(--white); margin-bottom: 1.5rem; font-weight: 700; }
.hero-h1 em { font-style: italic; color: #E8A89A; }
.hero-sub { font-size: 1rem; color: #A8A8A0; line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-right { }
.hero-card { background: #1A1A1A; border: 1px solid #2A2A2A; padding: 2rem; }
.hero-card-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #666; margin-bottom: 1.25rem; }
.hero-card-item { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1rem 0; border-bottom: 1px solid #2A2A2A; }
.hero-card-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--red); margin-top: 5px; }
.hero-card-text { font-size: 0.875rem; color: #C0C0B8; line-height: 1.6; }
.hero-card-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.2rem; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--red); color: var(--white); padding: 0.8rem 1.875rem; font-size: 0.825rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 3px; transition: background 0.2s; cursor: pointer; border: none; font-family: var(--sans); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost-light { display: inline-block; color: #C0C0B8; padding: 0.8rem 1.875rem; font-size: 0.825rem; font-weight: 500; border: 1.5px solid #333; border-radius: 3px; transition: border-color 0.2s, color 0.2s; letter-spacing: 0.01em; }
.btn-ghost-light:hover { border-color: #666; color: var(--white); }
.btn-ghost { display: inline-block; color: var(--dark); padding: 0.8rem 1.875rem; font-size: 0.825rem; font-weight: 500; border: 1.5px solid var(--border); border-radius: 3px; transition: border-color 0.2s; letter-spacing: 0.01em; }
.btn-ghost:hover { border-color: var(--dark); }

/* ADVANTAGES */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); margin-top: 2.5rem; }
.adv-card { background: var(--white); padding: 2.25rem 2rem; }
.adv-icon { width: 36px; height: 36px; background: #FBF0EE; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.adv-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.75; }
.adv-title { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.adv-body { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); margin-top: 2.5rem; }
.service-card { background: var(--bg); padding: 2.5rem 2.25rem; display: flex; flex-direction: column; gap: 0.875rem; transition: background 0.2s; }
.service-card:hover { background: var(--white); }
.service-card-num { font-size: 0.7rem; font-weight: 700; color: var(--light); letter-spacing: 0.12em; }
.service-card-title { font-family: var(--serif); font-size: 1.3rem; line-height: 1.3; color: var(--dark); font-weight: 600; }
.service-card-body { font-size: 0.875rem; color: var(--mid); line-height: 1.75; flex: 1; }
.service-card-link { font-size: 0.775rem; font-weight: 600; color: var(--red); letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.service-card-link:hover { gap: 0.7rem; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }

/* CHECKLIST */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.875rem; font-size: 0.9rem; color: var(--mid); line-height: 1.65; }
.check-list li::before { content: ''; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--red); margin-top: 7px; }

/* STAT STACK */
.stat-stack { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.stat-box { padding: 1.75rem 2rem; background: var(--white); }
.stat-num { font-family: var(--serif); font-size: 2.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.stat-label { font-size: 0.8rem; color: var(--light); line-height: 1.5; }

/* INFO BOX */
.info-box { background: var(--white); border: 1px solid var(--border); padding: 2rem; }
.info-box-title { font-size: 0.7rem; font-weight: 700; color: var(--light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.info-row { padding-bottom: 0.875rem; border-bottom: 1px solid var(--border-light); margin-bottom: 0.875rem; }
.info-row:last-child { border: none; padding: 0; margin: 0; }
.info-row-label { font-size: 0.775rem; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.info-row-value { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* NOTE BOX */
.note-box { padding: 1.375rem 1.75rem; background: #FBF8F5; border: 1px solid var(--border); border-left: 3px solid var(--red); margin-top: 2rem; }
.note-box p { font-size: 0.875rem; color: var(--mid); line-height: 1.75; margin: 0; }

/* TABS */
.tabs-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
.tab-btn { background: none; border: none; padding: 0.875rem 1.5rem; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--light); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; letter-spacing: 0.01em; }
.tab-btn.active { color: var(--dark); border-bottom-color: var(--red); font-weight: 600; }
.tab-btn:hover { color: var(--dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* FLOW BAR */
.flow-bar { display: flex; align-items: center; background: var(--white); border: 1px solid var(--border); padding: 1.5rem 1.25rem; margin-bottom: 2.5rem; }
.flow-step { flex: 1; text-align: center; }
.flow-num { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
.flow-label { font-size: 0.725rem; font-weight: 500; color: var(--dark); line-height: 1.3; }
.flow-arrow { font-size: 1rem; color: var(--border); flex-shrink: 0; padding: 0 2px; }

/* STEPS */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem; padding: 1.875rem 0; border-bottom: 1px solid var(--border-light); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--red); line-height: 1; padding-top: 3px; }
.step-title { font-size: 0.975rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.step-body { font-size: 0.875rem; color: var(--mid); line-height: 1.8; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 2.5rem; }
.team-card { background: var(--white); padding: 2.5rem; display: flex; gap: 2rem; align-items: start; }
.team-photo { width: 100px; height: 120px; object-fit: cover; object-position: center top; flex-shrink: 0; }
.team-photo-placeholder { width: 100px; height: 120px; background: var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--light); }
.team-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.25rem; }
.team-role { font-size: 0.725rem; font-weight: 700; color: var(--red); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.875rem; line-height: 1.5; }
.team-bio { font-size: 0.85rem; color: var(--mid); line-height: 1.8; }

/* OFFICE GRID */
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 2.5rem; }
.office-photo { aspect-ratio: 16/10; object-fit: cover; width: 100%; display: block; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-item { display: flex; flex-direction: column; gap: 0.3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item-label { font-size: 0.7rem; font-weight: 700; color: var(--light); letter-spacing: 0.12em; text-transform: uppercase; }
.contact-item-value { font-size: 0.925rem; color: var(--dark); line-height: 1.65; }
.contact-item-value a:hover { color: var(--red); }
.form-wrap { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.725rem; font-weight: 600; color: var(--mid); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 1.5px solid var(--border); border-radius: 3px; padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.875rem; color: var(--dark); transition: border-color 0.2s; outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--dark); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* PAGE HERO */
.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); background: var(--white); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; letter-spacing: -0.01em; max-width: 680px; margin-bottom: 1rem; font-weight: 700; }
.page-hero p { font-size: 1rem; color: var(--mid); max-width: 540px; line-height: 1.8; }

/* SERVICE NAV */
.service-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 6%; display: flex; gap: 0; overflow-x: auto; position: sticky; top: 68px; z-index: 90; }
.service-nav a { font-size: 0.825rem; font-weight: 500; color: var(--light); padding: 1rem 1.5rem; border-bottom: 2px solid transparent; white-space: nowrap; display: block; transition: all 0.2s; letter-spacing: 0.01em; }
.service-nav a:hover { color: var(--dark); border-bottom-color: var(--red); }

/* STAT ROW */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.stat-cell { background: var(--white); padding: 2rem 1.75rem; }
.stat-cell-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.stat-cell-label { font-size: 0.775rem; color: var(--light); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.5; }

/* PRINCIPLES */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); margin-top: 2.5rem; }
.principle-card { background: var(--white); padding: 2rem 1.875rem; }
.principle-label { font-size: 0.7rem; font-weight: 700; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.625rem; }
.principle-body { font-size: 0.875rem; color: var(--mid); line-height: 1.75; }

/* CTA BAND */
.cta-band { background: var(--dark); padding: 80px 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 1rem; font-weight: 700; letter-spacing: -0.01em; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band p { font-size: 0.975rem; color: #A8A8A0; max-width: 440px; margin: 0 auto 2rem; line-height: 1.8; }

/* FOOTER */
footer { background: #080808; color: var(--white); padding: 3.5rem 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 6% 3rem; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; border-bottom: 1px solid #1A1A1A; }
.footer-brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.625rem; }
.footer-brand-tagline { font-size: 0.825rem; color: #555; line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 0.675rem; font-weight: 700; color: #444; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.125rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.85rem; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: #CCC; }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding: 1.5rem 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.75rem; color: #333; line-height: 1.6; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.75rem; color: #333; transition: color 0.2s; }
.footer-legal-links a:hover { color: #888; }

/* CALENDLY */
.calendly-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000; align-items: center; justify-content: center; }
.calendly-overlay.open { display: flex; }
.calendly-modal { background: var(--white); width: 90%; max-width: 920px; height: 86vh; position: relative; border-radius: 4px; overflow: hidden; }
.calendly-modal iframe { width: 100%; height: 100%; border: none; }
.calendly-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--mid); z-index: 10; line-height: 1; font-family: var(--sans); }

/* LEGAL */
.legal-content { max-width: 780px; margin: 0 auto; padding: 64px 6%; }
.legal-content h1 { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.legal-content h2 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin: 2.5rem 0 0.75rem; }
.legal-content p, .legal-content li { font-size: 0.9rem; color: var(--mid); line-height: 1.85; margin-bottom: 0.75rem; }
.legal-content ul { padding-left: 1.25rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2.5rem; }
  .adv-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 5%; }
  .inner { padding: 0 5%; }
  section { padding: 64px 0; }
  .page-hero { padding: 56px 0 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .tabs-nav { overflow-x: auto; }
  .flow-label { font-size: 0.65rem; }
  .hero-wrap { padding: 72px 0 64px; }
  .services-grid { grid-template-columns: 1fr; }
}
