:root {
  color-scheme: only light;
  --base: #f2eadf;
  --base-deep: #e3d6c6;
  --ink: #1b2a2b;
  --legacy-orange: #f0a51a;
  --accent: #b36b3d;
  --accent-dark: #7c4a2a;
  --accent-soft: #d8a26a;
  --ocean: #123947;
  --mist: #c8d7d2;
  --stone: #d8c8b6;
  --light: #f7f1e8;
  --shadow-soft: 0 24px 60px rgba(18, 57, 71, 0.15);
  --shadow-hard: 0 14px 28px rgba(29, 42, 47, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --font-serif: "Fraunces", serif;
  --font-sans: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(circle at top, #f8f2e9 0%, var(--base) 55%, var(--base-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
}

body.is-loading {
  opacity: 0;
}

body.is-ready {
  animation: page-enter 900ms ease forwards;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.noise-layer {
  position: fixed;
  inset: 0;
  background-image: url("../assets/textures/noise.png");
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(90vw, var(--max-width));
  margin: 0 auto;
}

.top-bar {
  background: var(--legacy-orange);
  color: var(--ink);
  font-size: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--ink);
  text-decoration: none;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dot {
  opacity: 0.5;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(247, 241, 232, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0.25rem 0.65rem;
  cursor: pointer;
  font-weight: 600;
}

.lang-btn.is-active {
  background: rgba(247, 241, 232, 0.2);
}

.header {
  position: sticky;
  top: 40px;
  z-index: 25;
  backdrop-filter: blur(8px);
  background: linear-gradient(135deg, rgba(216, 162, 106, 0.95), rgba(242, 234, 223, 0.8));
  border-bottom: 1px solid rgba(18, 57, 71, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 250ms ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(18, 57, 71, 0.2);
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 5vw 1.5rem;
  background: rgba(242, 234, 223, 0.95);
}

.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero__backdrop,
.hero__vanta,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  z-index: 1;
  pointer-events: none;
}

.hero__vanta {
  z-index: 0;
}

.hero__glow {
  z-index: 1;
  background: radial-gradient(circle at 30% 20%, rgba(216, 162, 106, 0.35), transparent 60%);
  mix-blend-mode: screen;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(12px);
  transition: opacity 900ms ease;
}

.hero__image--blocked {
  background-image: linear-gradient(130deg, rgba(18, 57, 71, 0.6), rgba(18, 57, 71, 0.1)), url("../assets/legacy/galeria-madera.jpg");
}

.hero__image--break {
  background-image: linear-gradient(130deg, rgba(179, 107, 61, 0.45), rgba(242, 234, 223, 0.1)), url("../assets/legacy/galeria-amedida.jpg");
}

.hero__image--flow {
  background-image: linear-gradient(130deg, rgba(18, 57, 71, 0.5), rgba(242, 234, 223, 0.08)), url("../assets/legacy/galeria-cocinas.jpg");
  opacity: 1;
  filter: blur(6px);
}

@supports (animation-timeline: view()) {
  .hero__image--flow {
    opacity: 0;
  }
}

.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(179, 107, 61, 0.35), rgba(18, 57, 71, 0.15));
  filter: blur(6px);
  opacity: 0.6;
  animation: float 10s ease-in-out infinite;
}

.blob--one {
  top: 10%;
  left: 5%;
}

.blob--two {
  bottom: 18%;
  right: 10%;
  animation-delay: -3s;
}

.blob--three {
  top: 55%;
  left: 55%;
  width: 160px;
  height: 160px;
  animation-delay: -6s;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--accent-dark);
  text-shadow: 0 10px 24px rgba(18, 57, 71, 0.2);
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.75);
  border: 1px solid rgba(18, 57, 71, 0.15);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  margin: 0 0 1rem;
}

