:root {
  --black: #0b0a08;
  --ink: #15120e;
  --cream: #f4eee4;
  --muted: #b9aa96;
  --gold: #d7b46a;
  --bronze: #8b5e34;
  --glass: rgba(255, 250, 240, 0.08);
  --line: rgba(244, 238, 228, 0.15);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--cream);
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 8%, rgba(215, 180, 106, 0.15), transparent 28rem),
    linear-gradient(180deg, #0b0a08 0%, #15120e 48%, #0b0a08 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #080705;
  overflow: hidden;
}

.loader__grain {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 35% 40%, rgba(215, 180, 106, 0.18), transparent 24rem),
    radial-gradient(circle at 68% 62%, rgba(139, 94, 52, 0.18), transparent 22rem);
  filter: blur(12px);
  animation: drift 7s linear infinite alternate;
}

.loader__brand {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 10rem);
  letter-spacing: 0.08em;
}

.loader__line {
  position: absolute;
  bottom: 18%;
  width: min(28rem, 68vw);
  height: 1px;
  background: rgba(244, 238, 228, 0.16);
}

.loader__line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.loader__count {
  position: absolute;
  bottom: 12%;
  color: var(--muted);
  font-size: 0.8rem;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: 40;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(215, 180, 106, 0.18), transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  z-index: 120;
  background: linear-gradient(90deg, var(--gold), #fff1bf);
}

.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  width: min(92rem, calc(100% - 2rem));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(244, 238, 228, 0.12);
  border-radius: 999px;
  background: rgba(11, 10, 8, 0.28);
  backdrop-filter: blur(22px);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.nav.is-scrolled {
  background: rgba(11, 10, 8, 0.76);
  border-color: rgba(215, 180, 106, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.brand::after {
  content: "";
  position: absolute;
  inset: -10% -25%;
  background: linear-gradient(
    108deg,
    transparent 28%,
    rgba(255, 228, 140, 0.32) 50%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.85s ease;
  pointer-events: none;
  z-index: 1;
}

.brand:hover::after {
  transform: translateX(130%);
}

.brand__logo {
  width: clamp(10.5rem, 15vw, 14rem);
  height: auto;
  max-height: 5.8rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.5rem 1.6rem rgba(215, 180, 106, 0.22));
  transition: filter 500ms ease, transform 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logo-breathe 4s ease-in-out infinite;
}

.brand:hover .brand__logo {
  filter:
    drop-shadow(0 0 2.2rem rgba(215, 180, 106, 0.65))
    drop-shadow(0 0.4rem 1.4rem rgba(215, 180, 106, 0.45));
  transform: scale(1.05);
  animation: none;
}

@keyframes logo-breathe {
  0%, 100% {
    filter: drop-shadow(0 0.5rem 1.6rem rgba(215, 180, 106, 0.22));
  }
  50% {
    filter: drop-shadow(0 0.5rem 2.4rem rgba(215, 180, 106, 0.42)) drop-shadow(0 0 1rem rgba(215, 180, 106, 0.18));
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: rgba(244, 238, 228, 0.78);
  font-size: 0.82rem;
}

.nav__links a {
  transition: color 200ms ease;
}

.nav__links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--glass);
  color: var(--cream);
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.25rem auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  gap: 1.3rem;
  background: rgba(8, 7, 5, 0.94);
  backdrop-filter: blur(28px);
  transform: translateY(-100%);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 12vw, 5rem);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: min(16vh, 9rem) clamp(1.2rem, 5vw, 5rem);
}

#ambient-canvas,
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

#ambient-canvas {
  z-index: 3;
}

.hero__image {
  z-index: 1;
  transform: scale(1.08);
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  will-change: opacity, transform;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 42%, rgba(215, 180, 106, 0.2), transparent 26rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(255, 255, 255, 0.04) 56%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92), rgba(8, 7, 5, 0.5) 42%, rgba(8, 7, 5, 0.18)),
    linear-gradient(0deg, rgba(8, 7, 5, 0.94), transparent 54%);
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 58rem;
}

.eyebrow,
.section__label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero .eyebrow {
  opacity: 0.78;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 13rem);
  line-height: 0.84;
  letter-spacing: 0;
  color: rgba(244, 238, 228, 0.86);
  text-shadow: 0 1.4rem 5rem rgba(0, 0, 0, 0.45);
  transform-origin: left center;
  cursor: default;
}

.hero__line {
  margin: 1.6rem 0 0;
  max-width: 44rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  color: rgba(244, 238, 228, 0.82);
  text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.38);
  cursor: default;
}

.hero-letter {
  display: inline-block;
  will-change: transform, color;
  white-space: pre;
}

