/* SunriseLands.com — modern multi-page stylesheet
   Inspired by the cleaner landing-page design, applied site-wide. */

:root {
  --blue: #6d9bd6;
  --blue-dark: #4d7bb5;
  --blue-deep: #3a5f8f;
  --navy: #1e2a36;
  --navy-text: #222b33;
  --orange: #e0642a;
  --orange-dark: #c44f1c;
  --cream: #f7f5f0;
  --cream-dark: #efebe3;
  --border: #e2e6ea;
  --gray: #555;
  --gray-light: #6b7280;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(30, 42, 54, 0.12);
  --shadow-sm: 0 4px 14px rgba(30, 42, 54, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --max: 1100px;
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--navy-text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--orange); text-decoration: underline; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.logo-block:hover { text-decoration: none; color: inherit; }

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 4px rgba(30, 42, 54, 0.12);
  background: #fff;
}

.logo-text { display: flex; flex-direction: column; min-width: 0; }
.logo-name {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.15;
  white-space: nowrap;
}
.logo-tag {
  font-size: 12px;
  color: var(--gray-light);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-call {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
}
.header-call:hover { text-decoration: none; color: inherit; }
.header-call-label {
  font-size: 11px;
  color: var(--gray-light);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.header-call-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-text);
  line-height: 1.2;
}
.header-call:hover .header-call-number { color: var(--orange); }

.header-call-btn {
  display: inline-flex;
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header-call-btn { display: none; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--navy);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 8px 0 12px;
}
.main-nav.is-open { display: block; }
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.main-nav a {
  display: block;
  padding: 12px 14px;
  color: var(--navy-text);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav li.active a {
  background: var(--cream);
  color: var(--blue-dark);
  text-decoration: none;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  font-family: inherit;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--cream);
  color: var(--navy-text);
}

.btn-block { width: 100%; }
.btn-lg { font-size: 18px; padding: 16px 28px; }

/* ========== Hero (home) ========== */
.hero {
  position: relative;
  background-color: #3f6a9c;
  background-image:
    linear-gradient(105deg, rgba(20, 32, 48, 0.78) 0%, rgba(30, 50, 72, 0.55) 48%, rgba(40, 55, 70, 0.35) 100%),
    url("images/land-golden-hills.jpg");
  background-size: cover;
  background-position: center;
  padding: clamp(40px, 7vw, 80px) 0 clamp(52px, 8vw, 88px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-text { color: var(--white); }
.hero-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
}
.hero-text h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.2;
  margin: 0 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-text h1 span {
  display: block;
  color: #fff4d6;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  margin: 0 0 16px;
  opacity: 0.96;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  max-width: 34em;
}
.hero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-bullets li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.35);
}
.hero-highlight {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 16px 0 8px;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-note {
  margin: 0;
  font-size: 15px;
  opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.hero-form { width: 100%; }

/* Phone-first CTA card (replaces lead forms) */
.phone-cta-box {
  background: var(--white);
  color: var(--navy-text);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.phone-cta-label {
  margin: 0 0 6px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange) !important;
}
.phone-cta-box h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}
.phone-cta-box > p {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--gray);
}
.phone-cta-box .btn {
  font-size: clamp(17px, 2.2vw, 20px);
  padding: 16px 20px;
  margin-top: 8px;
}
.phone-cta-number {
  display: block;
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 700;
  color: var(--navy-text);
  margin: 0 0 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.phone-cta-number:hover {
  color: var(--orange);
  text-decoration: none;
}
.phone-cta-note {
  margin: 14px 0 0 !important;
  font-size: 13px !important;
  color: var(--gray-light) !important;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 16px;
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-call-bar:hover {
  background: var(--orange-dark);
  color: #fff !important;
  text-decoration: none !important;
}
body { padding-bottom: 54px; }
@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
  body { padding-bottom: 0; }
}

.call-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.call-band .phone-cta-box {
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* ========== Page hero (interior) ========== */
.page-hero {
  position: relative;
  background-color: var(--blue-deep);
  background-image:
    linear-gradient(120deg, rgba(30, 42, 54, 0.82) 0%, rgba(61, 95, 140, 0.72) 100%),
    url("images/land-country-road.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(40px, 6vw, 64px) 0;
}
.page-hero.hero-forest {
  background-image:
    linear-gradient(120deg, rgba(30, 42, 54, 0.82) 0%, rgba(40, 70, 50, 0.7) 100%),
    url("images/land-forest-clearing.jpg");
}
.page-hero.hero-mist {
  background-image:
    linear-gradient(120deg, rgba(30, 42, 54, 0.78) 0%, rgba(70, 90, 110, 0.65) 100%),
    url("images/land-field-mist.jpg");
}
.page-hero.hero-hills {
  background-image:
    linear-gradient(120deg, rgba(30, 42, 54, 0.78) 0%, rgba(120, 80, 40, 0.55) 100%),
    url("images/land-golden-hills.jpg");
}
.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.page-hero p {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 18px);
  opacity: 0.95;
  max-width: 720px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.page-hero a { color: #fff4d6; }

/* Photo gallery / feature images */
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
.photo-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--cream);
}
.photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.photo-gallery figcaption {
  padding: 10px 14px 12px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

.feature-photo {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.feature-photo img {
  width: 100%;
  height: clamp(200px, 36vw, 360px);
  object-fit: cover;
  display: block;
}
.feature-photo figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--gray);
  background: var(--cream);
  margin: 0;
}

/* ========== Trust bar ========== */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--white);
  padding: 6px 8px;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: #e8edf1;
  letter-spacing: 0.01em;
}

