/*
Theme Name: McAulay Renfro Golf
Theme URI: https://mcaulayrenfrogolf.com
Author: McAulay Renfro Golf
Description: Bold, athletic custom theme for McAulay Renfro Golf — Measure. Train. Perform. PGA coaching in Ashburn, VA.
Version: 1.0
*/

/* ============================================================
   McAulay Renfro Golf — Design System
   "Measure. Train. Perform."
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Archivo+Expanded:wght@600;700;800;900&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* Color */
  --ink:        #0B1711;   /* near-black pine */
  --ink-2:      #102018;
  --pine:       #0E3D29;   /* deep green */
  --pine-700:   #12492f;
  --moss:       #1d6342;
  --volt:       #C9F23C;   /* electric lime accent */
  --volt-deep:  #A6D62A;
  --paper:      #F4F1E8;   /* warm off-white */
  --paper-2:    #ECE7D9;
  --sand:       #D9D1BD;
  --white:      #ffffff;

  --ink-70: rgba(11,23,17,.70);
  --ink-55: rgba(11,23,17,.55);
  --ink-40: rgba(11,23,17,.40);
  --paper-70: rgba(244,241,232,.72);
  --paper-45: rgba(244,241,232,.45);
  --line-dark: rgba(244,241,232,.14);
  --line-light: rgba(11,23,17,.12);

  /* Type */
  --font-display: 'Archivo Expanded', 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, 'SF Mono', monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 4px;
  --radius-lg: 10px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Type helpers ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--volt-deep);
  display: inline-block;
}
.kicker.on-dark { color: var(--volt); }
.kicker.on-dark::before { background: var(--volt); }
.kicker.center { justify-content: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.01em; text-wrap: balance; }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.h-xl { font-size: clamp(44px, 8vw, 104px); }
.h-lg { font-size: clamp(34px, 5.2vw, 68px); }
.h-md { font-size: clamp(27px, 3.4vw, 44px); }

.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--ink-70); max-width: 60ch; }
.lead.on-dark { color: var(--paper-70); }

.eyebrow-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--volt-deep);
  line-height: 1;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section.tight { padding-block: clamp(48px, 6vw, 84px); }

.bg-ink   { background: var(--ink);   color: var(--paper); }
.bg-pine  { background: var(--pine);  color: var(--paper); }
.bg-paper { background: var(--paper); color: var(--ink); }
.bg-paper2{ background: var(--paper-2); color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); }
.btn-volt { background: var(--volt); color: var(--ink); }
.btn-volt:hover { background: var(--volt-deep); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost-light { border-color: var(--paper-45); color: var(--paper); }
.btn-ghost-light:hover { border-color: var(--volt); color: var(--volt); }
.btn-ghost-dark { border-color: var(--line-light); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); }
.btn-lg { padding: 19px 34px; font-size: 16px; }

.text-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 2px solid var(--volt-deep);
  padding-bottom: 4px;
  transition: gap .2s ease, color .2s ease;
}
.text-link:hover { gap: 15px; }
.text-link.on-dark { border-color: var(--volt); color: var(--volt); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark {
  width: 44px; height: 44px;
  flex: none;
  display: block;
}
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .02em;
  line-height: 1.05;
}
.brand .brand-name small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 9.5px; letter-spacing: .26em; color: var(--volt); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; letter-spacing: .01em;
  color: var(--paper-70);
  transition: color .18s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -26px;
  height: 2px; background: var(--volt);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--font-mono); font-size: 13.5px; color: var(--paper-70); letter-spacing: .02em; }
.nav-phone:hover { color: var(--volt); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0; transition: .2s; }

