/* AQUAPROCESS UFH - Components */

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 560;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
    transform var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: none !important;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: #C8102E;
  color: var(--white);
  border-color: #C8102E;
  box-shadow: none;
}

.btn-primary:hover {
  background: #A50D25;
  border-color: #A50D25;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn-secondary--light {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
  box-shadow: none;
}

.btn-secondary--light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: none;
}

/* On light/white surfaces, keep outline readable in red (no blue) */
.section:not(.section--navy):not(.section--bg) .btn-secondary,
.page-hero .btn-secondary,
.detail-section .btn-secondary,
.trust-strip .btn-secondary,
.site-header.is-scrolled .btn-secondary,
body:not(.has-hero) .site-header .btn-secondary,
.page-screen .btn-secondary,
.legal-content .btn-secondary,
.blog-post .btn-secondary,
.project-detail .btn-secondary,
.utility-page .btn-secondary,
.nav-mobile-ctas .btn-secondary {
  color: #C8102E;
  border-color: #C8102E;
}

.section:not(.section--navy):not(.section--bg) .btn-secondary:hover,
.page-hero .btn-secondary:hover,
.detail-section .btn-secondary:hover,
.trust-strip .btn-secondary:hover,
.site-header.is-scrolled .btn-secondary:hover,
body:not(.has-hero) .site-header .btn-secondary:hover,
.page-screen .btn-secondary:hover,
.legal-content .btn-secondary:hover,
.blog-post .btn-secondary:hover,
.project-detail .btn-secondary:hover,
.utility-page .btn-secondary:hover,
.nav-mobile-ctas .btn-secondary:hover {
  background: #C8102E;
  color: var(--white);
  border-color: #C8102E;
}

.cookie-banner .btn-secondary {
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.cookie-banner .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: none;
}

.cookie-banner .btn-primary {
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* -- Hero carousel -- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  /* No fixed height — avoids sticky/restricted small scrolls back into the hero */
  height: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  /* Keep none so vertical page scroll isn't captured by the slide layer */
  pointer-events: none;
}

.hero-controls,
.hero-content {
  pointer-events: auto;
}

.hero-slide {
  overflow: hidden;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 29, 51, 0.88) 0%,
    rgba(11, 42, 74, 0.45) 45%,
    rgba(11, 42, 74, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  padding-top: 6rem;
}

.hero-danfoss {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 1;
  border-radius: 3px;
}

.hero-content .eyebrow {
  color: rgba(234, 241, 248, 0.85);
}

.hero-content h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.08;
}

.hero-content .subhead {
  display: none;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  transition: background var(--ease), width var(--ease);
}

.hero-dot.is-active {
  background: var(--white);
  width: 32px;
}

.hero-arrows {
  display: flex;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity var(--ease);
}

.hero:hover .hero-arrows {
  opacity: 1;
}

.hero-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding-bottom: 4.5rem;
    padding-top: 5rem;
  }

  .hero-content h1 {
    max-width: 12ch;
    margin-bottom: 1.35rem;
  }

  .hero-arrows {
    opacity: 1;
  }

  .hero-controls {
    right: var(--gutter-m);
    left: var(--gutter-m);
    bottom: 1.25rem;
    justify-content: space-between;
  }

  .section {
    padding-block: 3.5rem;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .btn-group {
    width: 100%;
  }

  .btn-group .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .conv-hero {
    padding-block: 2rem;
  }

  .form-card {
    padding: 1.25rem;
  }
}

/* -- Trust strip -- */
.trust-strip {
  padding-block: 3rem;
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
}

.trust-grid--centered .trust-item--logo {
  order: 0;
}

.trust-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--hairline);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item--logo {
  padding-inline: 1.25rem;
}

.trust-num {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.trust-num--text {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.trust-danfoss {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 0.35rem;
  border-radius: 3px;
}

/* Trust mobile layout is in mobile.css */

/* Solutions grid */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-card .img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.solution-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.solution-card h3 {
  margin-top: 0.25rem;
}

.solution-card > p,
.solution-card-body > p {
  font-size: 0.92rem;
}

.benefit-list--compact {
  margin-top: 0.25rem;
  gap: 0.45rem;
}

.benefit-list--compact li {
  font-size: 0.88rem;
}

.solution-card--table {
  justify-content: center;
}

.solution-card--table .compare-table {
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

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

#projects .project-card .img-frame {
  aspect-ratio: 1 / 1;
}

#projects .projects-grid--home .project-card .img-frame {
  aspect-ratio: 1 / 1;
}

#solutions .solution-card .img-frame {
  aspect-ratio: 16 / 9;
}

