/* Top Valley Detail - shared styles. Brand palette pulled from logo. */
*,*::before,*::after { box-sizing: border-box; }
:root {
  --teal: #2B2F36;
  --teal-dark: #1C2025;
  --teal-deeper: #15181C;
  --teal-night: #0E1013;
  --teal-light: #3A4048;
  --sunset: #D7263D;
  --sunset-bright: #F0394F;
  --sunset-dark: #B01A2E;
  --sunset-deep: #8C1322;
  --cream: #EEF1F4;
  --cream-bg: #F7F8FA;
  --sand: #E4E7EB;
  --silver: #B8BFC4;
  --silver-dark: #6E7882;
  --ink: #14181B;
  --ink-soft: #4A525C;
  --muted: #8b93a3;
  --bg: #F7F8FA;
  --bg-soft: #F3F5F7;
  --line: #E2E6EA;
  --line-strong: #C9CFD6;
  --navy: #14181B;
  --accent: #D7263D;
  --accent-dark: #B01A2E;
  --shadow: 0 1px 2px rgba(20,24,27,.05), 0 8px 32px rgba(20,24,27,.10);
  --shadow-lg: 0 30px 80px rgba(20,24,27,.18);
  --shadow-card: 0 4px 16px rgba(20,24,27,.06), 0 24px 60px rgba(20,24,27,.10);
}
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased; line-height: 1.6; font-size: 16px;
}
.serif { font-family: 'Instrument Serif', serif; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--teal-night) 0%, var(--teal-deeper) 50%, var(--teal-dark) 100%);
  color: var(--cream);
  padding: 10px 16px; text-align: center; font-size: 13px; font-weight: 500;
}
.topbar a { color: var(--sunset-bright); text-decoration: none; font-weight: 700; }
.topbar a:hover { color: #fff; }

/* Nav */
.nav {
  background: rgba(251, 246, 233, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0; position: sticky; top: 0; z-index: 50;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -0.01em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 14px;
}
.logo img { width: 52px; height: 52px; object-fit: contain; display: block; border-radius: 10px; }
.logo .accent { color: var(--teal); }
.logo .wordmark { display: inline-flex; flex-direction: column; line-height: 1.15; gap: 8px; }
.logo .wordmark .sub { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; color: var(--sunset-dark); text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-cta {
  background: var(--teal) !important; color: #fff !important;
  padding: 10px 18px; border-radius: 8px; font-weight: 700 !important; font-size: 14px !important;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--teal-dark) !important; color: #fff !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 24px; height: 24px; display: block; }
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream-bg); padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line); box-shadow: 0 12px 32px rgba(20,24,27,.10);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; margin-top: 8px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: all 0.2s; border: none; font-family: inherit;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 24px rgba(43, 47, 54, 0.35); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(43, 47, 54, 0.45); }
.btn-accent {
  background: linear-gradient(135deg, var(--sunset-bright) 0%, var(--sunset) 100%);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(215, 38, 61, 0.40), inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-dark) 100%);
  color: var(--ink); transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(215, 38, 61, 0.55), inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-secondary {
  background: rgba(238, 241, 244, 0.10); color: var(--cream);
  border: 1px solid rgba(238, 241, 244, 0.35); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(238, 241, 244, 0.20); border-color: var(--cream); color: #fff; }
.s .btn-secondary { background: #fff; color: var(--ink); border-color: var(--line-strong); backdrop-filter: none; }
.s .btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); background: #fff; }

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(238, 241, 244, 0.14); color: var(--cream);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(238, 241, 244, 0.30); backdrop-filter: blur(8px);
}
.pill .star { color: var(--sunset-bright); font-size: 14px; }
.s .pill, .page-hero .pill {
  background: rgba(43, 47, 54, 0.10); color: var(--teal-dark);
  border-color: rgba(43, 47, 54, 0.25); backdrop-filter: none;
}
.s .pill .star, .page-hero .pill .star { color: var(--sunset); }