/* ---------- Placeholder media ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(201,242,60,.04) 0 2px, transparent 2px 22px),
    linear-gradient(150deg, var(--pine) 0%, var(--ink) 100%);
  color: var(--paper-70);
  display: grid; place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ph::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px dashed rgba(201,242,60,.28);
  border-radius: 6px;
  pointer-events: none;
}
.ph .ph-inner { text-align: center; padding: 24px; z-index: 1; }
.ph .ph-icon { width: 38px; height: 38px; margin: 0 auto 14px; color: var(--volt); opacity: .9; }
.ph .ph-icon svg { width: 100%; height: 100%; }
.ph .ph-label {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper-70);
  line-height: 1.5;
}
.ph.light {
  background:
    repeating-linear-gradient(135deg, rgba(14,61,41,.05) 0 2px, transparent 2px 22px),
    linear-gradient(150deg, var(--paper-2) 0%, var(--sand) 100%);
}
.ph.light::after { border-color: rgba(14,61,41,.25); }
.ph.light .ph-icon { color: var(--pine); }
.ph.light .ph-label { color: var(--ink-55); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  padding: 32px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper-70); padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.site-footer h4 { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--volt); margin-bottom: 18px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--paper-45); }
.social-row { display: flex; gap: 12px; }
.social-row a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 6px; display: grid; place-items: center; transition: .2s; }
.social-row a:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Utility ---------- */
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.divider-mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-40); }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; border-radius: 0; place-items: start end; }
.hero-media::after { inset: 0; border: 0; }
.hero-media .ph-inner { padding: 26px 30px; opacity: .65; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,23,17,.30) 0%, rgba(11,23,17,.55) 55%, rgba(11,23,17,.92) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(40px, 7vw, 96px); width: 100%; }
.hero-title { margin-top: 18px; color: var(--paper); }
.hero-title .volt-word { color: var(--volt); }
.hero-lead { margin-top: 24px; }
.hero-location {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 34px; padding: 13px 20px;
  background: rgba(244,241,232,.07);
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  font-size: 14px; color: var(--paper-70);
  backdrop-filter: blur(4px);
  transition: border-color .2s ease;
}
.hero-location:hover { border-color: var(--volt); }
.hero-location strong { color: var(--paper); font-weight: 700; }
.loc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 4px rgba(201,242,60,.22); flex: none; }

/* Stat strip */
.bg-volt { background: var(--volt); color: var(--ink); }
.stat-strip { padding-block: 26px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(11,23,17,.6); }
.stat-v { font-family: var(--font-display); font-weight: 800; font-size: clamp(17px, 1.7vw, 22px); text-transform: uppercase; letter-spacing: -0.01em; }

/* The system */
.sys-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; }
.sys-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sys-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 38px 34px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.sys-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--volt); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.sys-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(11,23,17,.4); }
.sys-card:hover::before { transform: scaleY(1); }
.sys-title { margin: 10px 0 14px; }
.sys-card p { color: var(--ink-70); }

/* About teaser */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-photo { aspect-ratio: 4/5; }
.about-byline { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--volt); margin-top: 18px; }
.volt-text { color: var(--volt); font-style: normal; }
.about-copy .volt-text { font-weight: 700; }

/* Technology teaser */
.tech-head { max-width: 640px; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tech-chip { border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; transition: background .2s ease, border-color .2s ease; }
.tech-chip:hover { background: rgba(244,241,232,.05); border-color: var(--volt); }
.tech-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--volt); }
.tech-chip strong { font-family: var(--font-display); font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: -0.01em; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.svc-card { display: flex; flex-direction: column; gap: 16px; position: relative; }
.svc-card p { color: var(--ink-70); }
.svc-card .btn { margin-top: auto; align-self: flex-start; }
.svc-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc-card.featured p { color: var(--paper-70); }
.svc-badge { position: absolute; top: -13px; left: 32px; background: var(--volt); color: var(--ink); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; padding: 6px 12px; border-radius: 100px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-list li { padding-left: 24px; position: relative; color: var(--ink-70); font-size: 15.5px; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 11px; height: 11px; border: 2px solid var(--volt-deep); border-radius: 50%; }
.pkg-row { display: flex; gap: 12px; }
.pkg { width: 64px; height: 64px; border: 1.5px solid var(--volt); border-radius: var(--radius); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--volt); }
.pkg-note { font-size: 14.5px; }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; }
.quote-mark { font-family: var(--font-display); font-weight: 900; font-size: 64px; line-height: .5; color: var(--volt); height: 34px; }
.quote blockquote { font-size: 17px; line-height: 1.6; color: var(--paper); margin: 8px 0 22px; }
.quote figcaption { margin-top: auto; font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: var(--volt); }

/* Final CTA + newsletter */
.final-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.final-lead { color: rgba(11,23,17,.72); }
.news-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); }
.news-title { font-family: var(--font-display); font-weight: 800; font-size: 24px; text-transform: uppercase; }
.news-sub { color: var(--ink-70); font-size: 15px; margin: 8px 0 22px; }
.news-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-55); display: block; margin-bottom: 7px; }
.news-input { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-light); border-radius: var(--radius); font-family: var(--font-body); font-size: 16px; margin-bottom: 18px; background: var(--paper); transition: border-color .2s ease; }
.news-input:focus { outline: none; border-color: var(--pine); }
.news-btn { width: 100%; justify-content: center; }