.hero__copy {
  max-width: 33rem;
  color: rgba(244, 238, 228, 0.62);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.hero__actions,
.filters,
.section__head,
.contact__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(244, 238, 228, 0.18);
  border-radius: 999px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.button--gold {
  color: #11100d;
  background: linear-gradient(135deg, #fff1bf, var(--gold), #9a6b36);
  border-color: transparent;
  box-shadow: 0 1rem 3rem rgba(215, 180, 106, 0.22);
}

.button--glass {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.button:hover {
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  right: clamp(1.2rem, 4vw, 4rem);
  bottom: 2rem;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: rgba(244, 238, 228, 0.62);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.scroll-cue span {
  width: 1px;
  height: 4rem;
  background: linear-gradient(var(--gold), transparent);
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 5vw, 5rem);
}

.section h2 {
  max-width: 56rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section__head {
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.contact__panel {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.82fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.contact__panel p {
  max-width: 42rem;
  color: rgba(244, 238, 228, 0.68);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.85;
}

/* ── About Us ── */
.about-us__header {
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.about-us__headline {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  max-width: 52rem;
}

.about-us__headline em {
  font-style: italic;
  color: var(--gold);
}

.about-us__split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: clamp(4rem, 9vw, 8rem);
}

.about-us__visual {
  display: grid;
  grid-template-columns: 1fr 0.44fr;
  gap: 1rem;
  align-items: start;
}

.about-us__fig {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.48);
}

.about-us__fig img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-us__fig:hover img {
  transform: scale(1.06);
}

.about-us__fig--sm {
  margin-top: 3.5rem;
}

.about-us__fig--sm img {
  aspect-ratio: 2 / 3;
}

.about-us__badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: rgba(11, 10, 8, 0.86);
  border: 1px solid rgba(215, 180, 106, 0.32);
  border-radius: 0.4rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.38);
}

.about-us__badge strong {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.about-us__badge span {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-us__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.about-us__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  line-height: 1.45;
  color: rgba(244, 238, 228, 0.9);
}

.about-us__text {
  margin: 0;
  color: rgba(244, 238, 228, 0.64);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.88;
}

.about-us__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.about-us__sig-line {
  width: 2.4rem;
  height: 1px;
  flex-shrink: 0;
  background: var(--gold);
}

.about-us__signature span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-us__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.about-us__pillar {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: rgba(11, 10, 8, 0.72);
  transition: background 300ms ease;
}

.about-us__pillar:hover {
  background: rgba(215, 180, 106, 0.07);
}

.about-us__pillar-num {
  display: block;
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(215, 180, 106, 0.18);
  transition: color 300ms ease;
}

.about-us__pillar:hover .about-us__pillar-num {
  color: rgba(215, 180, 106, 0.45);
}

.about-us__pillar h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.18;
}

.about-us__pillar p {
  margin: 0;
  color: rgba(244, 238, 228, 0.6);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.78;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(3rem, 7vw, 6rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.stats div {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(11, 10, 8, 0.76);
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.stats strong::after {
  content: "+";
  color: var(--gold);
  font-size: 0.52em;
}

.stats div:nth-child(3) strong::after {
  content: "%";
}

.stats span {
  color: var(--muted);
}

.filters button {
  min-height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  background: transparent;
  padding: 0 0.95rem;
  cursor: pointer;
}

.filters button.active,
.filters button:hover {
  border-color: rgba(215, 180, 106, 0.6);
  background: rgba(215, 180, 106, 0.12);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 19rem;
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #17130f;
  isolation: isolate;
}

.project-card--tall {
  grid-row: span 2;
}

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

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 5, 0.86), transparent 60%);
  z-index: 1;
}

.project-card img {
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.project-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.06);
}

.project-card div {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
}

.project-card span,
.service span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.project-card small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(244, 238, 228, 0.7);
  line-height: 1.5;
}

.project-card.is-hidden {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  min-height: 12rem;
  display: grid;
  align-content: space-between;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, transform 260ms ease;
}

.service:hover {
  background: rgba(215, 180, 106, 0.11);
  transform: translateY(-0.35rem);
}

.service svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
}

.why {
  background:
    linear-gradient(rgba(11, 10, 8, 0.72), rgba(11, 10, 8, 0.9)),
    url("https://images.unsplash.com/photo-1600607688960-e095ff83135c?auto=format&fit=crop&w=2000&q=85") center/cover fixed;
}

