/*
Theme Name: Playbook Wealth Partners
Theme URI: https://playbookwp.com
Author: Playbook Wealth Partners
Author URI: https://playbookwp.com
Description: Custom theme for Playbook Wealth Partners — a fee-only fiduciary financial advisory firm specializing in concentrated stock positions, equity compensation, and comprehensive financial planning.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: playbook-wealth
*/

/* ========================================================================
   DESIGN TOKENS
   ======================================================================== */

:root {
  --navy: #1a2e4a;
  --navy-mid: #2c4a6e;
  --slate: #5a6e88;
  --slate-lt: #8a9ab4;
  --light: #eef0f4;
  --bg: #f4f5f7;
  --white: #ffffff;
  --border: #e4e7ec;
  --text-body: #3a4f68;
}

/* ========================================================================
   RESET & BASE
   ======================================================================== */

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

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.4em;
}

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 38px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* Eyebrow label */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-lt);
  display: block;
  margin-bottom: 6px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================================================
   LAYOUT
   ======================================================================== */

.site-main {
  padding-top: 0;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================================================
   SITE HEADER / NAV
   ======================================================================== */

.site-header {
  background: var(--white);
  width: 100%;
  z-index: 100;
}

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,40px);
}

.header-logo-row {
  display: flex;
  justify-content: center;
  padding: clamp(20px,4vw,32px) 0 clamp(12px,2vw,18px);
}

.site-logo {
  display: block;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo img {
  height: clamp(40px,8vw,56px);
  width: auto;
}

.header-nav-row {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(14px,2vw,20px);
}

/* Desktop nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px,3vw,32px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

.primary-nav li a:hover {
  color: var(--navy);
  text-decoration: none;
}

/* Active/current page underline */
.primary-nav .current-menu-item a,
.primary-nav .current_page_item a {
  color: var(--navy);
}

.primary-nav .current-menu-item a::after,
.primary-nav .current_page_item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.primary-nav .nav-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.15s;
}

.primary-nav .nav-cta a::after {
  display: none;
}

.primary-nav .nav-cta a:hover {
  background: #243d5e;
  transform: translateY(-1px);
}

/* Dropdown menu */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  cursor: default;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(26,46,74,.12);
  padding: 8px 0;
  min-width: 220px;
  z-index: 100;
  list-style: none;
}
.has-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
  transition: background .15s;
}
.dropdown-menu li a:hover {
  background: var(--light);
  text-decoration: none;
}
.dropdown-menu li a::after {
  display: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: absolute;
  top: 28px;
  right: clamp(20px,4vw,40px);
  z-index: 110;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle-label span {
  top: 9px;
}

.nav-toggle-label span::before {
  content: '';
  top: -7px;
}

.nav-toggle-label span::after {
  content: '';
  top: 7px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: rotate(45deg);
  top: 0;
  background: var(--navy);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  transform: rotate(-45deg);
  top: 0;
  background: var(--navy);
}

/* ========================================================================
   CARD SYSTEM
   ======================================================================== */

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

/* Navy banner header */
.banner {
  background: var(--navy);
  padding: 20px 32px;
}

.banner-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0;
}

.banner-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.5;
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat-cell {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.stat-cell:nth-child(odd) {
  background: var(--light);
}

.stat-cell:nth-child(even) {
  background: var(--white);
  border-right: none;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  display: block;
  margin-bottom: 2px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* Card body */
.card-body {
  padding: 20px 24px;
}

.card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
}

/* Strategy pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
}

.pill {
  background: var(--light);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-block;
}

/* CTA row */
.card-cta {
  background: var(--navy);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.cta-arrow {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  transition: transform 0.2s;
}

.card-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.card-cta a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
}

/* ========================================================================
   CARD GRID LAYOUTS
   ======================================================================== */

.card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

/* ========================================================================
   PLAYBOOK IN ACTION PAGE
   ======================================================================== */

.pia-header {
  text-align: center;
  padding: clamp(28px,6vw,48px) clamp(16px,4vw,24px) 0;
}
.pia-header-inner {
  max-width: 1040px;
  margin: 0 auto clamp(24px,5vw,36px);
}
.pia-desc {
  font-size: clamp(13px,3vw,15px);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.pia-grid-section {
  padding: 0 clamp(16px,4vw,24px) clamp(40px,8vw,64px);
}
.pia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .pia-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .pia-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Case card (clickable link card) */
.case-card {
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,46,74,.06), 0 8px 32px rgba(26,46,74,.09);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(26,46,74,.08), 0 24px 56px rgba(26,46,74,.14);
  text-decoration: none;
}
.case-card:active { transform: scale(.98); }
.case-card .banner-title {
  font-size: clamp(18px,4vw,20px);
}
.case-card .card-body { flex: 1; }
.case-card .card-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ========================================================================
   CALLOUT BOX
   ======================================================================== */

.callout {
  background: var(--light);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  margin: 24px 0;
}

/* ========================================================================
   PHOTO + CONTENT SPLIT
   ======================================================================== */

.intro-split {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

.intro-split__photo {
  overflow: hidden;
}

.intro-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-split__content {
  padding: 32px 36px;
}

.intro-split__name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}

.intro-split__title {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 16px;
}

.intro-split__divider {
  width: 40px;
  height: 2px;
  background: var(--navy);
  margin-bottom: 16px;
}

.intro-split__content p {
  font-size: 14px;
  line-height: 1.75;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn--primary:hover {
  background: #243d5e;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn--white:hover {
  background: var(--light);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */

@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

.hero {
  background: var(--navy);
  width: 100%;
  padding: clamp(56px,12vw,96px) clamp(20px,6vw,48px) clamp(52px,10vw,80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 60%, rgba(255,255,255,.035) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 90% 15%, rgba(255,255,255,.025) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201,168,76,.06) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}
.hero-eyebrow {
  font-size: clamp(10px,2vw,11px);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: clamp(16px,4vw,22px);
  animation: fadeUp .65s ease both;
}
h1.hero-title, h2.pain-intro-t, h3.pain-banner-t, h3.pain-hl,
h3.vs-title, h2.pia-t, h3.cs-name, h2.tools-title,
h3.tool-name, h2.tools-bottom-t {
  margin: 0;
  padding: 0;
  letter-spacing: inherit;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,9vw,58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .01em;
  margin-bottom: clamp(24px,5vw,36px);
  animation: fadeUp .7s .05s ease both;
}
.hero-values {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px,2vw,12px);
  margin: 0 auto clamp(28px,6vw,40px);
  width: fit-content;
  max-width: 100%;
  padding: 0 clamp(20px,6vw,48px);
}
.hero-value-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(15px,3.8vw,19px);
  font-weight: 300;
  color: rgba(255,255,255,.78);
  letter-spacing: .01em;
}
.hero-value-line:nth-child(1) { animation: fadeUp .65s .12s ease both; }
.hero-value-line:nth-child(2) { animation: fadeUp .65s .20s ease both; }
.hero-value-line:nth-child(3) { animation: fadeUp .65s .28s ease both; }
.hero-arrow {
  color: rgba(255,255,255,.30);
  font-size: 14px;
  flex-shrink: 0;
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 0 auto clamp(24px,5vw,32px);
  animation: fadeUp .65s .34s ease both;
}
.hero-bridge {
  font-size: clamp(14px,3.2vw,16px);
  font-weight: 300;
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto clamp(32px,7vw,44px);
  animation: fadeUp .65s .38s ease both;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 340px;
  margin: 0 auto clamp(24px,5vw,32px);
  animation: fadeUp .65s .44s ease both;
}
@media(min-width:480px) {
  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
}

.btn-primary, .btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px,2.5vw,13px);
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: clamp(14px,3.5vw,16px) clamp(24px,6vw,34px);
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  transition: background .15s, transform .15s, box-shadow .15s, border-color .15s, color .15s;
}
@media(min-width:480px) {
  .btn-primary, .btn-secondary { width: auto; }
}
.btn-primary {
  background: #fff;
  color: var(--navy);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,.48);
  color: #fff;
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-icon {
  font-size: 15px;
  opacity: .7;
  flex-shrink: 0;
}
.hero-trust {
  font-size: clamp(10px,2vw,11px);
  font-weight: 300;
  color: rgba(255,255,255,.28);
  letter-spacing: .05em;
  animation: fadeUp .65s .50s ease both;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: '\2713';
  color: rgba(255,255,255,.35);
  font-size: 10px;
}

