:root {
  --forest-950: #10281c;
  --forest-900: #163325;
  --forest-800: #1f4d36;
  --forest-700: #2e6a4a;
  --forest-600: #4b8b66;
  --accent-500: #6fa67a;
  --forest-100: rgba(75, 139, 102, 0.14);
  --stone-50: #f7f8f6;
  --stone-100: #eff2ee;
  --stone-200: #dde4dd;
  --ink-950: #182028;
  --ink-800: #24303b;
  --ink-600: #5e6a73;
  --ink-500: #7a8791;
  --mist-strong: rgba(255, 255, 255, 0.82);
  --mist-soft: rgba(255, 255, 255, 0.68);
  --surface: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.72);
  --line-soft: rgba(31, 77, 54, 0.1);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-soft: 0 8px 24px rgba(16, 40, 28, 0.06);
  --shadow-card: 0 16px 40px rgba(16, 40, 28, 0.08);
  --shadow-float: 0 24px 60px rgba(16, 40, 28, 0.12);
  --section-y: clamp(72px, 10vw, 128px);
  --container-x: clamp(20px, 4vw, 48px);
  --content-max: 1180px;
  --measure: 62ch;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-800);
  background: linear-gradient(180deg, var(--stone-50) 0%, #fbfcfa 55%, var(--stone-100) 100%);
  line-height: 1.6;
}

html.landing-scroll-root,
body.landing-scroll {
  background: #f7f6f1;
  overflow-x: hidden;
  overflow-y: auto;
}

html.landing-scroll-root {
  scroll-behavior: auto;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.container {
  max-width: var(--content-max);
  padding-inline: var(--container-x);
}

.landing-main {
  width: 100%;
}

.service-slide,
.about-section,
.contact-section {
  scroll-margin-top: 92px;
}

.hero-dark {
  background-color: #131914;
}

.oatmeal-bg {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, #f4f4f0 0%, #f7f7f6 44%, #f3f1ea 100%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1040;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 77, 54, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav .nav-link {
  position: relative;
  padding: 0.45rem 0;
  color: rgba(245, 247, 245, 0.92);
  font-weight: 600;
  transition: color 0.24s ease;
}

.site-nav.is-scrolled .nav-link {
  color: var(--ink-800);
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.btn-nav-login {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 247, 245, 0.94);
  font-weight: 600;
  padding: 0.7rem 1.1rem;
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.btn-nav-login:hover,
.btn-nav-login:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.site-nav.is-scrolled .btn-nav-login {
  border-color: rgba(31, 77, 54, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest-900);
}

.site-nav.is-scrolled .btn-nav-login:hover,
.site-nav.is-scrolled .btn-nav-login:focus {
  background: rgba(31, 77, 54, 0.08);
  color: var(--forest-950);
}

.brand-mark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(245, 247, 245, 0.96);
  transition: color 0.24s ease;
}

.site-nav.is-scrolled .brand-mark {
  color: var(--forest-950);
}

.site-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}

.site-nav .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.site-nav.is-scrolled .navbar-toggler {
  border-color: rgba(31, 77, 54, 0.18);
}

.site-nav.is-scrolled .navbar-toggler-icon {
  filter: none;
}

.brand-mark-footer {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-800);
}

.section-pad {
  padding-block: var(--section-y);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(239, 242, 238, 0.9));
}

.landing-main {
  background: transparent;
}

.contact-shell {
  width: 100%;
  padding-inline: clamp(24px, 5vw, 72px);
}

.section-heading {
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.9fr);
  gap: 2rem 3rem;
  align-items: end;
}

.section-title {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink-950);
  font-weight: 700;
}

.section-description,
.section-copy {
  max-width: var(--measure);
  margin: 0;
  color: var(--ink-600);
  font-size: 1rem;
}