/* ========== Content sections ========== */
.content-section {
  padding: clamp(40px, 6vw, 72px) 0;
}
.content-section.tight { padding: clamp(28px, 4vw, 40px) 0; }

.section-title {
  font-size: clamp(24px, 3.2vw, 32px);
  color: var(--navy-text);
  line-height: 1.25;
  margin: 0 0 12px;
}
.section-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--gray);
  max-width: 720px;
  margin: 0 0 24px;
}
.section-sub.center,
.section-title.center,
.center { text-align: center; }
.section-title.center,
.section-sub.center {
  margin-left: auto;
  margin-right: auto;
}

.content-section h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  color: var(--navy-text);
  line-height: 1.25;
  margin: 0 0 16px;
}
.content-section h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  color: var(--navy-text);
  margin: 36px 0 12px;
}
.content-section h3 {
  font-size: clamp(18px, 2.2vw, 20px);
  color: var(--navy);
  margin: 24px 0 10px;
}
.content-section h3.accent { color: var(--orange); }
.content-section .lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-text);
}
.content-section .italic { font-style: italic; color: var(--gray); }
.content-section p { margin: 0 0 14px; }
.content-section hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.prose-narrow { max-width: 760px; }

/* Benefit / situation cards */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  border-left: 3px solid var(--blue-dark);
}
.benefit-card p { margin: 0; font-size: 15px; line-height: 1.55; }

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.check-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--orange);
  font-weight: 700;
}

/* Steps */
.steps-section {
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy-text);
}
.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}

.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.steps-list li {
  position: relative;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  background: var(--blue-dark);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

/* Lead form */
.lead-form-box {
  background: var(--white);
  color: var(--navy-text);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.lead-form-box h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}
.lead-form-box > p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--gray);
}

.form-repeat {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.form-repeat .lead-form-box {
  max-width: 520px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.lead-form .form-row { margin-bottom: 12px; }
.lead-form .form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.lead-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 4px;
}
.lead-form input,
.lead-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--navy-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lead-form input:focus,
.lead-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(109, 155, 214, 0.25);
}

.contact-form {
  max-width: 560px;
  margin-top: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-form .form-row { margin-bottom: 12px; }
.contact-form .form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-info {
  font-size: 17px;
  margin-bottom: 8px;
  padding: 20px 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.7;
}

/* FAQ */
.faq-list { margin-top: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--blue-dark);
}
.faq-item p {
  margin: 0 0 10px;
  color: var(--gray);
  font-size: 15px;
}
.faq-item p:last-child { margin-bottom: 0; }

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  margin: 0;
}
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.compare-table th:first-child,
.compare-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:last-child {
  color: var(--blue-deep);
  font-weight: 600;
}

/* Testimonials */
.testimonial-placeholder {
  background: var(--cream);
  border: 1px dashed #c9c2b5;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--gray);
  text-align: center;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  margin: 0 0 12px;
  font-size: 16px;
  font-style: italic;
  color: var(--navy-text);
  line-height: 1.6;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}

/* Final CTA band */
.final-cta {
  background: var(--blue-dark);
  color: var(--white);
  padding: clamp(44px, 6vw, 68px) 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 10px;
  color: var(--white);
}
.final-cta p {
  font-size: clamp(15px, 1.8vw, 17px);
  margin: 0 0 24px;
  color: #eaf0f7;
}
.final-cta .btn-primary { box-shadow: 0 4px 14px rgba(0,0,0,0.2); }

/* Legal */
.legal h3 {
  margin-top: 28px;
  font-size: 18px;
}
.legal ul {
  padding-left: 20px;
  margin: 10px 0 16px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #cfd6dc;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand .logo-name {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 420px;
}
.footer-phone a {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.footer-heading {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #cfd6dc;
  font-size: 14px;
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-social a {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.footer-social a:hover { color: var(--blue); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 13px;
  color: #8b98a5;
  margin: 0;
}

/* Utility */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== Desktop ========== */
@media (min-width: 768px) {
  .header-call { display: flex; }

  .nav-toggle { display: none; }

  .main-nav {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    flex: 1;
  }
  .main-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    gap: 2px;
  }
  .main-nav a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
  }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item + .trust-item {
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .photo-gallery img { height: 200px; }

  .lead-form .form-row.two-col,
  .contact-form .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 960px) {
  .main-nav a {
    padding: 8px 14px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .header-actions { margin-left: auto; }
  .main-nav {
    /* Full-bleed dropdown under sticky header */
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
