/* ==========================================
   SiteToLead — Main Stylesheet
   ========================================== */

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

/* --- CSS Variables --- */
:root {
  --black: #111111;
  --white: #ffffff;
  --body-bg: #ffffff;
  --section-alt: #f5f5f3;
  --section-dark: #111111;
  --text-heading: #111111;
  --text-body: #44403e;
  --text-muted: #87847e;
  --border: #dddcda;
  --border-dark: rgba(255,255,255,0.09);
  --radius: 4px;
  --radius-sm: 3px;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--body-bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover { text-decoration: none; }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.15;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

section { padding: 72px 0; }

@media (min-width: 1024px) {
  section { padding: 100px 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: var(--white);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

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

.btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover {
  background: #ebebeb;
  border-color: #ebebeb;
  color: var(--black);
}

@media (max-width: 767px) {
  .btn-full-mobile { width: 100%; }
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo:hover { opacity: 0.8; }

.logo-dark { display: block; }
.logo-light { display: none; }

.main-nav {
  flex: 1;
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    justify-content: center;
  }
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  padding: 7px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  margin-left: auto;
  display: none;
  padding: 8px 18px;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nav-cta { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.07); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  position: sticky;
  top: 64px;
  z-index: 99;
}

.mobile-nav.open { display: block; }

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.mobile-nav .btn { width: 100%; }

/* --- Hero --- */
.hero {
  background: var(--black);
  padding: 96px 0 80px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255,255,255,0.58);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dark section overrides */
.section-dark .section-label { color: rgba(255,255,255,0.38); }
.section-dark .section-header h2 { color: #ffffff; }
.section-dark .section-header p { color: rgba(255,255,255,0.52); }

/* --- Problem Section --- */
.problem-section { background: var(--section-alt); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.problem-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* --- Services / Features --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: rgba(17,17,17,0.18);
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.feature-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  transition: var(--transition);
}
.feature-link:hover { opacity: 0.6; }

/* Honeypot — visually hidden, off-screen */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- How It Works (dark) --- */
.how-section {
  background: var(--section-dark);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
}

.how-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.how-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.25rem;
  color: rgba(255,255,255,0.14);
  line-height: 1;
  margin-bottom: 16px;
}

.how-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.how-card p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.75;
}

/* --- Testimonials --- */
.testimonials-section { background: var(--section-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  font-size: 0.875rem;
  color: var(--text-heading);
  letter-spacing: 0.08em;
}

.testimonial-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-heading);
}

.testimonial-business {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-business a {
  color: var(--text-muted);
}

.testimonial-business a:hover { color: var(--text-heading); }

.verified-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--section-dark);
  text-align: center;
}

.cta-section h2 { color: #ffffff; margin-bottom: 16px; }

.cta-section p {
  color: rgba(255,255,255,0.58);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-col a:hover { color: #ffffff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255,255,255,0.42);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-contact a:hover { color: #ffffff; }

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

.footer-copyright { color: rgba(255,255,255,0.2); font-size: 0.8125rem; }

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--black);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.25rem;
  color: var(--text-heading);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-setup {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: 6px;
  padding: 8px 10px;
  background: var(--section-alt);
  border-radius: var(--radius-sm);
}

.pricing-features { margin-bottom: 32px; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-body);
}

.pricing-features li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.875rem;
  color: var(--text-heading);
  font-weight: 700;
}

.pricing-card .btn { width: 100%; padding: 14px; }

/* Setup fee box */
.setup-fee-box {
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-top: 48px;
}

.setup-fee-box h3 { margin-bottom: 12px; font-size: 1.375rem; }

.setup-fee-box > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.setup-fee-example {
  font-family: 'Outfit', monospace;
  font-size: 0.9375rem;
  color: var(--text-heading);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-weight: 500;
}