#contact .map-embed {
  min-height: 220px;
}

.faq-mini {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.faq-mini .faq-item {
  border-color: var(--hairline);
}

@media (max-width: 980px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

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

/* Projects stay 2-col on mobile for denser premium layout */

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem var(--gutter-m) calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 29, 51, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(110%);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: block !important;
  pointer-events: none;
  visibility: hidden;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  flex: 1 1 280px;
  margin: 0;
}

.cookie-banner a {
  color: #ffb3be;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner .btn-secondary {
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.cookie-banner .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: none;
}

.cookie-banner .btn-primary {
  background: #C8102E;
  border-color: #C8102E;
  box-shadow: none;
}

/* -- Content / detail pages -- */
.page-hero {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--ice);
  border-bottom: 1px solid var(--hairline);
}

.page-hero .container {
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.page-hero p {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 640px;
}

.page-hero-actions {
  margin-top: 1.5rem;
}

.detail-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.app-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2rem;
}

.app-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.app-card .app-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8102E;
}

.app-card h3 {
  font-size: 1.15rem;
}

.app-card p {
  font-size: 0.92rem;
  flex: 1;
}

.app-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.app-card li {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding-left: 0.9rem;
  position: relative;
}

.app-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.app-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.app-item .app-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.app-item p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.app-video-block {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.app-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.app-video-card {
  margin: 0;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0b2a4a;
  border: 1px solid var(--hairline);
}

.app-video-card video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: min(68vh, 560px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Desktop / tablet landscape: always side by side */
@media (min-width: 769px) {
  .app-video-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile: stack */
@media (max-width: 768px) {
  .app-video-grid {
    grid-template-columns: 1fr !important;
  }

  .app-video-card video {
    min-height: 0;
    max-height: none;
    aspect-ratio: 9 / 16;
  }
}

.compare-page-table {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-page-table .compare-table {
  margin-top: 0;
}

.compare-page-table .compare-table th:first-child,
.compare-page-table .compare-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--white);
}

.compare-page-table .compare-table th:first-child {
  background: var(--ice);
}

.compare-note {
  margin-top: 1.25rem;
  font-size: 0.92rem;
}

.solutions-grid--apps {
  grid-template-columns: 1.2fr 1fr;
}

.solution-card--link {
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.solution-card--link:hover {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 6px 24px rgba(11, 42, 74, 0.08);
  color: inherit;
}

.solution-card--link .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #C8102E;
}

.apps-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.apps-overview-block {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
}

.apps-overview-block h4 {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.apps-overview-block p {
  font-size: 0.88rem;
}

.tech-visual {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.tech-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.tech-visual figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  background: var(--white);
  border-top: 1px solid var(--hairline);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  margin-inline: 0.35rem;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .app-cards,
  .app-grid,
  .apps-overview,
  .solutions-grid--apps {
    grid-template-columns: 1fr;
  }
}

/* -- Comparison table -- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}

.compare-table th {
  background: var(--ice);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}

.compare-table td:first-child {
  font-weight: 550;
  color: var(--navy);
  width: 28%;
}

.compare-page-table--guidelines .compare-table th:first-child,
.compare-page-table--guidelines .compare-table td:first-child {
  position: static;
  background: inherit;
}

.compare-table--guidelines th,
.compare-table--guidelines td {
  width: 33.33%;
  font-size: 0.88rem;
  line-height: 1.5;
}

.compare-table--guidelines td:first-child {
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 760px) {
  .compare-table--guidelines thead {
    display: none;
  }

  .compare-table--guidelines tr {
    display: block;
    padding: 1rem 0.85rem;
    border-bottom: 1px solid var(--hairline);
  }

  .compare-table--guidelines td {
    display: block;
    width: 100%;
    padding: 0.35rem 0;
    border-bottom: none;
  }

  .compare-table--guidelines td::before {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .compare-table--guidelines td:nth-child(1)::before { content: "Electric"; }
  .compare-table--guidelines td:nth-child(2)::before { content: "Hydronic"; }
  .compare-table--guidelines td:nth-child(3)::before { content: "Reason"; }
}

.benefit-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.benefit-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.benefit-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent);
}

.section-danfoss-logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: 3px;
}

/* -- Floor diagram -- */
.floor-diagram {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem;
}

.floor-diagram svg {
  width: 100%;
  height: auto;
}

.diagram-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.diagram-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.diagram-legend i {
  width: 14px;
  height: 3px;
  display: inline-block;
  background: var(--navy);
}

/* -- Pillars -- */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding-top: 1.25rem;
  border-top: 1.5px solid var(--navy);
}

.pillar svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  margin-bottom: 1rem;
}

.pillar h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.pillar p {
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* -- Winning combination -- */
.combo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.combo-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
}

.combo-card--ice {
  background: var(--ice);
  border-color: transparent;
}

.combo-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
  object-position: left;
  border-radius: 3px;
}