.hero__slider {
  position: relative;
  min-height: 130px;
  margin: 0 auto 1.2rem;
  max-width: 680px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__slide h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.hero__slide p {
  margin: 0;
}

.hero__lead {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 1.4rem auto 0;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__quick {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-item {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.7);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.quick-item i {
  color: var(--accent-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.scroll-line {
  width: 2px;
  height: 46px;
  background: var(--accent);
  margin: 0 auto;
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--light);
  box-shadow: var(--shadow-soft);
}

.btn.ghost {
  border: 1px solid rgba(18, 57, 71, 0.3);
  color: var(--ink);
  background: rgba(247, 241, 232, 0.6);
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(18, 57, 71, 0.2);
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(circle at 30% 30%, rgba(179, 107, 61, 0.08), transparent 55%);
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-lead {
  max-width: 620px;
  font-size: 1.12rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.answer {
  font-weight: 700;
  max-width: 720px;
  line-height: 1.7;
  margin: 0 auto 2rem;
  text-align: center;
}

.cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.card {
  background: rgba(247, 241, 232, 0.85);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hard);
}

.card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(18, 57, 71, 0.85);
  display: grid;
  place-items: center;
  color: var(--light);
  box-shadow: var(--shadow-hard);
}

.card-icon svg,
.service-icon svg,
.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-family: var(--font-serif);
  margin: 1rem;
  text-align: center;
}

.card p {
  margin: 0 1.5rem 1.8rem;
  text-align: center;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(18, 57, 71, 0.55), rgba(242, 234, 223, 0.15)), url("../assets/legacy/servicio-madera.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  z-index: 0;
  transform: scale(1.05);
}

.services::after {
  content: "";
  position: absolute;
  inset: 5% 0 auto 0;
  height: 240px;
  background: linear-gradient(120deg, rgba(18, 57, 71, 0.12), rgba(179, 107, 61, 0.1));
  transform: skewY(-4deg);
  z-index: 0;
}

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

.services-detail {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(247, 241, 232, 0.85), rgba(242, 234, 223, 0.6));
  box-shadow: var(--shadow-soft);
}

.services-detail h3 {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}

.services-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-item {
  display: grid;
  gap: 0.7rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 232, 0.95);
  box-shadow: var(--shadow-hard);
  animation: float 8s ease-in-out infinite;
}

.service-item:nth-child(even) {
  animation-delay: -2s;
}

.service-item h4 {
  font-family: var(--font-serif);
  margin: 0.2rem 0 0.4rem;
  font-size: 1.35rem;
}

.service-item p {
  margin: 0;
  font-size: 1rem;
}

.service-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: rgba(179, 107, 61, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  flex-shrink: 0;
  font-size: 2.2rem;
}

.visual {
  padding: 6rem 0 7rem;
}

.visual::before {
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 57, 71, 0.15), rgba(179, 107, 61, 0.08));
}

.visual__media {
  position: relative;
  width: min(92vw, 1200px);
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

.visual__media img {
  width: 100%;
  display: block;
  height: clamp(280px, 48vw, 520px);
  object-fit: cover;
}

.visual__content {
  text-align: center;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.feature-list li {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 232, 0.8);
  box-shadow: var(--shadow-hard);
}

.feature-icon {
  margin: 0 auto 0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(18, 57, 71, 0.12);
  display: grid;
  place-items: center;
  color: var(--ocean);
}

.highlight {
  background: linear-gradient(135deg, rgba(18, 57, 71, 0.08), rgba(216, 162, 106, 0.12));
}

.highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
  align-items: center;
}

.highlight__cards {
  display: grid;
  gap: 1.2rem;
}

.highlight-card {
  background: rgba(247, 241, 232, 0.9);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hard);
}

.highlight-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(18, 57, 71, 0.9);
  color: var(--light);
  margin-bottom: 0.6rem;
}

.values {
  background: linear-gradient(180deg, rgba(18, 57, 71, 0.08), rgba(242, 234, 223, 0.4));
}