.setup-fee-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Monthly Protection Plan standalone card */
.protection-plan-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.protection-card {
  max-width: 400px;
  width: 100%;
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.trust-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-divider {
  color: var(--border);
  font-size: 1rem;
}

@media (max-width: 640px) {
  .trust-divider { display: none; }
}

/* --- FAQ --- */
.faq-section { background: var(--section-alt); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item.open { border-color: #aaaaaa; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
}

.faq-question:hover { color: #555; }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* --- About Page --- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
}

.approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.approach-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: rgba(17,17,17,0.14);
  line-height: 1;
  margin-bottom: 16px;
}

.approach-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--text-heading);
}

.team-role {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.team-bio {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.9375rem;
  margin: 0;
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 480px;
  margin: 0 auto;
}

.contact-box h3 { margin-bottom: 8px; font-size: 1.375rem; }
.contact-box > p { color: var(--text-muted); margin-bottom: 24px; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: var(--transition);
  font-weight: 500;
}

.contact-link:hover { color: var(--text-heading); }

/* --- Story section --- */
.story-section { background: var(--section-alt); }

.story-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.story-text strong { color: var(--text-heading); }

/* --- Page Heroes (non-home) --- */
.page-hero {
  background: var(--black);
  padding: 80px 0 64px;
  text-align: center;
}

.page-hero h1 { color: #ffffff; margin-bottom: 16px; }

.page-hero p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .section-label { color: rgba(255,255,255,0.38); }

/* --- Book Page --- */
.book-section { padding: 80px 0; }

.book-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.book-header h1 { margin-bottom: 16px; }

.book-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.calendly-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 700px;
}

@media (max-width: 767px) {
  .calendly-wrapper { min-height: 500px; }
  .calendly-wrapper .calendly-inline-widget { height: 500px !important; }
}

/* --- Legal Pages --- */
.legal-header {
  text-align: center;
  padding: 80px 0 48px;
  background: var(--black);
}

.legal-header h1 { color: #ffffff; margin-bottom: 12px; }

.legal-meta { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

@media (min-width: 768px) {
  .legal-content { padding: 64px 40px 100px; }
}

.legal-section { margin-bottom: 48px; }

.legal-section h2 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 { font-size: 1.0625rem; margin: 20px 0 8px; }

.legal-section p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.legal-section ul li { margin-bottom: 8px; padding-left: 4px; }

/* --- Misc Utilities --- */
.text-center { text-align: center; }

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* ==========================================
   Scroll Reveal
   ========================================== */

.sr-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.sr-item.sr-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   Blog
   ========================================== */

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover { border-color: #aaaaaa; }

/* ==========================================
   Homepage Enquiry Form
   ========================================== */

.enquiry-section {
  background: var(--body-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .enquiry-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
}

.enquiry-copy h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  margin-top: 14px;
}

.enquiry-copy p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.enquiry-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquiry-trust-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.enquiry-trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
}

.enquiry-form-wrap {
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

@media (max-width: 480px) {
  .enquiry-form-wrap { padding: 24px 20px; }
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 560px) {
  .enq-row { grid-template-columns: 1fr; }
}

.enq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enq-field label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.01em;
}

.enq-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.enq-field input,
.enq-field textarea,
.enq-field select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--text-heading);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}

.enq-field input:focus,
.enq-field textarea:focus,
.enq-field select:focus {
  border-color: var(--black);
}

.enq-field input::placeholder,
.enq-field textarea::placeholder {
  color: var(--text-muted);
}

.enq-field textarea {
  resize: vertical;
  min-height: 100px;
}

.enq-select-wrap {
  position: relative;
}

.enq-select-wrap select {
  padding-right: 36px;
  cursor: pointer;
}

.enq-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.enq-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.enq-submit-row .btn {
  white-space: nowrap;
}

.enq-submit-row .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.enq-status {
  font-size: 0.875rem;
  font-weight: 500;
}

.enq-status.enq-success { color: #1a7a3c; }
.enq-status.enq-error   { color: #b91c1c; }

/* ==========================================
   Reduced motion
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  .sr-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
