:root {
  --paper: #f7f4ec;
  --paper2: #f3efe4;
  --ink: #1f2a33;
  --muted: #4f626f;
  --line: rgba(31, 42, 51, 0.14);

  --water: #2f6d77;
  --water2: #4aa3b2;
  --water3: #3b5663;

  --card: rgba(255, 255, 255, 0.74);
  --shadow: 0 10px 30px rgba(31, 42, 51, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);

  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(74, 163, 178, 0.14), transparent 55%),
    radial-gradient(900px 600px at 90% 25%, rgba(47, 109, 119, 0.12), transparent 60%),

    /* Dramatic corner “water art” (clean/airy ukiyo-e vibe) */
    url("assets/water-art-top-right.svg"),
    url("assets/water-art-bottom-left.svg"),

    linear-gradient(180deg, var(--paper), var(--paper2));

  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, 560px 560px, 560px 560px, auto;
  background-position: 0 0, 100% 0, calc(100% + 70px) 40px, -70px calc(100% - 40px), 0 0;
}


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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.74);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(31, 42, 51, 0.14);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 42, 51, 0.10);
  padding: 8px;
}

.brand-text {
  line-height: 1.05;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand-sub {
  font-weight: 800;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav a {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 109, 119, 0.16), rgba(74, 163, 178, 0.10));
  border: 1px solid rgba(31, 42, 51, 0.14);
  box-shadow: 0 10px 22px rgba(31, 42, 51, 0.08);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 12px;
  border-radius: 12px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 42, 51, 0.14);
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 54px 0 30px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 14px;
  background: linear-gradient(90deg, rgba(47, 109, 119, 0.00), rgba(47, 109, 119, 0.16), rgba(47, 109, 119, 0.00));
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.kicker {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(31, 42, 51, 0.14);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.03;
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}

.emph {
  color: var(--ink);
  font-weight: 900;
}

.nowrap {
  white-space: nowrap;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pill {
  position: relative;
  padding: 8px 12px 8px 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 42, 51, 0.12);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.pill::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232f6d77' fill-opacity='0.85' d='M12 2C10 6 6 9.6 6 14a6 6 0 0 0 12 0c0-4.4-4-8-6-12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 12px;
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: var(--water);
}

.card {
  background: var(--card);
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.card-title {
  font-size: 18px;
  margin: 0 0 6px;
}

.form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(31, 42, 51, 0.92);
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 51, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  font: inherit;
  /* match typography */
}

textarea {
  resize: vertical;
}

/* Make the dropdown feel “designed”, not OS-default */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  /* room for arrow */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%234f626f' d='M7 10l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(79, 98, 111, 0.70);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47, 109, 119, 0.35);
  box-shadow: 0 0 0 4px rgba(74, 163, 178, 0.10);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card ul {
  margin: 10px 0 0 18px;
  color: var(--muted);
}

.card li {
  margin: 6px 0;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 42, 51, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  line-height: 1.6;
  position: relative;
}

.note::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -10px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 109, 119, 0.0), rgba(47, 109, 119, 0.35), rgba(47, 109, 119, 0.0));
}

.split {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(74, 163, 178, 0.12);
  border: 1px solid rgba(31, 42, 51, 0.14);
  font-weight: 900;
  color: var(--ink);
}

.mini-faq {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

details summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 10px 0 0;
}

.contact-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.linkcard:hover {
  transform: translateY(-1px);
  border-color: rgba(74, 163, 178, 0.40);
}

.footer {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 109, 119, 0.00), rgba(47, 109, 119, 0.28), rgba(47, 109, 119, 0.00));
}

/* Smoke Remediation block */
.smoke {
  padding-top: 28px;
}

.smoke-banner {
  background:
    radial-gradient(700px 350px at 10% 0%, rgba(74, 163, 178, 0.14), transparent 55%),
    radial-gradient(700px 350px at 90% 0%, rgba(47, 109, 119, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.70);
}

.smoke-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 51, 0.12);
  background: rgba(255, 255, 255, 0.60);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.badge::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232f6d77' fill-opacity='0.85' d='M12 2C10 6 6 9.6 6 14a6 6 0 0 0 12 0c0-4.4-4-8-6-12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.smoke-title {
  max-width: 62ch;
}

.smoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.smoke-col h3 {
  margin-top: 0;
}

.fineprint {
  margin-top: 10px;
}

.waterline {
  margin-top: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 109, 119, 0.00), rgba(47, 109, 119, 0.30), rgba(47, 109, 119, 0.00));
}

/* Smoke card inside services grid */
.smoke-card {
  position: relative;
  overflow: hidden;
}

.smoke-card::after {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 163, 178, 0.22), transparent 60%);
  pointer-events: none;
}

.mini-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: var(--water);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .smoke-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .nowrap {
    white-space: normal;
  }

  /* keep corner art subtle on mobile */
  body {
    background-size: auto, auto, 380px 380px, 380px 380px, auto;
    background-position: 0 0, 100% 0, 100% 20px, 0 calc(100% - 20px), 0 0;
  }
}