/*
Theme Name: NHM Tax Relief
Theme URI: https://nhmtaxrelief.com
Author: NHM Tax Relief
Description: Conversion-focused, professional tax resolution WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nhm-relief
*/

:root {
  --cream: #f8f6f2;
  --cream-light: #fffdf8;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2d2d2d;
  --charcoal-muted: #4a4a4a;
  --terracotta: #c45c3e;
  --terracotta-light: #d97b5d;
  --slate: #3d5a80;
  --slate-light: #5a7a9f;
  --white: #ffffff;
  --text: #333333;
  --text-light: #6e6e6e;
  --text-heading: #1a1a1a;
  --success: #2a6b3c;
  --danger: #9b2c2c;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 6px 18px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 14px 34px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 28px 60px rgba(26, 26, 26, 0.12);
  --shadow-terracotta: 0 12px 30px rgba(196, 92, 62, 0.22);

  --transition: 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.4rem); }

p { margin-bottom: 1.25rem; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--slate); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: #c0bbb3; }

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-slate {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.btn-slate:hover {
  background: var(--slate-light);
  border-color: var(--slate-light);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-light {
  background: var(--cream-light);
  color: var(--charcoal);
  border-color: var(--cream-light);
}
.btn-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
}
.btn-lg { padding: 1.15rem 2.25rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  transition: box-shadow var(--transition);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--charcoal);
}
.logo:hover { color: var(--charcoal); }
.logo-icon { width: 42px; height: 42px; }
.logo-text span { color: var(--terracotta); font-style: italic; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.header-menu li { margin: 0; }
.header-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--terracotta); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone i { color: var(--terracotta); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}
.sticky-cta .btn { flex: 1; font-size: 0.95rem; padding: 0.85rem 0.5rem; }

.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  padding-top: 78px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-fallback {
  background:
    radial-gradient(circle at 15% 30%, rgba(196, 92, 62, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(61, 90, 128, 0.18) 0%, transparent 45%),
    linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-soft) 50%, #111111 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.3) 100%);
}
.hero-light {
  background: var(--white);
  color: var(--text);
}
.hero-light .hero-bg { display: none; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  min-height: 92vh;
  padding: 5.5rem 0 4.5rem;
}
.hero-light .hero-inner {
  min-height: auto;
  padding: 6rem 0 3rem;
  align-items: stretch;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 92, 62, 0.12);
  color: var(--terracotta);
  border: 1px solid rgba(196, 92, 62, 0.35);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-light h1 { color: var(--text-heading); }
.hero h1 em {
  font-style: italic;
  color: #e89a7d;
}
.hero-light h1 em { color: var(--terracotta); }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #c0bbb3;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-light .hero-subtitle { color: var(--text-light); }
.hero-subtitle p { margin-bottom: 1rem; }
.hero-subtitle p:last-child { margin-bottom: 0; }
.card-text p { color: var(--text-light); font-size: 0.98rem; margin-bottom: 0.85rem; }
.card-text p:last-child { margin-bottom: 0; }
.section-outro { max-width: 760px; margin: 2.5rem auto 0; color: var(--text-light); font-size: 1.05rem; }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #c0bbb3;
}
.hero-light .hero-trust { color: var(--text-light); }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust i { color: #e89a7d; }
.hero-light .hero-trust i { color: var(--terracotta); }

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--slate) 0%, var(--terracotta) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-media-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
}
.hero-media-placeholder small {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 380px;
}

.hero-form-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-form-panel h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.hero-form-panel p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-form-bar {
  width: 100%;
  background: var(--cream);
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  padding: 2.5rem 0;
}
.hero-form-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.form-bar-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  text-align: center;
}
.hero-form-inline,
.hero-form-bar .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
}
.hero-form-inline .form-group,
.hero-form-bar .wpcf7-form .form-group {
  margin-bottom: 0;
  min-width: 0;
}
.hero-form-bar .wpcf7-form .form-group:has(textarea),
.hero-form-bar .wpcf7-form > p {
  grid-column: 1 / -1;
}
.hero-form-inline .form-group .form-control,
.hero-form-bar .wpcf7-form .form-group .form-control {
  width: 100%;
  border-radius: var(--radius-md);
}
.hero-form-bar .wpcf7-form .form-group textarea.form-control {
  min-height: 110px;
}
.hero-form-bar .wpcf7-form .form-group .form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.hero-form-bar .wpcf7-form .form-group p { margin-bottom: 0; }
.hero-form-bar .wpcf7-form .form-group p br { display: none; }
.hero-form-bar .wpcf7-form .wpcf7-form-control-wrap { display: block; }
.hero-form-inline .btn,
.hero-form-bar .wpcf7-form .btn,
.hero-form-bar .wpcf7-form .wpcf7-submit {
  white-space: nowrap;
  padding: 0.95rem 1.5rem;
}
.hero-form-bar .wpcf7-form .wpcf7-submit.btn-block { width: 100%; }
.hero-form-bar .wpcf7-form .wpcf7-spinner { margin: 0 auto; }