.why__wrap {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.why__list {
  display: grid;
  border-top: 1px solid var(--line);
}

.why__list div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.why__list span {
  color: var(--gold);
}

.why__list p {
  margin: 0;
  color: rgba(244, 238, 228, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}

.timeline__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 3;
}

.step {
  min-height: 22rem;
  padding: 1.3rem;
  background: rgba(11, 10, 8, 0.82);
}

.step span {
  color: var(--gold);
}

.step h3 {
  margin: 7rem 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
}

.step p {
  color: rgba(244, 238, 228, 0.66);
  line-height: 1.7;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow: hidden;
}

.testimonial-track article {
  min-width: min(38rem, 86vw);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.testimonial-track p {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.18;
}

.testimonial-track span {
  color: var(--gold);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 1rem;
}

.social-grid img {
  aspect-ratio: 4 / 5;
  border-radius: 0.35rem;
  transition: transform 500ms ease, filter 500ms ease;
}

.social-grid img:hover {
  transform: translateY(-0.5rem);
  filter: brightness(1.12);
}

.text-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(215, 180, 106, 0.35);
}

.contact__panel {
  padding: clamp(1.2rem, 5vw, 4rem);
  border: 1px solid rgba(215, 180, 106, 0.2);
  border-radius: 0.6rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 180, 106, 0.13), transparent 26rem),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
}

.contact__meta {
  align-items: flex-start;
  flex-direction: column;
  margin-top: 2rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  position: relative;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter input {
  width: 100%;
  min-height: 3.6rem;
  border: 1px solid rgba(244, 238, 228, 0.16);
  border-radius: 0.2rem;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.22);
  padding: 1.1rem 0.9rem 0.55rem;
  outline: 0;
}

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

.contact-form label span {
  position: absolute;
  top: 1.08rem;
  left: 0.9rem;
  color: rgba(244, 238, 228, 0.52);
  transition: transform 200ms ease, font-size 200ms ease, color 200ms ease;
}

.contact-form input:focus + span,
.contact-form input:not(:placeholder-shown) + span,
.contact-form textarea:focus + span,
.contact-form textarea:not(:placeholder-shown) + span {
  transform: translateY(-0.62rem);
  font-size: 0.68rem;
  color: var(--gold);
}

.contact-form select {
  padding-top: 0.65rem;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.3rem;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  transition: color 300ms ease;
}

.form-status--error {
  color: #e07878;
}

.whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 110;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #12100c;
  background: linear-gradient(135deg, #fff1bf, var(--gold));
  box-shadow: 0 1rem 3rem rgba(215, 180, 106, 0.28);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  color: rgba(244, 238, 228, 0.62);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer__brand::after {
  content: "";
  position: absolute;
  inset: -10% -25%;
  background: linear-gradient(
    108deg,
    transparent 28%,
    rgba(255, 228, 140, 0.24) 50%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.footer__brand:hover::after {
  transform: translateX(130%);
}

.footer__logo {
  width: min(17rem, 64vw);
  max-height: 6.5rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.7rem 1.7rem rgba(215, 180, 106, 0.16));
  transition: filter 500ms ease;
}

.footer__brand:hover .footer__logo {
  filter:
    drop-shadow(0 0 1.8rem rgba(215, 180, 106, 0.5))
    drop-shadow(0 0.5rem 1.5rem rgba(215, 180, 106, 0.3));
}

.newsletter {
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  min-height: 2.8rem;
  width: min(18rem, 54vw);
  padding: 0 0.8rem;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #11100d;
  padding: 0 1rem;
}

.footer p {
  text-align: right;
}

.reveal,
.reveal-up {
  opacity: 0;
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .nav__links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .about-us__split,
  .contact__panel,
  .why__wrap,
  .footer {
    grid-template-columns: 1fr;
  }

  .about-us__pillars {
    grid-template-columns: 1fr 1fr;
  }

  .about-us__badge {
    left: 1rem;
  }

  .project-grid,
  .service-grid,
  .timeline,
  .social-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .project-card--wide,
  .project-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .timeline {
    display: block;
    background: transparent;
    border: 0;
  }

  .step {
    min-height: 16rem;
    border: 1px solid var(--line);
    margin-bottom: 1rem;
  }

  .step h3 {
    margin-top: 4rem;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .about-us__visual {
    grid-template-columns: 1fr;
  }

  .about-us__fig--sm {
    display: none;
  }

  .about-us__pillars {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .service-grid,
  .social-grid,
  .stats,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-auto-rows: 24rem;
  }

  .service {
    min-height: 9rem;
  }

  .section__head {
    align-items: flex-start;
  }

  .cursor-glow {
    display: none;
  }

  .brand__logo {
    width: 9.5rem;
    height: auto;
    max-height: 5rem;
  }
}

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