/*
Theme Name:  Measured Media Consulting
Theme URI:   https://www.measured-media.co.uk
Author:      Measured Media Consulting
Author URI:  https://www.measured-media.co.uk
Description: Custom theme for Measured Media Consulting — audience measurement expertise.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: measured-media
*/

/* === DESIGN TOKENS === */
:root {
  --maroon:       #7A0818;
  --maroon-deep:  #4D0510;
  --maroon-light: #9E1020;
  --gold:         #B8832A;
  --gold-light:   #D4A44A;
  --charcoal:     #1A1A1A;
  --warm-grey:    #5C5854;
  --mid-grey:     #9A9490;
  --pale:         #F5F1EC;
  --pale-2:       #EDE8E1;
  --white:        #FFFFFF;
  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --max-width:    1280px;
  --side-pad:     8%;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
}

/* === UTILITY === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.section { padding: 96px var(--side-pad); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--maroon); color: white;
  padding: 14px 32px; border-radius: 3px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid var(--maroon);
  display: inline-block;
}
.btn-primary:hover { background: var(--maroon-light); border-color: var(--maroon-light); transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255,255,255,0.75); background: transparent;
  padding: 14px 32px; border-radius: 3px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: white; color: white; }
.btn-white {
  background: white; color: var(--maroon);
  padding: 15px 36px; border-radius: 3px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--pale); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--maroon); color: var(--maroon);
  padding: 14px 32px; border-radius: 3px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--maroon); color: white; }

/* === SECTION HEADER COMPONENTS === */
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.eyebrow-line { width: 24px; height: 2px; background: var(--maroon); }
.eyebrow span {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--maroon); font-weight: 600; font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 600; line-height: 1.15; color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--maroon); }
.section-sub {
  font-size: 16px; color: var(--warm-grey); max-width: 540px;
  margin-top: 16px; line-height: 1.8; font-weight: 300;
}
.section-header { margin-bottom: 56px; }

/* ========================================
   NAVIGATION
   ======================================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pale-2);
  height: 70px;
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 var(--side-pad);
}
.site-logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px; background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px; flex-shrink: 0;
}
.logo-mark img { width: 24px; height: 24px; object-fit: contain; filter: brightness(10); }
.logo-mark-letter {
  color: white; font-family: var(--font-head); font-size: 18px;
  font-weight: 700; line-height: 1;
}
.logo-text {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal);
  line-height: 1.3;
}
.logo-text span {
  display: block; font-weight: 300; font-size: 11px;
  letter-spacing: 0.06em; color: var(--warm-grey); text-transform: none;
}

/* Primary nav */
#primary-menu {
  display: flex; align-items: center; gap: 32px;
}
#primary-menu li a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--warm-grey); transition: color 0.2s; text-transform: uppercase;
}
#primary-menu li a:hover,
#primary-menu li.current-menu-item a { color: var(--maroon); }
#primary-menu .menu-cta a {
  background: var(--maroon); color: white !important;
  padding: 9px 20px; border-radius: 3px; font-size: 12px !important;
  transition: background 0.2s !important;
}
#primary-menu .menu-cta a:hover { background: var(--maroon-deep) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 16px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--charcoal);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO (FRONT PAGE)
   ======================================== */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(122,8,24,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184,131,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 5% 80px var(--side-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.65); max-width: 480px;
  margin-bottom: 44px; line-height: 1.8; font-family: var(--font-body);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 80px var(--side-pad) 80px 5%;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 100%; max-width: 440px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px; transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.07); }
.stat-card:nth-child(1) { border-radius: 6px 0 0 0; }
.stat-card:nth-child(2) { border-radius: 0 6px 0 0; }
.stat-card:nth-child(3) { border-radius: 0 0 0 6px; }
.stat-card:nth-child(4) { border-radius: 0 0 6px 0; }
.stat-icon { width: 36px; height: 36px; margin-bottom: 16px; color: var(--gold); }
.stat-icon svg { width: 100%; height: 100%; }
.stat-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500; margin-bottom: 8px;
  font-family: var(--font-body);
}
.stat-value {
  font-family: var(--font-head); font-size: 28px; font-weight: 600;
  color: white; line-height: 1.1; margin-bottom: 6px;
}
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; font-family: var(--font-body); }

/* ========================================
   INTRO STRIP
   ======================================== */
