/*
Theme Name: Calm Flight
Theme URI: https://calmflighthypnotherapy.co.uk
Author: Calm Flight Hypnotherapy
Author URI: https://calmflighthypnotherapy.co.uk
Description: A calming, trust-building theme for a specialist fear of flying hypnotherapy practice. Soft sky blues, warm cream, professional yet personal.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: calm-flight
Tags: hypnotherapy, fear-of-flying, calm, booking, professional
*/

/* ============================================================
   DESIGN SYSTEM — CALM FLIGHT HYPNOTHERAPY
   Aesthetic: Serene, reassuring, professional. Deep sky blues,
   soft cloud whites, warm amber CTAs. Playfair Display +
   Lato. Radiates calm confidence and clinical credibility.
   ============================================================ */

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

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  /* Colour palette */
  --sky-deep:    #0F2D4A;
  --sky-dark:    #1A4568;
  --sky-mid:     #2471A3;
  --sky:         #2E86C1;
  --sky-light:   #5DADE2;
  --sky-pale:    #D6EAF8;
  --sky-faint:   #EBF5FB;
  --horizon:     #7DBBDD;
  --sage:        #1E8449;
  --sage-light:  #52BE80;
  --amber:       #CA6F1E;
  --amber-bright:#E67E22;
  --amber-pale:  #FDEBD0;
  --cream:       #FDFEFE;
  --cream-warm:  #F9F4EF;
  --white:       #FFFFFF;
  --ink:         #17202A;
  --ink-mid:     #2C3E50;
  --ink-light:   #566573;
  --ink-faint:   #85929E;
  --border:      #D5D8DC;
  --border-light:#EBF5FB;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --content-width: 780px;
  --wide-width:    1100px;
  --full-width:    1440px;

  /* Borders & shadows */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15,45,74,0.07);
  --shadow-md: 0 6px 28px rgba(15,45,74,0.12);
  --shadow-lg: 0 16px 56px rgba(15,45,74,0.18);

  /* Transitions */
  --transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-bright); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sky-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.05rem; font-weight: 700; }
h6 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky); }

p { margin-bottom: 1.4rem; font-size: 1.05rem; color: var(--ink-mid); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

ul, ol { padding-left: 1.6rem; margin-bottom: 1.4rem; }
li { margin-bottom: 0.6rem; font-size: 1.05rem; color: var(--ink-mid); }

blockquote {
  border-left: 4px solid var(--sky-light);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  background: var(--sky-faint);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--sky-dark);
}

blockquote p { color: var(--sky-dark); margin: 0; }

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) 0;
}

/* ── Layout Containers ──────────────────────────────────── */
.container {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--full {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber-bright);
  color: var(--white);
  border-color: var(--amber-bright);
  box-shadow: 0 4px 16px rgba(230,126,34,0.35);
}
.btn--primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(230,126,34,0.45);
  transform: translateY(-1px);
}

.btn--sky {
  background: var(--sky-mid);
  color: var(--white);
  border-color: var(--sky-mid);
}
.btn--sky:hover {
  background: var(--sky-dark);
  border-color: var(--sky-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-sky {
  background: transparent;
  color: var(--sky-mid);
  border-color: var(--sky-mid);
}
.btn--outline-sky:hover {
  background: var(--sky-mid);
  color: var(--white);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.08rem; }
.btn--sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--sky-deep);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(93,173,226,0.18);
  box-shadow: 0 2px 20px rgba(15,45,74,0.25);
}

.site-header__inner {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.site-logo__main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.site-logo__sub {
  font-size: 0.72rem;
  color: rgba(93,173,226,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav ul li { margin: 0; }

.site-nav ul a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.site-nav ul a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.site-nav ul li.nav-book a {
  background: var(--amber-bright);
  color: var(--white);
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(230,126,34,0.4);
}

.site-nav ul li.nav-book a:hover {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,126,34,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,28,52,0.88) 0%,
    rgba(15,45,74,0.72) 50%,
    rgba(15,45,74,0.35) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--full-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: var(--space-sm);
  background: rgba(93,173,226,0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(93,173,226,0.3);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--sky-light);
}

.hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__reassurance {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.hero__reassurance-item .icon { font-size: 1rem; }

/* Hero booking card */
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--amber-bright);
  min-width: 0;
  overflow: hidden;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: 0.3rem;
}

.hero__card-sub {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
}

.hero__card-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--sky-faint);
  border-radius: var(--radius-md);
}

.hero__card-price-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sky-deep);
  line-height: 1;
}

.hero__card-price-label {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.3;
}

.hero__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}

.hero__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

.hero__card-list li:last-child { border-bottom: none; }

.hero__card-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.hero__card .btn { width: 100%; }

.hero__card-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 0.6rem;
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--sky-deep);
  border-top: 1px solid rgba(93,173,226,0.15);
  border-bottom: 1px solid rgba(93,173,226,0.15);
  padding: 0.85rem 0;
}

.trust-bar__inner {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}

.trust-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(93,173,226,0.25);
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: var(--space-2xl) 0;
}

.section--white { background: var(--white); }
.section--cream { background: var(--cream-warm); }
.section--sky   { background: var(--sky-faint); }
.section--deep  { background: var(--sky-deep); }

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--sky-deep);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--ink-light);
  max-width: 580px;
  line-height: 1.6;
}

