:root {
  --green: #323a29;
  --sage: #979581;
  --terracotta: #a56c58;
  --cream: #eee9e3;
  --font-title: "Abril Fatface", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
  --page-pad: 1rem;
  --header-h: 4.05rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 2rem);
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 0.18rem solid var(--terracotta);
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 999;
  transform: translateY(-120%);
  background: var(--green);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: opacity 600ms ease, visibility 600ms ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: min(28rem, 86vw);
  height: auto;
  animation: pulse 1500ms ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(1.9rem);
  transition: opacity 800ms cubic-bezier(0.25, 1, 0.5, 1), transform 800ms cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.28rem var(--page-pad);
  background: rgba(238, 233, 227, 0.94);
  border-bottom: 1px solid rgba(50, 58, 41, 0.12);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  min-height: 3.55rem;
  background: rgba(238, 233, 227, 0.98);
  box-shadow: 0 0.35rem 1.25rem rgba(50, 58, 41, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 5.42rem;
  height: 3.18rem;
  overflow: hidden;
  transition: transform 220ms ease;
}

.site-header.scrolled .brand {
  transform: scale(0.9);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-toggle {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  color: var(--green);
  background: rgba(151, 149, 129, 0.18);
  border: 1px solid rgba(50, 58, 41, 0.16);
  border-radius: 0.45rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.05rem;
  height: 0.1rem;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.site-nav {
  position: absolute;
  inset: var(--header-h) var(--page-pad) auto;
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  background: var(--cream);
  border: 1px solid rgba(50, 58, 41, 0.16);
  border-radius: 0.5rem;
  box-shadow: 0 1.1rem 2.2rem rgba(50, 58, 41, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.58rem 0.66rem;
  border-radius: 0.35rem;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(151, 149, 129, 0.18);
}

.site-nav .nav-cta {
  display: inline-flex;
  justify-content: center;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 600;
}

.site-nav .nav-cta:hover {
  background: var(--green);
  color: var(--cream);
}

.section-pad {
  padding: clamp(3.3rem, 8vw, 5.8rem) var(--page-pad);
  scroll-margin-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-top: calc(var(--header-h) + 1.8rem);
  padding-bottom: 3.1rem;
  overflow: hidden;
}

.hero-copy,
.section-copy,
.contact-copy,
.page-copy,
.hora-copy {
  position: relative;
  z-index: 2;
}

.hero-copy,
.hero-media,
.page-copy,
.page-hero-media {
  width: 100%;
  max-width: 23rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.05;
  color: var(--green);
  letter-spacing: 0;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(2.65rem, 7vw, 4.72rem);
}

h2 {
  font-size: clamp(2.05rem, 5vw, 3.45rem);
}

h3 {
  color: var(--green);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 0.8rem;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-copy > p:not(.eyebrow),
.page-copy > p,
.section-heading p,
.section-copy p,
.hora-copy p,
.contact-copy p {
  margin-top: 1.05rem;
  max-width: 42rem;
  color: var(--green);
  font-size: 1rem;
  font-weight: 300;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  min-height: 3.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.78rem 1rem;
  border-radius: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg,
.text-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-solid {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--terracotta);
}

.button-solid::before,
.button-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.25, 1, 0.5, 1);
}

.button-solid::before {
  background: var(--terracotta);
}

.button-solid::after {
  background: var(--green);
  transform: scaleX(0);
}

.button-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
}

.button:hover,
.text-link:hover {
  transform: translateY(-0.1rem);
}

.button-solid:hover {
  border-color: var(--green);
}

.button-solid:hover::after {
  transform: scaleX(1);
}

.button-outline:hover {
  color: var(--green);
  border-color: var(--green);
}

.hero-media,
.about-media,
.page-hero-media {
  position: relative;
}

.hero-media {
  min-height: 23.5rem;
}

.hero-media > img:first-child,
.about-media > img:first-child,
.project-card img,
.page-hero-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid rgba(50, 58, 41, 0.14);
}

