@font-face {
  font-family: "Signika";
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/signika-300.woff2") format("woff2");
}
@font-face {
  font-family: "Signika";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/signika-400.woff2") format("woff2");
}
@font-face {
  font-family: "Signika";
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/signika-500.woff2") format("woff2");
}
@font-face {
  font-family: "Signika";
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/signika-600.woff2") format("woff2");
}
@font-face {
  font-family: "Signika";
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/signika-700.woff2") format("woff2");
}

:root {
  --step--2: clamp(0.5628rem, 0.6232rem + -0.078vw, 0.6076rem);
  --step--1: clamp(0.7292rem, 0.7219rem + 0.0366vw, 0.7502rem);
  --step-0: clamp(0.875rem, 0.8315rem + 0.2174vw, 1rem);
  --step-1: clamp(1.05rem, 0.9516rem + 0.4922vw, 1.333rem);
  --step-2: clamp(1.26rem, 1.0802rem + 0.8989vw, 1.7769rem);
  --step-3: clamp(1.512rem, 1.2141rem + 1.4897vw, 2.3686rem);
  --step-4: clamp(1.8144rem, 1.3473rem + 2.3355vw, 3.1573rem);
  --step-5: clamp(2.1773rem, 1.4707rem + 3.533vw, 4.2087rem);
  --midnight: oklch(25.5% 0.063503 244.5);
  --blue: oklch(49.6% 0.084044 228.6);
  --lagoon: oklch(62.7% 0.080759 207.2);
  --gold: oklch(91.1% 0.186817 100.1);
  --bright-moon: oklch(95.8% 0.016459 91.6);
  --primary: oklch(67.7% 0.117772 211.6);
  --off-white: oklch(97.5% 0.008 91);
  --space-3xs: 0.3125rem;
  --space-2xs: clamp(0.5625rem, 0.5408rem + 0.1087vw, 0.625rem);
  --space-xs: clamp(0.875rem, 0.8533rem + 0.1087vw, 0.9375rem);
  --space-s: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
  --space-m: clamp(1.6875rem, 1.6223rem + 0.3261vw, 1.875rem);
  --space-l: clamp(2.25rem, 2.163rem + 0.4348vw, 2.5rem);
  --space-xl: clamp(3.375rem, 3.2446rem + 0.6522vw, 3.75rem);
  --space-2xl: clamp(4.5rem, 4.3261rem + 0.8696vw, 5rem);
  --space-3xl: clamp(6.75rem, 6.4891rem + 1.3043vw, 7.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
  margin: 0;
  font-size: var(--step-0);
  color: var(--midnight);
  font-family: "Signika", "Segoe UI", sans-serif;
  font-weight: 400;
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
h1, h2, h3, h4, h5, h6 {
  color: var(--midnight);
  font-family: "Signika", "Segoe UI", sans-serif;
  font-weight: 600;
  margin: 0 0 var(--space-2xs);
}
h1 { font-size: var(--step-5); line-height: 1.05; margin-bottom: var(--space-xs); }
h2 { font-size: var(--step-4); line-height: 1.1; }
h3 { font-size: var(--step-3); line-height: 1.15; }
h4 { font-size: var(--step-2); line-height: 1.2; }
h5 { font-size: var(--step-1); }
h6 { font-size: var(--step-0); line-height: var(--step-1); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--midnight);
  color: var(--bright-moon);
  padding: 0.5rem 1rem;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--midnight);
  font-size: var(--step-0);
  text-wrap: nowrap;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: var(--space-xs) var(--space-l);
  background: var(--primary);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}
.btn:hover { filter: brightness(1.05); color: var(--midnight); }
.btn-primary { background: var(--primary); color: var(--bright-moon); }
.btn-primary:hover { color: var(--bright-moon); }
.btn-dark { background: var(--midnight); border-color: var(--midnight); color: var(--bright-moon); }
.btn-dark:hover { color: var(--bright-moon); }
.btn-outline {
  background: transparent;
  border: 3px solid var(--primary);
  color: var(--primary);
}
.btn-sm {
  padding: var(--space-3xs) var(--space-s);
  font-size: var(--step--1);
}
.btn-md {
  padding: var(--space-2xs) var(--space-m);
  font-size: var(--step-0);
}
.btn-lg {
  padding: var(--space-xs) var(--space-l);
  font-size: var(--step-1);
}

