/* JS Cleaning Services Ltd — Clinical Calm Meets British Craft */

:root {
  --ink: #1A1F1C;
  --forest: #0F3D3A;
  --forest-deep: #0A2E2C;
  --mist: #E8EEEC;
  --snow: #F7FAF9;
  --aqua: #2BB3A0; /* decorative fills, borders, focus rings */
  --aqua-deep: #0E7A6B; /* text-bearing uses + primary CTA fill */
  --aqua-deep-hover: #0B6559;
  --line: #C9D4D0;
  --muted: #5A6661;
  --white: #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "DM Sans", "Helvetica Neue", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --max: 72rem;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--aqua-deep);
}

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Typography ——— */

h1, h2, h3, .brand-mark {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.75rem;
}

/* ——— Layout ——— */

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--space-2xl) 0;
}

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

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

.section--forest h2,
.section--forest h3,
.section--forest .brand-mark {
  color: var(--white);
}

.section--forest p,
.section--forest .lede {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .split--reverse > :first-child {
    order: 2;
  }
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  color: inherit;
  transform: translateY(-1px);
}

.btn--aqua {
  background: var(--aqua-deep);
  color: var(--white);
}

.btn--aqua:hover {
  background: var(--aqua-deep-hover);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
}

.btn--forest:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.text-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.text-link:hover {
  color: var(--aqua-deep);
  border-bottom-color: var(--aqua-deep);
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* ——— Header ——— */

.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
}

