:root {
  --ink: #17312f;
  --muted: #60736f;
  --deep-teal: #0a4244;
  --teal: #0f6869;
  --aqua: #45c9c8;
  --mint: #ddf6ef;
  --soft-mint: #f0fbf7;
  --soft-gray: #eef4f2;
  --warm: #d6b46c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 66, 68, 0.14);
  --line: rgba(15, 104, 105, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfdfc;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--deep-teal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-teal), var(--aqua));
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(10, 66, 68, 0.18);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-script,
.script-kicker,
.footer-brand {
  font-family: "Segoe Script", "Brush Script MT", cursive;
}

.brand-script {
  font-size: 1.55rem;
  color: var(--deep-teal);
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--deep-teal);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--aqua);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.phone-link {
  color: var(--teal);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--deep-teal);
  border-radius: 999px;
  background: var(--deep-teal);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 26px rgba(10, 66, 68, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(10, 66, 68, 0.22);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep-teal);
  border-color: rgba(10, 66, 68, 0.28);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--white);
}

.section-inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 64svh;
  overflow: hidden;
  padding: 52px 0 42px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 253, 252, 0.96) 0%, rgba(251, 253, 252, 0.88) 28%, rgba(251, 253, 252, 0.32) 62%, rgba(251, 253, 252, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(240, 251, 247, 0.48));
}

.hero-sparkles span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--aqua);
  border-left: 2px solid var(--aqua);
  opacity: 0.7;
  transform: rotate(45deg);
}

.hero-sparkles span:nth-child(1) {
  left: 48%;
  top: 22%;
}

.hero-sparkles span:nth-child(2) {
  right: 12%;
  top: 52%;
  border-color: var(--warm);
}

.hero-sparkles span:nth-child(3) {
  left: 28%;
  bottom: 22%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.script-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1.1;
}

.hero h1,
.section-heading h2,
.why-copy h2,
.reviews-copy h2,
.quote-copy h2 {
  margin: 0;
  color: var(--deep-teal);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  font-size: 4rem;
}

.hero-lede {
  max-width: 590px;
  margin: 20px 0 0;
  color: #35504c;
  font-size: 1.15rem;
}

.brand-promise {
  display: inline-block;
  margin: 18px 0 0;
  color: var(--teal);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: var(--deep-teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-note span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 104, 105, 0.18);
  border-radius: 999px;
}

.trust-strip {
  background: var(--deep-teal);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.trust-grid div {
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 0.98rem;
}

.trust-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  padding: 92px 0;
}

