:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #f0eee8;
  --ink: #163438;
  --muted: #5a6f71;
  --menu: #072d2f;
  --menu-soft: #113f43;
  --accent: #3fe0d2;
  --accent-deep: #1ea699;
  --line: rgba(7, 45, 47, 0.1);
  --shadow: none;
  --radius-lg: 5px;
  --radius-md: 5px;
  --radius-sm: 5px;
  --quote-yellow: #ffdf1f;
  --quote-yellow-strong: #f5d000;
  --quote-ink: #163438;
  --quote-muted: #5a6f71;
  --quote-border: rgba(7, 45, 47, 0.12);
  --container: 1160px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --hero-media-offset: 2.3rem;
  --hero-media-bottom-trim: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top right, rgba(63, 224, 210, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  color: var(--ink);
}

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

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

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 45, 47, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: #f4fffe;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 5px;
  background:
    linear-gradient(
      135deg,
      var(--accent) 0 48.8%,
      rgba(7, 45, 47, 0.55) 48.8% 51.2%,
      var(--quote-yellow) 51.2% 100%
    );
  color: var(--menu);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

#brand-location {
  transition: opacity 180ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a,
.nav-dropdown__toggle {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: translateY(2px) rotate(-135deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 200px;
  display: grid;
  gap: 0.2rem;
  padding: 0.55rem;
  border: 1px solid rgba(7, 45, 47, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  color: var(--menu);
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: var(--menu);
  color: #ffffff;
  transform: none;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-cta {
  flex-shrink: 0;
}

.site-nav .nav-cta {
  color: var(--menu);
  transform: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  padding: 1.6rem 0 1.28rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 5px;
  pointer-events: none;
  transform: rotate(18deg);
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 40px;
  background: radial-gradient(circle, rgba(63, 224, 210, 0.3), transparent 70%);
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 0;
  background: radial-gradient(circle, rgba(17, 63, 67, 0.14), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 2.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.hero-copy {
  max-width: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-label {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 0.98;
}

h1 {
  font-size: 48px;
  max-width: none;
}

h2 {
  font-size: 32px;
  max-width: 15ch;
}

h3 {
  font-size: 28px;
  line-height: 1.08;
}

.hero-text,
.section-head p:not(.eyebrow):not(.hero-label),
.contact-copy p:not(.eyebrow),
.service-card p,
.step-card p,
.quote-card p,
.panel-card p {
  color: var(--muted);
  line-height: 1.7;
}

.section-head .eyebrow,
.section-head .hero-label {
  margin-bottom: 0;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  width: 80%;
  height: calc(100% - var(--hero-media-offset) - var(--hero-media-bottom-trim));
  margin-top: var(--hero-media-offset);
  justify-self: end;
  align-self: stretch;
  overflow: hidden;
  border-radius: 5px;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0;
}

.hero-media__badge {
  position: absolute;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 5px;
  background: #000000;
  color: var(--quote-yellow);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.hero-media__badge--before {
  top: 0.9rem;
}

.hero-media__badge--after {
  top: calc(50% + 0.9rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.6rem;
  border-radius: 5px;
  font-weight: 500;
  border: 1px solid rgba(7, 45, 47, 0.08);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: none;
}

.button-primary {
  background: var(--menu);
  color: #ffffff;
  box-shadow: none;
}

.hero-actions__primary {
  color: var(--quote-yellow);
}

.button-secondary {
  border-color: rgba(7, 45, 47, 0.12);
  background: #ffffff;
  color: var(--menu);
  box-shadow: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--menu-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ece8de;
}

.button-wide {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
}

.booking-summary {
  padding-top: 0;
}

.booking-panel {
  max-width: 560px;
}

.panel-card,
.service-card,
.step-card,
.quote-card,
.contact-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 45, 47, 0.08);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.4rem;
}

.panel-lead {
  padding: 1.8rem;
  background:
    linear-gradient(145deg, rgba(7, 45, 47, 0.98), rgba(17, 63, 67, 0.92)),
    var(--menu);
  color: #ffffff;
}

.panel-lead p,
.panel-lead .panel-label {
  color: rgba(255, 255, 255, 0.72);
}

.panel-lead h2 {
  margin-top: 0.45rem;
  max-width: none;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.panel-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.panel-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.panel-price strong {
  font-size: 2rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  margin-bottom: 0.5rem;
}

.availability-card {
  background: rgba(239, 246, 245, 0.96);
}

.availability-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(7, 45, 47, 0.08);
}

.availability-row:first-of-type {
  margin-top: 1rem;
}

.trust-bar {
  padding: 0.45rem 0 0;
}

.trust-grid {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.trust-head {
  margin-bottom: 0;
}

.trust-head h2 {
  max-width: none;
}

.process-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-inline__step {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  min-height: 54px;
  border: 1px solid rgba(7, 45, 47, 0.08);
  border-radius: 5px;
  background: #ffffff;
  color: var(--ink);
}

.process-inline__step:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -0.58rem;
  transform: translateY(-50%);
  color: var(--menu);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.7;
}

.process-inline__title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-sans);
  text-align: center;
}

.section {
  padding: 1.76rem 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.service-card {
  padding: 1.6rem;
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(63, 224, 210, 0.1), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 5px;
  margin-bottom: 1.25rem;
  background: rgba(7, 45, 47, 0.08);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--menu);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

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

.step-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 237, 0.95));
}

.step-card span {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--accent-deep);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-section {
  background:
    linear-gradient(180deg, rgba(7, 45, 47, 0.02), rgba(7, 45, 47, 0.06)),
    transparent;
}

.testimonial-section .section-head h2 {
  max-width: none;
}

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

.quote-card {
  padding: 1.8rem;
}

.quote-card.accent {
  background: linear-gradient(180deg, rgba(7, 45, 47, 0.96), rgba(17, 63, 67, 0.9));
  color: #ffffff;
}

.quote-card.accent p {
  color: rgba(255, 255, 255, 0.84);
}

.quote-card strong {
  display: inline-block;
  margin-top: 1.2rem;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(7, 45, 47, 0.02), rgba(7, 45, 47, 0.04)),
    transparent;
}

.faq-head {
  max-width: 860px;
}

.faq-head h2 {
  max-width: none;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  display: grid;
  gap: 0.45rem;
  border: 0;
  background: transparent;
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 3.4rem 1.15rem 1.2rem;
  border: 1px solid rgba(7, 45, 47, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--menu);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 10px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary {
  background: var(--menu);
  border-color: var(--menu);
  color: #ffffff;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-answer {
  padding: 1rem 1.2rem 1.05rem;
  border: 1px solid rgba(7, 45, 47, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  padding-right: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--menu);
  font-weight: 700;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.contact-card label:not(.quote-field) {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--menu);
}

.contact-card input:not(.quote-input),
.contact-card select:not(.quote-input),
.contact-card textarea:not(.quote-input) {
  width: 100%;
  border: 1px solid rgba(7, 45, 47, 0.14);
  border-radius: 0;
  background: var(--surface-alt);
  padding: 0.95rem 1rem;
  color: var(--ink);
  resize: vertical;
}

.contact-card input:not(.quote-input):focus,
.contact-card select:not(.quote-input):focus,
.contact-card textarea:not(.quote-input):focus {
  outline: 2px solid rgba(63, 224, 210, 0.4);
  border-color: rgba(30, 166, 153, 0.4);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-card.quote-form .quote-input {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--quote-border);
}

.contact-card.quote-form .quote-input:focus {
  outline: 0;
  border-color: rgba(30, 166, 153, 0.68);
  background: #ffffff;
}

.contact-card.quote-form .quote-submit {
  width: 100%;
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-page {
  padding: 1.2rem 0 2.4rem;
}

.legal-head {
  max-width: 900px;
}

.legal-head h1 {
  max-width: none;
}

.legal-card {
  margin-top: 1.2rem;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
}

.legal-meta {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-section + .legal-section {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(7, 45, 47, 0.08);
}

.legal-section h2 {
  max-width: none;
  margin-bottom: 0.9rem;
}

.legal-section h3 {
  margin: 1.1rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section p + p {
  margin-top: 0.85rem;
}

.legal-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-list li {
  line-height: 1.7;
}

.legal-list li + li {
  margin-top: 0.4rem;
}

.legal-list a {
  text-decoration: underline;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 45, 47, 0.48), rgba(7, 45, 47, 0.38)),
    rgba(10, 23, 25, 0.26);
  backdrop-filter: blur(10px);
}

.quote-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 2rem 1.4rem 1.25rem;
  border: 1px solid rgba(7, 45, 47, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 240, 0.98));
}

.quote-modal__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--menu) 100%);
}