/* ========================================================================
   SECTION 2: PAIN POINTS / WHO WE WORK WITH
   ======================================================================== */

.pain-section { background: var(--white); width: 100%; border-bottom: 1px solid var(--border); }
.pain-inner { max-width: 780px; margin: 0 auto; padding: clamp(40px,8vw,60px) clamp(20px,6vw,40px) 0; }
.pain-intro { text-align: center; margin-bottom: clamp(28px,6vw,40px); }
.pain-intro-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 10px; }
.pain-intro-t { font-family: 'Playfair Display', serif; font-size: clamp(24px,5vw,32px); color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.pain-intro-d { font-size: 15px; font-weight: 300; color: var(--slate); line-height: 1.75; max-width: 560px; margin: 0 auto; }

.pain-card { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(26,46,74,.12); }
.pain-banner { background: var(--navy); padding: 22px 32px; }
.pain-banner-ey { font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.pain-banner-t { font-family: 'Playfair Display', serif; color: #fff; font-size: 20px; line-height: 1.35; letter-spacing: .02em; }

.pain-list { display: flex; flex-direction: column; }
.pain-item { padding: 24px 32px; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: auto 1fr; gap: 0 20px; transition: background .15s; }
.pain-item:last-child { border-bottom: none; }
.pain-item:nth-child(odd) { background: var(--light); }
.pain-item:nth-child(even) { background: #fff; }
.pain-item:hover { background: #f0f4ff !important; }
.pain-num { font-family: 'Playfair Display', serif; font-size: 28px; color: #d0d6e0; line-height: 1; padding-top: 2px; grid-row: span 2; align-self: start; }
.pain-hl { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; font-weight: 600; }
.pain-body { font-size: 13.5px; font-weight: 300; color: var(--slate); line-height: 1.75; }
.pain-res { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 500; color: var(--navy); letter-spacing: .04em; }
.pain-res::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--navy); flex-shrink: 0; }

.pain-cta { background: var(--navy); padding: 26px 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
@media(max-width:560px) { .pain-cta { flex-direction: column; text-align: center; } }
.pain-cta-copy { font-family: 'Playfair Display', serif; font-size: 19px; color: #fff; line-height: 1.3; }
.pain-cta-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); margin-top: 5px; }
.pain-cta-btn {
  background: #fff; color: var(--navy); font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 8px; white-space: nowrap; flex-shrink: 0;
  transition: background .15s, transform .15s; min-height: 48px; line-height: 22px;
  border: none; cursor: pointer;
}
.pain-cta-btn:hover { background: var(--light); transform: translateY(-1px); }
.pain-spacer { padding-bottom: clamp(40px,8vw,60px); }

/* ========================================================================
   EMAIL GATE MODAL (shared across sections)
   ======================================================================== */

.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(26,46,74,.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 1000; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.modal {
  background: var(--white); border-radius: 14px; width: 100%; max-width: 440px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,46,74,.25); animation: slideUp .3s .05s ease both;
}
.modal-header { background: var(--navy); padding: 24px 28px 20px; color: white; position: relative; }
.modal-close {
  position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,.1); border: none;
  color: rgba(255,255,255,.5); font-size: 18px; width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.modal-close:hover { background: rgba(255,255,255,.2); color: white; }
.modal-icon { font-size: 24px; margin-bottom: 8px; display: block; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; letter-spacing: .02em; margin-bottom: 6px; }
.modal-subtitle { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.6; }
.modal-body { padding: 24px 28px 28px; }
.modal-field { margin-bottom: 14px; }
.modal-label { display: block; font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 6px; }
.modal-input {
  width: 100%; height: 46px; padding: 0 14px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--navy); background: var(--white);
  border: 1px solid var(--border); border-radius: 7px; outline: none; -webkit-appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.modal-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,46,74,.07); }
.modal-input::placeholder { color: rgba(26,46,74,.22); }
.modal-input.error { border-color: #e74c3c; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-modal-submit {
  width: 100%; min-height: 48px; padding: 13px 28px; background: var(--navy); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 7px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, transform .15s; margin-top: 4px;
}
.btn-modal-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-modal-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.modal-disclaimer { margin-top: 12px; font-size: 11px; font-weight: 300; color: rgba(26,46,74,.32); text-align: center; line-height: 1.6; }

/* ========================================================================
   SERVICES GRID
   ======================================================================== */

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ========================================================================
   SECTION HEADERS (navy band within cards)
   ======================================================================== */

.section-header {
  background: var(--navy);
  padding: 16px 28px;
}

.section-header__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.section-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ========================================================================
   ABOUT PAGE
   ======================================================================== */

/* About Hero (scoped to avoid front-page hero conflict) */
.about-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 60%, rgba(255,255,255,.035) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 90% 15%, rgba(255,255,255,.025) 0%, transparent 65%);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px,10vw,80px) clamp(20px,6vw,48px) clamp(44px,8vw,64px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(28px,5vw,48px);
  align-items: center;
}
.hero-photo { position: relative; }
.headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  background: var(--navy-mid);
}
.hero-text { color: #fff; }
.hero-ey {
  font-size: clamp(10px,2vw,11px);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: clamp(10px,2vw,16px);
  animation: fadeUp .65s ease both;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px,6vw,44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .01em;
  margin-bottom: 6px;
  animation: fadeUp .7s .05s ease both;
}
.hero-role {
  font-size: clamp(12px,2.5vw,14px);
  font-weight: 300;
  color: var(--slate-lt);
  margin-bottom: clamp(16px,3vw,24px);
  letter-spacing: .02em;
  animation: fadeUp .65s .08s ease both;
}
.hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin-bottom: clamp(16px,3vw,24px);
  animation: fadeUp .65s .1s ease both;
}
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px,3vw,18px);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 440px;
  animation: fadeUp .65s .14s ease both;
}
@media (max-width: 700px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: clamp(36px,8vw,56px) clamp(20px,5vw,32px) clamp(32px,6vw,48px);
  }
  .hero-photo { max-width: 200px; margin: 0 auto; }
  .hero-rule { margin-left: auto; margin-right: auto; }
  .hero-quote { margin: 0 auto; }
}