/* Header */
.site-header {
  background: var(--midnight);
  padding: 0.15rem 0.25rem;
  position: relative;
  z-index: 1000;
  overflow: visible;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-s);
  padding: 0.3rem 0.7rem;
}
.logo {
  width: clamp(8.75rem, 7rem + 8vw, 12.5rem);
  flex-shrink: 0;
}
.logo img { width: 100%; height: auto; }
.nav-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: var(--space-s);
}
.nav {
  color: var(--bright-moon);
  font-size: var(--step-0);
}
.nav-list {
  display: flex;
  align-items: stretch;
  gap: var(--space-m);
  flex-wrap: nowrap;
}
.nav-link {
  color: var(--bright-moon);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  transform: translateY(-2px);
}
.nav-dropdown .nav-link:hover,
.nav-dropdown .nav-link.is-active {
  transform: none;
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 28px;
  z-index: 19;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--bright-moon);
  height: 100%;
  padding: 0 0.15rem;
}
.nav-dropdown-trigger {
  position: relative;
  z-index: 2;
}
.nav-caret {
  background: none;
  border: 0;
  color: inherit;
  padding: 0.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.nav-caret i { font-size: 0.7em; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--midnight);
  padding: var(--space-m);
  margin: 0;
  border: 1px solid var(--bright-moon);
  border-radius: var(--space-2xs);
  z-index: 30;
  flex-direction: column;
  gap: var(--space-2xs);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:has(.nav-dropdown-trigger:hover) .nav-dropdown-menu,
.nav-dropdown:has(.nav-caret:hover) .nav-dropdown-menu,
.nav-dropdown-toggle:hover + .nav-dropdown-menu {
  display: flex;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-left: var(--space-s);
}
.btn-call { display: none; }
.btn-call i { font-size: 18px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--bright-moon);
  border-radius: 2px;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-list {
    position: fixed;
    inset: 4.6rem 0 0 0;
    background: var(--midnight);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: var(--space-l) var(--space-xs);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    font-size: var(--step-2);
  }
  .nav.is-open .nav-list {
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    margin: var(--space-xs) 0 0;
    top: auto;
    align-items: center;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown:has(.nav-dropdown-trigger:hover) .nav-dropdown-menu,
  .nav-dropdown:has(.nav-caret:hover) .nav-dropdown-menu,
  .nav-dropdown-toggle:hover + .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
  }
  .btn-call { display: inline-flex; }
}
@media (max-width: 478px) {
  .header-actions .btn-quote { display: none; }
}

/* Layout */
.section {
  padding: var(--space-xl) var(--space-2xs);
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: var(--space-s);
  display: flex;
  gap: var(--space-l);
  align-items: center;
  justify-content: center;
}
.img-radius {
  border: 1px solid var(--bright-moon);
  border-radius: var(--space-xs);
  overflow: hidden;
}
.img-radius img {
  width: 100%;
  height: auto;
  display: block;
}

/* Metro clusters: 1:1 squares, large 2×2 every third item — matches live Bricks gallery */
.masonry {
  --gutter: var(--space-2xs);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: var(--gutter);
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.masonry > * {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--bright-moon);
  border-radius: var(--space-xs);
}
.masonry > *:nth-child(3n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}
.masonry img,
.masonry .img-radius img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masonry > *:nth-child(3n + 1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 478px) {
  .masonry { grid-template-columns: 1fr; }
}

/* Home hero */
.hero {
  background-image: linear-gradient(var(--bright-moon), #ffffff);
}
.hero-copy { flex: 1 1 42%; }
.hero-gallery {
  flex: 1 1 55%;
  max-width: 640px;
}
@media (max-width: 767px) {
  .hero .container { flex-direction: column; }
  .hero-gallery { max-width: 100%; }
}

/* Services intro */
.services-intro {
  background-image: linear-gradient(#ffffff, var(--bright-moon));
  text-align: center;
}
.services-intro .container { flex-direction: column; max-width: 780px; }
.services-intro p { max-width: 700px; }
.service-cards {
  display: flex;
  gap: clamp(2rem, 5.258vw + 0.317rem, 7.5rem);
  justify-content: center;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-s);
  text-align: center;
}
.service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.service-card .service-icon,
.service-card i {
  font-size: 48px;
  line-height: 1;
  color: var(--midnight);
}
@media (max-width: 767px) {
  .service-cards { flex-direction: column; row-gap: 75px; }
}

/* Reviews slider */
.reviews-slider {
  background: #263238;
  color: var(--bright-moon);
  position: relative;
  padding: var(--space-3xl) var(--space-s);
  overflow: hidden;
}
.reviews-slider h3 { color: var(--primary); font-size: var(--step-2); }
.reviews-slider .slide-body {
  font-size: var(--step-1);
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
}
.reviews-slider .stars { letter-spacing: 0.15em; margin-top: 1rem; }
.slide { display: none; text-align: center; max-width: 1240px; margin: 0 auto; padding: 0 var(--space-2xl); }
.slide.is-active { display: block; animation: fadeIn 0.4s ease; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: var(--bright-moon);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-m);
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 0;
  background: #405663;
  cursor: pointer;
  appearance: none;
  flex-shrink: 0;
  display: block;
  font-size: 0;
  line-height: 0;
}
.slider-dots button.is-active { background: var(--primary); }