.hero-bg-prompt {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.7);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  max-width: 600px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.hero-bg-prompt small { line-height: 1.5; }

.form-group { margin-bottom: 1.25rem; }
.form-group p { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-control,
.wpcf7-form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #e0ddd6;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control:focus,
.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 92, 62, 0.12);
  background: var(--white);
}
textarea.form-control,
textarea.wpcf7-form-control { resize: vertical; min-height: 120px; }
.wpcf7-form .wpcf7-submit,
.wpcf7-form .btn-primary { width: 100%; }
.wpcf7-not-valid-tip { color: var(--danger); font-size: 0.85rem; margin-top: 0.25rem; }
.wpcf7-response-output {
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.angle-divider {
  position: relative;
  height: 70px;
  background: var(--terracotta);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  margin-top: -1px;
  opacity: 0.75;
}
.angle-divider.light { background: var(--white); }
.angle-divider.sand { background: var(--cream); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--terracotta);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(196, 92, 62, 0.1);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-light); font-size: 0.98rem; margin-bottom: 0; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media img,
.split-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--slate) 0%, var(--terracotta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  padding: 2rem;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content ul { list-style: none; padding: 0; }
.split-content li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.9rem;
}
.split-content li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--terracotta);
}

.trust-bar {
  background: var(--charcoal);
  padding: 3.5rem 0;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(196, 92, 62, 0.08) 0%, transparent 60%);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.trust-bar-item h4 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: #e89a7d;
  margin-bottom: 0.25rem;
}
.trust-bar-item p {
  color: #c0bbb3;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--terracotta) 0%, var(--slate) 100%);
  border-radius: 2px;
}
.process-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 3.5rem;
}
.process-item:last-child { margin-bottom: 0; }
.process-item::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  border: 2px solid var(--terracotta);
  z-index: 1;
}
.process-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.process-card h4 { margin-bottom: 0.5rem; }
.process-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-top: 3px solid var(--slate);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
}
.faq-question i { color: var(--terracotta); transition: transform var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}
.faq-item.active .faq-answer { max-height: 500px; }

.cta-banner {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 4.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 92, 62, 0.25);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(196, 92, 62, 0.08);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { color: #c0bbb3; max-width: 640px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-banner-actions { position: relative; z-index: 1; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--slate);
  margin-bottom: 1.5rem;
}
.contact-image { margin-bottom: 1.5rem; }
.contact-image .split-placeholder {
  min-height: 240px;
  font-size: 1.2rem;
}
.contact-info-card h3 { margin-bottom: 1rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-item i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(196, 92, 62, 0.1);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item a { font-weight: 700; color: var(--charcoal); }
.contact-info-item a:hover { color: var(--terracotta); }

.legal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
  border-top: 3px solid var(--slate);
}
.legal-content h2 { margin-top: 2rem; }

.site-footer {
  background: #111111;
  color: #c0bbb3;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.95rem; color: var(--text-light); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e89a7d;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: #c0bbb3; font-size: 0.95rem; }
.footer-col a:hover { color: #e89a7d; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-light .hero-inner { padding: 5rem 0 2.5rem; }
  .hero-media-placeholder { min-height: 360px; }
  .hero-form-inline,
  .hero-form-bar .wpcf7-form { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .header-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-phone { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .hero-inner { min-height: auto; padding: 4rem 0 3rem; }
  .hero-light .hero-inner { padding: 4.5rem 0 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-form-bar { padding: 1.5rem 0; }
  .hero-form-inline,
  .hero-form-bar .wpcf7-form { grid-template-columns: 1fr; gap: 0.85rem; }
  .process-timeline { padding-left: 0; }
  .process-timeline::before { display: none; }
  .process-item { padding-left: 0; }
  .process-item::before { display: none; }
  .process-card { padding-left: 1.25rem; border-top: none; border-left: 3px solid var(--terracotta); }
  .trust-bar-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .legal-content { padding: 1.75rem; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 0 0 0;
  background: var(--cream);
  z-index: 998;
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav .mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0ddd6;
  display: block;
}
.mobile-nav .btn-primary { margin-top: 1rem; }