.combo-card h3 {
  margin-bottom: 1.25rem;
}

.combo-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.combo-card li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.combo-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .combo-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Tech strip -- */
.tech-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
}

.tech-card {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
}

.tech-card .img-frame {
  aspect-ratio: 4 / 3;
  margin-bottom: 0.75rem;
}

.tech-card figcaption {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--navy);
}

/* -- Where we install -- */
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.install-card {
  display: block;
}

.install-card .img-frame {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
}

.install-card h3 {
  margin-bottom: 0.5rem;
}

.install-card p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .install-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Projects grid -- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card .img-frame {
  aspect-ratio: 4 / 3;
  margin-bottom: 0.75rem;
}

.project-card figcaption {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.project-card strong {
  display: block;
  color: var(--navy);
  font-weight: 560;
  margin-bottom: 0.15rem;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Authenticity -- */
.auth-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .auth-block {
    grid-template-columns: 1fr;
  }
}

/* -- Process steps -- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
  .process-steps--5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 0;
  }

  .process-steps--5::before {
    display: none;
  }
}

.process-steps--light .step-num {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.process-steps--light::before {
  background: rgba(255, 255, 255, 0.25);
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--hairline);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.75rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 670;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0 1rem;
    align-items: start;
  }

  .step-num {
    margin: 0;
    grid-row: span 2;
  }
}

/* -- CTA band -- */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.cta-band .btn-group {
  justify-content: center;
}

/* -- FAQs -- */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item:first-child {
  border-top: 1px solid var(--hairline);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 560;
  color: var(--navy);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--ease);
  stroke: var(--accent);
}

.faq-item.is-open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding-bottom: 1.35rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* -- Divisions strip -- */
.divisions-strip {
  text-align: center;
}

.divisions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.35rem;
  margin: 1.75rem 0 1.5rem;
}

.divisions-list li {
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
}

.divisions-list li:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: var(--hairline);
  font-weight: 400;
}

/* -- Contact strip -- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-item a,
.contact-item span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  min-height: 320px;
  background: var(--ice);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Form pages (consultation / brochure / thank-you) -- */
html:has(body.page-lock),
body.page-lock {
  min-height: 100%;
  background: #ffffff;
  touch-action: manipulation;
}

body.page-lock {
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-screen {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
    env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
}

.page-screen-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--hairline);
  background: #ffffff;
}

.page-screen-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.page-screen-header-actions .btn {
  white-space: nowrap;
}

.page-screen-back {
  font-size: 0.875rem;
  font-weight: 560;
  color: var(--premium-blue);
}

.page-screen-back:hover {
  color: var(--premium-blue-hover);
}

.page-screen-main {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1rem, 3vh, 2rem) clamp(1.1rem, 4vw, 2.5rem);
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.page-screen-main--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.page-screen-copy h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  margin-bottom: 0.65rem;
  color: var(--navy);
}

.page-screen-copy > p {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 1.15rem;
}

.page-screen-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 3px;
}

.page-screen-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.page-screen-bullets li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.page-screen-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--premium-blue);
}

.page-screen-contact {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
}

.page-screen-contact a {
  font-weight: 600;
  color: var(--premium-blue);
}

.page-screen-card {
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: clamp(1.15rem, 2.5vh, 1.75rem) clamp(1.15rem, 2.5vw, 1.75rem);
  box-shadow: 0 8px 32px rgba(11, 42, 74, 0.06);
}

.page-screen-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.page-screen-card .form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.page-screen .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-screen .form-group {
  margin-bottom: 0.75rem;
}

.page-screen .form-group label {
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}

.page-screen .form-group input,
.page-screen .form-group select {
  padding: 0.62rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 8px;
  background: #ffffff;
}

.page-screen .btn-block {
  margin-top: 0.35rem;
  min-height: 46px;
  border-radius: 8px;
}

.page-screen-footer {
  flex: 0 0 auto;
  padding: 0.65rem clamp(1.1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--hairline);
  background: #ffffff;
}

.page-screen-footer p,
.page-screen-footer a {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin: 0;
}

