/* ═══════════════════════════════════════════════════════════
   RUGBY HYPNOTHERAPY — Shared Stylesheet
   rugbyhypnotherapy.co.uk | Adel Moin
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --teal-deep:   #0f3d3e;
  --teal-mid:    #1a5c5e;
  --teal-light:  #2a8a8d;
  --gold:        #c9973a;
  --gold-light:  #e8b85a;
  --cream:       #f9f7f3;
  --cream-dark:  #f0ebe2;
  --text-dark:   #1c1c1c;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.15);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── CHECKMARK REPLACEMENTS ── */
/* Used in feature/service lists to replace stripped emoji */
.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
}
.chk::before {
  content: '';
  display: block;
  width: 7px;
  height: 4px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg) translateY(-1px);
}
.chk-teal {
  background: rgba(42,138,141,.12);
}
.chk-teal::before { border-color: var(--teal-light); }

.chk-gold {
  background: rgba(201,151,58,.12);
}
.chk-gold::before { border-color: var(--gold); }

.chk-gold-arrow {
  background: transparent;
  width: auto; height: auto;
  border-radius: 0;
}
.chk-gold-arrow::before {
  content: '—';
  display: inline;
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  transform: none;
  border: none;
  width: auto; height: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,58,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }
.btn-dark { background: var(--teal-deep); color: var(--white); }
.btn-dark:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-teal { background: var(--teal-light); color: var(--white); }
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-2px); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible    { opacity: 1; transform: none; }
.reveal-delay-1    { transition-delay: .1s; }
.reveal-delay-2    { transition-delay: .2s; }
.reveal-delay-3    { transition-delay: .3s; }
.reveal-delay-4    { transition-delay: .4s; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#nav.scrolled,
#nav.solid {
  background: rgba(15,61,62,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--teal-deep);
  padding: 20px 24px;
  gap: 2px;
  border-top: 1px solid rgba(255,255,255,.07);
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: rgba(255,255,255,.8);
  padding: 13px 4px;
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: var(--white); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(140deg, var(--teal-deep) 0%, #0c4749 55%, #162828 100%);
  padding: 140px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: 5%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,138,141,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 20px; }
.page-hero-content p {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.78;
  margin-bottom: 32px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.75); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .03em;
  padding: 16px 28px;
  border-right: 1px solid rgba(0,0,0,.07);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
/* Small teal dot before each trust item */
.trust-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   CREDENTIALS BAR
════════════════════════════════════════ */
.creds-bar {
  background: var(--teal-deep);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.creds-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.cred-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
}
.cred-item:last-child { border-right: none; }
.cred-text strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.cred-text span {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
/* Gold accent line above each cred */
.cred-item::before {
  content: '';
  display: block;
  width: 2px;
  height: 28px;
  background: var(--gold);
  border-radius: 2px;
  margin-right: 16px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   CONTACT DETAILS (no icon box)
════════════════════════════════════════ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-detail:last-child { border-bottom: none; }
/* Teal accent line replaces icon box */
.contact-detail::before {
  content: '';
  display: block;
  width: 3px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cd-text strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.cd-text span { color: rgba(255,255,255,.5); font-size: .85rem; }

/* ════════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
/* Gold top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal-light);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42,138,141,.15);
}
.service-card h3 { color: var(--teal-deep); margin-bottom: 12px; }
.service-card p  { color: var(--text-mid); font-size: .95rem; line-height: 1.65; }
.service-card.featured {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: var(--white);
  border-color: transparent;
}
.service-card.featured::before { background: var(--gold); opacity: 1; }
.service-card.featured h3 { color: var(--gold-light); }
.service-card.featured p  { color: rgba(255,255,255,.72); }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal-light);
  transition: gap .2s;
}
.service-card-link:hover { gap: 10px; }
.service-card.featured .service-card-link { color: var(--gold-light); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  position: relative;
}
.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
/* Decorative open-quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 28px; right: 24px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--cream-dark);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-initials {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}
.testimonial-name     { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.testimonial-location { font-size: .78rem; color: var(--text-light); margin-top: 2px; }
.stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
  transition: color .2s;
  font-family: inherit;
}
.faq-q:hover { color: var(--teal-light); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--teal-mid);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal-light);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 0 22px;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: .96rem;
}

/* ════════════════════════════════════════
   CONTACT / FORM SECTION
════════════════════════════════════════ */
.contact-section,
#contact {
  background: linear-gradient(140deg, var(--teal-deep), #0d4a4c);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-intro h2 { color: var(--white); margin-bottom: 20px; }
.contact-intro p   { color: rgba(255,255,255,.68); margin-bottom: 36px; line-height: 1.78; }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 { color: var(--teal-deep); margin-bottom: 28px; font-size: 1.35rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.11);
  border-radius: var(--radius);
  font-size: .94rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(42,138,141,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-wrap .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note {
  text-align: center;
  font-size: .76rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #070d0d;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  margin-top: 16px;
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.38);
  font-size: .85rem;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a { color: rgba(255,255,255,.22); font-size: .78rem; }
.footer-bottom a:hover { color: rgba(255,255,255,.45); }

/* ════════════════════════════════════════
   BLOG CARDS
════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Clean image placeholder — gradient bar, no emoji */
.blog-card-img {
  height: 180px;
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  position: relative;
  flex-shrink: 0;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.blog-card-body  { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(42,138,141,.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.blog-card h3    { font-size: 1.05rem; color: var(--teal-deep); margin-bottom: 10px; line-height: 1.35; }
.blog-card p     { font-size: .88rem; color: var(--text-mid); line-height: 1.68; margin-bottom: 20px; flex: 1; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: .76rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.blog-meta span { margin-right: 0; }
.blog-meta span + span::before { content: ' · '; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal-light);
  transition: gap .2s;
}
.read-more:hover { gap: 10px; }

/* ════════════════════════════════════════
   ARTICLE / BLOG POST LAYOUT
════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.article-body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow);
  line-height: 1.8;
}
.article-body h2 {
  font-size: 1.55rem;
  color: var(--teal-deep);
  margin: 44px 0 16px;
  padding-top: 8px;
  border-top: 2px solid var(--cream-dark);
}
.article-body h2:first-child { border-top: none; margin-top: 0; }
.article-body h3 { font-size: 1.15rem; color: var(--teal-mid); margin: 32px 0 12px; }
.article-body p  { color: var(--text-mid); line-height: 1.82; margin-bottom: 20px; }
.article-body ul,
.article-body ol {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--teal-deep);
  line-height: 1.7;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.sidebar-box h4 {
  font-size: .85rem;
  color: var(--teal-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
}
.sidebar-box ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-box ul li a {
  font-size: .87rem;
  color: var(--text-mid);
  transition: color .2s;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.sidebar-box ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
}
.sidebar-box ul li a:hover { color: var(--teal-light); }
.sidebar-cta {
  background: linear-gradient(140deg, var(--teal-deep), var(--teal-mid));
  color: var(--white);
}
.sidebar-cta h4 {
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.1);
}
.sidebar-cta p { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 18px; line-height: 1.65; }
.sidebar-cta .btn { width: 100%; justify-content: center; font-size: .88rem; padding: 12px 20px; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(140deg, var(--gold) 0%, #a87520 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-banner .btn {
  background: var(--white);
  color: #8a6010;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.cta-banner .btn:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .article-layout     { grid-template-columns: 1fr; }
  .article-sidebar    { position: static; }
  .article-body       { padding: 36px 28px; }
  .creds-inner        { justify-content: flex-start; }
  .cred-item          { padding: 20px 24px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .form-row          { grid-template-columns: 1fr; }
  .trust-bar-inner   { flex-direction: column; align-items: flex-start; padding: 8px 0; }
  .trust-item        { border-right: none; border-bottom: 1px solid rgba(0,0,0,.06); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .creds-inner       { flex-direction: column; }
  .cred-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; }
  .cred-item:last-child { border-bottom: none; }
  .page-hero         { padding: 120px 0 64px; }
  .section-pad       { padding: 64px 0; }
  .contact-form-box  { padding: 28px 20px; }
  .article-body      { padding: 28px 20px; }
}
