/*
Theme Name:  Adam Klugman
Description: Custom multi-page theme for Adam Klugman — Transformation Coach.
Author:      Built with Claude / Anthropic
Version:     2.0.0
*/

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

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

:root {
  --coral:      #C8441A;
  --coral-mid:  #E8541A;
  --coral-pale: #FDF4EE;
  --gold:       #C4922A;
  --ink:        #1C1410;
  --ink-soft:   #3D2E1E;
  --ink-mid:    #5A4535;
  --warm-white: #FEFCF8;
  --cream:      #F7F2EA;
  --sand:       #EDE4D3;
  --sand-dark:  #D9CCBA;
  --muted:      #8A7260;
  --rule:       #DDD4C4;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.7; font-size: 17px;
  margin: 0 !important; padding: 0 !important;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--coral); }

/* URGENCY BANNER */
.ak-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--coral-mid); color: white;
  padding: 10px 48px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: 14px; transform: translateY(-100%);
  animation: bannerIn 0.5s ease 12s forwards;
}
@keyframes bannerIn { to { transform: translateY(0); } }
.ak-banner-btn {
  background: white; color: var(--coral-mid); border: none;
  padding: 6px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.ak-banner-close {
  position: absolute; right: 20px; background: none; border: none;
  color: white; font-size: 20px; cursor: pointer; opacity: .6; line-height: 1;
}

/* NAV */
.ak-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(254,252,248,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 60px; display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.ak-nav-logo { text-decoration: none; }
.ak-nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.ak-nav-links a { text-decoration: none; color: var(--ink-mid); font-size: 14px; transition: color .2s; }
.ak-nav-links a:hover, .ak-nav-links a.current { color: var(--coral-mid); }
.ak-nav-cta {
  background: var(--coral-mid) !important; color: white !important;
  padding: 9px 22px; border-radius: 100px; font-weight: 500 !important;
}
.ak-nav-cta:hover { background: var(--coral) !important; color: white !important; }

/* BUTTONS */
.ak-btn {
  display: inline-block; background: var(--coral-mid); color: white;
  padding: 14px 32px; border-radius: 100px; font-size: 15px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.ak-btn:hover { background: var(--coral); color: white; transform: translateY(-1px); }

.ak-btn-outline {
  display: inline-block; background: transparent; color: var(--ink);
  padding: 13px 32px; border-radius: 100px; font-size: 15px;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  border: 1.5px solid var(--sand-dark); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.ak-btn-outline:hover { border-color: var(--coral-mid); color: var(--coral-mid); }

/* TYPOGRAPHY */
.ak-label {
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block;
}
.ak-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 62px); font-weight: 400;
  line-height: 1.08; letter-spacing: -1px; color: var(--ink);
}
.ak-h1 em { font-style: italic; color: var(--coral-mid); }
.ak-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 400;
  line-height: 1.15; letter-spacing: -.5px; color: var(--ink); margin-bottom: 20px;
}
.ak-lead {
  font-size: clamp(17px, 1.8vw, 20px); color: var(--ink-mid);
  line-height: 1.75; font-weight: 300; max-width: 640px;
}
.ak-rule { border: none; border-top: 1px solid var(--rule); margin: 48px 0; }

/* LAYOUT */
.ak-section { padding: 96px 80px; }
.ak-section.cream { background: var(--cream); }
.ak-section.dark { background: var(--ink); }
.ak-container { max-width: 1180px; margin: 0 auto; }
.ak-narrow { max-width: 720px; margin: 0 auto; }

/* HERO */
.ak-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; overflow: hidden;
}
.ak-hero-left {
  padding: 80px 64px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.ak-hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, var(--coral-pale) 0%, transparent 65%);
  z-index: 0;
}
.ak-hero-left > * { position: relative; z-index: 1; }
.ak-hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.ak-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
.ak-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.2vw, 58px); font-weight: 400;
  line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 28px;
}
.ak-hero h1 em { font-style: italic; color: var(--coral-mid); }
.ak-hero-sub {
  font-size: 18px; color: var(--ink-mid); line-height: 1.8;
  max-width: 460px; margin-bottom: 40px; font-weight: 300;
}
.ak-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.ak-hero-pull {
  font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic;
  color: var(--muted); line-height: 1.6;
  border-left: 2px solid var(--sand-dark); padding-left: 16px; max-width: 360px;
}
.ak-hero-right { position: relative; overflow: hidden; background: var(--sand); }
.ak-hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ak-hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: var(--muted); text-align: center; padding: 40px;
}
.ak-hero-photo-placeholder p { font-size: 14px; opacity: .6; line-height: 1.6; font-style: italic; }