.section-copy {
  margin-top: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 38%, rgba(63, 94, 75, 0.34), transparent 34%),
    linear-gradient(90deg, #1f2a24 0%, #22332b 34%, #17211c 70%, #0e1411 100%);
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  top: -120px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 180, 140, 0.18), transparent 70%);
  filter: blur(80px);
}

.hero::after {
  right: -120px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80, 120, 100, 0.2), transparent 70%);
  filter: blur(100px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 112px 0 148px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/img/hero.png");
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: cover;
  opacity: 0.82;
  filter: saturate(0.84) brightness(0.76) contrast(1.04);
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(31, 42, 36, 0.985) 0%,
      rgba(31, 42, 36, 0.965) 18%,
      rgba(31, 42, 36, 0.9) 32%,
      rgba(31, 42, 36, 0.74) 46%,
      rgba(31, 42, 36, 0.5) 60%,
      rgba(31, 42, 36, 0.28) 74%,
      rgba(31, 42, 36, 0.12) 88%,
      rgba(31, 42, 36, 0) 100%
    ),
    radial-gradient(circle at 72% 48%, rgba(16, 24, 19, 0.14), transparent 44%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 11, 0.05), rgba(10, 14, 11, 0.18)),
    radial-gradient(circle at 80% 52%, rgba(255, 214, 150, 0.05), transparent 20%),
    radial-gradient(circle at 22% 42%, rgba(67, 98, 78, 0.18), transparent 32%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-left: 0;
  padding-left: clamp(14px, 2vw, 28px);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 0.8s ease forwards;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -4rem -12rem -6rem -5rem;
  z-index: -1;
  background: radial-gradient(circle at 45% 44%, rgba(5, 8, 6, 0.18), transparent 56%);
  pointer-events: none;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
  width: min(1080px, 76vw);
  max-width: none;
  margin: 18px -10vw 0 0;
  color: #f5f7f5;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5.5rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-shadow:
    0 8px 34px rgba(5, 8, 6, 0.34),
    0 1px 2px rgba(5, 8, 6, 0.18);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.hero-actions .btn-primary {
  border: 0;
  background: var(--accent-500);
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 40, 28, 0.16);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus {
  background: #7aac84;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16, 40, 28, 0.2);
}

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

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 1060px);
  gap: 1rem 1.5rem;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.62);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.hero-bottom-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.hero-bottom-meta-inner {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  padding: 0 0 clamp(1.15rem, 2.5vw, 1.5rem);
}

.hero-bottom-meta-inner::before {
  content: "";
  display: block;
  width: min(100%, 1080px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.1) 82%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 247, 245, 0.54);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.24s ease, transform 0.24s ease;
}

.hero-scroll-hint::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  animation: scrollHintFloat 1.8s ease-in-out infinite;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus {
  color: rgba(245, 247, 245, 0.74);
  transform: translateY(1px);
}

@keyframes scrollHintFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(-1px);
  }
  50% {
    transform: rotate(45deg) translateY(3px);
  }
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--mist-strong), var(--mist-soft));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.services-flow {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
}

.service-slide {
  padding-block: clamp(48px, 8vh, 84px);
}

.service-slide-shell {
  width: 100%;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.3s ease;
}

.service-card.show {
  opacity: 1;
  transform: none;
}

.service-card.show:hover {
  transform: translateY(-4px);
  filter: saturate(1.03);
}

.service-card:nth-child(even) .service-image {
  order: 2;
  margin-right: calc(50% - 50vw);
}

.service-card:nth-child(even) .service-body {
  order: 1;
  justify-self: start;
}

.service-image {
  width: calc(100% + (50vw - 50%));
  height: clamp(380px, 50vw, 580px);
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-float);
}

.service-card:nth-child(odd) .service-image {
  margin-left: calc(50% - 50vw);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card.show:hover .service-image img {
  transform: scale(1.04);
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 34rem;
  padding: clamp(0.75rem, 1.6vw, 1.25rem) 0;
  justify-self: end;
}

.service-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-title {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.service-description {
  margin: 0;
  color: var(--ink-600);
  font-size: 1.02rem;
}

.service-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  color: var(--ink-800);
  font-size: 0.92rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-600));
  box-shadow: 0 0 0 6px rgba(75, 139, 102, 0.12);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-copy {
  max-width: 34rem;
  justify-self: start;
  padding: clamp(0.75rem, 1.6vw, 1.25rem) 0;
}