/* Home responsive */
@media (max-width: 920px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .sys-head { grid-template-columns: 1fr; gap: 20px; }
  .sys-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/10; max-height: 360px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tech-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(46px, 16vw, 72px); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line-dark);
    padding: 8px var(--pad) 22px;
  }
  .nav-links.open a { padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .nav-links.open a.active::after { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand .brand-name { font-size: 13px; }
  .btn { padding: 14px 20px; }
}

/* ============================================================
   INNER PAGES (About / Technology / Contact)
   ============================================================ */

/* Page hero */
.page-hero { padding-block: clamp(60px, 9vw, 120px) clamp(56px, 7vw, 96px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -8%; top: -30%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,242,60,.12), transparent 62%);
  pointer-events: none;
}
.page-hero h1 { color: var(--paper); }
.page-hero .lead { max-width: 56ch; }

/* About bio */
.bio-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px, 5vw, 76px); align-items: start; }
.bio-photo { position: sticky; top: 100px; }
.bio-badges { display: flex; gap: 14px; margin-top: 18px; }
.bio-badge { flex: 1; border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 18px 20px; }
.bb-num { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--pine); display: block; line-height: 1; }
.bb-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55); margin-top: 6px; display: block; }
.bio-copy p { color: var(--ink-70); margin-bottom: 18px; max-width: 64ch; }
.bio-copy p:first-of-type { color: var(--ink); }

/* Credentials */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cred { border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 32px 28px; }
.cred h3 { font-family: var(--font-display); font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: -0.01em; margin: 14px 0 10px; color: var(--paper); }
.cred p { color: var(--paper-70); font-size: 15.5px; }

/* Philosophy pull quote */
.pull-quote { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.12; letter-spacing: -0.015em; max-width: 22ch; margin: 22px auto 0; color: var(--ink); text-wrap: balance; }
.pull-em { color: var(--pine); }
.pull-by { font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(11,23,17,.6); margin-top: 24px; }

/* Technology feature rows */
.tech-rows { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 92px); }
.tech-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.tech-row.reverse .tech-row-media { order: 2; }
.tech-row-media { aspect-ratio: 4/3; }
.tech-index { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); display: block; margin-bottom: 12px; }
.tech-row-copy h2 { margin-bottom: 16px; }
.tech-row-copy p { color: var(--ink-70); max-width: 56ch; }
.tech-callout { margin-top: 18px; padding: 16px 18px; background: var(--ink); color: var(--paper); border-radius: var(--radius); font-size: 15px; }
.callout-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--volt); margin-right: 8px; }

/* Contact */
.book-banner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line-light); border-radius: var(--radius-lg); transition: border-color .2s ease, transform .2s ease; background: var(--white); }
.info-item:hover { border-color: var(--pine); transform: translateX(3px); }
.info-ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; background: var(--pine); color: var(--volt); border-radius: 8px; }
.info-ico svg { width: 21px; height: 21px; }
.info-item strong { display: block; font-size: 16px; }
.info-item small { display: block; color: var(--ink-55); font-size: 13.5px; margin-top: 2px; }
.contact-follow { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--moss); margin: 34px 0 14px; }
.dark-social a { border-color: var(--line-light); color: var(--ink); }
.dark-social a:hover { border-color: var(--pine); color: var(--pine); }
.contact-form { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.news-input { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-note { font-size: 14px; color: var(--ink-55); margin-top: 16px; text-align: center; }
.form-note a { color: var(--pine); font-weight: 600; border-bottom: 1px solid var(--volt-deep); }
.map-ph { aspect-ratio: 21/7; min-height: 220px; }

/* Recognition / award band */
.award-band { display: flex; align-items: center; gap: clamp(22px, 4vw, 48px); }
.award-medal { flex: none; width: 92px; height: 92px; display: grid; place-items: center; border: 2px solid var(--volt); border-radius: 50%; color: var(--volt); }
.award-medal svg { width: 48px; height: 48px; }
.award-copy h2 { color: var(--paper); margin-bottom: 12px; }
.award-copy p { color: var(--paper-70); max-width: 64ch; }
.award-copy strong { color: var(--volt); font-weight: 700; }

/* Inner-page responsive */
@media (max-width: 920px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { position: static; max-width: 420px; }
  .cred-grid { grid-template-columns: 1fr; }
  .tech-row { grid-template-columns: 1fr; gap: 22px; }
  .tech-row.reverse .tech-row-media { order: 0; }
  .tech-row-media { max-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .book-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .award-band { flex-direction: column; text-align: center; align-items: center; }
  .award-copy .kicker { justify-content: center; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .bio-badges { flex-direction: column; }
}
