:root {
  --ink: #14181f;
  --ink-2: #232a34;
  --navy: #0b7c86;
  --navy-deep: #084e55;
  --cyan: #3ec8d4;
  --brass: #c9a36a;
  --brass-2: #edd9b3;
  --flame: #c2311a;
  --flame-2: #e04a30;
  --paper: #eef3f4;
  --paper-2: #dbe4e6;
  --white: #f6f9fa;
  --line: rgba(20, 24, 31, 0.12);
  --muted: #5a646c;
  --ok: #0b7c86;
  --shadow: 0 18px 50px rgba(20, 24, 31, 0.14);
  --radius: 22px;
  --header: 84px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 10001;
}

.skip:focus {
  left: 8px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}

h1,
h2,
h3,
.display {
  font-family: var(--display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
}

.topbar {
  background: var(--ink);
  color: #d5e0e3;
  font-size: 13px;
  font-weight: 600;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
}

.topbar b {
  color: var(--brass-2);
}

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 249, 250, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-place {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 650;
  font-size: 14.5px;
  color: var(--ink-2);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-flame {
  background: var(--flame);
  color: #fff;
  box-shadow: 0 10px 24px rgba(194, 49, 26, 0.32);
}

.btn-flame:hover {
  transform: translateY(-1px);
  background: var(--flame-2);
}

.btn-navy {
  background: var(--ink);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: var(--line);
}

.btn-brass {
  background: var(--brass);
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  color: #fff;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink) url("../images/hero-kitchen.jpg") center 40% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 16, 22, 0.92) 0%, rgba(20, 24, 31, 0.58) 52%, rgba(11, 124, 134, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 16, 22, 0.12), rgba(12, 16, 22, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 14% 28%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
}

.hero p.lede {
  color: #d5e0e3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 18px;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
}

.stat span {
  color: #c5d2d6;
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section.paper {
  background: var(--paper);
}

.section.ink {
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(14, 36, 51, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 14px;
}

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

.photo-card {
  overflow: hidden;
  padding: 0;
}

.photo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #dbe4e6;
}

.photo-card div {
  padding: 20px;
}

.trust {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

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

.badges img {
  height: 64px;
  width: auto;
  background: #fff;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.price {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.price.featured {
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.price header {
  background: var(--ink);
  color: #fff;
  padding: 22px;
  position: static;
}

.price.featured header {
  background: linear-gradient(135deg, var(--navy), var(--ink));
}

.price .amount {
  font-family: var(--display);
  font-size: 2.4rem;
}

.price .body {
  padding: 22px;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(20, 24, 31, 0.92), rgba(11, 124, 134, 0.72)),
    url("../images/cta-engineer.jpg") center / cover;
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.reviews .stars {
  color: var(--brass);
  letter-spacing: 2px;
}

.quote {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.4;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.area-grid a {
  display: block;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
}

.area-grid a:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.panel {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.panel a {
  color: var(--brass-2);
  font-weight: 700;
}

footer.site {
  background: #0d1116;
  color: #c5d2d6;
  padding: 56px 0 28px;
}

footer.site h3 {
  color: #fff;
  font-size: 1.1rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.foot-grid a {
  display: block;
  margin: 6px 0;
}

.legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 50;
  display: none;
  width: min(520px, calc(100% - 20px));
  background: rgba(13, 17, 22, 0.96);
  color: #fff;
  border-radius: 999px;
  padding: 8px;
  gap: 8px;
  box-shadow: var(--shadow);
}

.dock a,
.dock button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 12px 8px;
  font-weight: 800;
  cursor: pointer;
}

.dock .call {
  background: #fff;
  color: var(--ink);
}

.dock .quote {
  background: var(--flame);
  color: #fff;
}

.float-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
}

/* Fullscreen quote modal */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.quote-modal.open {
  display: block;
}

.quote-modal .veil {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 22, 0.78);
}

.quote-shell {
  position: absolute;
  inset: 12px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.quote-aside {
  background:
    linear-gradient(180deg, rgba(20, 24, 31, 0.92), rgba(11, 124, 134, 0.68)),
    url("../images/service-engineer.jpg") center / cover;
  color: #fff;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-aside li {
  margin: 10px 0;
}

.quote-main {
  padding: 28px 32px 24px;
  overflow: auto;
}

.quote-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.close-x {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
}

.steps {
  display: flex;
  gap: 8px;
  margin: 18px 0 22px;
}

.steps span {
  height: 6px;
  flex: 1;
  border-radius: 99px;
  background: var(--paper-2);
}

.steps span.on {
  background: var(--navy);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.choice small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.choice.selected,
.choice:hover {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 124, 134, 0.22);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.quote-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.estimate {
  background: var(--paper);
  border-radius: 14px;
  padding: 14px;
  margin: 8px 0 16px;
  font-weight: 650;
}

.success-box {
  text-align: center;
  padding: 24px 8px;
}

body.modal-open {
  overflow: hidden;
}

.notice {
  display: none;
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fde4de;
  color: #7a2214;
  font-weight: 700;
}

.notice.show {
  display: block;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumbs a:hover {
  color: var(--navy);
}

.page-hero {
  padding: 48px 0 20px;
  background: var(--paper);
}

.mini-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .trust,
  .contact-split,
  .foot-grid,
  .quote-shell,
  .section-head,
  .cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links,
  .nav-cta .btn-navy {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header) + 32px);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
  }

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

  .price.featured {
    transform: none;
  }

  .quote-aside {
    display: none;
  }

  .quote-shell {
    inset: 0;
    border-radius: 0;
  }

  .dock {
    display: flex;
  }

  .float-quote {
    display: none;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (min-width: 981px) {
  .dock {
    display: none !important;
  }
}

.brand-mark .flame { fill: #3ec8d4; }
.brand-mark .ring { stroke: #0b7c86; fill: none; }

.section.garden {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(11, 124, 134, 0.14), transparent 60%),
    var(--paper);
}

.price.featured header {
  background: linear-gradient(135deg, #0b7c86, #14181f);
}

.icon-pill {
  background: #d7eef0;
  color: var(--navy);
  border: 1px solid rgba(11, 124, 134, 0.18);
}

.hero h1 {
  max-width: 14ch;
}

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

.pane {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 18px;
}

.pane b {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
}

@media (max-width: 980px) {
  .pane-row { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

.blog-article {
  max-width: 820px;
}

.blog-featured {
  width: 100%;
  height: min(420px, 56vw);
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
}

.blog-prose {
  padding: 28px 32px 36px;
}

.blog-prose h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.blog-prose h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-top: 1.4em;
}

.blog-prose p,
.blog-prose li {
  color: var(--ink-2);
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.2em;
  margin: 0 0 1em;
}

.blog-prose a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  margin: 0 0 22px;
}

.blog-card h3 a:hover {
  color: var(--navy);
}

.blog-prose .blog-post-meta i,
.blog-prose .fas {
  display: none;
}

.blog-back {
  margin-top: 22px;
  font-weight: 700;
}

.blog-back a {
  color: var(--navy);
}
