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

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

:root {
  --ink: #0e0b08;
  --paper: #f5f0e8;
  --cream: #ede7d9;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --rust: #8b3a2a;
  --muted: #6b6358;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ink); color: var(--paper); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(14,11,8,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #8a6400; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: #111111; opacity: 1; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.55rem 1.4rem; border: none; cursor: pointer; text-decoration: none; transition: background 0.2s; display: inline-block; }
.nav-cta:hover { background: var(--gold-light); }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--gold); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { display: inline-block; background: none; color: var(--paper); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1px solid rgba(245,240,232,0.3); cursor: pointer; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { display: inline-block; background: var(--ink); color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; border: none; cursor: pointer; transition: background 0.2s; }
.btn-dark:hover { background: #1a1410; }
.btn-outline-dark { display: inline-block; background: none; color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1.5px solid var(--ink); cursor: pointer; transition: background 0.2s; }
.btn-outline-dark:hover { background: rgba(14,11,8,0.08); }

/* ── SECTION LABELS ── */
.section-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
.section-label.rust { color: var(--rust); }
.section-label.rust::before { background: var(--rust); }

/* ── CTA BAR ── */
.cta-bar { background: var(--gold); padding: 4rem 3rem; text-align: center; }
.cta-bar h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--ink); margin-bottom: 0.75rem; }
.cta-bar p { font-size: 1rem; color: rgba(14,11,8,0.7); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-bar .btn-dark { margin: 0 0.4rem; }
.cta-bar .btn-outline-dark { margin: 0 0.4rem; }

/* ── FOOTER ── */
footer { background: #ffffff; border-top: 1px solid rgba(14,11,8,0.12); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.65rem; }
.footer-logo img { height: 36px; width: auto; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #8a6400; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-copy { font-size: 0.75rem; color: #444444; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.75rem; color: #111111; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── PAGE FADE IN ── */
main { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── HERO (HOME) ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 5rem 2.5rem 5rem 3rem; gap: 4rem;
  border-bottom: 1px solid rgba(184,134,11,0.15);
  position: relative; overflow: hidden;
}
.hero::before {
  content: 'GOTHIC'; position: absolute; right: -1rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Playfair Display', serif; font-size: 11rem; font-weight: 900;
  color: rgba(184,134,11,0.04); white-space: nowrap; pointer-events: none;
}
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); display: block; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.08; color: var(--paper); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: rgba(245,240,232,0.68); margin-bottom: 2.5rem; max-width: 460px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(245,240,232,0.1); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.85); margin-top: 0.3rem; }

.press-visual { background: transparent; padding: 2.5rem; }
.press-visual-inner { background: var(--ink); padding: 2rem; }
.press-tagline { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); text-align: center; border-bottom: 1px solid rgba(184,134,11,0.35); padding-bottom: 1rem; margin-bottom: 1rem; font-style: italic; line-height: 1.4; }
.press-ornament { text-align: center; color: var(--gold); opacity: 0.45; margin: 0.6rem 0; letter-spacing: 0.6em; font-size: 1rem; }
.press-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.75rem; }
.press-service-item { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); display: flex; align-items: center; gap: 0.4rem; }
.press-service-item::before { content: '▸'; color: var(--gold); font-size: 0.55rem; }
.press-established { text-align: center; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.8); }

/* ── SERVICES STRIP ── */
.services-strip { background: var(--paper); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(14,11,8,0.1); }
.strip-item { padding: 2rem 1.5rem; border-right: 1px solid rgba(14,11,8,0.1); text-align: center; }
.strip-item:last-child { border-right: none; }
.strip-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.strip-title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.strip-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ── WHY SECTION ── */
.why-section { padding: 5rem 3rem; }
.why-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--paper); margin-bottom: 0.5rem; line-height: 1.15; }
.why-section h2 em { font-style: italic; color: var(--gold); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; margin-top: 3rem; background: rgba(184,134,11,0.12); border: 1px solid rgba(184,134,11,0.12); }
.why-card { background: var(--ink); padding: 2.25rem; }
.why-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(184,134,11,0.12); line-height: 1; margin-bottom: 0.5rem; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--paper); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: rgba(245,240,232,0.62); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonial-section { background: var(--paper); padding: 5rem 3rem; }
.testimonial-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--ink); margin-bottom: 2.5rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { border-left: 3px solid var(--gold); padding-left: 1.25rem; }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 1rem; }
.testimonial-author { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── ABOUT ── */
.about-hero { background: var(--cream); padding: 5rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-hero-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.75rem; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--ink); line-height: 1.1; margin-bottom: 1.25rem; }
.about-hero h1 em { font-style: italic; color: var(--rust); }
.about-hero p { font-size: 1rem; color: #4a4039; line-height: 1.78; margin-bottom: 1rem; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 0; width: 1px; background: rgba(184,134,11,0.35); }
.timeline-item { position: relative; margin-bottom: 2.25rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.38rem; top: 0.35rem; width: 9px; height: 9px; background: var(--gold); border-radius: 50%; }
.timeline-year { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.timeline-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.values-section { background: var(--ink); padding: 5rem 3rem; }
.values-section h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--paper); margin-bottom: 0.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.value-card { border-top: 2px solid var(--gold); padding-top: 1.5rem; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--paper); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.87rem; color: rgba(245,240,232,0.6); line-height: 1.75; }