.site-header--overlay {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header--solid,
.site-header--overlay.is-stuck {
  background: rgba(247, 250, 249, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header--solid {
  position: sticky;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  overflow: hidden;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

/* Nav: circular badge only — keeps color on light and dark headers */
.logo--nav .logo__mark {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: none;
}

/* Footer: full wordmark on dark surface */
.logo--footer .logo__wordmark {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(80vw, 16rem);
  object-fit: contain;
  filter: none;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.site-header--solid .nav a,
.site-header--overlay.is-stuck .nav a {
  color: var(--ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.site-header--solid .nav a:hover,
.site-header--solid .nav a[aria-current="page"],
.site-header--overlay.is-stuck .nav a:hover,
.site-header--overlay.is-stuck .nav a[aria-current="page"] {
  color: var(--aqua-deep);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__phone {
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-header--solid .nav-toggle span,
.site-header--overlay.is-stuck .nav-toggle span {
  background: var(--ink);
}

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

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

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

@media (min-width: 960px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--forest-deep);
  padding: 1.25rem 1.25rem 1.75rem;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.site-header--solid .nav-mobile,
.site-header--overlay.is-stuck .nav-mobile {
  background: var(--snow);
  border-top-color: var(--line);
}

.site-header--solid .nav-mobile a,
.site-header--overlay.is-stuck .nav-mobile a {
  color: var(--ink);
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 18s var(--ease) forwards;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 61, 58, 0.78) 0%, rgba(15, 61, 58, 0.45) 42%, rgba(26, 31, 28, 0.18) 72%, transparent 100%),
    linear-gradient(to top, rgba(15, 61, 58, 0.55) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  transform: translateX(-40%);
  animation: light-sweep 2.8s var(--ease) 0.4s both;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
}

.hero .brand-mark {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 0.85rem;
  font-weight: 500;
  max-width: 14ch;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0;
  max-width: 28rem;
  margin-bottom: 0.85rem;
}

.hero .support {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 26rem;
  margin-bottom: 0;
}

.hero .btn-row {
  margin-top: 1.75rem;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--forest-deep);
  color: var(--white);
  overflow: hidden;
  min-height: clamp(18rem, 42vh, 26rem);
  display: flex;
  align-items: flex-end;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(10, 46, 44, 0.88) 0%, rgba(15, 61, 58, 0.72) 48%, rgba(15, 61, 58, 0.4) 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding-bottom: 0.25rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  max-width: 16ch;
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.5rem;
}

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

/* ——— Reveal motion ——— */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.9s var(--ease) forwards;
}

.hero-anim--1 { animation-delay: 0.15s; }
.hero-anim--2 { animation-delay: 0.35s; }
.hero-anim--3 { animation-delay: 0.55s; }
.hero-anim--4 { animation-delay: 0.75s; }

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  to { transform: scale(1); }
}

@keyframes light-sweep {
  to { transform: translateX(40%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .hero-anim,
  .hero__media img,
  .hero__wash::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ——— Home sections ——— */

.promise-copy {
  max-width: 34rem;
}

.services-board {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .services-board {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.service-list a:hover {
  color: var(--aqua-deep);
  padding-left: 0.4rem;
}

.service-list a small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.services-board__image {
  min-height: 20rem;
}

.services-board__image img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  aspect-ratio: auto;
}

.proof-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 800px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.quote {
  margin: 0;
}

.quote blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 450;
}

.quote cite {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest);
}

.quote cite span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.15rem;
}

.cta-band {
  position: relative;
  padding: var(--space-2xl) 0;
  color: var(--white);
  overflow: hidden;
}

.cta-band__media {
  position: absolute;
  inset: 0;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 61, 58, 0.8) 0%, rgba(15, 61, 58, 0.62) 55%, rgba(15, 61, 58, 0.42) 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  max-width: 14ch;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
}

.contact-inline {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.975rem;
}

.contact-inline a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-inline a:hover {
  border-bottom-color: var(--aqua);
  color: var(--white);
}

/* ——— Services page ——— */

.services-catalog {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.service-detail {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 5.5rem;
}

.service-detail--mist {
  background: var(--mist);
  border-bottom-color: transparent;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: var(--space-xl);
}

.service-detail:last-of-type {
  border-bottom: 0;
}

.service-detail__rail {
  min-width: 0;
}

.service-detail__num {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 0.5rem;
}

.service-detail h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-bottom: 0;
}

.service-detail__body p {
  max-width: 38rem;
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .service-detail {
    grid-template-columns: minmax(12rem, 0.85fr) 1.15fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

.service-break {
  margin: 0;
  padding: var(--space-lg) 0;
}

.service-break img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}

.service-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.page-hero .service-index a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-hero .service-index a:hover {
  color: #fff;
  border-bottom-color: var(--aqua);
}

/* ——— About ——— */

.values {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 700px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.value h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.value p {
  margin: 0;
  max-width: 22rem;
}

/* ——— Forms / Contact ——— */

.contact-layout {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-details h2 {
  font-size: 1.5rem;
}

.contact-details a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--aqua-deep);
}

.detail-block dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.detail-block dd {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-lg);
}

.form-panel--wide {
  max-width: 52rem;
  margin-inline: auto;
}

.form-section {
  border: 0;
  margin: 0 0 var(--space-lg);
  padding: 0 0 var(--space-lg);
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: 0;
  margin-bottom: var(--space-md);
  padding-bottom: 0;
}

.form-section legend {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.25rem;
  padding: 0;
}

.req {
  color: var(--aqua-deep);
}

.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.field-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.field-hint.is-error {
  color: #7a1c14;
  font-weight: 600;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--snow);
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}

.check-pill input {
  width: auto;
  margin: 0;
  accent-color: var(--aqua-deep);
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
}

.check-line input {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--aqua-deep);
  flex-shrink: 0;
}

.check-line span {
  line-height: 1.45;
}

.steps--stacked {
  display: grid;
  gap: 1.25rem;
}

.steps--stacked li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.steps--stacked li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

input[type="file"] {
  padding: 0.65rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

input[type="date"] {
  min-height: 3rem;
}

.info-note {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  background: var(--mist);
  border-left: 3px solid var(--aqua-deep);
  color: var(--muted);
  font-size: 0.925rem;
}

.info-note strong {
  color: var(--forest);
  font-weight: 600;
}

.ref-block {
  margin: 1.25rem 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.ref-block:first-of-type {
  border-top: 0;
  padding-top: 0.25rem;
}

.ref-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

.form-section--soft {
  background: var(--snow);
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
  padding-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.optional-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.45rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  border: 1px solid var(--line);
  vertical-align: middle;
}

.interview-band {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--mist);
  border: 1px solid var(--line);
}

@media (min-width: 800px) {
  .interview-band {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.onboard-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 800px) {
  .onboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.onboard-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.job-boards {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

.form-panel h2 {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.form-panel > p {
  margin-bottom: var(--space-md);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(43, 179, 160, 0.18);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--mist);
  border-left: 3px solid var(--aqua);
  color: var(--forest);
  font-weight: 500;
}

.form-success.is-visible {
  display: block;
}

.map-placeholder {
  margin-top: var(--space-lg);
  min-height: 12rem;
  background:
    linear-gradient(135deg, rgba(15, 61, 58, 0.06), rgba(43, 179, 160, 0.08)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(15, 61, 58, 0.04) 18px,
      rgba(15, 61, 58, 0.04) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(15, 61, 58, 0.04) 18px,
      rgba(15, 61, 58, 0.04) 19px
    );
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
}

.map-placeholder p {
  margin: 0;
  max-width: 18rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

/* ——— Careers ——— */

.checklist {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--aqua);
}

/* ——— Footer ——— */

.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer .logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 26rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--aqua);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ——— Header tools ——— */

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 960px) {
  .nav { gap: 1.15rem; }
  .nav a { font-size: 0.9rem; }
}

@media (min-width: 1100px) {
  .nav { gap: 1.5rem; }
  .nav a { font-size: 0.9375rem; }
}

/* ——— Trust / steps / areas / proof extras ——— */

.section-intro {
  margin-bottom: 2rem;
}

.trust-strip {
  padding: var(--space-xl) 0;
}

.trust-strip__grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 800px) {
  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.trust-strip__grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.trust-strip__grid p {
  margin: 0;
  max-width: 22rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-lg);
  counter-reset: none;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.steps__num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--aqua-deep);
  margin-bottom: 0.65rem;
}

.steps h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.steps p {
  margin: 0;
  max-width: 22rem;
}

.area-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chips li {
  padding: 0.55rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.925rem;
}

.section--mist .area-chips li {
  background: var(--snow);
}

.case-notes {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .case-notes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-notes h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.case-notes p {
  margin: 0;
}

.guide-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 800px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-card {
  display: block;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease);
}

.guide-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.guide-card p:last-child {
  margin: 0;
}

.guide-card:hover {
  color: inherit;
}

.guide-card:hover h3 {
  color: var(--aqua-deep);
}

.article {
  max-width: 42rem;
}

.article h2 {
  margin-top: 2rem;
}

/* ——— Map / forms extras ——— */

.map-embed {
  margin-top: var(--space-md);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 14rem;
  background: var(--mist);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 14rem;
  border: 0;
}

.map-embed--tall iframe {
  height: 22rem;
}

.map-embed--tall {
  min-height: 22rem;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8e9e7;
  border-left: 3px solid #b42318;
  color: #7a1c14;
  font-weight: 500;
}

.form-error.is-visible {
  display: block;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.quote-result {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.quote-result__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--forest);
  margin: 0.25rem 0 0.75rem;
}

/* ——— FAQ / roles / related ——— */

.faq-list {
  max-width: 48rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.25rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  padding: 1.15rem 0;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.25rem;
  max-width: 40rem;
}

.role-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.role {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: var(--space-lg);
  background: var(--snow);
}

@media (min-width: 700px) {
  .role {
    grid-template-columns: 1fr auto;
  }
}

.role h3 {
  margin-bottom: 0.4rem;
}

.role p {
  margin: 0;
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.related-list a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.related-list a:hover {
  color: var(--aqua-deep);
}

.service-detail h2 a {
  color: inherit;
  text-decoration: none;
}

.service-detail h2 a:hover {
  color: var(--aqua-deep);
}

/* ——— Floating contact actions ——— */

.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.float-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 61, 58, 0.18);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.float-actions a:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.float-actions__call {
  background: var(--forest);
  color: var(--white);
}

.float-actions__wa {
  background: #128C7E;
  color: var(--white);
}

@media (min-width: 900px) {
  .float-actions {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

/* ——— Utilities ——— */

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