/* Story Section */
.story-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.story-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px);
}
.section-ey {
  font-size: clamp(10px,2vw,11px);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 10px;
}
.section-t {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px,5vw,36px);
  color: var(--navy);
  letter-spacing: .02em;
  margin-bottom: clamp(20px,4vw,28px);
}
.story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-body p {
  font-size: 14.5px;
  font-weight: 300;
  color: #3a4f68;
  line-height: 1.85;
}

/* Credentials Section */
.creds-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.creds-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px);
}
.creds-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 12px 40px rgba(26,46,74,.10);
}
.creds-banner {
  background: var(--navy);
  padding: 20px 32px;
}
.creds-banner-ey {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 5px;
}
.creds-banner-t {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 20px;
  letter-spacing: .03em;
}
.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .creds-grid { grid-template-columns: 1fr; }
}
.cred-cell {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.cred-cell:nth-child(even) { border-right: none; }
.cred-cell:nth-child(odd) { background: var(--light); }
.cred-cell:nth-child(even) { background: var(--white); }
.cred-cell:nth-last-child(1),
.cred-cell:nth-last-child(2) { border-bottom: none; }
@media (max-width: 600px) {
  .cred-cell { border-right: none; }
  .cred-cell:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}
.cred-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 6px;
}
.cred-value {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.cred-note {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.6;
}

/* Personal Section */
.personal-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.personal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px);
}
.personal-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 12px 40px rgba(26,46,74,.10);
}
.personal-banner {
  background: var(--navy);
  padding: 20px 32px;
}
.personal-banner-ey {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 5px;
}
.personal-banner-t {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 20px;
  letter-spacing: .03em;
}
.family-photo-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.family-photo {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  background: var(--light);
}
.personal-body {
  padding: 28px 32px;
  background: var(--white);
}
@media (max-width: 500px) {
  .personal-body { padding: 24px 16px; }
}
.personal-body p {
  font-size: 14.5px;
  font-weight: 300;
  color: #3a4f68;
  line-height: 1.85;
  margin-bottom: 16px;
}
.personal-body p:last-child { margin-bottom: 0; }
.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
  .personal-grid { grid-template-columns: 1fr; }
}
.personal-cell { padding: 22px 28px; }
.personal-cell:nth-child(odd) { background: var(--light); }
.personal-cell:nth-child(even) { background: var(--white); }
@media (min-width: 601px) {
  .personal-cell { border-right: 1px solid var(--border); }
  .personal-cell:last-child { border-right: none; }
}
@media (max-width: 600px) {
  .personal-cell { border-bottom: 1px solid var(--border); }
  .personal-cell:last-child { border-bottom: none; }
}
.pc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 6px;
}
.pc-value {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}
.pc-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.5;
}

/* About CTA Section */
.cta-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px);
}
.cta-card {
  background: var(--navy);
  border-radius: 14px;
  padding: clamp(32px,6vw,48px) clamp(24px,5vw,40px);
  text-align: center;
  color: #fff;
}
.cta-t {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px,5vw,30px);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.cta-d {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 24px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  min-height: 48px;
  transition: background .15s, transform .15s;
}
.cta-btn:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ========================================================================
   GUIDE PAGE
   ======================================================================== */

.guide-hero {
  background: var(--navy);
  padding: 64px 24px 56px;
  text-align: center;
}
.guide-hero .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.guide-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,5vw,42px);
  color: var(--white);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 20px;
}
.guide-hero .subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.guide-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.content-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(26,46,74,.08);
  padding: 48px 40px;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .content-card { padding: 32px 20px; }
}
.content-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.content-card h2:first-child { margin-top: 0; }
.content-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 12px;
}
.content-card p {
  font-size: 15.5px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}
.content-card p.lead {
  font-size: 17px;
  color: var(--slate);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 24px;
}

.cat-label,
.step-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3a7bd5;
  margin-bottom: 6px;
}

.highlight-box {
  background: #e8f0fe;
  border-left: 3px solid #3a7bd5;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p {
  font-size: 15px;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
}

.result-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1e33 100%);
  border-radius: 10px;
  padding: 28px;
  margin: 32px 0;
}
.result-box .result-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.result-box p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
}

/* Chart */
.chart-wrap {
  margin: 32px 0 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.chart-wrap table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 13.5px;
}
.chart-wrap thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
}
.chart-wrap thead th:first-child {
  text-align: left;
  min-width: 180px;
  border-radius: 8px 0 0 0;
}
.chart-wrap thead th:last-child { border-radius: 0 8px 0 0; }
.chart-wrap tbody td {
  padding: 14px 10px;
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.chart-wrap tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
}
.chart-wrap tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.chart-wrap tbody tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.chart-wrap .cat-tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3a7bd5;
  margin-bottom: 2px;
}
.chart-wrap .strat-name { font-size: 13.5px; }
.ck { color: #2d8a56; font-size: 17px; font-weight: 700; }
.da { color: var(--border); font-size: 15px; }

/* Question list */
.question-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  counter-reset: q;
}
.question-list li {
  counter-increment: q;
  padding: 12px 0 12px 44px;
  position: relative;
  font-size: 15px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.question-list li:last-child { border-bottom: none; }
.question-list li::before {
  content: counter(q, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #3a7bd5;
}

/* FAQ */
.faq-section { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--slate-lt);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 12px;
}
.faq-a p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.8;
  margin: 0;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* Guide CTA */
.guide-cta-section {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 48px;
}
.guide-cta-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin: 0 0 10px;
}
.guide-cta-section p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.guide-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.guide-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  text-decoration: none;
}

/* Guide disclosure */
.disclosure {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--slate-lt);
  line-height: 1.7;
}
.disclosure a { color: var(--slate-lt); }

/* Guide: Attorney box */
.attorney-box {
  background: #fef9ee;
  border-left: 3px solid #e2a336;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.attorney-box p {
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
  line-height: 1.7;
}
.attorney-box strong { font-weight: 600; }

/* Guide: Crosslink box */
.crosslink-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.crosslink-box .cl-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.crosslink-box .cl-body { flex: 1; }
.crosslink-box .cl-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.crosslink-box .cl-text {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}
.crosslink-box a {
  color: #3a7bd5;
  text-decoration: none;
  font-weight: 500;
}
.crosslink-box a:hover { text-decoration: underline; }