/* ── PORTFOLIO ── */
.portfolio-hero { background: var(--ink); padding: 5rem 3rem 2.5rem; text-align: center; border-bottom: 1px solid rgba(184,134,11,0.15); }
.portfolio-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--paper); margin-bottom: 0.75rem; }
.portfolio-hero h1 em { font-style: italic; color: var(--gold); }
.portfolio-hero p { color: rgba(245,240,232,0.88); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; font-size: 1rem; }
.filter-bar { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; padding-bottom: 0.5rem; }
.filter-btn { background: none; border: 1px solid rgba(184,134,11,0.3); color: var(--paper); font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1.1rem; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(184,134,11,0.1); gap: 1.5px; }
.portfolio-item { background: var(--ink); padding: 2rem; transition: background 0.2s; }
.portfolio-item:hover { background: #161008; }
.portfolio-visual { height: 130px; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(184,134,11,0.18); position: relative; overflow: hidden; }
.pv-invites { background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(184,134,11,0.05) 8px, rgba(184,134,11,0.05) 16px); }
.pv-banners { background: repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(139,58,42,0.07) 5px, rgba(139,58,42,0.07) 10px); }
.pv-biz { background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(184,134,11,0.04) 10px, rgba(184,134,11,0.04) 20px); }
.pv-screen { background: radial-gradient(circle at center, rgba(184,134,11,0.12), transparent 70%); }
.pv-label { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 700; color: var(--gold); opacity: 0.75; border: 1px solid rgba(184,134,11,0.3); padding: 0.35rem 0.8rem; }
.portfolio-category { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.portfolio-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--paper); margin-bottom: 0.4rem; }
.portfolio-desc { font-size: 0.82rem; color: rgba(245,240,232,0.55); line-height: 1.65; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--nav-h)); }
.contact-left { background: var(--gold); padding: 5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.contact-left h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--ink); line-height: 1.1; margin-bottom: 1.25rem; }
.contact-left > p { font-size: 1rem; color: rgba(14,11,8,0.7); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; background: none; }
.contact-info-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(14,11,8,0.65); margin-bottom: 0.15rem; font-weight: 700; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; color: var(--ink); line-height: 1.5; }
.contact-hours { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(14,11,8,0.18); }
.contact-hours-title { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(14,11,8,0.5); margin-bottom: 0.75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--ink); padding: 0.3rem 0; border-bottom: 1px solid rgba(14,11,8,0.1); }

.contact-right { background: #f9f7f4; padding: 5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.contact-right h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.contact-right .sub { font-size: 0.88rem; color: rgba(14,11,8,0.65); margin-bottom: 2rem; line-height: 1.6; }
.form-group { margin-bottom: 1.2rem; }
.form-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(14,11,8,0.6); display: block; margin-bottom: 0.4rem; font-weight: 600; }
.form-input { width: 100%; background: #ffffff; border: 1px solid rgba(14,11,8,0.2); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; appearance: none; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(14,11,8,0.35); }
textarea.form-input { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; background: var(--gold); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem; cursor: pointer; border: none; margin-top: 0.5rem; transition: background 0.2s; }
.btn-submit:hover { background: var(--gold-light); }
.success-msg { display: none; background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.4); color: var(--gold); padding: 1rem; font-size: 0.88rem; text-align: center; margin-top: 1rem; line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; }
  .hero::before { display: none; }
  .hero-stats { gap: 1.5rem; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .strip-item { border-bottom: 1px solid rgba(14,11,8,0.1); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 3rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.2rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .why-section, .testimonial-section, .values-section { padding: 3.5rem 1.5rem; }
  .portfolio-hero { padding: 3rem 1.5rem 2rem; }
  .cta-bar { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .nav-hamburger { display: block !important; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}


/* =============================================
   INLINE STYLE REPLACEMENTS
   ============================================= */

/* index.html */
.hero-logo-wrap { text-align: center; margin-bottom: 1rem; }
.hero-logo-img { height: 90px; width: auto; display: inline-block; }

/* about.html - work with us button */
.btn-primary-mt { margin-top: 1.5rem; display: inline-block; }

/* about.html - neighborhood section */
.neighborhood-section { background: var(--ink); padding: 4rem 3rem; border-top: 1px solid rgba(184,134,11,0.15); }
.neighborhood-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.neighborhood-label { justify-content: center; color: var(--gold); }
.neighborhood-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--paper); margin-bottom: 1.5rem; font-weight: 900; }
.neighborhood-heading em { color: var(--gold); }
.neighborhood-para { color: rgba(245,240,232,0.88); line-height: 1.85; font-size: 0.95rem; margin-bottom: 1rem; }
.neighborhood-para-last { color: rgba(245,240,232,0.88); line-height: 1.85; font-size: 0.95rem; }

/* contact.html */
.contact-eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(14,11,8,0.5); margin-bottom: 0.75rem; }
.contact-sub-note { font-size: 0.88rem; color: rgba(14,11,8,0.6); line-height: 1.8; margin-top: 0.75rem; }
.contact-link-dark { color: var(--ink); }
.contact-hours-note { font-size: 0.78rem; color: rgba(14,11,8,0.55); margin-top: 0.75rem; }
.bot-field { display: none; }