.tabs {
  margin-top: 2rem;
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tab {
  background: transparent;
  border: 1px solid rgba(18, 57, 71, 0.3);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
}

.tab.is-active {
  background: var(--ocean);
  color: var(--light);
}

.tabs__content {
  margin-top: 1.6rem;
  background: rgba(247, 241, 232, 0.8);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.collage img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 250ms ease;
}

.collage img.wide {
  grid-column: span 2;
}

.collage img.tall {
  grid-row: span 2;
  height: 100%;
  min-height: 360px;
}

.collage img:hover {
  transform: scale(1.02);
}

.partners {
  background: linear-gradient(120deg, rgba(179, 107, 61, 0.08), rgba(18, 57, 71, 0.08));
}

.logos {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logos img {
  height: 60px;
  opacity: 0.85;
  filter: saturate(0.9);
}

.contact {
  background: rgba(18, 57, 71, 0.08);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact__details {
  display: grid;
  gap: 1.2rem;
  background: rgba(247, 241, 232, 0.8);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.contact__details a {
  color: var(--accent-dark);
  text-decoration: none;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(247, 241, 232, 0.9);
  box-shadow: var(--shadow-hard);
  min-width: 0;
}

.contact-card span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(18, 57, 71, 0.65);
  margin-bottom: 0.3rem;
}

.contact-card a,
.contact-card p {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(18, 57, 71, 0.9);
  color: var(--light);
  font-size: 1.2rem;
}

.contact-band {
  background: linear-gradient(120deg, rgba(18, 57, 71, 0.9), rgba(179, 107, 61, 0.95));
  color: var(--light);
  padding: 4rem 0;
}

.contact-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.contact-band__info {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.band-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.band-item a,
.band-item p {
  color: var(--light);
  text-decoration: none;
  margin: 0;
}

.contact-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-band .btn.ghost {
  color: var(--light);
  border-color: rgba(247, 241, 232, 0.4);
}

.footer {
  background: linear-gradient(135deg, var(--legacy-orange), #d9891d);
  color: var(--ink);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer h3 {
  font-family: var(--font-serif);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.footer a {
  color: var(--ink);
}

.footer__bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.kinetic-title {
  letter-spacing: 0.06em;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@scroll-timeline page-scroll {
  source: auto;
  orientation: block;
  scroll-offsets: 0%, 100%;
}

.hero__image--blocked {
  animation: hero-fade 1s ease forwards;
  animation-timeline: page-scroll;
  animation-range: 0% 35%;
}

.hero__image--break {
  animation: hero-fade 1s ease forwards;
  animation-timeline: page-scroll;
  animation-range: 20% 65%;
}

.hero__image--flow {
  animation: hero-fade 1s ease forwards;
  animation-timeline: page-scroll;
  animation-range: 50% 100%;
}

@keyframes hero-fade {
  from {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1.12);
  }
  to {
    opacity: 1;
    filter: blur(3px);
    transform: scale(1.03);
  }
}

@supports (animation-timeline: view()) {
  .section {
    animation: section-slide 1s ease both;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
  .kinetic-title {
    animation: kinetic 1s ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}

@keyframes section-slide {
  from {
    opacity: 0.4;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes kinetic {
  from {
    letter-spacing: 0.35em;
    opacity: 0.4;
  }
  to {
    letter-spacing: 0.02em;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-menu.is-open {
    display: flex;
  }
  .header {
    top: 0;
  }
  .services-detail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    min-height: 620px;
  }
}

@media (max-width: 600px) {
  .top-bar {
    display: none;
  }
  .hero {
    padding-top: 6rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__quick {
    flex-direction: column;
  }
  .contact__details {
    padding: 1.1rem;
  }
  .contact-card {
    grid-template-columns: 40px 1fr;
    padding: 0.7rem;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .services-detail__grid {
    grid-template-columns: 1fr;
  }
  .service-icon {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
  }
  .collage img.wide,
  .collage img.tall {
    grid-column: auto;
    grid-row: auto;
    height: 180px;
    min-height: 0;
  }
  .contact-band__inner {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .services::before {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
