/*
Theme Name: Axiom Clarity
Theme URI: https://axiomservices.co.za
Author: Axiom Services
Author URI: https://axiomservices.co.za
Description: A clean, professional WordPress theme for Axiom Services. Split-layout hero, card-based services grid, and full Gutenberg/Elementor compatibility for drag-and-drop editing. Colours, fonts, and logos preserved exactly from the Axiom brand system.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: axiom-clarity
Tags: automation, business, clean, gutenberg, elementor-compatible
*/

/* ===================================================
   DESIGN TOKENS — DO NOT CHANGE (Brand identity)
   =================================================== */
:root {
  /* Brand Colours */
  --color-charcoal:    #3D3D3A;
  --color-purple:      #7F77DD;
  --color-amber:       #BA7517;

  /* Supporting Colours */
  --color-muted:       #888780;
  --color-bg:          #F1EFE8;
  --color-surface:     #FAF8F2;
  --color-border:      #D3D1C7;
  --color-border-sub:  #E4E1D6;
  --color-white:       #FFFFFF;

  /* Tints */
  --color-purple-soft: #ECEAFA;
  --color-amber-soft:  #F5E8D1;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  60px;
  --space-2xl: 80px;
  --space-3xl: 120px;

  /* Border radius */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 999px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --max-width: 1200px;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-charcoal);
  line-height: 1.7;
  font-size: 1rem;
}

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

a {
  color: var(--color-purple);
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}
a:hover { opacity: 0.75; }

ul, ol { list-style: none; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p { max-width: 65ch; }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-purple);
}

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  margin-top: -25px;
}

.section { padding: 40px 50px 30px; }
.section--surface { background: var(--color-surface); }
.section--white   { background: var(--color-white); }
.section--dark    { background: var(--color-charcoal); color: var(--color-bg); }
.section--compact { padding: var(--space-2xl) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }
.text-muted { color: var(--color-muted); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-purple);
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--color-purple);
  color: var(--color-white);
}
.btn-purple:hover {
  background: #6b64c8;
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ===================================================
   BADGE
   =================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-purple { background: var(--color-purple-soft); color: var(--color-purple); }
.badge-amber  { background: var(--color-amber-soft);  color: var(--color-amber); }

/* ===================================================
   NAVIGATION / HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(241, 239, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-sub);
  transition: transform 0.37s var(--ease);
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.nav-wrapper {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-logo img { height: 67px; width: auto; }
.site-logo { flex-shrink: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  border-radius: var(--radius-xl);
  transition: background 0.2s var(--ease);
  opacity: 1;
}
.site-nav a:hover,
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
  background: var(--color-border-sub);
}

.nav-cta { margin-left: var(--space-xs); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO — Split layout (Clarity style)
   =================================================== */
.hero {
  padding: 10px 10px 30px;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__label { margin-bottom: var(--space-sm); }

.hero__heading {
  margin-bottom: var(--space-md);
  color: var(--color-charcoal);
}
.hero__heading .dot { color: var(--color-amber); }

.hero__text {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

.hero__right { position: relative; }

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.2s var(--ease);
}
.hero-card.revealed { opacity: 1; transform: none; }
.hero-card:nth-child(2) { transition-delay: 0.1s; }
.hero-card:nth-child(3) { transition-delay: 0.2s; }

.hero-card:hover {
  box-shadow: 0 8px 32px rgba(127, 119, 221, 0.1);
  transform: translateY(-2px);
}

.hero-card__icon { font-size: 1.75rem; flex-shrink: 0; }
.hero-card__title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 3px; }
.hero-card__text { font-size: 0.8125rem; color: var(--color-muted); line-height: 1.5; }

/* ===================================================
   PROOF BAR
   =================================================== */
.proof-bar {
  background: var(--color-charcoal);
  padding: var(--space-lg) 0;
}

.proof-bar__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.proof-item {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical centre */
  align-items: center;      /* horizontal centre */
}

.proof-item__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-white);
  display: block;
  margin-bottom: 4px;
}

.proof-item__label {
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 24ch;
  margin-inline: auto;
  line-height: 1.5;
}

/* ===================================================
   SECTION HEADER
   =================================================== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.section-header h2 { margin-top: 8px; margin-bottom: var(--space-sm); }
.section-header p { color: var(--color-muted); margin-inline: auto; font-size: 1.0625rem; }

/* ===================================================
   SERVICES GRID
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.25s var(--ease);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.service-card:hover::after { border-color: var(--color-purple); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(127, 119, 221, 0.1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--color-purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.service-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: none;
}

/* ===================================================
   HOW IT WORKS — Steps
   =================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: var(--color-border);
}

.step { text-align: center; padding: var(--space-sm); }

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-purple);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: var(--space-xs); }
.step__text { color: var(--color-muted); font-size: 0.9375rem; margin-inline: auto; line-height: 1.6; }

/* ===================================================
   ABOUT TEASER — Split
   =================================================== */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: -50px;
}

.about-teaser__text h2 { margin-top: var(--space-xs); margin-bottom: var(--space-md); }
.about-teaser__text p  { color: var(--color-muted); margin-bottom: var(--space-md); max-width: none; }

.stat-stack { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: 90px; }

.stat-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}