/* TRUST BAR */
.ak-trust-bar {
  background: var(--ink); padding: 24px 80px;
  display: flex; align-items: center; justify-content: center;
}
.ak-trust-item { text-align: center; padding: 0 40px; }
.ak-trust-num { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--coral-mid); display: block; }
.ak-trust-lbl { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }
.ak-trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,.08); }

/* INTRO SECTION */
.ak-intro {
  padding: 96px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.ak-intro-list {
  list-style: none; margin: 28px 0 36px;
  display: flex; flex-direction: column; gap: 10px;
}
.ak-intro-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 16px; color: var(--ink-soft); font-weight: 300; line-height: 1.5;
}
.ak-intro-list li::before { content: '—'; color: var(--coral-mid); flex-shrink: 0; }
.ak-intro-close {
  font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic;
  color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px;
}
.ak-intro-right p {
  font-size: 16px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 20px; font-weight: 300;
}

/* PULLQUOTE */
.ak-pullquote { background: var(--cream); padding: 72px 80px; text-align: center; }
.ak-pullquote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 400; font-style: italic;
  color: var(--ink); line-height: 1.45; max-width: 820px; margin: 0 auto;
}
.ak-pullquote cite {
  display: block; margin-top: 20px; font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-style: normal; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase;
}

/* TESTIMONIALS */
.ak-testi-section { background: var(--ink); padding: 96px 80px; }
.ak-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 52px; }
.ak-tc { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; }
.ak-tc-rule { width: 24px; height: 1px; background: var(--coral-mid); margin-bottom: 20px; }
.ak-tc-quote {
  font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic;
  color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 24px;
}
.ak-tc-name { font-size: 13px; font-weight: 500; color: white; margin-bottom: 3px; }
.ak-tc-title { font-size: 12px; color: rgba(255,255,255,.38); }

/* SERVICES */
.ak-services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; margin-top: 52px;
}
.ak-service-num {
  font-family: 'DM Serif Display', serif; font-size: 40px;
  color: var(--sand-dark); line-height: 1; margin-bottom: 14px;
}
.ak-service-title {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}
.ak-service-body { font-size: 15px; color: var(--ink-mid); line-height: 1.75; font-weight: 300; }

/* OFFERS */
.ak-offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.ak-offer-card {
  border: 1px solid var(--rule); border-radius: 16px; padding: 32px; background: white;
  transition: border-color .2s, transform .2s;
}
.ak-offer-card:hover { border-color: var(--coral-mid); transform: translateY(-3px); }
.ak-offer-card.featured { background: var(--coral-mid); border-color: var(--coral-mid); }
.ak-offer-icon { font-size: 26px; margin-bottom: 14px; }
.ak-offer-title {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
}
.ak-offer-card.featured .ak-offer-title { color: white; }
.ak-offer-body { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.ak-offer-card.featured .ak-offer-body { color: rgba(255,255,255,.8); }
.ak-offer-price { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--coral-mid); margin-bottom: 16px; }
.ak-offer-card.featured .ak-offer-price { color: white; }
.ak-offer-price.free { font-size: 20px; color: var(--muted); }
.ak-offer-card.featured .ak-offer-price.free { color: rgba(255,255,255,.7); }
.ak-offer-btn {
  display: inline-block; background: var(--ink); color: white;
  padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 500;
  text-decoration: none; transition: background .2s;
}
.ak-offer-btn:hover { background: var(--coral); color: white; }
.ak-offer-card.featured .ak-offer-btn { background: white; color: var(--coral-mid); }
.ak-offer-card.featured .ak-offer-btn:hover { background: var(--ink); color: white; }

/* PAGE HERO */
.ak-page-hero {
  padding: 96px 80px 72px; background: var(--warm-white); position: relative; overflow: hidden;
}
.ak-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, var(--coral-pale) 0%, transparent 60%);
}
.ak-page-hero > * { position: relative; z-index: 1; }

/* ABOUT */
.ak-about-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px;
  align-items: start; padding: 80px;
}
.ak-about-photo { position: sticky; top: 100px; }
.ak-about-photo-box {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; background: var(--sand);
}
.ak-about-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.ak-about-caption { margin-top: 14px; font-size: 13px; color: var(--muted); font-style: italic; line-height: 1.5; }
.ak-about-content p { font-size: 17px; color: var(--ink-soft); line-height: 1.9; margin-bottom: 22px; font-weight: 300; }
.ak-about-content h2 {
  font-family: 'DM Serif Display', serif; font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400; color: var(--ink); margin: 52px 0 20px; line-height: 1.25;
}
.ak-about-content h2:first-child { margin-top: 0; }