.about-copy .section-title {
  max-width: 12ch;
}

.feature-stack {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 32, 40, 0.08);
  border-radius: 0;
  background: transparent;
}

.feature-badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(75, 139, 102, 0.16), rgba(31, 77, 54, 0.08));
  color: var(--forest-900);
  font-weight: 700;
}

.about-visual {
  position: relative;
  width: calc(100% + (50vw - 50%));
  margin-right: calc(50% - 50vw);
}

.about-image {
  width: 100%;
  min-height: 620px;
  border-radius: 28px 0 0 28px;
  object-fit: cover;
  box-shadow: var(--shadow-float);
}

.about-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
}

.about-caption strong {
  color: var(--ink-950);
  font-size: 1rem;
}

.about-caption span {
  color: var(--ink-600);
  font-size: 0.93rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-heading .section-title {
  max-width: 12ch;
}

.contact-section .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-section {
  min-height: auto;
  overflow: visible;
  padding-top: clamp(96px, 11vh, 132px);
  padding-bottom: clamp(42px, 7vh, 72px);
}

.contact-card {
  overflow: hidden;
}

.contact-card-intro {
  padding: clamp(1.75rem, 3vw, 2.35rem) clamp(1.75rem, 3vw, 2.35rem) 0;
}

.contact-mini-kicker {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 77, 54, 0.08);
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-title {
  margin: 1rem 0 0;
  color: var(--ink-950);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-card-copy {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  color: var(--ink-600);
}

.contact-card-body {
  padding: 1.5rem clamp(1.75rem, 3vw, 2.35rem) clamp(1.85rem, 3vw, 2.35rem);
}

.contact-card .form-label {
  margin-bottom: 0.55rem;
  color: var(--ink-800);
  font-weight: 600;
}

.contact-card .form-control,
.contact-card .form-select {
  min-height: 3.4rem;
  padding-right: 0.2rem;
  padding-left: 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 32, 40, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--ink-950);
  box-shadow: none;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.contact-card textarea.form-control {
  min-height: 9rem;
  padding-top: 1rem;
  resize: vertical;
}

.contact-card .form-control::placeholder {
  color: var(--ink-500);
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--accent-500);
  background: transparent;
  box-shadow: 0 2px 0 0 rgba(111, 166, 122, 0.48);
}

.input-group {
  align-items: end;
  gap: 0.75rem;
}

.input-group > .form-control {
  border-radius: 0 !important;
}

.input-group > .btn {
  flex-shrink: 0;
}

.code-button {
  min-width: 132px;
  border: 1px solid rgba(31, 77, 54, 0.14);
  background: rgba(255, 255, 255, 0.34);
  color: var(--forest-900);
  font-weight: 600;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.code-button:hover,
.code-button:focus {
  background: rgba(31, 77, 54, 0.08);
  color: var(--forest-950);
  box-shadow: 0 10px 24px rgba(16, 40, 28, 0.08);
}

.code-button[data-state="sending"],
.code-button[data-state="sent"],
.code-button[data-state="countdown"] {
  border-color: rgba(16, 40, 28, 0.92);
  background: rgba(16, 40, 28, 0.92);
  color: #fff;
  box-shadow: none;
}

.btn-submit-quote {
  min-height: 3.75rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.btn-submit-quote:hover,
.btn-submit-quote:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
  filter: brightness(1.03);
}

.field-error {
  min-height: 1.3rem;
  margin-top: 0.45rem;
  color: #b45c61;
  font-size: 0.875rem;
  line-height: 1.35;
}

.field-note {
  min-height: 1.3rem;
  margin-top: 0.45rem;
  color: var(--ink-500);
  font-size: 0.875rem;
  line-height: 1.35;
}

.field-note.is-success {
  color: var(--forest-800);
}

.field-note.is-error {
  color: #c54a50;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #e57373;
  box-shadow: 0 2px 0 0 rgba(229, 115, 115, 0.2);
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--accent-500);
  box-shadow: 0 2px 0 0 rgba(111, 166, 122, 0.22);
}

.info-panel,
.business-hours {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.info-item + .info-item {
  margin-top: 1.4rem;
}

.info-kicker {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-panel a {
  color: var(--ink-950);
  font-weight: 600;
}

.contact-badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-badge {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(31, 77, 54, 0.08);
  color: var(--ink-800);
  font-size: 0.88rem;
  font-weight: 600;
}

.site-footer {
  padding: 1.8rem 0;
  background: linear-gradient(180deg, var(--forest-950), var(--forest-900));
}

.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.auth-page {
  min-height: 100vh;
}

.auth-admin {
  background:
    radial-gradient(circle at top left, rgba(75, 139, 102, 0.22), transparent 28%),
    linear-gradient(135deg, #eef5f0, #f8fbf8 58%, #dfeadd);
}

.auth-client {
  background:
    radial-gradient(circle at top left, rgba(35, 86, 59, 0.18), transparent 28%),
    linear-gradient(135deg, #f0f5f2, #f9fbfa 58%, #e2ece6);
}

.auth-shell {
  max-width: 540px;
}

.auth-card {
  max-width: 520px;
  border-radius: var(--radius-lg);
}

.auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 999px;
  font-weight: 700;
}

.dashboard-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f7f4, #eef2ee);
}

.workspace-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(24, 32, 40, 0.08);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.workspace-nav-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.workspace-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.workspace-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink-950);
  text-decoration: none;
}

.workspace-brand:hover,
.workspace-brand:focus {
  color: var(--ink-950);
}

.workspace-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  background: rgba(75, 139, 102, 0.14);
  color: var(--forest-900);
  font-size: 1.1rem;
  font-weight: 800;
}