/* Section base */
section.s { padding: 88px 0; background: var(--bg); position: relative; }
section.s.alt {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(215, 38, 61, 0.12), transparent 50%),
    linear-gradient(180deg, var(--teal-deeper) 0%, var(--teal-night) 100%);
  color: var(--cream);
}
section.s.cream { background: var(--bg-soft); }
section.s.white { background: #fff; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sunset-dark); font-weight: 700; margin-bottom: 14px;
}
section.s.alt .section-head .label { color: var(--sunset-bright); }
h1 {
  font-size: clamp(42px, 5.4vw, 70px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.04;
  margin: 0 0 20px; color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,0.20);
}
h1 .serif-em { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; color: var(--sunset-bright); font-size: 1.08em; }
h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.08;
  margin: 0 0 16px; color: var(--ink);
}
section.s.alt h2 { color: var(--cream); }
.section-head p { font-size: 17px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
section.s.alt .section-head p { color: rgba(238, 241, 244, 0.75); }

/* Page hero (smaller hero used on inner pages) */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(215, 38, 61, 0.18), transparent 50%),
    linear-gradient(180deg, var(--cream-bg) 0%, #fff 100%);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 {
  color: var(--ink); text-shadow: none;
  font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 14px;
}
.page-hero p { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 0 auto; line-height: 1.55; }

/* Trust row */
.trust-row {
  display: flex; gap: 28px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid rgba(238, 241, 244, 0.20);
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(238, 241, 244, 0.85); font-weight: 500; }
.trust-item .ico {
  color: var(--sunset-bright); font-weight: 700;
  background: rgba(238, 241, 244, 0.10);
  width: 20px; height: 20px; display: grid; place-items: center;
  border-radius: 50%; font-size: 11px;
}

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card.featured {
  background: linear-gradient(160deg, #fff 0%, #FFF0F2 100%);
  border-color: var(--sunset);
  box-shadow: 0 24px 48px rgba(215, 38, 61, 0.18);
}
.service-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--sunset-bright) 0%, var(--sunset) 100%);
  color: var(--ink); padding: 5px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.10em;
  box-shadow: 0 4px 12px rgba(215, 38, 61, 0.40);
}
.service-card h3 { font-size: 21px; margin: 0 0 8px; color: var(--ink); font-weight: 800; }
.service-card .price { font-size: 15px; color: var(--sunset-dark); font-weight: 800; margin-bottom: 16px; letter-spacing: 0.01em; }
.service-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; line-height: 1.6; }
.service-card ul { list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--ink-soft); }
.service-card li { padding: 5px 0; padding-left: 22px; position: relative; }
.service-card li::before { content: ""; position: absolute; left: 0; width: 14px; height: 14px; background: var(--teal); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"20 6 9 17 4 12\"/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"20 6 9 17 4 12\"/></svg>") center/contain no-repeat; top: 0.55em; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  text-align: center; padding: 32px 24px;
  background: rgba(238, 241, 244, 0.05);
  border: 1px solid rgba(238, 241, 244, 0.12);
  border-radius: 18px; backdrop-filter: blur(8px);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.why-card:hover { transform: translateY(-4px); background: rgba(238, 241, 244, 0.10); border-color: rgba(238, 241, 244, 0.25); }
.why-card .num {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--sunset-bright) 0%, var(--sunset-dark) 100%);
  color: var(--ink); display: grid; place-items: center;
  margin: 0 auto 20px; font-weight: 800; font-size: 20px;
  box-shadow: 0 8px 20px rgba(215, 38, 61, 0.35);
}
.why-card h3 { font-size: 18px; margin: 0 0 8px; color: var(--cream); font-weight: 700; }
.why-card p { font-size: 14px; color: rgba(238, 241, 244, 0.78); margin: 0; line-height: 1.6; }
/* Light variant of why-card for non-alt sections */
.s:not(.alt) .why-card, .page-hero + .s .why-card {
  background: #fff; border-color: var(--line); backdrop-filter: none;
  box-shadow: var(--shadow);
}
.s:not(.alt) .why-card h3, .page-hero + .s .why-card h3 { color: var(--ink); }
.s:not(.alt) .why-card p, .page-hero + .s .why-card p { color: var(--ink-soft); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-item {
  aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deeper) 100%);
  box-shadow: 0 12px 32px rgba(20, 24, 27, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 24px 48px rgba(20, 24, 27, 0.18); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-deep) 100%); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, var(--sunset-dark) 0%, var(--teal-deeper) 100%); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-night) 100%); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, var(--sunset) 0%, var(--teal) 100%); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item img.broken { display: none; }