/* WORKING WITH ME */
.ak-working-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 72px; padding: 80px; align-items: start;
}
.ak-working-content p { font-size: 17px; color: var(--ink-soft); line-height: 1.9; margin-bottom: 22px; font-weight: 300; }
.ak-working-content h2 {
  font-family: 'DM Serif Display', serif; font-size: clamp(20px, 2vw, 28px);
  font-weight: 400; color: var(--ink); margin: 48px 0 18px;
}
.ak-working-content h2:first-child { margin-top: 0; }
.ak-working-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.ak-sidebar-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid var(--rule); }
.ak-sidebar-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.ak-sidebar-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }

/* TALK PAGE */
.ak-talk-hero { padding: 96px 80px 64px; background: var(--warm-white); text-align: center; position: relative; overflow: hidden; }
.ak-talk-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--coral-pale) 0%, transparent 65%);
}
.ak-talk-hero > * { position: relative; z-index: 1; }
.ak-talk-intro { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--ink-mid); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.ak-talk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 64px 80px; background: var(--cream); }
.ak-talk-card { background: white; border-radius: 20px; padding: 40px; border: 1px solid var(--rule); display: flex; flex-direction: column; }
.ak-talk-card.urgent { background: var(--ink); border-color: var(--ink); }
.ak-talk-card h2 { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 16px; }
.ak-talk-card.urgent h2 { color: white; }
.ak-talk-card p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-weight: 300; }
.ak-talk-card.urgent p { color: rgba(255,255,255,.6); }
.ak-talk-actions { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.ak-phone { font-family: 'DM Serif Display', serif; font-size: 32px; color: white; margin: 12px 0; letter-spacing: -.5px; }
.ak-talk-note { font-size: 13px; color: var(--muted); font-style: italic; line-height: 1.6; margin-top: 8px; }
.ak-talk-card.urgent .ak-talk-note { color: rgba(255,255,255,.35); }

/* BLOG */
.ak-blog-hero { padding: 80px 80px 56px; }
.ak-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; padding: 0 80px 80px; }
.ak-post-thumb { aspect-ratio: 3/2; border-radius: 12px; overflow: hidden; background: var(--sand); margin-bottom: 20px; }
.ak-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ak-post-card:hover .ak-post-thumb img { transform: scale(1.03); }
.ak-post-meta { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: flex; gap: 10px; }
.ak-post-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 10px; text-decoration: none; display: block; transition: color .2s; }
.ak-post-title:hover { color: var(--coral-mid); }
.ak-post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 14px; }

/* SINGLE POST */
.ak-single-hero { padding: 80px 80px 56px; }
.ak-single-content { max-width: 700px; margin: 0 auto; padding: 0 80px 96px; }
.ak-single-content p { font-size: 18px; color: var(--ink-soft); line-height: 1.9; margin-bottom: 26px; font-weight: 300; }
.ak-single-content h2 { font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 400; color: var(--ink); margin: 48px 0 20px; }
.ak-single-content h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 600; color: var(--ink); margin: 36px 0 14px; }
.ak-single-content blockquote { border-left: 3px solid var(--coral-mid); padding-left: 24px; margin: 36px 0; font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--ink-mid); line-height: 1.6; }
.ak-single-content ul, .ak-single-content ol { margin: 0 0 24px 24px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; font-weight: 300; }

/* GENERIC PAGE */
.ak-generic-hero { padding: 80px 80px 56px; }
.ak-generic-content { max-width: 760px; margin: 0 auto; padding: 0 80px 96px; }
.ak-generic-content p { font-size: 17px; color: var(--ink-soft); line-height: 1.9; margin-bottom: 22px; font-weight: 300; }
.ak-generic-content h2 { font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 400; color: var(--ink); margin: 44px 0 18px; }
.ak-generic-content ul, .ak-generic-content ol { margin: 0 0 24px 28px; font-size: 16px; color: var(--ink-soft); line-height: 1.8; font-weight: 300; }