.workspace-brand-copy {
  font-size: 1.05rem;
  font-weight: 700;
}

.workspace-nav-toggle {
  border: 1px solid rgba(24, 32, 40, 0.08);
}

.workspace-nav-collapse {
  display: grid;
  gap: 1rem;
}

.workspace-nav-links {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workspace-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  color: var(--ink-800);
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    color 0.22s ease;
}

.workspace-nav-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(94, 106, 115, 0.26);
  flex: 0 0 auto;
}

.workspace-nav-link.active,
.workspace-nav-link:hover,
.workspace-nav-link:focus {
  background: rgba(75, 139, 102, 0.12);
  color: var(--forest-900);
}

.workspace-nav-link.active .workspace-nav-dot {
  background: var(--forest-700);
}

.workspace-nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.workspace-shell {
  padding-bottom: 4rem;
}

.workspace-dashboard {
  padding-top: 2rem;
}

.workspace-header {
  margin-bottom: 2rem;
}

.workspace-title {
  color: var(--ink-950);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.workspace-subtitle {
  color: var(--ink-600);
  font-size: clamp(1.05rem, 1.8vw, 1.6rem);
}

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

.workspace-tile {
  display: block;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.workspace-tile:hover,
.workspace-tile:focus {
  transform: translateY(-2px);
  border-color: rgba(75, 139, 102, 0.28);
  box-shadow: var(--shadow-card);
  color: inherit;
}

.workspace-tile-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--forest-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-tile strong {
  display: block;
  color: var(--ink-900);
  font-size: 1rem;
  line-height: 1.45;
}

.data-list {
  display: grid;
  gap: 1rem;
}

.data-list dt {
  margin-bottom: 0.25rem;
  color: var(--ink-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-list dd {
  margin-bottom: 0;
  color: var(--ink-900);
}

.stack-list {
  display: grid;
  gap: 0.65rem;
}

.stack-list li {
  color: var(--ink-800);
}

.schedule-embed {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--radius-md);
}

.customer-portal-page .portal-item {
  background: rgba(255, 255, 255, 0.84);
}

.stat-card {
  border: 1px solid rgba(24, 32, 40, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(16, 40, 28, 0.04);
  background: rgba(255, 255, 255, 0.96);
}

.stat-card-body {
  padding: 1.5rem;
}

.stat-label {
  margin-bottom: 0.5rem;
  color: var(--ink-600);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  color: var(--forest-900);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
}

.workspace-panel {
  border: 1px solid rgba(24, 32, 40, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(16, 40, 28, 0.04);
  background: rgba(255, 255, 255, 0.96);
}

.workspace-panel-header {
  border-bottom: 1px solid rgba(24, 32, 40, 0.06);
}

.dashboard-tabs .nav-link {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
}

.messages-table {
  table-layout: fixed;
}

.messages-table td,
.messages-table th {
  vertical-align: top;
}

.message-contact small {
  display: inline-block;
  margin-top: 0.2rem;
}

.message-body,
.message-date {
  color: var(--ink-800);
}

.message-summary {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-900);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.message-actions-cell {
  min-width: 220px;
}

.message-actions {
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.message-link {
  color: var(--forest-800);
  font-weight: 600;
  text-decoration: none;
}

.message-link:hover,
.message-link:focus {
  color: var(--forest-900);
  text-decoration: underline;
}

.message-link-muted {
  color: var(--ink-600);
}

.message-link-danger {
  color: #b94a48;
}

.message-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.empty-state {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ink-600);
}

.calendar-item,
.portal-item {
  padding: 1.25rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
}

.calendar-date {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(75, 139, 102, 0.14);
  color: var(--forest-800);
  font-weight: 700;
}

.portal-item + .portal-item {
  margin-top: 1rem;
}

.workspace-side-panel {
  position: sticky;
  top: 2rem;
}

.glass-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(24, 32, 40, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-card {
  width: min(100%, 430px);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--mist-strong), var(--mist-soft));
  box-shadow: var(--shadow-float);
  text-align: center;
}

.glass-card h2 {
  margin-bottom: 0.75rem;
  color: var(--ink-950);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: -0.03em;
}

.glass-card p {
  margin-bottom: 1.25rem;
  color: var(--ink-600);
}

.glass-card button {
  min-width: 120px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  color: #fff;
  font-weight: 600;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.glass-card button:hover,
.glass-card button:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

@media (max-width: 1199.98px) {
  .hero h1 {
    width: min(980px, 86vw);
    margin-right: -4vw;
  }

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

  .about-image {
    min-height: 540px;
  }

  .about-visual {
    width: 100%;
    margin-right: 0;
  }

  .about-image {
    border-radius: 28px;
  }
}

@media (max-width: 767.98px) {
  .dashboard-nav-shell {
    gap: 0.9rem;
    align-items: flex-start !important;
  }

  .dashboard-nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .dashboard-nav-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .workspace-nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .workspace-nav-actions .btn {
    flex: 1 1 auto;
  }

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

  .dashboard-tabs {
    gap: 0.65rem;
  }

  .dashboard-tabs .nav-item {
    flex: 1 1 0;
  }

  .dashboard-tabs .nav-link {
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: center;
  }

  .messages-table {
    table-layout: auto;
  }

  .messages-table thead {
    display: none;
  }

  .messages-table,
  .messages-table tbody,
  .messages-table tr,
  .messages-table td {
    display: block;
    width: 100%;
  }

  .messages-table tbody {
    padding: 0.4rem;
  }

  .message-row {
    margin-bottom: 0.9rem;
    border: 1px solid rgba(24, 32, 40, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(16, 40, 28, 0.06);
    overflow: hidden;
  }

  .message-row:last-child {
    margin-bottom: 0;
  }

  .messages-table td {
    padding: 0.95rem 1rem;
    border: 0;
    text-align: left !important;
  }

  .messages-table td + td {
    border-top: 1px solid rgba(24, 32, 40, 0.07);
  }

  .messages-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.4rem;
    color: var(--ink-500);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .message-contact strong {
    display: block;
    margin-bottom: 0.1rem;
    font-size: 1.1rem;
  }

  .message-body {
    word-break: break-word;
  }

  .message-date {
    color: var(--ink-600);
  }

  .message-actions {
    justify-content: flex-start !important;
    gap: 0.55rem;
  }

  .message-actions > * {
    flex: 1 1 auto;
  }

  .message-link {
    display: inline-flex;
    justify-content: center;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(24, 32, 40, 0.08);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.96);
  }

  .message-secondary-actions {
    width: 100%;
  }

  .message-secondary-actions .message-link {
    width: 100%;
  }

  .calendar-item,
  .portal-item {
    padding: 1rem;
  }

  .schedule-embed {
    min-height: 460px;
  }
}

@media (min-width: 992px) {
  .dashboard-page:has(> .workspace-nav) {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .dashboard-page:has(> .workspace-nav) .workspace-nav {
    height: 100vh;
    border-right: 1px solid rgba(24, 32, 40, 0.08);
    border-bottom: 0;
  }

  .workspace-nav-shell {
    grid-template-rows: auto 1fr;
    height: 100%;
    padding: 1.6rem 1rem 1.2rem;
  }

  .workspace-nav-toggle {
    display: none;
  }

  .workspace-nav-collapse {
    display: grid !important;
    grid-template-rows: 1fr auto;
    min-height: 0;
  }

  .workspace-nav-links {
    align-content: start;
  }

  .workspace-nav-actions {
    align-self: end;
  }

  .dashboard-page:has(> .workspace-nav) .workspace-shell.container {
    max-width: none;
    width: 100%;
    padding: 2.8rem 2.9rem 3rem;
  }
}

@media (max-width: 991.98px) {
  .workspace-nav-links {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .workspace-nav-links .nav-link {
    display: inline-flex;
  }

  .section-pad {
    padding-block: clamp(52px, 10vw, 80px);
  }

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

  .section-title {
    max-width: 14ch;
  }

  .hero-inner {
    padding: 94px 0 92px;
  }

  .hero-content {
    max-width: 100%;
    padding-left: 0;
  }

  .hero h1 {
    width: auto;
    max-width: 11ch;
    margin-right: 0;
    font-size: clamp(4.2rem, 13vw, 6rem);
    line-height: 0.93;
  }

  .hero-bottom-meta {
    position: static;
  }

  .hero-bottom-meta-inner {
    justify-items: start;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }

  .hero-bottom-meta-inner::before {
    width: 100%;
  }

  .hero-trust {
    justify-content: flex-start;
    gap: 0.6rem 1rem;
  }

  .hero-media {
    background-position: 78% center;
    opacity: 0.48;
  }

  .contact-heading .section-title {
    max-width: 14ch;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .service-card:nth-child(even) .service-image,
  .service-card:nth-child(even) .service-body {
    order: initial;
  }

  .service-image,
  .service-card:nth-child(odd) .service-image,
  .service-card:nth-child(even) .service-image {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .service-body {
    justify-self: stretch;
  }

  .contact-shell {
    padding-inline: clamp(18px, 4.5vw, 28px);
  }

  .site-nav .navbar-collapse {
    margin-top: 0.75rem;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(14, 20, 17, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-nav.is-scrolled .navbar-collapse {
    border-color: rgba(31, 77, 54, 0.12);
    background: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 767.98px) {
  .site-nav .container {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
  }

  .site-nav .navbar-nav {
    align-items: stretch !important;
    gap: 0.2rem !important;
  }

  .site-nav .nav-link {
    display: block;
    padding: 0.7rem 0;
  }

  .btn-nav-login {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 80px 0 40px;
  }

  .hero-content {
    max-width: 100%;
    padding-left: 4px;
  }

  .hero h1 {
    max-width: 7.5ch;
    padding-left: 0.04em;
    font-size: clamp(2.65rem, 10.8vw, 3.9rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 1.75rem;
    gap: 0.75rem;
  }

  .hero-actions .btn,
  .btn-submit-quote {
    width: 100%;
  }

  .hero-trust {
    justify-content: flex-start;
    gap: 0.55rem 0.75rem;
    font-size: 0.68rem;
  }

  .hero-particles {
    opacity: 0.28;
  }

  .hero-media {
    inset: 0;
    background-position: 80% center;
    opacity: 0.24;
  }

  .hero-bottom-meta-inner {
    padding-bottom: 1rem;
  }

  .hero-scroll-hint {
    font-size: 0.7rem;
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  .service-slide {
    padding-block: 40px;
  }

  .service-image {
    height: clamp(240px, 62vw, 320px);
    border-radius: 24px;
  }

  .service-body {
    gap: 0.9rem;
    padding-top: 0;
  }

  .service-title {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .service-description {
    font-size: 0.97rem;
  }

  .about-layout {
    gap: 1.5rem;
  }

  .about-image {
    min-height: 320px;
    border-radius: 24px;
  }

  .feature-row {
    gap: 0.8rem;
    padding: 0.8rem 0;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 32px;
  }

  .contact-shell {
    padding-inline: 16px;
  }

  .contact-card-intro {
    padding: 1.35rem 1.35rem 0;
  }

  .contact-card-body {
    padding: 1.2rem 1.35rem 1.35rem;
  }

  .contact-card-title {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .contact-badge-stack {
    margin-top: 1.3rem;
    gap: 0.55rem;
  }

  .contact-badge {
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
  }

  .info-panel,
  .business-hours {
    padding: 1.25rem;
  }

  .field-error,
  .field-note {
    font-size: 0.82rem;
  }

  .input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .input-group > .form-control,
  .input-group > .form-select,
  .input-group > .btn {
    width: 100% !important;
    flex: 0 0 auto;
  }

  .code-button {
    width: 100%;
  }

  .about-caption {
    position: static;
    margin-top: 1rem;
  }

  .contact-card .form-control,
  .contact-card .form-select {
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 0.96rem;
  }

  .section-pad {
    padding-block: 44px;
  }

  .section-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .hero h1 {
    max-width: 7.1ch;
    padding-left: 0.05em;
    font-size: clamp(2.05rem, 9.6vw, 3rem);
    line-height: 0.94;
  }

  .hero-inner {
    padding: 76px 0 32px;
  }

  .hero-content::before {
    inset: -2rem -1rem -3rem -1rem;
    background: radial-gradient(circle at 48% 40%, rgba(5, 8, 6, 0.22), transparent 58%);
  }

  .hero-bottom-meta-inner {
    justify-items: start;
  }

  .hero-trust {
    width: 100%;
    display: grid;
    justify-content: start;
    gap: 0.4rem;
    font-size: 0.66rem;
  }

  .service-image {
    height: 230px;
  }

  .service-list {
    gap: 0.55rem;
    font-size: 0.88rem;
  }

  .about-copy,
  .contact-card,
  .info-panel,
  .business-hours,
  .glass-card {
    border-radius: 24px;
  }

  .contact-card-intro {
    padding: 1.25rem 1.1rem 0;
  }

  .contact-card-body {
    padding: 1.05rem 1.1rem 1.15rem;
  }

  .contact-card-copy {
    font-size: 0.95rem;
  }

  .glass-modal {
    padding: 1rem;
  }
}

@media ((max-width: 991.98px) and (min-width: 768px)), ((max-height: 820px) and (min-width: 768px)) {
  .contact-section {
    padding-top: clamp(88px, 12vh, 116px);
  }
}