.services-section {
  background: linear-gradient(180deg, #fbfdfc 0%, var(--soft-mint) 100%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.why-copy h2,
.reviews-copy h2,
.quote-copy h2 {
  font-size: 2.65rem;
}

.section-heading p:not(.eyebrow),
.why-copy p,
.reviews-copy p,
.quote-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.process-step,
.review-form,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  padding: 26px;
}

.service-number {
  width: fit-content;
  margin-bottom: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(69, 201, 200, 0.45);
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card h3,
.feature-item h3,
.process-step h3 {
  margin: 0;
  color: var(--deep-teal);
  line-height: 1.2;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-card p {
  margin: 14px 0 20px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.why-section {
  background: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 118px;
}

.why-copy .button {
  margin-top: 28px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  position: relative;
  padding: 22px 22px 22px 50px;
  border-bottom: 1px solid var(--line);
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 7px rgba(69, 201, 200, 0.13);
}

.feature-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.process-section {
  background: var(--soft-gray);
}

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

.process-step {
  min-height: 250px;
  padding: 28px;
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--deep-teal);
  color: var(--white);
  font-weight: 900;
}

.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.reviews-section {
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(221, 246, 239, 0.66) 100%),
    var(--soft-mint);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.review-note {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 22px;
  border-left: 4px solid var(--warm);
  background: rgba(255, 255, 255, 0.78);
}

.review-note strong {
  color: var(--deep-teal);
  font-size: 1rem;
}

.review-note span {
  color: var(--muted);
}

.approved-reviews-shell {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.approved-reviews-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.approved-reviews-heading span {
  color: var(--deep-teal);
  font-weight: 900;
}

.approved-reviews-heading strong {
  color: var(--teal);
  font-size: 0.9rem;
}

.approved-reviews {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.approved-review-card {
  padding: 18px;
  border: 1px solid rgba(15, 104, 105, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.approved-review-rating {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.approved-review-card p {
  margin: 0;
  color: #35504c;
}

.approved-review-meta {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.reviews-empty {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.review-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal);
}

.checkbox-row label {
  color: var(--muted);
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.google-review-step {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(69, 201, 200, 0.28);
  border-radius: 8px;
  background: rgba(240, 251, 247, 0.88);
}

.google-review-step[hidden] {
  display: none;
}

.google-review-step strong {
  color: var(--deep-teal);
}

.google-review-step p {
  margin: 0;
  color: var(--muted);
}

.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.google-review-actions .button {
  flex: 1;
  min-width: 150px;
}

.quote-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(221, 246, 239, 0.64)),
    #f8fcfb;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 22px;
  border-left: 4px solid var(--aqua);
  background: rgba(255, 255, 255, 0.74);
}

.contact-panel a,
.site-footer a {
  color: var(--teal);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row.split > div {
  display: grid;
  gap: 8px;
}

label {
  color: var(--deep-teal);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 104, 105, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(69, 201, 200, 0.18);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  background: #082f31;
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-layout h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-layout a,
.footer-layout span,
.footer-layout p {
  display: block;
  margin: 0 0 7px;
}

.footer-brand {
  color: var(--white);
  font-size: 2rem;
}

.footer-line {
  max-width: 360px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(221, 246, 239, 0.72), rgba(251, 253, 252, 0.96)),
    #fbfdfc;
}

.admin-main {
  padding: 64px 0 80px;
}

.admin-shell {
  display: grid;
  gap: 24px;
}

.admin-intro {
  max-width: 720px;
}

.admin-intro h1 {
  margin: 0;
  color: var(--deep-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.06;
}

.admin-intro p {
  margin: 14px 0 0;
  color: var(--muted);
}

.admin-login,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.admin-login {
  display: grid;
  max-width: 520px;
  gap: 16px;
  padding: 28px;
}

.admin-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.admin-panel[hidden],
.admin-login[hidden] {
  display: none;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filter,
.admin-refresh,
.admin-action {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(15, 104, 105, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-teal);
  cursor: pointer;
  font-weight: 900;
}

.admin-filter.is-active,
.admin-refresh:hover,
.admin-refresh:focus,
.admin-action:hover,
.admin-action:focus {
  border-color: var(--deep-teal);
  background: var(--deep-teal);
  color: var(--white);
}

.admin-review-list {
  display: grid;
  gap: 14px;
}

.admin-review-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(15, 104, 105, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.admin-review-card h2 {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1.12rem;
}

.admin-review-card p {
  margin: 0;
  color: #35504c;
}

.admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-layout,
  .reviews-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-script {
    font-size: 1.35rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .button-small,
  .phone-link {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 460px;
    padding: 50px 0 42px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(251, 253, 252, 0.97) 0%, rgba(251, 253, 252, 0.86) 58%, rgba(251, 253, 252, 0.3) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(240, 251, 247, 0.58));
  }

  .script-kicker {
    font-size: 1.65rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .hero-sparkles {
    display: none;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .why-copy h2,
  .reviews-copy h2,
  .quote-copy h2 {
    font-size: 2.05rem;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

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

  .review-form,
  .quote-form {
    padding: 22px;
  }

  .approved-reviews-heading,
  .admin-toolbar {
    display: grid;
  }

  .admin-intro h1 {
    font-size: 2.15rem;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 18px 20px;
  }
}

@media (max-width: 420px) {
  .section-inner,
  .trust-grid {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    padding: 10px 14px;
  }

  .phone-link,
  .button-small {
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}