/* FOOTER */
.ak-footer {
  background: var(--ink); color: white; padding: 64px 80px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.ak-foot-brand { font-family: 'DM Serif Display', serif; font-size: 22px; color: white; margin-bottom: 12px; }
.ak-foot-brand span { color: var(--coral-mid); }
.ak-foot-tagline { font-size: 14px; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 20px; font-style: italic; font-weight: 300; }
.ak-foot-contact a { display: block; font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: 6px; transition: color .2s; }
.ak-foot-contact a:hover { color: var(--coral-mid); }
.ak-foot-col h5 { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,.22); margin-bottom: 18px; }
.ak-foot-col a { display: block; font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: 10px; transition: color .2s; font-weight: 300; }
.ak-foot-col a:hover { color: var(--coral-mid); }
.ak-foot-bottom { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; margin-top: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(255,255,255,.2); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ak-hero { grid-template-columns: 1fr; }
  .ak-hero-right { display: none; }
  .ak-hero-left, .ak-page-hero, .ak-working-hero, .ak-talk-hero, .ak-blog-hero, .ak-single-hero, .ak-generic-hero { padding: 64px 40px; }
  .ak-nav { padding: 0 24px; }
  .ak-nav-links li:not(:last-child) { display: none; }
  .ak-intro, .ak-about-grid, .ak-working-grid, .ak-talk-grid { grid-template-columns: 1fr; padding: 48px 40px; gap: 40px; }
  .ak-about-photo { position: static; }
  .ak-working-sidebar { position: static; }
  .ak-testi-section, .ak-pullquote { padding: 64px 40px; }
  .ak-testi-grid, .ak-services-grid { grid-template-columns: 1fr; }
  .ak-offers-grid { grid-template-columns: 1fr; }
  .ak-section { padding: 64px 40px; }
  .ak-blog-grid { grid-template-columns: 1fr 1fr; padding: 0 40px 64px; }
  .ak-single-content, .ak-generic-content { padding: 0 40px 64px; }
  .ak-footer { grid-template-columns: 1fr 1fr; padding: 48px 40px 32px; gap: 36px; }
  .ak-trust-bar { padding: 24px 40px; }
  .ak-trust-item { padding: 0 20px; }
  .ak-talk-hero { padding: 64px 40px; }
  .ak-blog-hero { padding: 64px 40px 40px; }
}
@media (max-width: 640px) {
  .ak-blog-grid { grid-template-columns: 1fr; }
  .ak-footer { grid-template-columns: 1fr; }
  .ak-trust-sep { display: none; }
  .ak-services-grid { grid-template-columns: 1fr; }
  .ak-hero h1 { font-size: 34px; }
  .ak-h2 { font-size: 26px; }
}

/* =============================================
   MOBILE NAV
   ============================================= */
.ak-nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--ink);
  flex-direction: column; gap: 5px;
}
.ak-nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.ak-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ak-nav-toggle.open span:nth-child(2) { opacity: 0; }
.ak-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ak-mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.ak-mobile-nav.open { display: flex; }
.ak-mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; font-weight: 400; color: var(--ink);
  text-decoration: none; padding: 10px 0;
  transition: color .2s;
}
.ak-mobile-nav a:hover { color: var(--coral-mid); }
.ak-mobile-nav .ak-mobile-cta {
  margin-top: 16px;
  background: var(--coral-mid); color: white !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important; padding: 14px 36px;
  border-radius: 100px;
}
.ak-mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; font-size: 28px;
  cursor: pointer; color: var(--ink); line-height: 1;
}

/* =============================================
   HERO MOBILE — show photo below text
   ============================================= */
.ak-hero-mobile-photo {
  display: none;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--sand);
}
.ak-hero-mobile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* =============================================
   TESTIMONIALS — improved visibility
   ============================================= */
.ak-tc {
  border-top: 1px solid rgba(255,255,255,.25) !important;
  padding: 28px !important;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
}
.ak-tc-quote {
  color: rgba(255,255,255,.92) !important;
}
.ak-tc-name { color: white !important; font-weight: 600 !important; }
.ak-tc-title { color: rgba(255,255,255,.55) !important; }
.ak-tc-rule { background: var(--coral-mid) !important; width: 32px !important; height: 2px !important; }

/* =============================================
   RESPONSIVE UPDATES
   ============================================= */
@media (max-width: 1024px) {
  .ak-nav-links { display: none !important; }
  .ak-nav-toggle { display: flex !important; }
  .ak-hero-mobile-photo { display: block; }
}

/* =============================================
   WORDMARK — ensure font loads before render
   ============================================= */
.ak-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--ink);
  letter-spacing: -0.3px; line-height: 1;
  text-decoration: none; display: block;
}
.ak-wordmark-sub {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-top: 3px; font-weight: 400;
}

/* =============================================
   WARMTH TOUCHES — small personality details
   ============================================= */
.ak-warm-aside {
  font-size: 14px; color: var(--muted); font-style: italic;
  line-height: 1.6; margin-top: 8px;
}