/* Instagram image row */
.instagram-feed {
  padding: var(--space-xl) var(--space-s);
  background-image: linear-gradient(#ffffff, var(--bright-moon));
  text-align: center;
}
.instagram-inner { max-width: 1240px; margin: 0 auto; }
.instagram-lede { margin: 0 0 var(--space-m); font-size: var(--step-1); }
.instagram-lede a { color: var(--primary); font-weight: 600; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2xs);
}
.instagram-tile {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.instagram-tile:hover img { transform: scale(1.04); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* CTA band */
.cta-band {
  padding: var(--space-3xl) var(--space-s);
  background-image: radial-gradient(circle farthest-side at bottom center, var(--primary) 0%, #ffffff 70%);
  display: flex;
  justify-content: center;
}
.cta-card {
  background: var(--primary);
  border: 1px solid #028397;
  border-radius: var(--space-xs) var(--space-s) var(--space-s) var(--space-s);
  color: var(--bright-moon);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-l);
  transform: scale(0.9);
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.cta-kicker { font-size: var(--step-1); color: var(--midnight); }
.cta-card h2 { color: var(--bright-moon); font-size: var(--step-4); }
.cta-actions {
  display: flex;
  gap: var(--space-l);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-action h6 { color: var(--midnight); }
@media (max-width: 478px) {
  .cta-card h2 { font-size: 28px; }
  .cta-kicker { font-size: 18px; }
  .cta-card { transform: none; }
}

/* Footer */
.site-footer {
  background: var(--midnight);
  color: var(--bright-moon);
  padding: var(--space-xl) var(--space-2xs) var(--space-3xs);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-l);
  padding: var(--space-s);
  color: var(--bright-moon);
}
.footer-brand img { width: 50%; max-width: 180px; }
.footer-col h5 { color: var(--primary); }
.footer-col a { color: var(--bright-moon); }
.footer-col li { margin-bottom: var(--space-xs); }
.socials { display: flex; gap: var(--space-s); align-items: center; }
.socials a {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: var(--space-m);
}
.socials a:hover { color: var(--bright-moon); }
.footer-copy {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-s);
  display: flex;
  justify-content: flex-end;
  font-size: var(--step--1);
  font-weight: 300;
  color: var(--primary);
}
.footer-copy a { color: var(--primary); }
@media (max-width: 767px) {
  .footer-grid { flex-wrap: wrap; }
  .footer-copy { justify-content: center; text-align: center; }
}
@media (max-width: 478px) {
  .footer-brand { order: 4; width: 50%; display: flex; justify-content: center; }
  .footer-brand img { width: 80%; }
  .footer-col { width: 40%; }
}

/* Split content (about / services) */
.split {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-s);
}
.split-media { flex: 1 1 42%; }
.split-copy { flex: 1 1 55%; }
.split-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.split-left { background-image: radial-gradient(circle closest-corner at center left, rgba(0, 168, 194, 0.75) 5%, #ffffff 90%); }
.split-right { background-image: radial-gradient(circle closest-corner at center right, rgba(0, 170, 193, 0.75) 0%, #ffffff 90%); }
@media (max-width: 767px) {
  .split { flex-direction: column; }
  .split-right .split { flex-direction: column-reverse; }
}

.service-overview .split { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.metro-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-s);
}
.bottom-cta {
  background-image: linear-gradient(#ffffff, var(--bright-moon));
  text-align: center;
  padding: var(--space-3xl) var(--space-s);
}
.bottom-cta h2 { margin-bottom: 0; }
.bottom-cta .sub { font-size: var(--step-2); margin-bottom: var(--space-m); }

/* Gallery */
.gallery-hero { text-align: center; padding-top: var(--space-xl); }
.gallery-hero h1 { color: var(--midnight); }
.gallery-hero .lede { color: var(--primary); font-size: var(--step-3); }
.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-s);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 3%;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Quote / menu */
.quote-hero { text-align: center; }
.quote-layout {
  display: flex;
  gap: var(--space-s);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-s) var(--space-xl);
}
.menu-col { flex: 1 1 58%; margin-top: -70px; min-width: 0; }
.form-col { flex: 1 1 38%; min-width: 280px; }
.menu-section { min-width: 0; }
.menu-section-title {
  margin-top: var(--space-xl);
  padding: var(--space-3xs) var(--space-2xs) var(--space-3xs) var(--space-m);
  width: 100%;
  background: var(--primary);
  border: 4px solid #ffffff;
  border-radius: var(--space-2xs);
  color: var(--bright-moon);
  font-size: var(--step-2);
  z-index: 50;
  position: sticky;
  top: 0;
}
.menu-scroller-wrap {
  position: relative;
  min-width: 0;
}
.menu-scroller-wrap::before,
.menu-scroller-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 10px;
  width: 2.75rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.menu-scroller-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 10%, rgb(255 255 255 / 0));
}
.menu-scroller-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 10%, rgb(255 255 255 / 0));
}
.menu-section.is-scrollable:not(.is-at-start) .menu-scroller-wrap::before,
.menu-section.is-scrollable:not(.is-at-end) .menu-scroller-wrap::after {
  opacity: 1;
}
.menu-section-scroller {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 4px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--off-white);
}
.menu-section-scroller:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}
.menu-section-scroller::-webkit-scrollbar { height: 8px; }
.menu-section-scroller::-webkit-scrollbar-track { background: var(--off-white); border-radius: 99px; }
.menu-section-scroller::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }
.dish {
  display: flex;
  flex: 0 0 11rem;
  width: 11rem;
  margin-bottom: 0;
  scroll-snap-align: start;
  position: relative;
}
.dish input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.dish label {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: stretch;
  gap: 0.55rem;
  cursor: pointer;
  padding: 4px 4px 0.55rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.1s ease;
  position: relative;
  min-width: 0;
  background: var(--off-white);
}
.dish img {
  background: var(--blue);
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 6px;
  object-fit: cover;
}
.dish span {
  font-size: var(--step-1);
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}
.dish input:checked + label {
  border-color: var(--blue);
  background: var(--off-white);
}
.dish input:checked + label::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1.4rem;
  height: 1.4rem;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--bright-moon);
  border-radius: 50%;
  font-size: var(--step-0);
  line-height: 1;
}
.dish label:hover { background: #f5f5f5; }

.quote-form {
  border: 1px solid #dddddd;
  border-radius: var(--space-xs);
  padding: var(--space-m) var(--space-s);
  background: #fff;
}
.form-group { margin-bottom: var(--space-s); }
.form-group label,
.form-group .field-label { display: block; margin-bottom: 0.35rem; font-weight: 500; }
.form-group label.required::after { content: ""; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #bbbbbb;
  border-radius: var(--space-3xs);
  padding: 0.7rem 0.8rem;
  font-size: var(--step-0);
  background: #fff;
  color: var(--midnight);
}
.quote-form textarea { min-height: 8rem; resize: vertical; }
.selected-items-list { list-style: none; padding: 0; margin: 0; }
.selected-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}
.remove-item {
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.remove-item:hover { background: #cc0000; }
.form-status {
  margin-top: var(--space-s);
  padding: var(--space-s);
  border-radius: 8px;
  display: none;
}
.form-status.is-ok { display: block; background: #e7f7ef; color: #0d4d32; }
.form-status.is-err { display: block; background: #fdecea; color: #8a1f11; }
.hp { position: absolute; left: -9999px; }
.back-to-top {
  width: 100%;
  position: sticky;
  z-index: 80;
  top: 93vh;
  margin-top: var(--space-m);
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .quote-layout { flex-direction: column-reverse; }
  .menu-col { margin-top: 0; }
  .back-to-top { display: none; }
}

.contact-page .container { max-width: 720px; flex-direction: column; align-items: stretch; }

/* Service-page FAQs */
.faq {
  background-image: linear-gradient(#ffffff, var(--bright-moon));
  padding: var(--space-xl) var(--space-s);
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq h2 {
  text-align: center;
  margin-bottom: var(--space-l);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--bright-moon);
  border-radius: var(--space-xs);
  padding: var(--space-m);
}
.faq-item h3 {
  font-size: var(--step-1);
  color: var(--midnight);
  margin-bottom: var(--space-2xs);
}
.faq-item p {
  margin: 0;
  color: var(--midnight);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