.page-screen-footer a:hover {
  color: var(--navy);
}

.page-screen-thanks {
  max-width: 420px;
}

.page-screen-thanks h1 {
  margin-bottom: 0.65rem;
}

.page-screen-thanks > p {
  margin-bottom: 1.25rem;
}

.page-screen-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.page-screen .thank-download {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--ice);
  border-radius: 10px;
}

.page-screen .thank-download p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Hide floating CTA only on the consultation booking page */
body.no-contact-fab .contact-fab,
body.no-contact-fab .contact-fab-wrap,
body.page-consultation .contact-fab,
body.page-consultation .contact-fab-wrap,
body.page-brochure .contact-fab,
body.page-brochure .contact-fab-wrap,
body.page-contact .contact-fab,
body.page-contact .contact-fab-wrap {
  display: none !important;
}

/* Zoho CRM webform on consultation / brochure screen pages */
body.page-consultation .page-screen,
body.page-brochure .page-screen,
body.page-contact .page-screen {
  height: auto;
  min-height: 100dvh;
  overflow: visible;
}

body.page-consultation .page-screen-main,
body.page-brochure .page-screen-main,
body.page-contact .page-screen-main {
  align-items: start;
  overflow: visible;
  min-height: auto;
  height: auto;
  padding-block: clamp(1rem, 2.5vh, 1.75rem) clamp(1.5rem, 4vh, 2.5rem);
}

body.page-consultation .page-screen-card,
body.page-brochure .page-screen-card,
body.page-contact .page-screen-card {
  max-width: 640px;
  width: 100%;
  justify-self: stretch;
  overflow: visible;
}

.zoho-form-embed {
  width: 100%;
  min-height: 120px;
  overflow: visible;
}

.page-screen-card--bookings {
  max-width: 760px;
}

.zoho-bookings-embed,
#inline-container {
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}

.zoho-bookings-embed iframe,
#inline-container iframe {
  width: 100% !important;
  max-width: 100%;
  border: 0;
  display: block;
}

.zoho-form-embed #crmWebToEntityForm.zcwf_lblLeft,
.zoho-form-embed .crmWebToEntityForm {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  color: #0b2a4a !important;
  overflow: visible !important;
}

.zoho-form-embed .zcwf_title {
  display: none !important;
}

.zoho-form-embed .zcwf_lblLeft .zcwf_row {
  display: block !important;
  width: 100% !important;
  margin: 0 0 0.85rem !important;
  overflow: visible !important;
}

/* Zoho marks backend-hidden fields with wfrm_fld_dpNn; keep them hidden */
.zoho-form-embed .zcwf_lblLeft .zcwf_row.wfrm_fld_dpNn,
.zoho-form-embed .zcwf_lblLeft .wfrm_fld_dpNn {
  display: none !important;
}

.zoho-form-embed .zcwf_lblLeft .zcwf_col_lab {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 0 0.3rem !important;
  padding: 0 !important;
  min-height: 0 !important;
  font-size: 0.78rem !important;
  font-family: inherit !important;
  font-weight: 600;
  color: #0b2a4a !important;
  line-height: 1.35 !important;
}