.stat-block__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-purple);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-block__label { font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.stat-block__desc  { font-size: 0.875rem; color: var(--color-muted); max-width: none; }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  background: var(--color-charcoal);
  padding: 15px 0;
  text-align: center;
}

.cta-section__inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.cta-section h2 { color: var(--color-white); margin-bottom: 10px; }
.cta-section p  { color: var(--color-muted); margin: 0 10px 20px; font-size: 1.0625rem; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 30px 0px 10px;
}

.footer-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand__logo .site-logo__img { height: 130px; width: auto; margin-left: -15px;}
.footer-brand__tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 28ch;
  line-height: 1.7;
}

.footer-col__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--color-muted); opacity: 1; }
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.footer-bottom p { font-size: 0.8125rem; color: var(--color-muted); max-width: none; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 50px 20px;
  text-align: center;
}

.page-hero h1 { margin-top: -8px; margin-bottom: var(--space-sm); }
.page-hero p { font-size: 1.125rem; color: var(--color-muted); margin-inline: auto; max-width: 52ch; }

/* ===================================================
   SERVICES PAGE — Detailed cards
   =================================================== */
.services-detail-list { display: flex; flex-direction: column; gap: var(--space-2xl); }

.service-detail-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.service-detail-card:hover {
  border-color: var(--color-purple);
  box-shadow: 0 4px 24px rgba(127, 119, 221, 0.08);
}

.service-detail-card__sidebar {}

.service-detail-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-purple-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.service-detail-card__pricing {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-sm);
}
.service-detail-card__pricing-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 3px;
}
.service-detail-card__pricing-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.service-detail-card__content h3 { font-size: 1.5rem; margin-bottom: var(--space-sm); }
.service-detail-card__content p  { color: var(--color-muted); margin-bottom: var(--space-md); max-width: none; }

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
}
.feature-list li::before {
  content: "✓";
  color: var(--color-purple);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
}

/* ===================================================
   PRICING PAGE
   =================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61,61,58,0.1);
  border-color: var(--color-purple);
  opacity: 1;
}

.pricing-card--featured {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}
.pricing-card--featured .pricing-card__tier { color: rgba(255,255,255,0.5); }

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__price { color: var(--color-white); }

.pricing-card__period { font-size: 0.875rem; color: var(--color-muted); margin-bottom: var(--space-md); }

.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  max-width: none;
}
.pricing-card--featured .pricing-card__desc { border-color: rgba(255,255,255,0.1); }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-lg); }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--color-charcoal); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features li::before { content: "✓"; color: var(--color-purple); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card--featured .pricing-features li::before { color: #a9a3f0; }

.pricing-note {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.pricing-note p { color: var(--color-muted); margin-inline: auto; font-size: 0.9375rem; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: -30px;
}

.about-intro__text h2 { margin-top: var(--space-xs); margin-bottom: var(--space-md); }
.about-intro__text p  { color: var(--color-muted); margin-bottom: var(--space-md); max-width: none; }

.founder-card {
  background: var(--color-charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
  margin-top: 45px;
}

.founder-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
}
.founder-card__name { font-size: 1.125rem; font-weight: 600; color: var(--color-white); margin-bottom: 4px; }
.founder-card__role { font-size: 0.875rem; color: var(--color-muted); margin-bottom: var(--space-md); }
.founder-card__bio  { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: none; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
}
.value-card__icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.value-card__title { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-xs); }
.value-card__text  { font-size: 0.9375rem; color: var(--color-muted); line-height: 1.6; max-width: none; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-methods { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease);
}
.contact-method:hover { border-color: var(--color-purple); }

.contact-method__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--color-purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-method__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: 2px; }
.contact-method__value { font-size: 0.9375rem; font-weight: 600; color: var(--color-charcoal); }

.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 50px 50px 25px;
}
.contact-form-wrap h3 { margin-bottom: 10px; margin-top: -30px; }

/* ===================================================
   CONTACT FORM 7 OVERRIDES
   =================================================== */
.wpcf7-form { display: flex; flex-direction: column; gap: var(--space-sm); }

.wpcf7-form p { max-width: none; }

.wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--color-bg);
  color: var(--color-charcoal);
  transition: border-color 0.2s var(--ease), background 0.2s;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  background: var(--color-white);
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }

.wpcf7-form .wpcf7-submit {
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  background: var(--color-charcoal);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--color-purple);
  transform: translateY(-2px);
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ===================================================
   GUTENBERG BLOCK SUPPORT
   =================================================== */
.entry-content > * + * { margin-top: 1.5em; }
.wp-block-group { max-width: 100%; }
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { max-width: none; width: 100vw; position: relative; left: 50%; transform: translateX(-50%); }
.has-large-font-size { font-size: 1.5rem; }
.has-x-large-font-size { font-size: 2rem; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { transform: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 960px) {
  :root { --space-3xl: 80px; }

  .hero__inner,
  .about-teaser__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__right { display: none; }

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

  .proof-bar__inner {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .about-intro { grid-template-columns: 1fr; }
  .founder-card { position: static; }

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

  .service-detail-card { grid-template-columns: 1fr; }

  .hamburger { display: flex; }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-sm);
    flex-direction: column;
    gap: 4px;
  }
  .primary-nav.open { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .services-grid,
  .steps-grid,
  .values-grid,
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .steps-grid::before { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