.intro-strip {
  background: var(--maroon); padding: 28px var(--side-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.intro-strip p {
  font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 300;
  max-width: 700px; line-height: 1.7; font-family: var(--font-body);
}
.intro-strip p strong { color: white; font-weight: 600; }
.intro-strip-link {
  color: white; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px; white-space: nowrap;
  transition: border-color 0.2s; font-family: var(--font-body);
}
.intro-strip-link:hover { border-color: white; }

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
}
.service-card {
  background: var(--pale); padding: 48px 44px;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--maroon);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--pale-2); }
.service-card:hover::after { width: 100%; }
.service-card:nth-child(1) { border-radius: 6px 0 0 0; }
.service-card:nth-child(2) { border-radius: 0 6px 0 0; }
.service-card:nth-child(3) { border-radius: 0 0 0 6px; }
.service-card:nth-child(4) { border-radius: 0 0 6px 0; }
.service-num {
  font-family: var(--font-head); font-size: 64px; font-weight: 700;
  color: var(--pale-2); position: absolute; top: 20px; right: 32px;
  line-height: 1; user-select: none; transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(122,8,24,0.08); }
.service-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--maroon); }
.service-icon svg { width: 100%; height: 100%; }
.service-title {
  font-family: var(--font-head); font-size: 26px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px; line-height: 1.2;
}
.service-desc {
  font-size: 14px; color: var(--warm-grey); line-height: 1.8; font-weight: 300;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--maroon); font-family: var(--font-body);
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ========================================
   EXPERTISE SECTION
   ======================================== */
.expertise-section {
  background: var(--charcoal);
}
.expertise-section .section-title { color: white; }
.expertise-section .eyebrow span { color: var(--gold); }
.expertise-section .eyebrow-line { background: var(--gold); }
.expertise-section .section-sub { color: rgba(255,255,255,0.55); }
.expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.expertise-card {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  padding: 32px 28px; transition: all 0.3s;
}
.expertise-card:hover {
  border-color: rgba(184,131,42,0.4);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}
.expertise-tag {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px; font-family: var(--font-body);
}
.expertise-card h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 600;
  color: white; margin-bottom: 12px; line-height: 1.2;
}
.expertise-card p {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300;
}
.expertise-topics {
  margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px;
}
.topic-pill {
  font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  padding: 5px 10px; border-radius: 20px; font-weight: 500; font-family: var(--font-body);
  transition: background 0.2s;
}
.expertise-card:hover .topic-pill { background: rgba(255,255,255,0.1); }

/* ========================================
   ABOUT SECTION (HOME)
   ======================================== */