/* ── Card Grid ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: var(--space-md);
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--sky-pale);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--sky-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-bottom: 0.4rem;
  display: block;
}

.card__title {
  font-size: 1.2rem;
  color: var(--sky-deep);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  flex-grow: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sky-mid);
  margin-top: var(--space-sm);
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 0.5rem;
  color: var(--amber-bright);
}

/* ── How It Works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + var(--space-md));
  right: calc(16.66% + var(--space-md));
  height: 2px;
  background: var(--sky-pale);
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--sky-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto var(--space-sm);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.15rem;
  color: var(--sky-deep);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.93rem;
  color: var(--ink-light);
}

/* ── Photo Banner ─────────────────────────────────────────── */
.photo-banner {
  height: 380px;
  background-image: url('https://images.unsplash.com/photo-1606768666853-403c90a981ad?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,28,52,0.8) 0%, rgba(10,28,52,0.4) 60%, transparent 100%);
}

.photo-banner__content {
  position: relative;
  z-index: 1;
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.photo-banner__content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.photo-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: var(--space-md);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--sky-light);
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: #F1C40F;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.testimonial__author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sky-dark);
}

.testimonial__detail {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ── About / Practitioner ─────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--sky-faint) 0%, var(--sky-pale) 100%);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--sky-faint);
  border: 1px solid var(--sky-pale);
  color: var(--sky-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ── FAQ Snippet ─────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sky-deep);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--sky-faint); }

.faq-question .chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--sky-mid);
}

.faq-question.open .chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.98rem;
  color: var(--ink-mid);
  margin: 0;
}

/* ── Booking CTA Band ─────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-dark) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '✈';
  position: absolute;
  top: -20px;
  right: 5%;
  font-size: 200px;
  opacity: 0.04;
  transform: rotate(15deg);
  pointer-events: none;
}

.cta-band__inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── Article Layout ───────────────────────────────────────── */
.article-hero {
  background: var(--sky-deep);
  padding: var(--space-xl) 0;
}

.article-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-light);
  background: rgba(93,173,226,0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(93,173,226,0.3);
  margin-bottom: var(--space-sm);
  text-decoration: none;
}

.article-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.article-meta span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-layout {
  max-width: var(--full-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

/* Article content styles */
.article-content { min-width: 0; }

.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--sky-deep);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 2px solid var(--sky-pale);
}

.article-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.article-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--sky-dark);
  margin: var(--space-md) 0 0.5rem;
}

.article-content p { color: var(--ink-mid); line-height: 1.8; }

.article-content ul, .article-content ol {
  margin-bottom: var(--space-md);
}

.article-content li { margin-bottom: 0.5rem; color: var(--ink-mid); }

.article-content a {
  color: var(--sky-mid);
  text-decoration: underline;
  text-decoration-color: rgba(46,134,193,0.4);
}

.article-content a:hover {
  color: var(--amber-bright);
  text-decoration-color: var(--amber-bright);
}

/* Article inline CTA (Calendly link) */
.article-content p a[href*="book"],
.article-content p a[href*="springhill"],
.article-content p a[href*="calendly"] {
  display: inline-flex;
  align-items: center;
  background: var(--amber-bright);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 3px 12px rgba(230,126,34,0.35);
  transition: all var(--transition);
  margin: 0.25rem 0;
}

.article-content p a[href*="book"]:hover,
.article-content p a[href*="springhill"]:hover,
.article-content p a[href*="calendly"]:hover {
  background: var(--amber);
  box-shadow: 0 5px 20px rgba(230,126,34,0.45);
  transform: translateY(-1px);
}

/* Disclaimer box */
.disclaimer-box {
  background: var(--sky-faint);
  border: 1px solid var(--sky-pale);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.88rem;
  color: var(--ink-light);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.disclaimer-box::before {
  content: 'ℹ️';
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.sidebar-widget__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sky-pale);
  font-family: var(--font-display);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

.sidebar-widget ul li:last-child { border-bottom: none; }

.sidebar-widget ul a {
  font-size: 0.9rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1.4;
}

.sidebar-widget ul a::before {
  content: '→';
  color: var(--sky-light);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sidebar-widget ul a:hover { color: var(--sky-mid); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-dark) 100%);
  border-color: transparent;
  text-align: center;
}

.sidebar-cta .sidebar-widget__title {
  color: var(--white);
  border-color: rgba(93,173,226,0.2);
}

.sidebar-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--sky-deep);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand__tagline {
  font-size: 0.8rem;
  color: var(--sky-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--sky-light); }

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ── Page Template ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-dark) 100%);
  padding: var(--space-xl) 0;
}

.page-hero h1 { color: var(--white); }

.page-content-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.page-content-wrap h2 { color: var(--sky-deep); margin: var(--space-lg) 0 var(--space-sm); }
.page-content-wrap h3 { color: var(--sky-dark); margin: var(--space-md) 0 0.5rem; }
.page-content-wrap p  { color: var(--ink-mid); }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

.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;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner       { grid-template-columns: 1fr; max-width: 680px; }
  .hero__card        { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .steps             { grid-template-columns: 1fr; }
  .steps::before     { display: none; }
  .testimonial-grid  { grid-template-columns: 1fr; }
  .about-split       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

  .hero { min-height: 480px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar__inner { gap: 0.8rem; }
  .trust-bar__divider { display: none; }

  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }

  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--sky-deep);
    padding: var(--space-sm);
    border-bottom: 1px solid rgba(93,173,226,0.15);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { border-radius: var(--radius-sm); padding: 0.7rem var(--space-sm); }
  .photo-banner { background-attachment: scroll; }
}

/* ── WordPress core overrides ─────────────────────────────── */
.wp-block-image img { border-radius: var(--radius-md); }
.wp-block-quote { border-left: 4px solid var(--sky-light); }
.alignwide { max-width: 100%; }
.alignfull { max-width: 100%; margin-left: -var(--space-md); margin-right: -var(--space-md); }