.gallery-item .placeholder-text {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,0.75); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 600; pointer-events: none;
}
.gallery-item img:not(.broken) + .placeholder-text { display: none; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 32px 28px; box-shadow: var(--shadow); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-card::before { content: none; }
.review-card .stars { color: var(--sunset); font-size: 17px; margin-bottom: 14px; letter-spacing: 1px; }
.review-card p { font-size: 15px; color: var(--ink); line-height: 1.6; margin: 0 0 18px; font-style: italic; }
.review-card .author { font-size: 13px; color: var(--ink-soft); font-weight: 700; }
.review-card .author span { color: var(--muted); font-weight: 500; }

/* Service area */
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.area-pill {
  background: #fff; border: 1px solid var(--line-strong);
  padding: 11px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover { border-color: var(--teal); color: var(--teal-dark); }
section.s.alt .area-pill {
  background: rgba(238, 241, 244, 0.08);
  border: 1px solid rgba(238, 241, 244, 0.30);
  color: var(--cream); backdrop-filter: blur(8px);
}
section.s.alt .area-pill:hover { background: rgba(238, 241, 244, 0.18); border-color: var(--cream); }

/* Contact / form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { margin-top: 0; }
.info-list { list-style: none; padding: 0; margin: 32px 0 0; }
.info-list li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line); align-items: flex-start;
}
.info-list li:last-child { border-bottom: none; }
.info-list .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sunset-bright) 0%, var(--sunset) 100%);
  color: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0; font-weight: 700; font-size: 16px;
  box-shadow: 0 6px 16px rgba(215, 38, 61, 0.30);
}
section.s.alt .info-list { color: var(--cream); }
section.s.alt .info-list li { border-bottom-color: rgba(238, 241, 244, 0.15); }
section.s.alt .info-list .label { color: rgba(238, 241, 244, 0.55); }
section.s.alt .info-list .value { color: var(--cream); }
section.s.alt .info-list a { color: var(--cream); }
section.s.alt .info-list a:hover { color: var(--sunset-bright); }
section.s.alt .contact-info h2 { color: var(--cream); }
section.s.alt .contact-info > p { color: rgba(238, 241, 244, 0.78); }
.info-list .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.10em; font-weight: 700; }
.info-list .value { font-size: 16px; color: var(--ink); font-weight: 600; }
.info-list a { color: var(--ink); text-decoration: none; }
.info-list a:hover { color: var(--teal-dark); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 40px 36px; box-shadow: var(--shadow-lg);
  color: var(--ink);  /* override any inherited cream from .s.alt parent */
}
section.s.alt .form-card,
section.s.alt .form-card * { color: inherit; }
section.s.alt .form-card { color: var(--ink); }
section.s.alt .form-card label { color: var(--ink); }
section.s.alt .form-card .checkbox-field label { color: var(--ink-soft); }
section.s.alt .form-card .checkbox-field label strong { color: var(--ink); }
section.s.alt .form-card .field input,
section.s.alt .form-card .field select,
section.s.alt .form-card .field textarea { color: var(--ink); background: #fff; }
.form-card h3 { font-size: 22px; margin: 0 0 6px; color: var(--ink); font-weight: 800; }
.form-card .sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line-strong); border-radius: 10px;
  font-size: 14px; font-family: inherit;
  background: #fff; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 47, 54, 0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }
.consent {
  font-size: 11px; color: var(--ink-soft); line-height: 1.5;
  margin: 12px 0 20px; padding: 10px 12px;
  background: var(--bg-soft); border-radius: 8px;
  border-left: 3px solid var(--sunset);
}
.consent strong { color: var(--ink); }

/* Required-style checkbox row used for SMS consent + marketing opt-in */
.checkbox-field {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 14px 0 16px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 10px;
  border-left: 3px solid var(--sunset);
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-field:has(input:checked) {
  background: rgba(43, 47, 54, 0.08);
  border-left-color: var(--teal);
}
.checkbox-field input[type="checkbox"] {
  flex-shrink: 0; width: 22px; height: 22px;
  margin: 1px 0 0 0; padding: 0;
  accent-color: var(--teal);
  cursor: pointer;
}
.checkbox-field label {
  font-size: 12px; color: var(--ink-soft); line-height: 1.55;
  cursor: pointer; margin: 0; font-weight: 500;
  flex: 1;
}
.checkbox-field label strong { color: var(--ink); font-weight: 700; }
.checkbox-field label a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.checkbox-field label a:hover { color: var(--sunset-dark); }
.checkbox-field input:invalid + label::before {
  content: "Required: "; color: #b91c1c; font-weight: 700;
}
.form-card .btn { width: 100%; justify-content: center; }
.quote-msg { font-size: 13px; margin-top: 12px; min-height: 18px; color: var(--ink-soft); text-align: center; }
.quote-msg.error { color: #b91c1c; font-weight: 600; }
.quote-success {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 36px; text-align: center; box-shadow: var(--shadow);
}
.quote-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center;
  font-size: 28px; font-weight: 800; margin: 0 auto 18px;
}
.quote-success .btn { width: 100%; justify-content: center; }

/* Footer */
footer {
  background: linear-gradient(180deg, var(--teal-deeper) 0%, var(--teal-night) 100%);
  color: #fff; padding: 64px 0 32px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--sunset-bright); margin: 0 0 16px; font-weight: 700; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 4px 0; }
footer a { color: rgba(238, 241, 244, 0.78); text-decoration: none; font-size: 14px; transition: color 0.15s; }
footer a:hover { color: var(--sunset-bright); }
footer .footer-brand {
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 12px;
}
footer .footer-brand img { width: 60px; height: 60px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
footer .footer-brand .accent { color: var(--sunset-bright); }
footer p.tag { color: rgba(238, 241, 244, 0.65); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.footer-bottom {
  border-top: 1px solid rgba(238, 241, 244, 0.15);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(238, 241, 244, 0.45);
}

/* Floating mobile call CTA */
.float-call {
  display: none; position: fixed; bottom: 20px; right: 20px;
  z-index: 100; width: 56px; height: 56px; border-radius: 50%;
  background: var(--sunset); color: var(--ink);
  text-decoration: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(215, 38, 61, 0.45);
  font-size: 24px; font-weight: 700;
}
@media (max-width: 720px) { .float-call { display: grid; place-items: center; } }

/* === Mobile polish === */
@media (max-width: 720px) {
  section.s { padding: 56px 0; }
  .container { padding: 0 18px; }
  .topbar { padding: 8px 12px; font-size: 12px; line-height: 1.4; }
  .topbar a { display: inline-block; }
  .nav { padding: 12px 0; }
  .logo img { width: 46px; height: 46px; border-radius: 8px; }
  .logo { font-size: 16px; gap: 10px; }
  .logo .wordmark { gap: 5px; }
  .logo .wordmark .sub { font-size: 9px; margin-top: 2px; }
  .section-head { margin: 0 auto 36px; }
  .section-head .label { margin-bottom: 10px; }
  .btn { padding: 14px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; gap: 10px; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .form-card { padding: 28px 22px; border-radius: 18px; }
  .form-card h3 { font-size: 20px; }
  .footer-grid { gap: 32px; }
  footer { padding: 48px 0 28px; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .why-grid { gap: 14px; }
  .info-list li { padding: 12px 0; }
  .info-list .ico { width: 38px; height: 38px; font-size: 14px; }
  .gallery-grid { gap: 10px; }
  /* Tighter checkbox-field on small screens */
  .checkbox-field { padding: 12px 14px; gap: 10px; }
  .checkbox-field label { font-size: 11.5px; }
  .checkbox-field input[type="checkbox"] { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  h1 { font-size: 36px !important; }
  h2 { font-size: 26px !important; }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 15px; }
  .preview-card { padding: 22px; }
  .preview-card h3 { font-size: 17px; }
  .service-card { padding: 24px 22px; }
  .service-card h3 { font-size: 19px; }
  .review-card { padding: 26px 22px; }
  .review-card p { font-size: 14px; }
}

/* --- Embed mode: site shown inside an iframe (e.g. GoHighLevel) --- */
html.tvd-embedded .nav { position: static; }
html.tvd-embedded #dchat-launch,
html.tvd-embedded #dchat-greet,
html.tvd-embedded #dchat-panel { display: none !important; }