.about-home {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.about-visual {
  background: var(--pale); position: relative; overflow: hidden;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.about-visual-placeholder {
  position: absolute; inset: 40px;
  border: 2px dashed rgba(122,8,24,0.2); border-radius: 4px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
}
.about-content {
  padding: 80px var(--side-pad) 80px 5%;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content blockquote {
  font-family: var(--font-head); font-size: 22px; font-weight: 400;
  font-style: italic; color: var(--maroon); line-height: 1.6;
  border-left: 3px solid var(--maroon); padding-left: 24px; margin: 28px 0;
}
.about-content p {
  font-size: 15px; color: var(--warm-grey); line-height: 1.9;
  font-weight: 300; margin-bottom: 16px;
}
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.credential {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 7px 14px;
  border: 1px solid var(--pale-2); border-radius: 20px;
  color: var(--warm-grey); font-family: var(--font-body);
  transition: border-color 0.2s;
}
.credential:hover { border-color: var(--mid-grey); }

/* ========================================
   SPEAKING SECTION (HOME)
   ======================================== */
.speaking-home {
  background: white; padding: 80px var(--side-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.speaking-home p {
  font-size: 15px; color: var(--warm-grey); line-height: 1.9;
  font-weight: 300; margin-bottom: 24px;
}
.speaking-topics { display: flex; flex-direction: column; }
.speaking-topic {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--pale-2);
}
.topic-dot {
  width: 8px; height: 8px; background: var(--maroon);
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
.speaking-topic h4 {
  font-family: var(--font-head); font-size: 18px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 4px;
}
.speaking-topic p {
  font-size: 13px !important; margin-bottom: 0 !important;
  color: var(--warm-grey);
}

/* ========================================
   INSIGHTS / BLOG
   ======================================== */
.insights-section { background: var(--pale); }
.insights-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}
.insights-all {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon);
  border-bottom: 1px solid var(--maroon); padding-bottom: 2px;
  font-family: var(--font-body); transition: opacity 0.2s;
}
.insights-all:hover { opacity: 0.7; }
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.insight-card {
  background: white; border-radius: 4px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.insight-thumb {
  height: 200px; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.insight-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.insight-card:hover .insight-thumb img { transform: scale(1.03); }
.insight-thumb-default { background: linear-gradient(135deg, #1A1A1A 0%, #3A0A12 100%); }
.insight-cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(0,0,0,0.5); padding: 5px 10px; border-radius: 2px;
  font-family: var(--font-body);
}
.insight-body { padding: 24px 24px 28px; }
.insight-meta {
  font-size: 11px; color: var(--mid-grey); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-body);
}
.insight-card h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 600;
  line-height: 1.3; color: var(--charcoal); margin-bottom: 10px;
}
.insight-card p {
  font-size: 13px; color: var(--warm-grey); line-height: 1.75; font-weight: 300;
}
.insight-read {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon); font-family: var(--font-body);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--maroon); padding: 96px var(--side-pad);
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; background: rgba(255,255,255,0.04);
  border-radius: 50%; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; right: 60px; bottom: -60px;
  width: 200px; height: 200px; background: rgba(255,255,255,0.03);
  border-radius: 50%; pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
  font-family: var(--font-head); font-size: clamp(32px, 3vw, 48px);
  font-weight: 600; color: white; line-height: 1.15; margin-bottom: 16px;
}
.cta-text h2 em { font-style: italic; }
.cta-text p {
  font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 300;
  line-height: 1.8; max-width: 480px; font-family: var(--font-body);
}
.cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.cta-alt {
  font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 300;
  font-family: var(--font-body);
}
.cta-alt a { color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.3); }

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
  background: var(--charcoal);
  padding: 64px var(--side-pad) 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-tagline {
  font-size: 13px; margin-top: 16px; line-height: 1.8; font-weight: 300;
  max-width: 260px; color: rgba(255,255,255,0.45); font-family: var(--font-body);
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); font-weight: 600; margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300;
  transition: color 0.2s; font-family: var(--font-body);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copyright {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 600;
  transition: all 0.2s; font-family: var(--font-body);
}
.footer-social a:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

/* Footer logo */
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .logo-text { color: white; }
.footer-logo .logo-text span { color: rgba(255,255,255,0.45); }

/* ========================================
   PAGE HERO (INNER PAGES)
   ======================================== */
.page-hero {
  background: var(--charcoal); padding: 120px var(--side-pad) 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(122,8,24,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.page-hero .eyebrow span { color: var(--gold); }
.page-hero .eyebrow-line { background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(42px, 5vw, 68px);
  font-weight: 600; color: white; line-height: 1.1; margin-top: 16px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .hero-lead {
  font-size: 17px; color: rgba(255,255,255,0.65); font-weight: 300;
  line-height: 1.8; font-family: var(--font-body);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-profile {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
  align-items: start;
}
.about-photo {
  position: sticky; top: 90px;
}
.about-photo img {
  width: 100%; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-photo-placeholder-full {
  width: 100%; padding-top: 120%; background: var(--pale);
  border-radius: 4px; border: 2px dashed rgba(122,8,24,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-photo-placeholder-full span {
  position: absolute; font-size: 12px; color: rgba(122,8,24,0.4);
  letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body);
}
.about-text h2 {
  font-family: var(--font-head); font-size: 36px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 20px; line-height: 1.2;
}
.about-text h2 em { color: var(--maroon); font-style: italic; }
.about-text p {
  font-size: 15px; color: var(--warm-grey); line-height: 1.9;
  font-weight: 300; margin-bottom: 20px;
}
.about-text blockquote {
  font-family: var(--font-head); font-size: 24px; font-weight: 400;
  font-style: italic; color: var(--maroon); line-height: 1.6;
  border-left: 3px solid var(--maroon); padding-left: 24px;
  margin: 36px 0;
}
.about-divider {
  width: 40px; height: 2px; background: var(--maroon); margin: 36px 0;
}

/* ========================================
   SERVICES PAGE (DETAILED)
   ======================================== */
.service-detail {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  padding: 80px var(--side-pad); align-items: start;
  border-bottom: 1px solid var(--pale-2);
}
.service-detail:nth-child(even) { background: var(--pale); }
.service-detail-num {
  font-family: var(--font-head); font-size: 120px; font-weight: 700;
  color: var(--pale-2); line-height: 1; user-select: none;
}
.service-detail:nth-child(even) .service-detail-num { color: rgba(122,8,24,0.06); }
.service-detail-body h2 {
  font-family: var(--font-head); font-size: 40px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 20px; line-height: 1.15;
}
.service-detail-body p {
  font-size: 15px; color: var(--warm-grey); line-height: 1.9;
  font-weight: 300; margin-bottom: 20px;
}
.service-includes {
  margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.service-include-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--warm-grey); line-height: 1.6;
  font-family: var(--font-body);
}
.service-include-item::before {
  content: '✓'; color: var(--maroon); font-weight: 700; flex-shrink: 0;
  font-size: 14px; margin-top: 1px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
}
.contact-info h3 {
  font-family: var(--font-head); font-size: 28px; margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px; color: var(--warm-grey); line-height: 1.9;
  font-weight: 300; margin-bottom: 20px;
}
.contact-details { margin-top: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--pale-2);
}
.contact-detail-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--maroon); font-weight: 600; min-width: 80px; font-family: var(--font-body);
}
.contact-detail-value {
  font-size: 14px; color: var(--charcoal); font-weight: 400;
}
.contact-form { }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal); font-weight: 600;
  margin-bottom: 8px; font-family: var(--font-body);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--pale-2); border-radius: 3px;
  font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
  background: white; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(122,8,24,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========================================
   BLOG / SINGLE POST
   ======================================== */
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.post-card {
  background: white; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--pale-2); transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.post-thumb { height: 220px; overflow: hidden; background: var(--pale); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumb img { transform: scale(1.03); }
.post-body { padding: 28px; }
.post-meta {
  font-size: 11px; color: var(--mid-grey); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-body);
}
.post-card h2 {
  font-family: var(--font-head); font-size: 22px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px; line-height: 1.3;
}
.post-card h2 a { transition: color 0.2s; }
.post-card h2 a:hover { color: var(--maroon); }
.post-excerpt {
  font-size: 14px; color: var(--warm-grey); line-height: 1.75; font-weight: 300;
}
.read-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon); font-family: var(--font-body);
}