/* Guide: Pre-sale grid */
.presale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
@media (max-width: 600px) {
  .presale-grid { grid-template-columns: 1fr; }
}
.presale-card {
  background: var(--bg);
  border-radius: 10px;
  padding: 20px 22px;
  border: 1px solid var(--border);
}
.presale-card .ps-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3a7bd5;
  margin-bottom: 6px;
}
.presale-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}
.presale-card p {
  font-size: 13.5px;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}

/* Guide: Email capture section */
.capture-section {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 48px;
}
.capture-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 8px;
}
.capture-section p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.7;
}
.capture-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.capture-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
}
.capture-form input[type="email"]:focus {
  border-color: #3a7bd5;
}
.capture-form button {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.capture-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,46,74,.2);
}
.capture-perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.capture-perks span {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
}
.capture-perks .perk-check {
  color: #2d8a56;
  font-weight: 700;
  font-size: 15px;
}
.capture-note {
  font-size: 11px;
  color: var(--slate-lt);
  margin-top: 14px;
}
@media (max-width: 500px) {
  .capture-form { flex-direction: column; }
  .capture-form button { width: 100%; }
}

/* ========================================================================
   SINGLE CASE STUDY
   ======================================================================== */

.cs-single-wrap {
  padding: clamp(28px,6vw,48px) clamp(16px,4vw,24px) clamp(40px,8vw,64px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(26,46,74,.12);
  width: 100%;
  max-width: 780px;
}
.cs-banner-sub {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 6px;
}

/* Section headers (navy bands) */
.cs-section-header {
  background: var(--navy);
  padding: 12px 32px;
}
.cs-section-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 16px;
  letter-spacing: .05em;
}

/* Snapshot grid */
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.snapshot-cell {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.snapshot-cell:nth-child(even) { border-right: none; }
.snapshot-cell:nth-child(odd) { background: var(--light); }
.snapshot-cell:nth-child(even) { background: var(--white); }
.snapshot-cell.full-width {
  grid-column: 1 / -1;
  border-right: none;
  background: var(--white);
}
.snap-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 5px;
}
.snap-value {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
}
.snap-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--slate);
  margin-top: 3px;
}
.snap-warning {
  font-size: 12px;
  font-weight: 500;
  color: #b84c4c;
  margin-top: 3px;
}

/* Problem section */
.problem-body {
  background: var(--white);
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}
.problem-body p {
  font-size: 14px;
  font-weight: 300;
  color: #3a4f68;
  line-height: 1.75;
  margin-bottom: 12px;
}
.problem-body p:last-child { margin-bottom: 0; }

.callout-warning {
  background: #fdf2f2;
  border-left: 4px solid #b84c4c;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #7a2020;
  line-height: 1.65;
}

/* Recommendation steps */
.rec-item {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}
.rec-item:last-of-type { border-bottom: none; }
.rec-item:nth-child(odd) { background: var(--light); }
.rec-item:nth-child(even) { background: var(--white); }
.rec-number {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 5px;
}
.rec-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.rec-body {
  font-size: 14px;
  font-weight: 300;
  color: #3a4f68;
  line-height: 1.75;
}
.rec-body ul {
  padding-left: 18px;
  margin-top: 8px;
}
.rec-body li {
  margin-bottom: 5px;
}
.rec-body li:last-child { margin-bottom: 0; }

/* Takeaway footer */
.logic-footer {
  background: var(--navy);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logic-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.logic-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}

/* Disclaimer */
.cs-disclaimer {
  max-width: 780px;
  width: 100%;
  padding: 20px 0 8px;
}
.cs-disclaimer p {
  font-size: 11px;
  font-weight: 300;
  color: var(--slate-lt);
  line-height: 1.7;
  text-align: center;
  letter-spacing: .02em;
}

@media (max-width: 600px) {
  .snapshot-grid { grid-template-columns: 1fr; }
  .snapshot-cell { border-right: none; }
  .snapshot-cell.full-width { grid-column: 1; }
  .logic-footer { flex-direction: column; gap: 8px; }
  .problem-body { padding: 20px 20px; }
  .rec-item { padding: 20px 20px; }
  .cs-section-header { padding: 12px 20px; }
}

/* ========================================================================
   BLOG
   ======================================================================== */

.post-list {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.post-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.post-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

.post-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__content {
  padding: 22px 24px;
}

.post-card__date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 6px;
  display: block;
}

.post-card__content h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.post-card__content h2 a {
  color: var(--navy);
  text-decoration: none;
}

.post-card__content h2 a:hover {
  text-decoration: underline;
}

.post-card__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* Single post */
.single-post-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

.single-post-content h1 {
  margin-bottom: 8px;
}

.post-meta {
  font-size: 13px;
  color: var(--slate-lt);
  margin-bottom: 32px;
}

.single-post-content h2 {
  margin-top: 36px;
}

.single-post-content h3 {
  margin-top: 28px;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 16px;
}

.single-post-content li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.75;
}

/* Author bio */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  margin-top: 48px;
}

.author-bio__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-bio__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-bio__name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.author-bio__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-body);
}

/* Related posts */
.related-posts {
  margin-top: 48px;
}

.related-posts h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* ========================================================================
   RESOURCES PAGE — SPLIT PANEL
   ======================================================================== */

.res-split { display: grid; grid-template-columns: 1fr; }
@media(min-width:900px) { .res-split { grid-template-columns: 1fr 1fr; } }

.res-panel-left {
  background: var(--navy); position: relative; overflow: hidden;
  padding: clamp(48px,8vw,80px) clamp(24px,6vw,64px);
  display: flex; flex-direction: column; justify-content: center;
}
.res-panel-left::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 0% 40%, rgba(255,255,255,.025) 0%, transparent 65%),
              radial-gradient(ellipse 50% 70% at 100% 80%, rgba(255,255,255,.015) 0%, transparent 60%);
}
.res-left-inner { position: relative; z-index: 1; max-width: 480px; }
@media(max-width:900px) { .res-left-inner { max-width: 100%; } }
.res-left-ey { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; animation: fadeUp .6s ease both; }
.res-left-title { font-family: 'Playfair Display', serif; font-size: clamp(26px,5vw,40px); font-weight: 700; color: #fff; letter-spacing: .02em; line-height: 1.2; margin-bottom: 20px; animation: fadeUp .65s .06s ease both; }
h1.res-left-title { margin: 0 0 20px; }
.res-left-rule { width: 100%; height: 1px; background: rgba(255,255,255,.1); margin-bottom: 22px; animation: fadeUp .65s .1s ease both; }
.res-left-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 28px; animation: fadeUp .65s .14s ease both; }

