:root {
  --night: #071019;
  --night-2: #0b1823;
  --night-3: #102331;
  --ink: #101820;
  --paper: #f3f2ed;
  --paper-2: #e7e5dd;
  --white: #fffdf7;
  --muted: #aeb8bf;
  --muted-dark: #59636a;
  --gold: #d6b36e;
  --gold-light: #f0d99f;
  --blue: #72c8f1;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(12, 25, 35, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  --radius: 4px;
  --header-height: 88px;
  --shell: min(1280px, calc(100vw - 96px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  background: var(--white);
  color: var(--night);
  transform: translateY(-160%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.section-tight {
  padding: 88px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-mid {
  background: var(--night-2);
}

.section-rule {
  border-top: 1px solid var(--line);
}

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

h1,
h2,
h3 {
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.8rem);
}

h2 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(2.35rem, 4.5vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  max-width: 72ch;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.75;
}

.section-light .lead {
  color: var(--muted-dark);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: #8a662e;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: #0a141d;
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.button-dark {
  border-color: var(--night);
  background: var(--night);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--night-3);
  background: var(--night-3);
  color: var(--white);
}

.button-sm {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.77rem;
}

.button[aria-disabled="true"],
.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 750;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link svg {
  transition: transform 180ms ease;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(6, 15, 23, 0.12);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: var(--line);
  background: rgba(6, 15, 23, 0.96);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  width: 200px;
  height: 64px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
}

.brand img {
  width: 196px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.language-switch {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.nav-link {
  position: relative;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 640;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown.is-active > .nav-link {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-dropdown.is-active > .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: grid;
  width: 24px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 13px;
  transition: transform 180ms ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 7px);
  left: -20px;
  display: grid;
  min-width: 300px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #0c1923;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu a {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
}

.dropdown-menu a:last-child {
  border: 0;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown.is-open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

/* Hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 66px;
  background: var(--night);
}

.hero-media,
.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05);
  animation: heroScale 12s ease-out both;
}

.hero-media::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 12, 19, 0.95) 0%, rgba(4, 12, 19, 0.77) 48%, rgba(4, 12, 19, 0.25) 100%);
  content: "";
}

.hero-media::after {
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 12, 19, 0.88), transparent 44%);
  content: "";
}

@keyframes heroScale {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 820px) 1fr;
  align-items: end;
  gap: 80px;
}

.hero-content h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6.1vw, 7.1rem);
}

.hero-content .lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  padding: 24px 0 6px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-note span {
  display: block;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-scroll::after {
  width: 52px;
  height: 1px;
  background: currentColor;
  content: "";
}

/* Trust */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08141e;
}

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

.trust-intro {
  padding-right: 34px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-item {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-left: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

/* Sections */
.section-heading {
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.section-light .split-heading > p {
  color: var(--muted-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 500px;
  grid-column: span 5;
  overflow: hidden;
  border: 1px solid rgba(214, 179, 110, 0.2);
  border-radius: 20px;
  background: var(--night-3);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card img,
.service-card::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card img.service-media-retail {
  object-position: 52% center;
}

.service-card img.service-media-seasonal {
  object-position: 50% center;
}

.service-card::after {
  background:
    linear-gradient(0deg, rgba(4, 12, 19, 0.98) 0%, rgba(4, 12, 19, 0.72) 27%, rgba(4, 12, 19, 0.08) 72%),
    linear-gradient(110deg, rgba(7, 16, 25, 0.26), transparent 58%);
  content: "";
}

.service-card:hover {
  border-color: rgba(232, 201, 137, 0.55);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-5px);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px;
}

.service-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 201, 137, 0.5);
  border-radius: 50%;
  background: rgba(7, 16, 25, 0.54);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.service-copy h3 {
  margin-top: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  line-height: 1.05;
}

.service-copy p {
  max-width: 52ch;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

/* Projects */
.projects-section {
  overflow: hidden;
}

.filter-bar {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  margin: -14px 0 42px;
  padding: 14px 1px 12px;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 680;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--night);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 46px 18px;
}

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

.project-card:nth-child(4n + 1) {
  grid-column: span 7;
}

.project-card:nth-child(4n + 2) {
  grid-column: span 5;
}

.project-card[hidden] {
  display: none;
}

.project-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--night-3);
}

.project-card:nth-child(4n + 2) .project-image,
.project-card:nth-child(4n + 3) .project-image {
  aspect-ratio: 4 / 3;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 19, 0.22);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-view {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: var(--white);
  color: var(--night);
  font-size: 0.73rem;
  font-weight: 760;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.project-card:hover .project-view,
.project-image:focus-visible .project-view {
  opacity: 1;
  transform: translateY(0);
}

.project-copy {
  padding: 20px 0 0;
}

.project-copy h3 {
  margin: 0;
}

.project-copy h3 a:hover {
  color: var(--gold-light);
}

.project-category {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-state {
  padding: 50px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.section-action {
  margin-top: 50px;
  text-align: center;
}

/* Advantages */
.advantage-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 9vw;
}

.advantage-layout .section-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.advantage-list {
  border-top: 1px solid var(--line-dark);
}

.advantage-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-dark);
}

.advantage-item span {
  color: #9d793c;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.advantage-item h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.advantage-item p {
  margin: 0;
  color: var(--muted-dark);
}

/* Process */
.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 58px;
}

.process-item {
  position: relative;
  padding: 34px 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.process-item::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--night-2);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.process-item span {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.process-item h3 {
  margin: 16px 0 10px;
  font-size: 1.12rem;
}

.process-item p {
  margin: 0;
  padding-right: 13px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Catalogs */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.catalog-grid-featured {
  grid-template-columns: minmax(0, 420px);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(8, 29, 43, 0.1);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(8, 29, 43, 0.1);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.catalog-card:hover {
  box-shadow: 0 26px 60px rgba(8, 29, 43, 0.16);
  transform: translateY(-4px);
}

.catalog-cover {
  position: relative;
  display: flex;
  min-height: 0;
  aspect-ratio: 4 / 3;
  flex: none;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  background: #102432;
  color: var(--white);
}

.catalog-cover::after {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(214, 179, 110, 0.45);
  border-radius: 50%;
  content: "";
}

.catalog-cover.has-image {
  padding: 0;
}

.catalog-cover.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.catalog-cover.has-image::after {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(0deg, rgba(4, 12, 19, 0.82), rgba(4, 12, 19, 0.08) 58%);
}

.catalog-card:hover .catalog-cover.has-image img {
  transform: scale(1.035);
}

.catalog-cover.has-image img.catalog-image-tree {
  object-position: center 42%;
}

.catalog-cover-title {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(232, 201, 137, 0.42);
  border-radius: 10px;
  background: rgba(7, 16, 25, 0.78);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-wrap: balance;
  backdrop-filter: blur(9px);
}

.catalog-mark {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-cover h3 {
  position: relative;
  z-index: 1;
  max-width: 250px;
  margin: 0;
  font-size: 2rem;
}

.catalog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.catalog-body p {
  min-height: 50px;
  margin-bottom: 20px;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
  margin-top: auto;
}

.catalog-actions a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 760;
}

.catalog-actions a:hover {
  color: #8a662e;
}

.catalog-actions .is-muted {
  border: 0;
  color: #7d8589;
}

/* Quote */
.quote-section {
  background: var(--gold);
  color: var(--night);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
}

.quote-intro {
  align-self: start;
}

.quote-intro .eyebrow {
  color: #71501c;
}

.quote-intro h2 {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
}

.quote-intro p {
  color: rgba(7, 16, 25, 0.72);
}

.quote-contact {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.quote-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 720;
}

.quote-contact svg {
  width: 19px;
  height: 19px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  padding: 40px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #34414a;
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #c8c7c0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #55788c;
  outline: 3px solid rgba(114, 200, 241, 0.3);
}

.field small {
  color: #687178;
  font-size: 0.73rem;
}

.file-field input {
  padding: 9px;
  background: #ecebe5;
}

.file-field input::file-selector-button {
  margin-right: 12px;
  padding: 8px 11px;
  border: 0;
  background: var(--night);
  color: var(--white);
  cursor: pointer;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #586169;
  font-size: 0.76rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--night);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit-row {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 20px;
}

.form-submit-row .button {
  flex: 0 0 auto;
}

.form-status {
  margin: 0;
  color: #536069;
  font-size: 0.8rem;
}

.form-status.is-success {
  color: #285e42;
}

.form-status.is-error {
  color: #9c302d;
}

/* Page hero */
.page-hero {
  position: relative;
  display: grid;
  min-height: 68svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 80px;
  background: var(--night-2);
}

.page-hero::before {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(114, 200, 241, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero::after {
  position: absolute;
  right: 16%;
  bottom: -30%;
  width: 27vw;
  height: 27vw;
  border: 1px solid rgba(214, 179, 110, 0.18);
  transform: rotate(32deg);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 80px;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 0;
}

.page-hero .lead {
  margin-bottom: 10px;
}

.page-hero-image,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-image img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image::after,
.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 19, 0.96), rgba(4, 12, 19, 0.66) 58%, rgba(4, 12, 19, 0.4));
  content: "";
}

/* Services page */
.service-detail-list {
  display: grid;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-top: 1px solid var(--line-dark);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-detail:nth-child(even) .service-detail-image,
.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-image,
.service-detail-media {
  min-height: 520px;
  overflow: hidden;
}

.service-detail-image img,
.service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-image img.service-media-retail,
.service-detail-media img.service-media-retail {
  object-position: 52% center;
}

.service-detail-image img.service-media-seasonal,
.service-detail-media img.service-media-seasonal {
  object-position: 50% center;
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.service-detail-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.3vw, 3.9rem);
}

.service-detail-copy p {
  color: var(--muted-dark);
}

.service-points {
  display: grid;
  gap: 11px;
  margin: 17px 0 28px;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 21px;
  font-size: 0.9rem;
  font-weight: 650;
}

.service-points li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #8a662e;
  border-radius: 50%;
  content: "";
}

/* Project detail */
.project-detail-hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
}

.project-detail-media,
.project-detail-media::after {
  position: absolute;
  inset: 0;
}

.project-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-media::after {
  background: linear-gradient(0deg, rgba(4, 12, 19, 0.97) 0%, rgba(4, 12, 19, 0.12) 70%), linear-gradient(90deg, rgba(4, 12, 19, 0.54), transparent);
  content: "";
}

.project-detail-heading {
  position: relative;
  z-index: 2;
  padding-bottom: 68px;
}

.project-detail-heading h1 {
  max-width: 950px;
  margin-bottom: 20px;
}

.project-detail-heading > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.back-link svg {
  transform: rotate(180deg);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.detail-grid h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.detail-grid p {
  color: var(--muted-dark);
}

.observation-list {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.observation-list li {
  position: relative;
  padding: 24px 20px 24px 38px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1.05rem;
  font-weight: 650;
}

.observation-list li::before {
  position: absolute;
  top: 31px;
  left: 2px;
  width: 18px;
  height: 1px;
  background: #8a662e;
  content: "";
}

.archive-note {
  display: flex;
  gap: 24px;
  margin-top: 70px;
  padding: 22px 24px;
  border: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.archive-note strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.gallery-section {
  background: var(--night-2);
}

.touch-gallery {
  display: grid;
  grid-auto-columns: minmax(74%, 980px);
  grid-auto-flow: column;
  overflow-x: auto;
  gap: 18px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
}

.touch-gallery figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--night-3);
  scroll-snap-align: start;
}

.touch-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-section {
  background: var(--night);
}

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

.project-grid-three .project-image,
.project-grid-three .project-card:nth-child(n) .project-image {
  aspect-ratio: 4 / 3;
}

.project-cta {
  padding: 110px 0;
  background: var(--blue);
  color: var(--night);
  text-align: center;
}

.project-cta .shell {
  display: grid;
  justify-items: center;
}

.project-cta .eyebrow {
  color: #28566d;
}

.project-cta h2 {
  max-width: 1000px;
}

/* About */
.statement,
.statement-block {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 8vw;
}

.statement h2,
.statement-block h2 {
  margin: 0;
}

.statement-copy {
  padding-top: 12px;
}

.statement-copy p {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.value-card {
  min-height: 300px;
  padding: 40px;
  background: var(--night-2);
}

.value-card span {
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin-top: 70px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.audience-grid span,
.audience-grid > div {
  display: flex;
  min-height: 120px;
  align-items: flex-end;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.94rem;
  font-weight: 680;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.contact-card {
  min-height: 270px;
  padding: 38px;
  background: var(--paper);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid var(--line-dark);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h2 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--muted-dark);
  font-style: normal;
}

.contact-card a:hover {
  color: #7c5b27;
}

.map-panel {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 40px;
  background: #102532;
  color: var(--white);
  text-align: center;
}

.map-panel-inner {
  max-width: 570px;
}

.map-lines {
  position: relative;
  width: 150px;
  height: 120px;
  margin: 0 auto 35px;
}

.map-lines::before,
.map-lines::after {
  position: absolute;
  border: 1px solid rgba(114, 200, 241, 0.4);
  content: "";
  transform: rotate(25deg);
}

.map-lines::before { inset: 0 28px 0 12px; }
.map-lines::after { inset: 18px 0 18px 42px; transform: rotate(-18deg); }

.map-panel h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.map-panel p {
  margin-inline: auto;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 82px 0 24px;
  border-top: 1px solid var(--line);
  background: #050c12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1.35fr;
  gap: 5vw;
  padding-bottom: 70px;
}

.brand-footer {
  width: 210px;
  height: 70px;
  margin-bottom: 22px;
}

.brand-footer img {
  width: 205px;
}

.footer-brand p,
.footer-grid > div > p {
  margin-bottom: 0;
  color: #8e9ba5;
  font-size: 0.84rem;
}

.footer-title {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.site-footer .text-link {
  color: #9ca7ae;
  font-size: 0.82rem;
}

.footer-links a:hover,
.site-footer .text-link:hover {
  color: var(--white);
}

.site-footer .text-link {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #71808a;
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #147b58;
  color: white;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  background: #106546;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 120px 0 70px;
  text-align: center;
}

.not-found strong {
  display: block;
  margin-bottom: -25px;
  color: rgba(214, 179, 110, 0.14);
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.not-found p {
  margin: 0 auto 30px;
  color: var(--muted);
}

/* References */
.references-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 105px) 0 105px;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 179, 110, 0.18), transparent 31%),
    linear-gradient(135deg, #071019 0%, #0b1822 100%);
}

.references-hero::after {
  position: absolute;
  right: -7vw;
  bottom: -24vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(214, 179, 110, 0.16);
  border-radius: 50%;
  content: "";
}

.references-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 8vw;
}

.references-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 5.8rem);
}

.references-hero .lead {
  margin: 0 0 8px;
  color: #c2cbd1;
}

.text-link-dark {
  margin-top: 20px;
  color: #805e22;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.reference-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 12px 12px 18px;
  border: 1px solid #dfe3e6;
  border-radius: 12px;
  background: #fff;
  color: #071019;
  box-shadow: 0 12px 32px rgba(7, 16, 25, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.reference-card:hover {
  border-color: rgba(164, 121, 48, 0.5);
  box-shadow: 0 18px 42px rgba(7, 16, 25, 0.11);
  transform: translateY(-4px);
}

.reference-logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 202 / 138;
  border-radius: 7px;
  background: #f3f4f5;
}

.reference-logo > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 796.04%;
  max-width: none;
  height: auto;
}

.reference-logo > img[style*="--x:45;"] { left: -22.277%; }
.reference-logo > img[style*="--x:263;"] { left: -130.198%; }
.reference-logo > img[style*="--x:480;"] { left: -237.624%; }
.reference-logo > img[style*="--x:698;"] { left: -345.545%; }
.reference-logo > img[style*="--x:915;"] { left: -452.970%; }
.reference-logo > img[style*="--x:1133;"] { left: -560.891%; }
.reference-logo > img[style*="--x:1351;"] { left: -668.812%; }
.reference-logo > img[style*="--y:57"] { top: -41.304%; }
.reference-logo > img[style*="--y:212"] { top: -153.623%; }
.reference-logo > img[style*="--y:366"] { top: -265.217%; }
.reference-logo > img[style*="--y:521"] { top: -377.536%; }
.reference-logo > img[style*="--y:675"] { top: -489.130%; }
.reference-logo > img[style*="--y:829"] { top: -600.725%; }

.reference-card h3 {
  margin: 15px 5px 0;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.reference-legal-note {
  margin-top: 34px;
  margin-bottom: 0;
  color: #68747c;
  font-size: 0.72rem;
  line-height: 1.65;
}

.reference-logo-contain {
  display: grid;
  place-items: center;
}

.reference-logo > img.reference-logo-official {
  position: static;
  width: auto;
  max-width: 76%;
  height: 82%;
  object-fit: contain;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease var(--delay, 0ms), transform 620ms ease var(--delay, 0ms);
}

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

@media (max-width: 1180px) {
  :root { --shell: min(100% - 56px, 1120px); }
  .site-nav { gap: 16px; }
  .nav-cta { display: none; }
  .hero-content { grid-template-columns: minmax(0, 800px); }
  .hero-note { display: none; }
  .service-card { grid-column: span 6; }
  .service-card:nth-child(1),
  .service-card:nth-child(4) { grid-column: span 6; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid-featured { grid-template-columns: minmax(0, 420px); }
  .reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quote-layout { gap: 5vw; }
  .footer-grid { grid-template-columns: 1.4fr 0.7fr 0.9fr 1.2fr; gap: 32px; }
}

@media (max-width: 920px) {
  :root { --header-height: 76px; --shell: min(100% - 40px, 820px); }
  .section { padding: 96px 0; }
  .menu-toggle { display: grid; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + 40px) 30px 40px;
    background: #071019;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .nav-link::after { display: none; }
  .nav-dropdown { display: grid; grid-template-columns: 1fr 52px; }
  .dropdown-toggle { width: 52px; height: 58px; border-bottom: 1px solid var(--line); }
  .dropdown-menu { position: static; display: none; grid-column: 1 / -1; min-width: 0; padding: 8px 0 14px 18px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-dropdown.is-open .dropdown-menu { display: grid; }
  .language-switch { width: 48px; height: 48px; margin-top: 22px; }
  .nav-cta { display: inline-flex; margin-top: 28px; align-self: flex-start; }
  .hero-content h1 { font-size: clamp(3.1rem, 9vw, 6rem); }
  .hero-scroll { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-intro { grid-column: 1 / -1; padding: 0 0 18px; }
  .trust-item { min-height: 45px; padding: 0; border: 0; }
  .split-heading,
  .page-hero-content { grid-template-columns: 1fr; gap: 24px; }
  .references-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .references-hero .lead { max-width: 650px; }
  .split-heading > p { max-width: 620px; }
  .advantage-layout { grid-template-columns: 1fr; gap: 45px; }
  .advantage-layout .section-heading { position: static; }
  .process-list { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .quote-layout { grid-template-columns: 1fr; gap: 48px; }
  .quote-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; }
  .quote-intro .eyebrow, .quote-intro h2 { grid-column: 1 / -1; }
  .quote-intro p, .quote-contact { margin: 0; }
  .service-detail { min-height: 0; }
  .service-detail-copy { padding: 8vw 6vw; }
  .detail-grid { gap: 6vw; }
  .statement, .statement-block { grid-template-columns: 1fr; gap: 30px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 230px; }
  .value-card h3 { margin-top: 40px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 78px 0; }
  .section-tight { padding: 64px 0; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  h2 { font-size: clamp(2.25rem, 10.5vw, 3.5rem); }
  .brand { width: 160px; height: 54px; }
  .brand img { width: 156px; }
  .home-hero { min-height: 100svh; padding-bottom: 40px; }
  .hero-media::before { background: linear-gradient(90deg, rgba(4, 12, 19, 0.86), rgba(4, 12, 19, 0.54)), linear-gradient(0deg, rgba(4, 12, 19, 0.95), transparent 65%); }
  .hero-media img { object-position: 45% center; }
  .hero-content h1 { margin-bottom: 20px; font-size: clamp(3rem, 14vw, 4.3rem); }
  .hero-content .lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; column-gap: 15px; }
  .trust-item { font-size: 0.78rem; }
  .service-grid { display: grid; grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(n) { min-height: 410px; grid-column: 1; }
  .service-card.service-card-wide-media { min-height: 330px; }
  .service-card img.service-media-retail { object-position: 100% center; }
  .service-detail-image img.service-media-retail,
  .service-detail-media img.service-media-retail { object-position: 78% center; }
  .service-copy { padding: 26px; }
  .filter-bar { margin-right: -16px; }
  .project-grid { grid-template-columns: 1fr; gap: 40px; }
  .project-card,
  .project-card:nth-child(n),
  .project-grid-three .project-card:nth-child(n) { grid-column: 1; }
  .project-image,
  .project-card:nth-child(n) .project-image { aspect-ratio: 4 / 3; }
  .project-view { opacity: 1; transform: none; }
  .advantage-item { grid-template-columns: 38px 1fr; gap: 13px; }
  .process-list { grid-template-columns: 1fr; gap: 0; margin-left: 8px; }
  .process-item { min-height: 138px; padding: 0 0 28px 35px; border-top: 0; border-left: 1px solid rgba(255, 255, 255, 0.28); }
  .process-item::before { top: 4px; left: -5px; }
  .process-item h3 { margin-top: 8px; }
  .process-item p { max-width: 360px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 38px; }
  .reference-card { padding: 7px 7px 14px; }
  .reference-card h3 { margin: 12px 4px 0; font-size: 0.75rem; }
  .references-hero { padding: calc(var(--header-height) + 76px) 0 76px; }
  .references-hero h1 { font-size: clamp(2.8rem, 12vw, 4.3rem); }
  .catalog-card { min-height: 470px; }
  .quote-intro { display: block; }
  .quote-contact { margin-top: 28px; }
  .quote-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .field-full { grid-column: 1; }
  .form-submit-row { grid-column: 1; align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .page-hero { min-height: 72svh; padding-bottom: 55px; }
  .page-hero::before { width: 78vw; height: 78vw; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-image,
  .service-detail:nth-child(even) .service-detail-media { order: 0; }
  .service-detail-image,
  .service-detail-media { min-height: 390px; }
  .service-detail-copy { padding: 54px 16px 70px; }
  .project-detail-heading { padding-bottom: 40px; }
  .back-link { margin-bottom: 34px; }
  .detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .archive-note { flex-direction: column; gap: 7px; margin-top: 48px; }
  .touch-gallery { width: calc(100% - 16px); margin-left: 16px; grid-auto-columns: 88%; }
  .touch-gallery figure { aspect-ratio: 4 / 3; }
  .project-cta { padding: 78px 0; }
  .value-grid { display: grid; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid span, .audience-grid > div { min-height: 100px; padding: 16px; font-size: 0.82rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 235px; padding: 28px; }
  .contact-icon { margin-bottom: 35px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .footer-bottom { gap: 12px; flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

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