.hero-media > img:first-child {
  aspect-ratio: 1 / 1.08;
  object-position: 45% 55%;
  box-shadow: 0 1.35rem 2.6rem rgba(50, 58, 41, 0.14);
}

.organic-mark {
  position: absolute;
  width: 6.4rem;
  height: 6.4rem;
  object-fit: contain;
  opacity: 0.88;
  border: 0;
}

.mark-one {
  right: -0.45rem;
  bottom: -1.1rem;
}

.mark-two {
  left: -0.7rem;
  bottom: -1rem;
}

.mark-three {
  right: 1rem;
  bottom: 1rem;
  opacity: 0.22;
}

.leaf-line {
  position: absolute;
  pointer-events: none;
  color: var(--green);
  opacity: 0.3;
}

.leaf-line svg {
  width: 10rem;
  height: 12rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leaf-line-a {
  top: 5.5rem;
  left: -6.2rem;
}

.leaf-line-b {
  inset: auto auto 1rem -1.6rem;
}

.about {
  display: grid;
  gap: 2.25rem;
  background: rgba(151, 149, 129, 0.16);
}

.about-media {
  aspect-ratio: 4 / 5;
}

.portrait-media > img:first-child {
  object-position: center 18%;
}

.section-copy {
  align-self: center;
}

.section-rule {
  width: 3.4rem;
  height: 0.12rem;
  display: block;
  margin-bottom: 1rem;
  background: var(--terracotta);
}

.services {
  position: relative;
}

.section-heading {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 2.05rem;
}

.section-heading p {
  margin-top: 0;
}

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

.service-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  min-height: 13.5rem;
  padding: 1.15rem;
  background: rgba(151, 149, 129, 0.18);
  border: 1px solid rgba(50, 58, 41, 0.16);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--terracotta);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 360ms ease, transform 360ms ease;
}

.service-card:hover {
  transform: translateY(-0.12rem);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-icon {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--sage);
  border-radius: 0.5rem;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(4) .service-icon {
  background: var(--terracotta);
}

.service-icon svg {
  width: 1.72rem;
  height: 1.72rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.project-card p,
.process-step p,
.site-footer p,
.blog-categories p {
  color: var(--green);
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 300;
}

.hora {
  position: relative;
  display: grid;
  gap: 2rem;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}

.hora h2,
.hora h3,
.hora p,
.hora li {
  color: var(--cream);
}

.hora .eyebrow {
  color: var(--cream);
}

.hora .section-rule {
  background: var(--terracotta);
}

.hora .button-outline {
  color: var(--cream);
  border-color: var(--cream);
}

.hora .button-outline:hover {
  color: var(--green);
  background: var(--cream);
  border-color: var(--cream);
}

.hora-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(238, 233, 227, 0.22);
  border-radius: 0.5rem;
  background: rgba(238, 233, 227, 0.08);
}

.hora-panel ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hora-panel li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.94rem;
  font-weight: 400;
}

.hora-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.12rem;
  background: var(--terracotta);
}

.projects {
  background: rgba(151, 149, 129, 0.14);
}

.projects-page {
  background: var(--cream);
}

.split {
  align-items: start;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  font-size: 0.88rem;
  font-weight: 600;
  overflow: hidden;
  transition: transform 180ms ease;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.project-feature-story {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: rgba(151, 149, 129, 0.16);
  border: 1px solid rgba(50, 58, 41, 0.14);
  border-radius: 0.5rem;
}

.story-media img,
.colina-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid rgba(50, 58, 41, 0.14);
}