/* portfolio.html */
.section-label-center { justify-content: center; }
.faq-heading { text-align: center; font-family: 'Playfair Display', serif; color: var(--ink); font-size: clamp(1.6rem,3.5vw,2.2rem); margin-bottom: 2.5rem; }

/* thank-you.html */
.btn-ghost-mt { margin-top: 2rem; display: inline-block; }

/* contact.html - next steps section */
.next-steps-section { background: var(--paper); padding: 4rem 3rem; border-top: 1px solid rgba(14,11,8,0.08); }
.next-steps-inner { max-width: 1100px; margin: 0 auto; }
.next-steps-heading-wrap { text-align: center; margin-bottom: 3rem; }
.next-steps-heading-wrap h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: var(--ink); line-height: 1.2; }
.next-steps-heading-wrap h2 em { font-style: italic; color: var(--rust); }
.next-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.next-step { padding: 2rem; border: 1px solid rgba(14,11,8,0.1); }
.next-step-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); margin-bottom: 0.75rem; }
.next-step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.next-step p { font-size: 0.88rem; color: rgba(14,11,8,0.7); line-height: 1.85; margin: 0; }
.next-steps-note { background: var(--ink); padding: 2rem 2.5rem; }
.next-steps-note h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.next-steps-note p { font-size: 0.88rem; color: rgba(245,240,232,0.65); line-height: 1.85; margin: 0; }
@media (max-width: 700px) { .next-steps-grid { grid-template-columns: 1fr; } .next-steps-section { padding: 3rem 1.5rem; } }

/* index.html - who we serve section */
.who-section { background: var(--paper); padding: 4rem 3rem; border-top: 1px solid rgba(14,11,8,0.08); border-bottom: 1px solid rgba(14,11,8,0.08); }
.who-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center; }
.who-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: var(--ink); margin-bottom: 1.25rem; line-height: 1.2; }
.who-text h2 em { font-style: italic; color: var(--rust); }
.who-text p { font-size: 0.92rem; color: rgba(14,11,8,0.82); line-height: 1.85; margin-bottom: 1rem; }
.who-list { background: var(--ink); padding: 2rem; }
.who-list-title { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.who-ul { list-style: none; padding: 0; margin: 0; }
.who-ul li { font-size: 0.88rem; color: rgba(245,240,232,0.9); padding: 0.5rem 0; border-bottom: 1px solid rgba(184,134,11,0.15); line-height: 1.5; }
.who-ul li:last-child { border-bottom: none; }
.who-ul li::before { content: '✦ '; color: var(--gold); font-size: 0.65rem; }
@media (max-width: 800px) { .who-inner { grid-template-columns: 1fr; gap: 2rem; } .who-section { padding: 3rem 1.5rem; } }

/* SEO keyword block - visible but understated */
.seo-block { background: var(--paper); padding: 1.5rem 3rem; border-top: 1px solid rgba(14,11,8,0.06); }
.seo-block-inner { max-width: 1100px; margin: 0 auto; }
.seo-block p { font-size: 0.82rem; color: rgba(14,11,8,0.5); line-height: 1.8; margin: 0; }
.seo-block strong { font-weight: 600; color: rgba(14,11,8,0.6); }
@media (max-width: 700px) { .seo-block { padding: 1.5rem; } }

/* Hamburger menu */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--ink); padding: 0.25rem 0.5rem; line-height: 1; }
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(184,134,11,0.2);
  padding: 1.5rem 2rem;
  gap: 0;
  z-index: 999;
}
.nav-mobile-open .nav-links li { border-bottom: 1px solid rgba(245,240,232,0.08); }
.nav-mobile-open .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; opacity: 1; }

/* Mobile nav drop styles */
#nav-links li { border-bottom: 1px solid rgba(245,240,232,0.08); }
#nav-links li:last-child { border-bottom: none; }
#nav-links a { display: block; padding: 1rem 0; font-size: 1.1rem; opacity: 1; color: #111111; }
.nav-mobile-open #nav-links a { color: var(--paper); }
.nav-mobile-open #nav-links a:hover { color: var(--gold); }
#nav-links a:hover { color: var(--gold); }
.nav-hamburger { font-size: 1.8rem; line-height: 1; }

/* Nav social icons */
.nav-social { display: flex; align-items: center; gap: 0.75rem; margin: 0 1rem; }
.nav-social-link { color: var(--ink); opacity: 0.6; transition: opacity 0.2s, color 0.2s; display: flex; align-items: center; }
.nav-social-link:hover { opacity: 1; color: var(--gold); }
@media (max-width: 768px) { .nav-social { display: none; } }