.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld {
  display: block !important;
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld input[type="password"],
.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld input[type="email"],
.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld input:not([type="hidden"]):not([type="submit"]):not([type="reset"]),
.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld textarea,
.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld select,
.zoho-form-embed .zcwf_lblLeft .zcwf_col_fld_slt,
.zoho-form-embed .zcwf_lblLeft .zcwf_file {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  box-sizing: border-box !important;
  min-height: 42px !important;
  padding: 0.62rem 0.75rem !important;
  font-size: 0.9rem !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  border: 1px solid #d5dde6 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #0b2a4a !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.zoho-form-embed .zcwf_lblLeft .zcwf_col_help {
  display: none !important;
}

.zoho-form-embed .zcwf_lblLeft .formsubmit.zcwf_button,
.zoho-form-embed .zcwf_lblLeft .zcwf_button {
  display: inline-block !important;
  max-width: none !important;
  min-height: 46px !important;
  padding: 0.7rem 1.25rem !important;
  font-size: 0.9rem !important;
  font-family: inherit !important;
  font-weight: 600;
  border-radius: 8px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.zoho-form-embed .zcwf_lblLeft .formsubmit.zcwf_button {
  background: #1a6bb5 !important;
  border-color: #1a6bb5 !important;
  color: #ffffff !important;
}

.zoho-form-embed .zcwf_lblLeft input[type="reset"].zcwf_button {
  background: transparent !important;
  color: #5a6b7d !important;
  border: 1px solid #d5dde6 !important;
}

.zoho-form-embed .g-recaptcha {
  display: block !important;
  margin: 0.25rem 0 0.75rem;
  transform-origin: left top;
  visibility: visible !important;
}

/* Consultation page: Sign in with Google */
.consultation-google {
  margin: 0 0 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid #d5dde6;
  border-radius: 12px;
  background: #f6f9fc;
}

.consultation-google__title {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0b2a4a;
}

.consultation-google__button {
  min-height: 40px;
  line-height: 0;
}

.consultation-google__button > div {
  max-width: 100%;
}

.google-signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  width: 100%;
  max-width: 320px;
  padding: 0.65rem 1rem;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #ffffff;
  color: #3c4043;
  font-weight: 600;
  box-shadow: none;
}

.google-signin-btn:hover {
  background: #f8f9fa;
  border-color: #c6c6c6;
}

.google-signin-btn__icon {
  display: inline-flex;
  line-height: 0;
}

.consultation-google__status {
  min-height: 1.2em;
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #1a6bb5;
}

.consultation-google__status.is-error {
  color: #b42318;
}

@media (max-width: 640px) {
  .consultation-google__button,
  .consultation-google__button > div {
    width: 100% !important;
  }
}

.section--navy .btn-secondary,
.cta-band .btn-secondary {
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.section--navy .btn-secondary:hover,
.cta-band .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.section--navy .btn-primary,
.cta-band .btn-primary {
  background: #C8102E;
  color: var(--white);
  border-color: #C8102E;
  box-shadow: none;
}

@media (max-width: 860px) {
  .page-screen {
    min-height: 100dvh;
    height: auto;
    overflow: visible;
  }

  .page-screen-main {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-content: start;
    padding-block: 1rem 1.5rem;
    flex: 1 0 auto;
    overflow: visible;
    min-height: auto;
  }

  .page-screen-copy {
    text-align: left;
  }

  .page-screen-copy > p {
    margin-inline: 0;
    max-width: none;
  }

  .page-screen-logo {
    margin-inline: 0;
  }

  .page-screen-bullets {
    display: flex;
    margin-bottom: 0.85rem;
  }

  .page-screen-contact {
    display: block;
    margin-bottom: 0.25rem;
  }

  .page-screen-copy h1 {
    font-size: 1.55rem;
    margin-bottom: 0.45rem;
  }

  .page-screen-copy > p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .page-screen-card {
    padding: 1.15rem;
  }

  .page-screen .form-row {
    gap: 0.65rem;
  }

  .page-screen .form-group {
    margin-bottom: 0.7rem;
  }

  .page-screen-header {
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 20;
  }

  .page-screen-footer {
    padding-block: 1rem;
  }
}

@media (max-width: 520px) {
  .page-screen .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-screen-card h2 {
    font-size: 1.05rem;
  }
}

@media (max-height: 720px) {
  .page-screen-copy .eyebrow {
    display: none;
  }

  .page-screen-logo {
    height: 22px;
    margin-bottom: 0.5rem;
  }

  .page-screen .form-group {
    margin-bottom: 0.45rem;
  }

  .page-screen .form-group input,
  .page-screen .form-group select {
    padding: 0.5rem 0.65rem;
  }

  .page-screen-card .form-note {
    margin-bottom: 0.65rem;
  }
}

/* -- Conversion / form pages (legacy) -- */
.conv-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.conv-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.conv-trust .img-frame {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
}

.conv-trust h1 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  margin-bottom: 1rem;
}

.conv-trust > p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.conv-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.conv-bullets li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.conv-bullets svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.conv-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-muted);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  line-height: 1.55;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 2px 12px rgba(11, 42, 74, 0.04);
}

.form-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.form-card .form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 560;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group .req {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.radio-option:hover {
  border-color: var(--accent);
}

.radio-option:has(input:checked) {
  border-color: var(--navy);
  background: var(--ice);
  color: var(--navy);
}

.radio-option input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--navy);
}

.form-fallback {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.form-fallback p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-fallback .btn-group {
  justify-content: center;
}

@media (max-width: 900px) {
  .conv-grid {
    grid-template-columns: 1fr;
  }
}

/* Thank you */
.thank-download {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--ice);
  border-radius: var(--radius);
}

.thank-download[hidden] {
  display: none;
}

/* Privacy content */
.legal-content {
  max-width: 720px;
  margin: 4rem auto;
  padding-inline: var(--gutter);
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content .meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