/* Single post */
.single-post { max-width: 720px; margin: 0 auto; }
.single-post .post-header { margin-bottom: 48px; }
.single-post .post-title {
  font-family: var(--font-head); font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; color: var(--charcoal); line-height: 1.1; margin-bottom: 20px;
}
.single-post .post-meta-bar {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--pale-2); border-bottom: 1px solid var(--pale-2);
  margin-bottom: 40px;
}
.single-post .post-content { font-size: 16px; line-height: 1.9; color: var(--warm-grey); }
.single-post .post-content p { margin-bottom: 24px; font-weight: 300; }
.single-post .post-content h2 {
  font-family: var(--font-head); font-size: 32px; color: var(--charcoal);
  margin: 40px 0 16px;
}
.single-post .post-content h3 {
  font-family: var(--font-head); font-size: 24px; color: var(--charcoal);
  margin: 32px 0 12px;
}
.single-post .post-content blockquote {
  font-family: var(--font-head); font-size: 22px; font-style: italic;
  color: var(--maroon); border-left: 3px solid var(--maroon);
  padding-left: 24px; margin: 32px 0;
}
.single-post .post-content a { color: var(--maroon); border-bottom: 1px solid rgba(122,8,24,0.3); }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 48px 0; flex-wrap: wrap;
}
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--pale-2);
  border-radius: 3px; font-size: 13px; color: var(--warm-grey);
  font-family: var(--font-body); transition: all 0.2s;
}
.pagination a:hover { border-color: var(--maroon); color: var(--maroon); }
.pagination .current { background: var(--maroon); color: white; border-color: var(--maroon); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  :root { --side-pad: 5%; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px var(--side-pad) 64px; max-width: 100%; }
  .about-home { grid-template-columns: 1fr; }
  .about-visual { min-height: 360px; }
  .speaking-home { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-profile { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 380px; }
  .service-detail { grid-template-columns: 1fr; gap: 20px; }
  .service-detail-num { font-size: 72px; }
}

@media (max-width: 768px) {
  :root { --side-pad: 6%; }
  .section { padding: 64px var(--side-pad); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-radius: 0 !important; }
  .service-card:first-child { border-radius: 6px 6px 0 0 !important; }
  .service-card:last-child { border-radius: 0 0 6px 6px !important; }
  .expertise-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  #primary-menu { display: none; flex-direction: column; align-items: flex-start; }
  #primary-menu.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 24px var(--side-pad);
    border-bottom: 1px solid var(--pale-2); gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }
  .hero-content { padding-top: 60px; }
  .hero-title { font-size: 40px; }
  .service-card { padding: 36px 28px; }
  .service-includes { grid-template-columns: 1fr; }
}