.story-media {
  min-height: 18rem;
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.story-copy h3 {
  max-width: 34rem;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.story-copy p,
.project-points li {
  color: var(--green);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 300;
}

.project-points {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-points li {
  position: relative;
  padding-left: 1.1rem;
}

.project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.45rem;
  height: 0.12rem;
  background: var(--terracotta);
}

.colina-gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.colina-gallery img {
  aspect-ratio: 4 / 3;
}

.web-tour {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.35rem;
  padding: 1rem;
  background: var(--green);
  color: var(--cream);
  border-radius: 0.5rem;
  overflow: hidden;
}

.tour-media {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(238, 233, 227, 0.22);
}

.tour-media img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  transition: opacity 180ms ease, transform 800ms cubic-bezier(0.25, 1, 0.5, 1);
}

.web-tour:hover .tour-media img {
  transform: scale(1.025);
}

.tour-media img.is-changing {
  opacity: 0;
}

.tour-hotspots {
  position: absolute;
  inset: 0;
}

.tour-hotspots span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--terracotta);
  border: 1px solid rgba(238, 233, 227, 0.7);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.tour-copy {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.web-tour h3,
.web-tour p,
.web-tour .eyebrow {
  color: var(--cream);
}

.web-tour h3 {
  font-family: var(--font-title);
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.web-tour p {
  max-width: 46rem;
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 300;
}

.tour-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tour-controls button {
  min-height: 2.35rem;
  padding: 0.55rem 0.78rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(238, 233, 227, 0.45);
  border-radius: 0.35rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tour-controls button:hover,
.tour-controls button[aria-pressed="true"] {
  color: var(--green);
  background: var(--cream);
  border-color: var(--cream);
}

.project-card {
  position: relative;
  display: grid;
  background: var(--cream);
  border: 1px solid rgba(50, 58, 41, 0.14);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 360ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(50, 58, 41, 0);
  transition: background 360ms ease;
}

.project-card:hover {
  transform: translateY(-0.16rem);
}

.project-card:hover::after {
  background: rgba(50, 58, 41, 0.15);
}

.project-card img {
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 0;
  transition: transform 800ms cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:nth-child(odd) img {
  aspect-ratio: 3 / 4;
}

.project-card:nth-child(even) img {
  aspect-ratio: 4 / 3;
}

.project-card.feature img {
  aspect-ratio: 16 / 10;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card > div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.project-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.25rem;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 600;
}

.project-card.coming-soon {
  min-height: 100%;
  background: var(--green);
  border-color: var(--green);
}

.project-card.coming-soon > div {
  min-height: 16rem;
  align-content: center;
}

.project-card.coming-soon span,
.project-card.coming-soon h3,
.project-card.coming-soon p,
.project-card.coming-soon a {
  color: var(--cream);
}

.project-card.coming-soon span {
  width: fit-content;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  border-bottom: 1px solid var(--terracotta);
}

.project-card.coming-soon a {
  border-bottom-color: var(--cream);
}

.process-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.process-step {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem;
  border: 1px solid rgba(50, 58, 41, 0.16);
  border-radius: 0.5rem;
}

.process-step span {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  font-weight: 600;
}

.process-step:nth-child(even) span {
  background: var(--terracotta);
}

.contact {
  display: grid;
  gap: 2.15rem;
  background: rgba(151, 149, 129, 0.13);
}

.contact-note {
  padding: 1rem;
  background: var(--green);
  color: var(--cream) !important;
  border-radius: 0.5rem;
  font-family: var(--font-title);
  font-size: 1.45rem !important;
  line-height: 1.18;
}

.contact-direct {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.3rem;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-direct a {
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(165, 108, 88, 0.7);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(238, 233, 227, 0.72);
  border: 1px solid rgba(50, 58, 41, 0.16);
  border-radius: 0.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 2.95rem;
  padding: 0.78rem 0.86rem;
  color: var(--green);
  background: var(--cream);
  border: 1px solid rgba(50, 58, 41, 0.22);
  border-radius: 0.35rem;
}

.contact-form textarea {
  min-height: 7.4rem;
  resize: vertical;
}

.contact-form input:valid,
.contact-form select:valid,
.contact-form textarea:valid {
  border-color: var(--sage);
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: var(--terracotta);
}

.contact-form select:invalid {
  border-color: rgba(50, 58, 41, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 0.2rem rgba(165, 108, 88, 0.12);
  outline: none;
}

.contact-form ::placeholder {
  color: rgba(50, 58, 41, 0.62);
}

.page-hero {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: 82svh;
  padding-top: calc(var(--header-h) + 2.2rem);
  overflow: hidden;
}

.page-hero-media {
  min-height: 23rem;
}

.page-hero-media > img:first-child {
  aspect-ratio: 4 / 3;
  object-position: center;
  box-shadow: 0 1.35rem 2.6rem rgba(50, 58, 41, 0.12);
}

.blog-hero {
  min-height: 70svh;
  background: rgba(151, 149, 129, 0.14);
}

.blog-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20rem;
  padding: 2rem;
  border: 1px solid rgba(50, 58, 41, 0.14);
  border-radius: 0.5rem;
  background: var(--cream);
  overflow: hidden;
}

.blog-frame img {
  position: relative;
  z-index: 2;
  width: min(18rem, 82%);
}

.blog-frame span {
  position: absolute;
  inset: auto -18% -38% auto;
  width: 18rem;
  aspect-ratio: 1;
  border: 1px solid rgba(165, 108, 88, 0.7);
  border-radius: 50% 50% 0 50%;
  transform: rotate(12deg);
}

.blog-empty {
  position: relative;
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.blog-categories {
  display: grid;
  gap: 1rem;
}

.blog-categories article {
  padding: 1rem;
  background: rgba(151, 149, 129, 0.16);
  border: 1px solid rgba(50, 58, 41, 0.14);
  border-radius: 0.5rem;
}

.blog-categories h3 {
  margin-bottom: 0.4rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 9rem;
  padding: 1.35rem var(--page-pad) 4.6rem;
  background: var(--green);
  color: var(--cream);
}

.has-js .site-footer {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

.site-footer img {
  width: 12.2rem;
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
}

.site-footer p,
.site-footer a {
  color: var(--cream);
}

.site-footer p {
  display: none;
}

.site-footer nav {
  display: none;
  flex-wrap: wrap;
  gap: 0.55rem 0.82rem;
}

.site-footer a {
  font-size: 0.78rem;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 0.18rem;
  max-width: 100%;
  text-align: left;
}

.footer-contact a {
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.68rem 0.88rem;
  color: var(--cream);
  background: var(--terracotta);
  border-radius: 0.35rem;
  box-shadow: 0 0.8rem 1.8rem rgba(50, 58, 41, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.sticky-whatsapp:hover {
  transform: translateY(-0.12rem);
  background: var(--green);
}

.sticky-whatsapp svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 44rem) {
  :root {
    --page-pad: 2rem;
  }

  .brand {
    width: 5.65rem;
    height: 3.3rem;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
    min-width: 11.5rem;
  }

  .service-grid,
  .blog-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .colina-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-tour {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.85fr);
    align-items: stretch;
  }

  .project-card.feature,
  .project-card.wide {
    grid-column: span 2;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.35rem;
  }

  .contact-form .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  :root {
    --page-pad: 3.6rem;
    --header-h: 4.18rem;
  }

  .site-header {
    padding-block: 0.26rem;
  }

  .brand {
    width: 5.95rem;
    height: 3.46rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.18rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.48rem 0.56rem;
    font-size: 0.78rem;
  }

  .site-nav .nav-cta {
    margin-left: 0.34rem;
    padding-inline: 0.9rem;
  }

  .section-pad {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    gap: 3rem;
    min-height: calc(100svh - 1.2rem);
    padding-top: calc(var(--header-h) + 1.9rem);
    padding-bottom: 3.6rem;
  }

  .leaf-line {
    opacity: 0.42;
  }

  .leaf-line-a {
    top: 5.2rem;
    left: -2rem;
  }

  h1 {
    max-width: 12.6ch;
  }

  .hero-copy > p:not(.eyebrow),
  .page-copy > p,
  .section-heading p,
  .section-copy p,
  .hora-copy p,
  .contact-copy p {
    font-size: 1.02rem;
  }

  .hero-media {
    max-width: 39rem;
    min-height: 30rem;
    justify-self: end;
  }

  .hero-copy,
  .page-copy {
    max-width: none;
  }

  .hero-media > img:first-child {
    aspect-ratio: 4 / 3;
  }

  .about {
    grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1fr);
    gap: 3.4rem;
  }

  .about-media {
    max-width: 28rem;
    min-height: 31rem;
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 0.58fr);
    align-items: end;
  }

  .section-heading.split {
    grid-template-columns: 1fr auto;
  }

  .service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(50, 58, 41, 0.16);
    border-bottom: 1px solid rgba(50, 58, 41, 0.16);
  }

  .service-card {
    min-height: 16.2rem;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(50, 58, 41, 0.16);
    border-radius: 0;
  }

  .service-card:last-child {
    border-right: 0;
  }

  .hora {
    grid-template-columns: minmax(0, 0.94fr) minmax(24rem, 0.72fr);
    gap: 4rem;
    align-items: center;
  }

  .hora-panel {
    padding: 1.55rem;
  }

  .project-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(16rem, auto);
    gap: 1.15rem;
  }

  .project-feature-story {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.72fr);
    gap: 2rem;
    align-items: stretch;
    padding: 1.25rem;
    margin-bottom: 1.4rem;
  }

  .story-media {
    min-height: 28rem;
  }

  .story-copy {
    padding: 1rem 0.5rem;
  }

  .story-copy h3 {
    font-size: 2.45rem;
  }

  .colina-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.4rem;
  }

  .web-tour {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.74fr);
    gap: 1.6rem;
    margin-bottom: 1.4rem;
    padding: 1.15rem;
  }

  .tour-media,
  .tour-media img {
    min-height: 27rem;
  }

  .project-card {
    grid-column: span 4;
  }

  .project-card.feature {
    grid-column: span 7;
    grid-row: span 2;
  }

  .project-card.wide {
    grid-column: span 5;
  }

  .project-card:not(.feature):not(.wide) {
    grid-column: span 5;
  }

  .project-card:nth-child(3) {
    grid-column: span 4;
  }

  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(50, 58, 41, 0.2);
  }

  .process-step {
    padding: 1.35rem 1rem 0;
    border: 0;
    border-radius: 0;
  }

  .process-step::before {
    content: "";
    position: absolute;
    top: -0.45rem;
    left: 3.25rem;
    right: 0;
    height: 1px;
    border-top: 1px dashed var(--sage);
  }

  .process-step:last-child::before {
    right: 3.25rem;
  }

  .contact {
    grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1fr);
    gap: 4rem;
  }

  .page-hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 3.2rem;
    min-height: 76svh;
    padding-top: calc(var(--header-h) + 2.4rem);
  }

  .page-hero-media {
    max-width: none;
    min-height: 31rem;
  }

  .blog-hero {
    grid-template-columns: minmax(0, 0.74fr) minmax(24rem, 0.6fr);
    min-height: 66svh;
  }

  .blog-empty {
    grid-template-columns: minmax(0, 0.75fr) minmax(28rem, 1fr);
    align-items: start;
  }

  .site-footer {
    min-height: 8.5rem;
    padding: 1.25rem var(--page-pad);
  }

  .site-footer img {
    width: 13.8rem;
    height: auto;
  }

  .footer-contact {
    justify-items: end;
    text-align: right;
  }

  .sticky-whatsapp {
    display: inline-flex;
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (min-width: 82rem) {
  :root {
    --page-pad: 5rem;
  }

  .brand {
    width: 6.18rem;
    height: 3.58rem;
  }

  .site-nav {
    gap: 0.36rem;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  h1 {
    max-width: 13.5ch;
  }
}

@media (min-width: 64rem) and (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    width: 0.5rem;
    height: 0.5rem;
    z-index: 9998;
    pointer-events: none;
    background: var(--terracotta);
    border-radius: 50%;
    transition: transform 200ms ease, background 200ms ease;
  }

  .custom-cursor.hover {
    background: var(--cream);
    transform: scale(3);
  }

  body {
    cursor: none;
  }

  a,
  button,
  .project-card {
    cursor: none;
  }
}

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

  .has-js .reveal,
  .has-js .site-footer {
    opacity: 1;
    transform: none;
  }
}