.res-left-list { list-style: none; border-top: 1px solid rgba(255,255,255,.1); animation: fadeUp .65s .18s ease both; padding: 0; }
.res-left-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ll-icon { flex-shrink: 0; font-size: 18px; opacity: .6; padding-top: 1px; }
.ll-body { flex: 1; }
.ll-title { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: #fff; display: block; margin-bottom: 2px; }
.ll-desc { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.35); line-height: 1.5; }
.ll-divider { padding: 0 !important; border-bottom: 2px solid rgba(255,255,255,.06) !important; }
.ll-divider-label { font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.2); padding: 10px 0 0; }
.res-left-trust { margin-top: 24px; font-size: 11px; font-weight: 300; color: rgba(255,255,255,.25); line-height: 1.75; animation: fadeUp .65s .24s ease both; }

.res-panel-right {
  background: var(--bg); padding: clamp(40px,7vw,72px) clamp(24px,6vw,64px);
  display: flex; flex-direction: column; justify-content: center;
}
.res-form-header { margin-bottom: 28px; animation: fadeUp .65s .08s ease both; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.res-form-ey { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(26,46,74,.38); margin-bottom: 10px; }
.res-form-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,4vw,28px); font-weight: 700; color: var(--navy); letter-spacing: .01em; line-height: 1.2; }
h2.res-form-title { margin: 0; }
.res-form-fields { display: flex; flex-direction: column; gap: 16px; animation: fadeUp .65s .14s ease both; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:500px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(26,46,74,.4); }
.field label .opt { font-weight: 300; text-transform: none; letter-spacing: 0; color: rgba(26,46,74,.28); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%; height: 48px; padding: 0 14px; font-family: 'DM Sans', sans-serif;
  font-size: 16px; color: var(--navy); background: #fff;
  border: 1px solid var(--border); border-radius: 7px; outline: none; -webkit-appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,46,74,.07); }
.field input::placeholder { color: rgba(26,46,74,.22); }
.res-form-submit { margin-top: 8px; animation: fadeUp .65s .22s ease both; }
.btn-submit {
  width: 100%; min-height: 48px; padding: 12px 28px; background: var(--navy); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 7px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,46,74,.2); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.res-form-disclaimer { margin-top: 12px; font-size: 11px; font-weight: 300; color: rgba(26,46,74,.32); text-align: center; line-height: 1.75; }

/* ========================================================================
   RESOURCES PAGE — GLOSSARY / ACCORDION
   ======================================================================== */

.gs { padding: clamp(40px,8vw,64px) clamp(20px,6vw,40px) clamp(48px,8vw,72px); }
.gs-header { text-align: center; margin-bottom: clamp(32px,6vw,48px); }
.gs-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 10px; }
.gs-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,5vw,30px); color: var(--navy); margin-bottom: 12px; }
h2.gs-title { margin-bottom: 12px; }
.gs-desc { font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.8; max-width: 560px; margin: 0 auto; }
.gs-grid { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(32px,6vw,48px); }

.gs-ch { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(14px,3vw,20px); padding-bottom: 12px; border-bottom: 2px solid var(--navy); }
.gs-cn { font-size: 10px; font-weight: 500; letter-spacing: .1em; color: var(--white); background: var(--navy); padding: 4px 10px; border-radius: 4px; flex-shrink: 0; }
.gs-ct { font-family: 'Playfair Display', serif; font-size: clamp(17px,3.5vw,20px); color: var(--navy); }
h3.gs-ct { margin: 0; }

.gs-tl { display: flex; flex-direction: column; }
.gs-ti { border-bottom: 1px solid var(--border); overflow: hidden; }
.gs-tt {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(14px,3vw,18px) clamp(12px,3vw,16px);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; transition: background .15s;
}
.gs-tt:hover { background: rgba(26,46,74,.03); }
.gs-tn { font-family: 'Playfair Display', serif; font-size: clamp(14px,3vw,16px); color: var(--navy); font-weight: 600; flex: 1; }
.gs-tc { font-size: 18px; color: var(--slate-lt); flex-shrink: 0; transition: transform .25s ease; }
.gs-ti.open .gs-tc { transform: rotate(180deg); }
.gs-tb { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.gs-ti.open .gs-tb { max-height: 400px; }
.gs-td { padding: 0 clamp(12px,3vw,16px) clamp(14px,3vw,18px); font-size: clamp(13px,2.8vw,14px); font-weight: 300; color: var(--slate); line-height: 1.8; }

.gs-cta-wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(16px,4vw,32px) clamp(40px,6vw,64px); }
.gs-cta-box {
  background: var(--navy); border-radius: 14px;
  padding: clamp(32px,6vw,48px) clamp(24px,5vw,40px);
  text-align: center; color: #fff;
}
.gs-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,5vw,30px); font-weight: 700; letter-spacing: .02em; margin-bottom: 12px; color: #fff; }
h2.gs-cta-title { margin-bottom: 12px; }
.gs-cta-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 480px; margin: 0 auto 24px; }
.gs-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  border-radius: 7px; min-height: 48px; transition: background .15s, transform .15s;
}
.gs-cta-btn:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); text-decoration: none; }

.gs-footer-disc { max-width: 1080px; margin: 0 auto; padding: 20px clamp(16px,4vw,32px) 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border); }
@media(max-width:500px) { .gs-footer-disc { flex-direction: column; text-align: center; } }
.gs-disc-text { font-size: 10px; font-weight: 300; color: var(--slate-lt); line-height: 1.6; max-width: 600px; }

/* ========================================================================
   HOW WE WORK PAGE
   ======================================================================== */

/* Hero */
.hww-hero {
  background: var(--navy); text-align: center; position: relative; overflow: hidden;
  padding: clamp(56px,12vw,96px) clamp(20px,6vw,48px) clamp(52px,10vw,80px);
}
.hww-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 60%, rgba(255,255,255,.035) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 90% 15%, rgba(255,255,255,.025) 0%, transparent 65%);
}
.hww-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hww-hero-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: clamp(14px,3vw,20px); animation: fadeUp .65s ease both; }
.hww-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px,8vw,50px); font-weight: 700; color: #fff; line-height: 1.12; letter-spacing: .01em; margin-bottom: clamp(18px,4vw,24px); animation: fadeUp .7s .05s ease both; }
h1.hww-hero-title { margin: 0 0 clamp(18px,4vw,24px); }
.hww-hero-rule { width: 40px; height: 1px; background: rgba(255,255,255,.18); margin: 0 auto clamp(18px,4vw,24px); animation: fadeUp .65s .1s ease both; }
.hww-hero-desc { font-size: clamp(14px,3vw,16px); font-weight: 300; color: rgba(255,255,255,.52); line-height: 1.8; max-width: 540px; margin: 0 auto; animation: fadeUp .65s .14s ease both; }
.hww-hero-btns { display: flex; justify-content: center; gap: 12px; margin-top: clamp(22px,4vw,32px); animation: fadeUp .65s .2s ease both; }
.hww-hero-btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; border-radius: 7px; min-height: 44px;
  transition: background .15s, transform .15s; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); color: #fff; cursor: pointer;
}
.hww-hero-btn:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); }