.quote-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7, 45, 47, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--quote-ink);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.quote-modal__close:hover,
.quote-modal__close:focus-visible {
  background: #f0eee8;
  border-color: rgba(7, 45, 47, 0.18);
}

.quote-modal__close span {
  font-size: 1.2rem;
  line-height: 1;
}

.quote-modal__head {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.quote-modal__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-modal__head h2 {
  max-width: none;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.08;
  color: var(--quote-ink);
}

.quote-modal__head p:not(.quote-modal__eyebrow) {
  margin: 0.55rem 0 0;
  color: var(--quote-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.quote-modal__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.quote-field {
  display: grid;
  gap: 0.8rem;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field__label {
  color: var(--quote-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-field__label em {
  color: #e44b3d;
  font-style: normal;
}

.quote-field__label small {
  color: var(--quote-muted);
  font-size: 1em;
  font-weight: 500;
}

.quote-input {
  width: 100%;
  min-height: 48px;
  padding: 0 0.85rem;
  border: 1px solid var(--quote-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--quote-ink);
  font-size: 0.94rem;
  font-weight: 500;
  outline: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.quote-input::placeholder {
  color: #98a7a9;
  font-weight: 500;
}

.quote-input:focus {
  border-color: rgba(30, 166, 153, 0.68);
  background: #ffffff;
  box-shadow: none;
}

.quote-input--select {
  appearance: none;
  padding-right: 3rem;
  background-color: rgba(63, 224, 210, 0.08);
  border-color: rgba(30, 166, 153, 0.32);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--menu) 50%),
    linear-gradient(135deg, var(--menu) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.quote-input--textarea {
  min-height: 96px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

.quote-submit {
  grid-column: 1 / -1;
  min-height: 48px;
  border: 1px solid rgba(7, 45, 47, 0.08);
  border-radius: 8px;
  background: var(--menu);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease;
}

.quote-submit:hover,
.quote-submit:focus-visible {
  background: var(--menu-soft);
}

.quote-submit:disabled {
  opacity: 0.72;
  cursor: progress;
}

.quote-modal__privacy,
.quote-modal__success {
  grid-column: 1 / -1;
  margin: 0;
  color: #7f9194;
  font-size: 0.8rem;
  line-height: 1.6;
}

.quote-modal__privacy a {
  color: inherit;
  text-decoration: underline;
}

.quote-modal__success {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(30, 166, 153, 0.2);
  border-radius: 8px;
  background: rgba(63, 224, 210, 0.08);
  color: #0c7a54;
  font-weight: 600;
}

.quote-modal__success.is-error {
  border-color: rgba(228, 75, 61, 0.22);
  background: rgba(228, 75, 61, 0.08);
  color: #a4372c;
}

@media (max-width: 1100px) {
  .hero-grid,
  .process-grid,
  .contact-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    padding-right: 0;
  }

  .hero-media {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    justify-self: stretch;
  }

  .process-inline {
    gap: 0.6rem;
  }

  .process-inline__step:not(:last-child)::after {
    display: none;
  }

  .hero-media__badge {
    right: 0.75rem;
  }

  .hero-media__badge--before {
    top: 0.75rem;
  }

  .hero-media__badge--after {
    top: calc(50% + 0.75rem);
  }

  .quote-modal__panel {
    padding: 2rem 1.2rem 1.15rem;
  }
}

@media (max-width: 860px) {
  .nav-row {
    min-height: 80px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 5px;
    background: rgba(7, 45, 47, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: scale(0.98);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin-top: 0.65rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.98);
    transform: none;
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding-top: 1.12rem;
  }

  h1 {
    max-width: 100%;
  }

  .hero-actions,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .quote-input {
    min-height: 48px;
  }

  .quote-submit {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .section,
  .hero {
    padding: 1.2rem 0;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-points {
    display: grid;
  }

  .quote-modal {
    padding: 0.85rem;
  }

  .quote-modal__panel {
    padding: 1.9rem 0.9rem 1rem;
    border-radius: 10px;
  }

  .quote-modal__close {
    top: 0.8rem;
    right: 0.8rem;
  }

  .quote-modal__form {
    gap: 0.85rem;
    margin-top: 1.2rem;
  }

  .quote-input {
    min-height: 48px;
    padding: 0 0.85rem;
    font-size: 0.94rem;
    border-radius: 8px;
  }

  .quote-input--textarea {
    min-height: 90px;
    padding: 0.75rem 0.85rem;
  }

  .quote-submit {
    min-height: 48px;
    border-radius: 8px;
    font-size: 1rem;
  }
}
