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

:root {
  --bg: oklch(97% 0.008 70);
  --bg-subtle: oklch(93% 0.012 70);
  --border: oklch(88% 0.018 70);
  --text: oklch(18% 0.012 60);
  --text-muted: oklch(42% 0.010 60);
  --text-faint: oklch(65% 0.008 60);
  --accent: oklch(45% 0.06 240);
  --accent-subtle: oklch(85% 0.04 240);
  --accent-strong: oklch(32% 0.07 240);
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

::selection {
  background: var(--accent-subtle);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}

.nav-logo svg,
.nav-logo-img {
  width: 32px;
  height: 32px;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--bg) !important;
  background: var(--text);
  padding: 8px 20px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 16px 0;
  z-index: 99;
}

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

.nav-mobile a {
  display: block;
  padding: 12px 40px;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  color: var(--text);
  background: var(--bg-subtle);
}

.nav-mobile .nav-cta {
  margin: 12px 40px 4px;
  text-align: center;
  background: var(--text) !important;
  color: var(--bg) !important;
  border-radius: 2px;
  padding: 12px 20px;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ── PAGE OFFSET ── */
.page-top {
  padding-top: var(--nav-h);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  border-radius: 2px;
  text-decoration: none;
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
}

.btn-dark:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sage {
  background: var(--accent);
  color: var(--bg);
}

.btn-sage:hover {
  background: var(--accent-strong);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ── EYEBROW ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 80px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: var(--bg);
  padding: 64px 40px 0;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a,
.footer-col li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  list-style: none;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--bg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo svg,
.footer-logo img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--bg);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  footer {
    padding: 48px 24px 0;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/Glorious Homestead st james.JPG');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 12, 0.55) 0%, rgba(20, 18, 12, 0.35) 50%, rgba(20, 18, 12, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 40px;
  color: var(--bg);
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid black;
  border-left-width: 0;
  border-right-width: 0;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  opacity: 0.92;
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  color: var(--bg);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid #b99c7f;
  background: var(--text);
  padding: 48px 40px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-subtle);
}

/* ── SERVICES PREVIEW ── */
.services-preview {
  padding: 96px 40px;
  max-width: 1140px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card:last-child {
  border-right: none;
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.services-preview-cta {
  margin-top: 40px;
}

/* ── ABOUT SNIPPET ── */
.about-snippet {
  background: var(--bg-subtle);
  padding: 80px 40px;
  text-align: center;
}

.about-snippet-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-snippet h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}

.about-snippet p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-subtle);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--accent-strong);
  border-color: var(--accent);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  padding: 80px 40px;
  text-align: center;
  color: var(--bg);
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--bg);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICE PANELS ── */
.service-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-bottom: 2px;
  overflow: hidden;
}

.service-panel.reverse {
  direction: rtl;
}

.service-panel.reverse>* {
  direction: ltr;
}

.panel-img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.panel-img.placeholder {
  aspect-ratio: 4/3;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.panel-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.panel-tag {
  font-size: clamp(22px, 2.5vw, 32px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 12px;
}

.panel-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 8px;
}

.panel-meta {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.panel-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.panel-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-details li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.panel-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 768px) {

  .service-panel,
  .service-panel.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .panel-content {
    padding: 32px 24px;
  }
}

/* ── SERVICES PANELS WRAPPER ── */
.services-panels {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

/* ── SERVICES CTA ── */
.services-cta {
  background: var(--bg-subtle);
  padding: 64px 40px;
  text-align: center;
}

.services-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.services-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.services-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.phone-link {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--accent-strong);
}

/* ── BENEFITS ── */
.benefits-lead-img {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
  display: block;
}

.benefits-articles {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
}

.benefits-article {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.benefits-article:last-child {
  border-bottom: none;
}

.benefits-article h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}

.benefits-article p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.benefits-article p:last-child {
  margin-bottom: 0;
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  padding: 0 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-section h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table tr.highlight td {
  background: var(--accent-subtle);
  color: var(--text);
  font-weight: 500;
}

.comparison-table tr.highlight td:first-child {
  color: var(--accent-strong);
}

.table-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
}

/* ── INLINE CTA ── */
.inline-cta {
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 80px;
}

.inline-cta p {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

/* ── ABOUT PAGE ── */
.about-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 24px;
}

.info-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 0;
}

.info-tile {
  background: var(--bg-subtle);
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.info-tile-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.info-tile-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.about-col h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
}

.about-col p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-col h3 {
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.cert-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-subtle);
  border-left: 2px solid var(--accent);
  margin-bottom: 2px;
}

.cert-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}

.cert-sub {
  font-size: 13px;
  color: var(--text-faint);
}

.about-footer-cta {
  background: var(--bg-subtle);
  padding: 64px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.about-footer-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.about-footer-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px 60px;
  }

  .about-portrait {
    max-width: 280px;
  }
}

/* ── BOOK / FORM ── */
.form-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  transition: border-color 0.2s, background 0.2s;
}

.radio-option:has(input:checked) {
  border-color: var(--text);
  background: var(--bg);
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.radio-option input[type="radio"]:checked {
  border-color: var(--text);
  background: var(--text);
  box-shadow: inset 0 0 0 3px var(--bg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

.form-error {
  font-size: 12px;
  color: oklch(50% 0.12 20);
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: oklch(50% 0.12 20);
}

.form-group.has-error .form-error {
  display: block;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-faint);
  margin-top: 20px;
}

.form-note a {
  color: var(--accent);
  text-decoration: none;
}

.form-note a:hover {
  color: var(--accent-strong);
}

.form-success {
  text-align: center;
  padding: 80px 40px;
  display: none;
}

.form-success.visible {
  display: block;
}

.form-success svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
}

.form-success h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

  .form-section {
    padding: 0 20px 60px;
  }
}

/* ── CONTACT PAGE ── */
.contact-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.contact-row-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  min-width: 100px;
}

.contact-row-val {
  font-size: 15px;
  color: var(--text);
  text-align: right;
}

.contact-row-val a {
  color: var(--accent);
  text-decoration: none;
}

.contact-row-val a:hover {
  color: var(--accent-strong);
}

.contact-certs {
  margin-top: 32px;
  list-style: none;
}

.contact-certs li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-certs li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.contact-right-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 24px;
}

.contact-right p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px 60px;
  }

  nav {
    padding: 0 20px;
  }

  .page-header {
    padding: 48px 20px 40px;
  }

  .stats-bar {
    padding: 40px 20px;
  }

  .services-preview {
    padding: 60px 20px;
  }

  .about-snippet {
    padding: 60px 20px;
  }

  .cta-banner {
    padding: 60px 20px;
  }

  .benefits-articles {
    padding: 60px 20px;
  }

  .comparison-section {
    padding: 0 20px 60px;
  }

  .inline-cta {
    margin: 0 20px 60px;
  }

  .about-footer-cta {
    padding: 48px 24px;
  }

  .services-cta {
    padding: 48px 20px;
  }
}