/* Process */
.hww-process-section { background: var(--white); border-bottom: 1px solid var(--border); }
.hww-process-inner { max-width: 760px; margin: 0 auto; padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px); }
.hww-process-header { text-align: center; margin-bottom: clamp(20px,4vw,28px); }
.hww-process-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 10px; }
.hww-process-t { font-family: 'Playfair Display', serif; font-size: clamp(24px,5vw,34px); color: var(--navy); letter-spacing: .02em; margin-bottom: 14px; }
h2.hww-process-t { margin-bottom: 14px; }
.hww-process-d { font-size: 15px; font-weight: 300; color: var(--slate); line-height: 1.8; max-width: 600px; margin: 0 auto; }

.hww-playbook-intro {
  background: var(--navy); border-radius: 14px; padding: clamp(28px,5vw,40px) clamp(24px,5vw,36px);
  margin-bottom: clamp(28px,5vw,40px); color: #fff;
}
.hww-playbook-intro p { font-size: clamp(14px,3vw,15px); font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 16px; }
.hww-playbook-intro p:last-child { margin-bottom: 0; }
.hww-playbook-intro strong { font-weight: 500; color: rgba(255,255,255,.9); }

.hww-plays { display: flex; flex-direction: column; gap: 16px; }
.hww-play {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(26,46,74,.04), 0 8px 28px rgba(26,46,74,.08);
  transition: box-shadow .2s, transform .2s;
}
.hww-play:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,46,74,.08), 0 16px 40px rgba(26,46,74,.14); }
.hww-play-top {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,3vw,24px); align-items: center;
  padding: clamp(20px,4vw,28px); background: var(--white);
}
.hww-play-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; font-weight: 700;
}
.hww-play-title { font-family: 'Playfair Display', serif; font-size: clamp(18px,3.5vw,22px); color: var(--navy); line-height: 1.25; margin-bottom: 4px; }
h3.hww-play-title { margin: 0 0 4px; }
.hww-play-tagline { font-size: clamp(13px,2.8vw,14px); font-weight: 300; color: var(--slate); line-height: 1.65; }
.hww-play-body { padding: clamp(16px,3vw,22px) clamp(20px,4vw,28px) clamp(20px,4vw,28px); background: var(--light); border-top: 1px solid var(--border); }
.hww-play-body p { font-size: clamp(13px,2.8vw,14px); font-weight: 300; color: #3a4f68; line-height: 1.75; }

/* What's Covered */
.hww-covered-section { background: var(--bg); border-bottom: 1px solid var(--border); }
.hww-covered-inner { max-width: 760px; margin: 0 auto; padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px); }
.hww-covered-header { text-align: center; margin-bottom: clamp(24px,5vw,32px); }
.hww-covered-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 10px; }
.hww-covered-t { font-family: 'Playfair Display', serif; font-size: clamp(22px,5vw,30px); color: var(--navy); margin-bottom: 12px; }
h2.hww-covered-t { margin-bottom: 12px; }
.hww-covered-d { font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.8; max-width: 540px; margin: 0 auto; }
.hww-covered-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media(min-width:600px) { .hww-covered-grid { grid-template-columns: 1fr 1fr; } }
.hww-covered-item {
  background: var(--white); border-radius: 12px; padding: clamp(20px,4vw,26px);
  border: 1px solid var(--border); transition: border-color .15s, box-shadow .15s;
}
.hww-covered-item:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(26,46,74,.08); }
.hww-covered-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
h3.hww-covered-name { margin: 0 0 6px; }
.hww-covered-desc { font-size: 13px; font-weight: 300; color: var(--slate); line-height: 1.7; }

