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

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, figure {
  margin: 0;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  background: #F1ECE2;
  color: #262321;
  font-family: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Iowan Old Style", serif;
  color: #16263B;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.eyebrow {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #155A52;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #D98F2B;
  display: inline-block;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(38, 35, 33, 0.78);
  max-width: 46ch;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--ink {
  background: #16263B;
  color: rgba(255, 255, 255, 0.86);
}
.section--ink h2, .section--ink h3 {
  color: #FFFFFF;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-family: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: #1E7268;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #155A52;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 114, 104, 0.32);
}

.btn--ghost {
  border: 1.5px solid rgba(22, 38, 59, 0.25);
  color: #16263B;
}
.btn--ghost:hover {
  border-color: #16263B;
  background: rgba(22, 38, 59, 0.04);
}

.btn--on-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}
.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

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

:focus-visible {
  outline: 2.5px solid #D98F2B;
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.topbar {
  background: #16263B;
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.5rem;
  gap: 1rem;
}
.topbar a:hover {
  color: #FFFFFF;
}
.topbar__contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar__social {
  display: flex;
  gap: 0.85rem;
}
.topbar__social svg {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(241, 236, 226, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.97);
  box-shadow: 0 6px 24px rgba(22, 38, 59, 0.08);
  border-color: rgba(22, 38, 59, 0.12);
}
.site-header.is-scrolled .site-header__row {
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #16263B;
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand__name span {
  color: #1E7268;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.9rem;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.94rem;
  color: #16263B;
  padding-block: 0.3rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #D98F2B;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover::after, .nav__link.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 22px;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  height: 2px;
  background: #16263B;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h, 64px);
  background: #F1ECE2;
  padding: 1.5rem 1.25rem 2.5rem;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
  z-index: 55;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__link {
  display: block;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: 1.4rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(22, 38, 59, 0.12);
  color: #16263B;
}

.footer {
  background: #16263B;
  color: rgba(255, 255, 255, 0.76);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  }
}
.footer__about {
  max-width: 320px;
}
.footer__brand {
  color: #FFFFFF;
  margin-bottom: 0.9rem;
}
.footer h4 {
  color: #FFFFFF;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer li {
  margin-bottom: 0.55rem;
}
.footer a:hover {
  color: #FFFFFF;
}
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(22, 38, 59, 0.25);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-btn svg {
  width: 22px;
  height: 22px;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-btn--call {
  background: #1E7268;
  color: #FFFFFF;
}

.float-btn--chat {
  background: #D98F2B;
  color: #16263B;
}

.float-btn--top {
  background: #FBF9F4;
  color: #16263B;
  border: 1.5px solid rgba(22, 38, 59, 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-btn--top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 7vw, 5rem);
  background: radial-gradient(ellipse at 85% -10%, rgba(30, 114, 104, 0.14), transparent 60%), #F1ECE2;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 2.75rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  margin-bottom: 1.1rem;
}
.hero-copy h1 {
  margin-bottom: 1.1rem;
}
.hero-copy .lede {
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  margin-top: 2.25rem;
  flex-wrap: wrap;
}
.hero-stats dt {
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #16263B;
  font-weight: 600;
}
.hero-stats dd {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(38, 35, 33, 0.62);
  margin-top: 0.15rem;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.9rem;
}

.swatch-stage {
  position: relative;
  z-index: 2;
  background: #FBF9F4;
  border-radius: 28px;
  padding: 1.4rem;
  border: 1px solid rgba(22, 38, 59, 0.12);
  box-shadow: 0 28px 60px -20px rgba(22, 38, 59, 0.25);
}

.swatch-room {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.1rem;
}
.swatch-room svg {
  width: 100%;
  height: 100%;
  display: block;
}
.swatch-room #room-wall {
  transition: fill 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swatch-readout {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.78rem;
  color: rgba(38, 35, 33, 0.6);
  margin-bottom: 0.8rem;
}
.swatch-readout strong {
  font-size: 0.95rem;
  color: #16263B;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.swatch-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.swatch-chip {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  outline: 1px solid rgba(22, 38, 59, 0.12);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), outline-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.swatch-chip:hover {
  transform: translateY(-3px);
}
.swatch-chip.is-active {
  outline: 2px solid #16263B;
  outline-offset: 2px;
}

.swatch-caption {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(38, 35, 33, 0.65);
}

.badge-strip {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .badge-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.badge-card {
  background: #FBF9F4;
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.badge-card svg {
  width: 30px;
  height: 30px;
  color: #1E7268;
}
.badge-card h3 {
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding-block: 0.5rem;
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30, 114, 104, 0.1);
  color: #1E7268;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-card__icon svg {
  width: 26px;
  height: 26px;
}
.feature-card p {
  color: rgba(38, 35, 33, 0.72);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.mini-badges {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  gap: 1px;
  background: rgba(22, 38, 59, 0.12);
  border-radius: 12px;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .mini-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mini-badge {
  background: #FBF9F4;
  padding: 1.4rem 1.1rem;
  text-align: center;
}
.mini-badge svg {
  width: 26px;
  height: 26px;
  color: #D98F2B;
  margin-inline: auto;
  margin-bottom: 0.6rem;
}
.mini-badge span {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #16263B;
  display: block;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #FBF9F4;
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  color: #1E7268;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  margin-bottom: 0.55rem;
}
.service-card p {
  color: rgba(38, 35, 33, 0.7);
  font-size: 0.92rem;
  flex-grow: 1;
}
.service-card__link {
  margin-top: 1.1rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #16263B;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card__link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 114, 104, 0.35);
  box-shadow: 0 18px 36px -16px rgba(22, 38, 59, 0.22);
}
.service-card:hover .service-card__link svg {
  transform: translateX(3px);
}

.video-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .video-block {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.video-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #16263B;
  cursor: pointer;
}
.video-frame svg.play-glyph {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  color: #FFFFFF;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 114, 104, 0.55), rgba(22, 38, 59, 0.7));
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(22, 38, 59, 0.12);
  border-bottom: 1px solid rgba(22, 38, 59, 0.12);
  padding-block: 1.1rem;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #16263B;
  white-space: nowrap;
}
.marquee-item svg {
  width: 16px;
  height: 16px;
  color: #D98F2B;
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-tile svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-tile::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.6rem 0.75rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  background: linear-gradient(to top, rgba(22, 38, 59, 0.78), transparent);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-tile:hover svg {
  transform: scale(1.06);
}
.gallery-tile:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22, 38, 59, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__inner {
  max-width: 720px;
  width: 100%;
}
.lightbox__inner svg {
  width: 100%;
  border-radius: 12px;
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close svg {
  width: 18px;
  height: 18px;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav svg {
  width: 18px;
  height: 18px;
}
.lightbox__nav--prev {
  left: 1rem;
}
.lightbox__nav--next {
  right: 1rem;
}

.quote-panel {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .quote-panel {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.quote-card {
  background: #FBF9F4;
  border-radius: 28px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(22, 38, 59, 0.12);
}

.quote-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.quote-step-dot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.78rem;
  color: rgba(38, 35, 33, 0.45);
}
.quote-step-dot span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(22, 38, 59, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-step-dot.is-active span, .quote-step-dot.is-done span {
  background: #1E7268;
  border-color: #1E7268;
  color: #FFFFFF;
}
.quote-step-dot.is-active {
  color: #16263B;
}

.quote-fieldset {
  display: none;
}
.quote-fieldset.is-active {
  display: block;
}

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

.option-pill {
  border: 1.5px solid rgba(22, 38, 59, 0.18);
  border-radius: 6px;
  padding: 0.75rem 0.6rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #16263B;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.option-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option-pill:has(input:checked) {
  background: rgba(30, 114, 104, 0.1);
  border-color: #1E7268;
}

.quote-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.75rem;
  gap: 0.75rem;
}

.quote-success {
  display: none;
  text-align: center;
  padding-block: 1.5rem;
}
.quote-success svg {
  width: 48px;
  height: 48px;
  color: #1E7268;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.quote-success.is-active {
  display: block;
}

.quote-copy h3 {
  margin-bottom: 0.9rem;
}

.quote-copy ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quote-copy li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.quote-copy svg {
  width: 18px;
  height: 18px;
  color: #1E7268;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}

.brand-mark {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16263B;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark svg {
  width: 18px;
  height: 18px;
  color: #1E7268;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 12px;
  background: #FBF9F4;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-weight: 600;
  color: #16263B;
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1E7268;
}
.faq-q[aria-expanded=true] svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  padding: 0 1.3rem 1.2rem;
  color: rgba(38, 35, 33, 0.72);
  font-size: 0.94rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.78rem;
  color: rgba(38, 35, 33, 0.55);
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.breadcrumb a:hover {
  color: #155A52;
}
.breadcrumb svg {
  width: 11px;
  height: 11px;
  opacity: 0.6;
}

.page-hero {
  background: radial-gradient(ellipse at 85% -10%, rgba(30, 114, 104, 0.14), transparent 60%), #F1ECE2;
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2.75rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(22, 38, 59, 0.12);
}
.page-hero .lede {
  margin-top: 0.9rem;
}
.page-hero h1 {
  max-width: 18ch;
}

.stat-band {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  background: #FBF9F4;
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 768px) {
  .stat-band {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-band div {
  text-align: center;
}
.stat-band dt {
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: #16263B;
  font-weight: 600;
}
.stat-band dd {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(38, 35, 33, 0.6);
  margin-top: 0.2rem;
}

.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.story-art {
  background: #FBF9F4;
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 28px;
  padding: 1.5rem;
}
.story-art svg {
  width: 100%;
  display: block;
}

.step-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) {
  .step-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  position: relative;
  padding-top: 2.6rem;
  border-top: 2px solid rgba(22, 38, 59, 0.12);
}
.step-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -0.95rem;
  left: 0;
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.8rem;
  color: #1E7268;
  background: #F1ECE2;
  padding-right: 0.4rem;
}
.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.step-item p {
  color: rgba(38, 35, 33, 0.7);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.info-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.info-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #FBF9F4;
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.info-card svg {
  width: 22px;
  height: 22px;
  color: #1E7268;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.info-card p, .info-card a {
  font-size: 0.9rem;
  color: rgba(38, 35, 33, 0.72);
}

.map-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(22, 38, 59, 0.12);
  aspect-ratio: 16/10;
}
.map-frame svg {
  width: 100%;
  height: 100%;
  display: block;
}

.suburb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.suburb-chip {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.76rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 114, 104, 0.08);
  color: #155A52;
  border: 1px solid rgba(30, 114, 104, 0.2);
}

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.filter-tab {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(22, 38, 59, 0.18);
  color: #16263B;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-tab.is-active, .filter-tab:hover {
  background: #1E7268;
  border-color: #1E7268;
  color: #FFFFFF;
}

.cta-banner {
  background: #16263B;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.cta-banner h3 {
  color: #FFFFFF;
  max-width: 30ch;
  margin-bottom: 0.35rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 40ch;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: #FBF9F4;
  border: 1px solid rgba(22, 38, 59, 0.12);
  border-radius: 6px;
  font-weight: 600;
  color: #16263B;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.related-link svg {
  width: 15px;
  height: 15px;
  color: #1E7268;
}
.related-link:hover {
  border-color: rgba(30, 114, 104, 0.4);
  transform: translateX(3px);
}
