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

:root {
  --orange: #e86f1b;
  --orange-dark: #c75910;
  --bg: #fff7ef;
  --text-main: #1d1d23;
  --text-muted: #4e4e5a;
  --card-bg: #ffffff;
  --accent: #ffb347;
  --radius-lg: 18px;
  --shadow-soft: 0 14px 40px rgba(0,0,0,0.12);
  --max-width: 980px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  background: radial-gradient(circle at top left, #ffe3c4 0, #fff7ef 42%, #fff 80%);
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255,247,239,0.98), rgba(255,247,239,0.85));
  border-bottom: 1px solid rgba(255,255,255,0.7);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  position: relative;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 2px solid rgba(232,111,27,0.45);
}

.logo-mark::after {
  inset: 8px;
  border-color: rgba(232,111,27,0.28);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--text-main);
  border-bottom-color: rgba(232,111,27,0.45);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 26px rgba(232,111,27,0.35);
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-main);
}

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-copy-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--orange-dark);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.35rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero-subline {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-reassure {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-bullets {
  font-size: 0.96rem;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero-bullets li + li {
  margin-top: 2px;
}

.hero-cta-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-photo-wrap {
  position: relative;
  justify-self: center;
}

.hero-photo-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--orange);
  max-width: 340px;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  left: 18px;
  background: var(--card-bg);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #19c46a;
}

/* Testimonials Section */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 20px 22px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 12px;
}

.testimonial-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Optional subtle quote icon */
.testimonial-card::before {
  content: "“";
  font-size: 2.6rem;
  line-height: 0;
  color: rgba(232,111,27,0.28);
  position: absolute;
  transform: translate(6px, -6px);
}


/* Pill rows */

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pill {
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Sections */

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.section p {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.section-lead {
  max-width: 640px;
}

/* Why This Matters */

.leaks-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.leak-card {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 16px 18px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.leak-card h3 {
  font-size: 0.98rem;
  margin: 0 0 6px;
}

.leak-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Services */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 18px;
  margin-top: 24px;
}

.tier {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  padding: 18px 20px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.tier-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--orange-dark);
  margin-bottom: 6px;
}

.tier h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.tier-price {
  font-weight: 600;
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.tier ul {
  padding-left: 18px;
  margin: 0 0 10px;
}

.tier ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tier-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Process */

.process-steps {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 28px;
  margin-top: 24px;
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 12px 14px 12px 40px;
  position: relative;
  box-shadow: 0 10px 26px rgba(0,0,0,0.03);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.9rem;
  margin: 0;
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,0.9fr);
  gap: 30px;
  margin-top: 18px;
}

.quote-card {
  background: #1f1b1a;
  color: #fff7ef;
  border-radius: var(--radius-lg);
  padding: 18px 18px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  font-size: 0.9rem;
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  font-size: 3rem;
  opacity: 0.18;
  top: -8px;
  left: 12px;
}

/* CTA / Form */

.section-cta {
  padding-bottom: 70px;
}

.form-shell {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 26px;
  padding: 26px 22px 26px;
  box-shadow: var(--shadow-soft);
  color: #fff7ef;
}

.form-shell h2 {
  color: #fff;
}

.form-shell p {
  color: #ffe7cc;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.form-group {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

input,
textarea {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 9px 12px;
  font-family: var(--font-main);
  font-size: 0.9rem;
}

textarea {
  border-radius: 14px;
  min-height: 80px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0,0,0,0.35);
}

.btn-form {
  margin-top: 6px;
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.btn-form:hover {
  background: #fff7ef;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 8px;
  color: #ffe7cc;
}

/* Footer */

footer {
  padding: 18px 20px 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
    text-align: left;
  }
  .hero-photo-wrap {
    order: -1;
  }
  .nav-links {
    display: none;
  }
  .process-steps,
  .about-inner,
  .form-grid,
  .leaks-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 520px) {
  .section {
    padding-inline: 16px;
  }
  .hero {
    padding-top: 26px;
  }
  .form-shell {
    padding-inline: 18px;
  }
}

.map-embed {
  margin-top: 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}