/* Fee Section */
.hww-fee-section { background: var(--white); border-bottom: 1px solid var(--border); }
.hww-fee-inner { max-width: 640px; margin: 0 auto; padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px); }
.hww-fee-header { margin-bottom: 28px; }
.hww-fee-title { font-family: 'Playfair Display', serif; font-size: clamp(24px,5vw,34px); color: var(--navy); letter-spacing: .01em; line-height: 1.2; margin-bottom: 14px; }
h2.hww-fee-title { margin-bottom: 14px; }
.hww-fee-rule { width: 40px; height: 2px; background: var(--navy); opacity: .2; margin-bottom: 14px; }
.hww-fee-blurb { font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.8; max-width: 580px; }
.hww-fee-card { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(26,46,74,.12); }
.hww-fee-banner { background: var(--navy); padding: 20px 28px; }
.hww-fee-banner-t { font-family: 'Playfair Display', serif; color: #fff; font-size: 22px; letter-spacing: .06em; }
h3.hww-fee-banner-t { margin: 0; }
.hww-fee-banner-s { color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; font-weight: 500; }
.hww-fee-body { background: #fff; padding: 36px 32px 28px; }
@media(max-width:500px) { .hww-fee-body { padding: 24px 16px 20px; } }

.hww-inputs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:500px) { .hww-inputs-row { grid-template-columns: 1fr; } }
.hww-input-label { font-size: 11px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; display: block; }
.hww-input-wrap { display: flex; align-items: center; border: 1.5px solid #d5d9e2; border-radius: 10px; overflow: hidden; transition: border-color .15s; }
.hww-input-wrap:focus-within { border-color: var(--navy); }
.hww-input-prefix { background: var(--light); color: var(--navy); font-size: 17px; font-weight: 500; padding: 13px 14px; border-right: 1.5px solid #d5d9e2; user-select: none; }
.hww-input-wrap input { border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 300; color: var(--navy); padding: 13px 14px; width: 100%; background: #fff; }
.hww-input-wrap input::placeholder { color: #b0b8cc; }

.hww-section-label { font-size: 11px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; }
.hww-breakdown { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 28px; }
.hww-breakdown-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--border); transition: background .15s; }
.hww-breakdown-row:last-child { border-bottom: none; }
.hww-breakdown-row:nth-child(odd) { background: var(--light); }
.hww-breakdown-row:nth-child(even) { background: #fff; }
.hww-breakdown-row.active { background: #dce6f5 !important; }
.hww-breakdown-row.inactive { opacity: .4; }
.hww-bd-label { font-size: 13px; font-weight: 400; color: #3a4f68; }
.hww-bd-rate { font-size: 13px; font-weight: 500; color: var(--navy); min-width: 48px; text-align: right; }
.hww-bd-amt { font-size: 13px; font-weight: 300; color: var(--navy); min-width: 88px; text-align: right; opacity: 0; transition: opacity .2s; }
.hww-bd-amt.visible { opacity: 1; }

.hww-mode-indicator { display: none; align-items: center; gap: 12px; margin-top: 28px; margin-bottom: 20px; flex-wrap: wrap; opacity: 0; transition: opacity .3s; }
.hww-mode-indicator.visible { display: flex; opacity: 1; }
.hww-mode-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.hww-mode-dot { width: 6px; height: 6px; border-radius: 50%; background: #5cb87a; flex-shrink: 0; }
.hww-mode-desc { font-size: 12px; color: var(--slate); font-weight: 300; }

.hww-result { background: var(--navy); border-radius: 12px; padding: 24px 26px; display: none; grid-template-columns: 1fr 1fr 1fr; gap: 16px; align-items: center; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.hww-result.visible { display: grid; opacity: 1; transform: translateY(0); }
@media(max-width:500px) { .hww-result.visible { grid-template-columns: 1fr; text-align: center; gap: 12px; } .hww-result-block.center { border: none; padding: 0; } .hww-result-block.right { text-align: center; } }
.hww-result-rlabel { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 5px; }
.hww-result-value { font-family: 'Playfair Display', serif; color: #fff; }
.hww-result-value.large { font-size: 32px; }
.hww-result-value.medium { font-size: 22px; }
.hww-result-block.center { text-align: center; border-left: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); padding: 0 16px; }
.hww-result-block.right { text-align: right; }
.hww-min-note { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 5px; font-style: italic; }

.hww-quarterly-wrap { display: none; opacity: 0; transition: opacity .3s; }
.hww-quarterly-wrap.visible { display: block; opacity: 1; }
.hww-quarterly-note { font-size: 12px; color: var(--slate); font-weight: 300; font-style: italic; margin-bottom: 10px; }

/* Bottom CTA */
.hww-bottom-section { max-width: 1080px; margin: 0 auto; padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px); }
.hww-bottom-cta { background: var(--navy); border-radius: 14px; padding: clamp(32px,6vw,48px) clamp(24px,5vw,40px); text-align: center; color: #fff; }
.hww-bottom-cta-t { font-family: 'Playfair Display', serif; font-size: clamp(22px,5vw,30px); font-weight: 700; letter-spacing: .02em; margin-bottom: 12px; color: #fff; }
h2.hww-bottom-cta-t { margin-bottom: 12px; }
.hww-bottom-cta-d { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 480px; margin: 0 auto 24px; }
.hww-btn-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  border-radius: 7px; min-height: 48px; transition: background .15s, transform .15s;
}
.hww-btn-book:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); text-decoration: none; }

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */

.contact-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

.contact-info {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

.contact-info a {
  color: var(--navy);
  font-weight: 400;
}

/* ========================================================================
   PAGINATION
   ======================================================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
}

.pagination a:hover {
  background: var(--light);
  text-decoration: none;
}

.pagination .current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ========================================================================
   SECTION 3: VALUE STRIP / PROCESS
   ======================================================================== */

.vs { background: var(--white); width: 100%; border-bottom: 1px solid var(--border); }
.vs-intro {
  max-width: 640px; margin: 0 auto;
  padding: clamp(28px,8vw,44px) clamp(20px,6vw,40px) clamp(24px,6vw,36px);
  text-align: center; font-family: 'Playfair Display', serif;
  font-size: clamp(15px,4vw,18px); font-weight: 400; font-style: italic;
  color: #3a4e66; line-height: 1.8; border-bottom: 1px solid var(--border);
}
.vs-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr; }
@media(min-width:640px) { .vs-inner { grid-template-columns: repeat(3,1fr); } }
.vs-item { padding: clamp(22px,5vw,32px) clamp(20px,5vw,36px); border-bottom: 1px solid var(--border); transition: background .15s; }
.vs-item:last-child { border-bottom: none; }
@media(min-width:640px) {
  .vs-item { border-bottom: none; border-right: 1px solid var(--border); }
  .vs-item:last-child { border-right: none; }
  .vs-item:nth-child(odd) { background: var(--light); }
  .vs-item:nth-child(even) { background: var(--white); }
  .vs-item:hover { background: #f0f4ff !important; }
}
.vs-step { font-family: 'Playfair Display', serif; font-size: 28px; color: #d0d6e0; margin-bottom: 6px; }
.vs-label { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 6px; }
.vs-title { font-family: 'Playfair Display', serif; font-size: clamp(15px,3.5vw,17px); color: var(--navy); margin-bottom: 6px; }
.vs-desc { font-size: clamp(11px,2.5vw,13px); font-weight: 300; color: var(--slate); line-height: 1.7; }

/* ========================================================================
   SECTION 4: CASE STUDIES (PLAYBOOK IN ACTION)
   ======================================================================== */

.pia { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pia-header { text-align: center; padding: clamp(40px,8vw,64px) clamp(20px,6vw,40px) clamp(24px,5vw,32px); }
.pia-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 10px; }
.pia-t { font-family: 'Playfair Display', serif; font-size: clamp(22px,5vw,30px); color: var(--navy); margin-bottom: 12px; }
.pia-d { font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.8; max-width: 560px; margin: 0 auto; }
.pia-grid { max-width: 1080px; margin: 0 auto; padding: 0 clamp(16px,4vw,32px) clamp(48px,8vw,64px); display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px) { .pia-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:960px) { .pia-grid { grid-template-columns: repeat(3,1fr); } }
.cs-card {
  background: transparent; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 6px rgba(26,46,74,.04), 0 12px 40px rgba(26,46,74,.08);
  transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit;
}
.cs-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(26,46,74,.08), 0 20px 48px rgba(26,46,74,.14); }
.cs-banner { background: var(--navy); padding: clamp(18px,3vw,24px) clamp(16px,3.5vw,22px); }
.cs-ey { font-size: 9px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 5px; }
.cs-name { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(16px,3.5vw,19px); letter-spacing: .02em; line-height: 1.25; margin-bottom: 6px; }
.cs-tag { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.5; }
.cs-summary { background: var(--white); padding: clamp(14px,3vw,18px) clamp(16px,3.5vw,22px); font-size: 12px; font-weight: 300; color: var(--slate); line-height: 1.75; flex: 1; border-top: 1px solid var(--border); }
.cs-bottom { background: var(--navy); padding: 12px clamp(16px,3.5vw,22px); display: flex; justify-content: space-between; align-items: center; }
.cs-bottom-text { font-size: 10px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.cs-bottom-arrow { color: #fff; font-size: 15px; transition: transform .2s; }
.cs-card:hover .cs-bottom-arrow { transform: translateX(4px); }
.view-all { text-align: center; padding: 0 20px clamp(40px,6vw,56px); }
.view-all a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: .05em; color: var(--navy); text-decoration: none;
  padding: 10px 20px; border: 1px solid var(--border); border-radius: 7px;
  transition: background .15s, border-color .15s, transform .15s;
}
.view-all a:hover { border-color: var(--navy); background: rgba(26,46,74,.03); transform: translateY(-1px); }

/* ========================================================================
   SECTION 5: FREE TOOLS / CALCULATORS
   ======================================================================== */

.tools-section {
  background: var(--navy); width: 100%; position: relative; overflow: hidden;
  padding: clamp(40px,8vw,64px) clamp(16px,4vw,32px) clamp(48px,8vw,72px);
  display: flex; flex-direction: column; align-items: center;
}
.tools-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 60%, rgba(255,255,255,.03) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(255,255,255,.02) 0%, transparent 55%);
}
.tools-header { text-align: center; max-width: 560px; position: relative; z-index: 1; margin-bottom: clamp(28px,6vw,40px); }
.tools-ey { font-size: clamp(10px,2vw,11px); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.tools-title { font-family: 'Playfair Display', serif; font-size: clamp(24px,5vw,32px); color: #fff; margin-bottom: 12px; }
.tools-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.75; }
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 20px; width: 100%; max-width: 1040px; position: relative; z-index: 1; }
@media(min-width:640px) { .tools-grid { grid-template-columns: repeat(3,1fr); } }
.tool-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 12px 40px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,.1), 0 24px 56px rgba(0,0,0,.18); }
.tool-banner { background: var(--light); padding: clamp(20px,4vw,28px) clamp(20px,4vw,26px) clamp(16px,3vw,20px); border-bottom: 1px solid var(--border); }
.tool-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.tool-eyebrow { font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 6px; }
.tool-name { font-family: 'Playfair Display', serif; color: var(--navy); font-size: clamp(18px,3.5vw,22px); letter-spacing: .02em; line-height: 1.2; }
.tool-body { padding: clamp(16px,3.5vw,22px) clamp(18px,4vw,24px); flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; background: var(--white); }
.tool-tagline { font-size: clamp(13px,2.8vw,14px); font-weight: 300; color: var(--slate); line-height: 1.7; }
.btn-launch {
  display: flex; width: 100%; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 22px; background: var(--navy); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 7px; cursor: pointer; min-height: 48px;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-launch:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,46,74,.3); }
.btn-launch:hover .btn-arrow { transform: translateX(3px); }
.tools-bottom { width: 100%; max-width: 1040px; position: relative; z-index: 1; margin-top: clamp(28px,6vw,40px); }
.tools-bottom-inner {
  background: var(--white); border-radius: 14px;
  padding: clamp(32px,6vw,48px) clamp(24px,5vw,40px);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 12px 40px rgba(0,0,0,.12);
}
.tools-bottom-t { font-family: 'Playfair Display', serif; font-size: clamp(20px,4.5vw,26px); font-weight: 700; color: var(--navy); letter-spacing: .02em; margin-bottom: 12px; line-height: 1.25; }
.tools-bottom-d { font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.75; max-width: 480px; margin: 0 auto 24px; }
.btn-book {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  background: var(--navy); border: none;
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 7px; min-height: 48px;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-book:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,46,74,.25); }
.tools-disclaimer { max-width: 720px; width: 100%; margin-top: 20px; position: relative; z-index: 1; font-size: 10px; font-weight: 300; color: rgba(255,255,255,.25); line-height: 1.6; text-align: center; }

/* ========================================================================
   FOOTER
   ======================================================================== */

.site-footer { background: #1a2e4a; padding: 56px 40px 0; }
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { flex-shrink: 0; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 20px; color: white;
  letter-spacing: 0.02em; line-height: 1.2; text-decoration: none; display: block;
}
.footer-logo:hover { text-decoration: none; }
.footer-logo span {
  display: block; font-size: 10px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 5px;
}
.footer-nav {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; align-items: center;
}
.footer-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none; padding: 6px 12px;
  border-radius: 6px; transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.footer-nav a:hover { color: white; background: rgba(255,255,255,0.07); text-decoration: none; }
.footer-nav .nav-book {
  background: white; color: #1a2e4a; padding: 9px 18px; border-radius: 7px;
  margin-left: 6px; transition: background 0.15s, transform 0.15s;
}
.footer-nav .nav-book:hover { background: #eef0f4; color: #1a2e4a; transform: translateY(-1px); }
.footer-middle {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 32px;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start;
}
.footer-contact-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 7px;
}
.footer-contact-value {
  font-family: 'Playfair Display', serif; font-size: 15px; color: white;
  text-decoration: none; line-height: 1.4; transition: color 0.15s; display: block;
}
.footer-contact-value:hover { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-note { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); margin-top: 4px; line-height: 1.5; }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-social-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.linkedin-btn {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: white; text-decoration: none; padding: 10px 16px; border-radius: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  transition: background 0.15s, border-color 0.15s, transform 0.15s; white-space: nowrap;
}
.linkedin-btn:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); text-decoration: none; }
.footer-bottom { padding: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.footer-disclosure { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); line-height: 1.75; max-width: 860px; }
.footer-legal-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer-legal-links { display: flex; align-items: center; gap: 16px; }
.footer-legal-link { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.15s; }
.footer-legal-link:hover { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ========================================================================
   404 PAGE
   ======================================================================== */

.page-404 {
  text-align: center;
  padding: 80px 24px;
}

.page-404 h1 {
  font-size: 72px;
  margin-bottom: 8px;
}

.page-404 p {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 32px;
}

/* ========================================================================
   CASE STUDY SINGLE
   ======================================================================== */

.case-study-single {
  max-width: 780px;
  margin: 0 auto;
}

.case-study-single .banner {
  border-radius: 16px 16px 0 0;
}

.case-study-content {
  background: var(--white);
  padding: 36px 40px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(26, 46, 74, 0.12);
}

.case-study-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.case-study-content p {
  font-size: 15px;
  line-height: 1.8;
}

/* ========================================================================
   INLINE CTA (for guide page)
   ======================================================================== */

.inline-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  margin: 36px 0;
}

.inline-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
}

.inline-cta h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .post-list {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .card-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 960px) {
  .intro-split {
    grid-template-columns: 1fr;
  }

  .intro-split__photo {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .header-inner {
    position: relative;
  }

  .nav-toggle-label {
    display: block;
  }

  .header-nav-row {
    padding: 0;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 105;
  }

  .nav-toggle:checked ~ .header-nav-row .primary-nav {
    transform: translateX(0);
  }

  .primary-nav li {
    width: 100%;
  }

  .primary-nav li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav .current-menu-item a::after,
  .primary-nav .current_page_item a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 16px;
  }

  .primary-nav .nav-cta a {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
  }

  /* Mobile dropdown */
  .has-dropdown > a::after {
    display: none !important;
  }
  .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: 0;
    background: transparent;
  }
  .has-dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  .dropdown-menu li a:hover {
    background: transparent;
  }

  .single-post-content {
    padding: 28px 20px;
  }

  .case-study-content {
    padding: 24px 20px;
  }
}

@media (max-width: 720px) {
  .site-footer { padding: 40px 20px 0; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { justify-content: flex-start; }
  .footer-nav .nav-book { margin-left: 0; }
  .footer-middle { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-social { align-items: flex-start; grid-column: span 2; flex-direction: row; align-items: center; }
  .footer-legal-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .section {
    padding: 44px 0;
  }

  .banner {
    padding: 16px 20px;
  }

  .stat-cell {
    padding: 10px 12px;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 440px) {
  .footer-middle { grid-template-columns: 1fr; }
  .footer-social { grid-column: span 1; }
}

/* ========================================================================
   UTILITY
   ======================================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
