:root {
  --page: #f3f1eb;
  --paper: #fffefa;
  --paper-soft: #ebe8df;
  --ink: #18201b;
  --ink-soft: #27322b;
  --muted: #667068;
  --line: rgba(24, 32, 27, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent: #c18a4c;
  --accent-dark: #9f6930;
  --accent-soft: #eee0ca;
  --green: #1f6f49;
  --danger: #ad3c32;
  --success: #176c45;
  --shadow-sm: 0 14px 38px rgba(24, 32, 27, 0.08);
  --shadow-md: 0 24px 80px rgba(24, 32, 27, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

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

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

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol,
figure,
fieldset {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: .98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.7vw, 6.2rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(193, 138, 76, .5);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

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

.button:hover svg:last-child {
  transform: translateX(3px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 32px rgba(24, 32, 27, .18);
}

.button-primary:hover {
  background: #080c09;
  box-shadow: 0 16px 42px rgba(24, 32, 27, .23);
}

.button-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 32px rgba(159, 105, 48, .2);
}

.button-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 42px rgba(159, 105, 48, .25);
}

.button-light {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  border-color: rgba(24, 32, 27, .24);
  box-shadow: var(--shadow-sm);
}

.button-ghost-dark {
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.button-ghost-dark:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.button-text {
  min-height: 46px;
  padding-inline: 5px;
  border-radius: 0;
  color: var(--muted);
}

.button-text:hover {
  color: var(--ink);
  transform: none;
}

.button-whatsapp {
  background: #1d7b50;
  color: #fff;
}

.button-whatsapp:hover {
  background: #17643f;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.has-open-menu {
  border-color: rgba(24, 32, 27, .08);
  background: rgba(247, 245, 239, .93);
  box-shadow: 0 10px 32px rgba(24, 32, 27, .07);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  padding: 7px;
  border-radius: 13px;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(24, 32, 27, .16);
}

.brand-mark i {
  border-radius: 2px;
  background: var(--accent);
}

.brand-mark i:last-child {
  background: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: .95rem;
  letter-spacing: .16em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(24, 32, 27, .72);
  font-size: .87rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
}

.lang-button {
  width: 32px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-button:hover,
.lang-button.is-active {
  background: var(--ink);
  color: #fff;
}

.header-quote {
  min-height: 46px;
  padding-inline: 18px;
  font-size: .82rem;
}

.header-quote svg {
  width: 16px;
  height: 16px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.menu-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--page);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  padding-bottom: 24px;
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: calc(var(--header-height) + 86px) 0 96px;
  background: var(--ink);
  color: #fff;
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(193, 138, 76, .13);
  content: "";
  filter: blur(1px);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-position: center;
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(44px, 7vw, 100px);
}

.hero .eyebrow {
  margin-bottom: 24px;
  color: #d9b685;
}

.hero-copy {
  padding: 30px 0;
}

.hero h1 {
  color: #fff;
}

.hero-lead {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .68);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
  margin-top: 34px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .73);
  font-size: .78rem;
  font-weight: 650;
}

.hero-facts svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(193, 138, 76, .18);
  color: #e2bd89;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-main-image,
.hero-small-image {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #2c342e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

.hero-main-image {
  top: 0;
  right: 0;
  width: 79%;
  height: 75%;
  border-radius: var(--radius-xl) var(--radius-xl) 12px var(--radius-xl);
}

.hero-main-image::after,
.hero-small-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 16, 12, .62));
  content: "";
  pointer-events: none;
}

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

.hero-main-image img {
  object-position: 58% 50%;
}

.hero-main-image figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-main-image figcaption strong {
  color: #fff;
  font-size: .9rem;
  letter-spacing: normal;
  text-transform: none;
}

.hero-small-image {
  bottom: 0;
  width: 34%;
  height: 42%;
  border-radius: 22px;
}

.hero-small-image-one {
  right: 10%;
}

.hero-small-image-two {
  right: 48%;
  bottom: 7%;
  width: 28%;
  height: 35%;
}

.hero-small-image-one img {
  object-position: center 70%;
}

.hero-small-image-two img {
  object-position: center 48%;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 12%;
  left: 3%;
  display: flex;
  width: 116px;
  height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(24, 32, 27, .72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
  transform: rotate(-8deg);
}

.hero-stamp::before,
.hero-stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: inherit;
  content: "";
}

.hero-stamp span {
  color: #dfb980;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stamp small {
  max-width: 72px;
  color: rgba(255, 255, 255, .7);
  font-size: .54rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.project-fit {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(24, 32, 27, .06);
}

.project-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.project-fit-grid > div {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 28px 34px;
  border-right: 1px solid var(--line);
}

.project-fit-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.project-fit-grid strong {
  font-size: .88rem;
}

.project-fit-grid span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading > p {
  font-size: 1rem;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, .65);
  transition: transform .28s var(--ease), background-color .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent-soft);
  content: "";
  opacity: 0;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(193, 138, 76, .38);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

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

.service-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: rgba(24, 32, 27, .29);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-card h3 {
  margin-top: 52px;
  font-size: 1.22rem;
}

.service-card p {
  max-width: 34ch;
  margin-top: 14px;
  font-size: .88rem;
  line-height: 1.7;
}

.portfolio-section {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.section-heading-light .eyebrow {
  color: #d9b685;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, .6);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .62);
  font-size: .73rem;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: #303a33;
  color: #fff;
  cursor: zoom-in;
  transition: opacity .28s ease, transform .28s ease;
}

.portfolio-item.is-filtered {
  display: none;
}

.portfolio-item-wide {
  grid-column: span 2;
}

.portfolio-item-tall {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .45s ease;
}

.portfolio-item:nth-child(2) img,
.portfolio-item:nth-child(5) img,
.portfolio-item:nth-child(6) img,
.portfolio-item:nth-child(7) img {
  object-position: center 56%;
}

.portfolio-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 12, 9, .76));
  content: "";
  transition: background .3s ease;
}

.portfolio-item:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.portfolio-item:hover::after {
  background: linear-gradient(180deg, rgba(8,12,9,.02) 25%, rgba(8, 12, 9, .86));
}

.portfolio-overlay {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-align: left;
}

.portfolio-overlay svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .045);
}

.portfolio-cta p {
  color: rgba(255, 255, 255, .66);
}

.standards-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr);
  gap: clamp(60px, 8vw, 110px);
}

.standards-media {
  position: relative;
  min-height: 710px;
}

.standards-media > img {
  width: 88%;
  height: 650px;
  border-radius: 15px 80px 15px 15px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center 52%;
}

.standards-media::after {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: 0;
  width: 56%;
  height: 84%;
  border-radius: 15px 90px 15px 15px;
  background: var(--accent-soft);
  content: "";
}

.standards-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(390px, 80%);
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}

.standards-note svg {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(193, 138, 76, .16);
  color: #d8ae77;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.standards-note p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.standards-note strong {
  color: #fff;
  font-size: .87rem;
  line-height: 1.35;
}

.standards-note span {
  color: rgba(255, 255, 255, .56);
  font-size: .72rem;
  line-height: 1.5;
}

.standards-copy .eyebrow {
  margin-bottom: 18px;
}

.standards-copy h2 {
  max-width: 12ch;
}

.section-intro {
  max-width: 610px;
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.78;
}

.standard-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.standard-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.standard-list > article > span {
  color: var(--accent-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.standard-list h3 {
  font-size: .98rem;
}

.standard-list p {
  margin-top: 6px;
  font-size: .82rem;
  line-height: 1.6;
}

.process {
  background: var(--paper-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .35);
}

.process-card:first-child {
  border-left: 1px solid var(--line);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.process-card:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.process-card::after {
  position: absolute;
  top: 62px;
  right: -8px;
  z-index: 3;
  width: 15px;
  height: 15px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #e5e2d8;
  content: "";
  transform: rotate(45deg);
}

.process-card:last-child::after {
  display: none;
}

.process-number {
  color: rgba(24, 32, 27, .34);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.process-card > svg {
  width: 44px;
  height: 44px;
  margin-top: 48px;
  padding: 10px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  margin-top: 27px;
  font-size: 1rem;
}

.process-card p {
  margin-top: 11px;
  font-size: .8rem;
  line-height: 1.65;
}

.request-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
}

.request-section::before {
  position: absolute;
  right: -240px;
  bottom: -240px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(193, 138, 76, .08);
  content: "";
}

.request-section::after {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.request-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 92px);
}

.request-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.request-intro .eyebrow {
  margin-bottom: 20px;
  color: #d9b685;
}

.request-intro h2 {
  max-width: 11ch;
  color: #fff;
}

.request-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .61);
  line-height: 1.75;
}

.request-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.request-benefits > div {
  display: grid;
  min-height: 122px;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
}

.request-benefits svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 10px;
  background: rgba(193, 138, 76, .15);
  color: #d9b685;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.request-benefits p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.request-benefits strong {
  color: #fff;
  font-size: .78rem;
  line-height: 1.35;
}

.request-benefits span {
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
  line-height: 1.45;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.direct-contact > span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .45);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 700;
}

.direct-contact a:hover {
  color: #fff;
}

.direct-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.request-card {
  min-height: 720px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .25);
  color: var(--ink);
}

.form-status {
  margin-bottom: 42px;
}

.form-progress-track {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-soft);
}

.form-progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .35s var(--ease);
}

.form-status ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13px;
  list-style: none;
}

.form-status li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9da49f;
  font-size: .68rem;
  font-weight: 700;
  transition: color .25s ease;
}

.form-status li:nth-child(2) {
  justify-content: center;
}

.form-status li:nth-child(3) {
  justify-content: flex-end;
}

.form-status li span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: .64rem;
}

.form-status li.is-active,
.form-status li.is-complete {
  color: var(--ink);
}

.form-status li.is-active span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.form-status li.is-complete span {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.form-step {
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step.is-active {
  animation: formStepIn .34s var(--ease) both;
}

@keyframes formStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step legend {
  width: 100%;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.form-step-intro {
  margin-top: 10px;
  margin-bottom: 28px;
  font-size: .82rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

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

.field {
  min-width: 0;
}

.field label,
.choice-label {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 750;
}

.field label em,
.choice-label em,
.consent-check em {
  color: var(--accent-dark);
  font-style: normal;
}

.field label small {
  margin-left: auto;
  color: #999f9b;
  font-size: .65rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

select {
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  appearance: none;
}

textarea {
  min-height: 145px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #a1a7a3;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(193, 138, 76, .12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: rgba(173, 60, 50, .025);
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: var(--danger);
  font-size: .67rem;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.choice-group {
  margin-top: 24px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-chip input,
.service-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-chip span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.choice-chip input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.choice-chip input:focus-visible + span,
.service-choice input:focus-visible + span {
  outline: 3px solid rgba(193, 138, 76, .4);
  outline-offset: 2px;
}

.service-choice-group {
  margin: 24px 0;
}

.service-choices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.service-choice span {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
}

.service-choice svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-choice b {
  font-size: .66rem;
  line-height: 1.25;
}

.service-choice:hover span {
  border-color: rgba(193, 138, 76, .55);
  color: var(--accent-dark);
}

.service-choice input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.input-suffix {
  position: relative;
}

.input-suffix input {
  padding-right: 48px;
}

.input-suffix > span {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--muted);
  font-size: .78rem;
  transform: translateY(-50%);
}

.textarea-meta {
  display: flex;
  min-height: 18px;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.textarea-meta > small:last-child {
  margin-top: 5px;
  margin-left: auto;
  color: #9aa09c;
  font-size: .64rem;
}

.upload-group {
  margin-top: 26px;
}

.upload-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
}

.upload-heading > div {
  display: flex;
  flex-direction: column;
}

.upload-heading .choice-label {
  margin-bottom: 2px;
}

.upload-heading small {
  color: #969d98;
  font-size: .65rem;
  line-height: 1.45;
}

.upload-heading > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.dropzone {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1.5px dashed rgba(24, 32, 27, .24);
  border-radius: 14px;
  background: #f7f6f1;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
}

.dropzone:hover,
.dropzone.is-dragging {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.dropzone svg {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 11px;
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(24, 32, 27, .08);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropzone strong {
  font-size: .82rem;
}

.dropzone span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .7rem;
}

.file-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.file-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.file-thumb {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 7px;
  background: var(--paper-soft);
  color: var(--accent-dark);
  font-size: .63rem;
  font-weight: 800;
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-info {
  min-width: 0;
}

.file-info strong,
.file-info small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-info strong {
  font-size: .65rem;
}

.file-info small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .59rem;
}

.file-remove {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f0ea;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
}

.file-remove:hover {
  background: rgba(173, 60, 50, .1);
  color: var(--danger);
}

.consent-check,
.whatsapp-check {
  display: grid;
  align-items: start;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.55;
}

.whatsapp-check {
  margin-top: 13px;
}

.consent-check input,
.whatsapp-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin: 2px 0 0;
  accent-color: var(--accent-dark);
}

.consent-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-global-message {
  display: none;
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .72rem;
  line-height: 1.5;
}

.form-global-message.is-error {
  display: block;
  border: 1px solid rgba(173, 60, 50, .25);
  background: rgba(173, 60, 50, .07);
  color: var(--danger);
}

.form-global-message.is-info {
  display: block;
  border: 1px solid rgba(23, 108, 69, .22);
  background: rgba(23, 108, 69, .07);
  color: var(--success);
}

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.form-navigation .button-text {
  margin-right: auto;
}

.submit-button .submit-loading {
  display: none;
}

.submit-button.is-loading {
  pointer-events: none;
  opacity: .75;
}

.submit-button.is-loading .submit-label,
.submit-button.is-loading > svg {
  display: none;
}

.submit-button.is-loading .submit-loading {
  display: inline;
}

.success-panel {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: formStepIn .4s var(--ease) both;
}

.success-icon {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(23, 108, 69, .1);
  color: var(--success);
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-panel .eyebrow {
  margin-bottom: 14px;
}

.success-panel h3 {
  max-width: 15ch;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.success-panel > p:not(.eyebrow):not(.delivery-note) {
  max-width: 550px;
  margin-top: 18px;
}

.reference-box {
  display: inline-flex;
  min-width: 250px;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f4f2ec;
}

.reference-box span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.reference-box strong {
  font-size: 1.15rem;
  letter-spacing: .08em;
}

.delivery-note {
  max-width: 570px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(193, 138, 76, .1);
  color: #755020;
  font-size: .7rem;
  line-height: 1.5;
}

.delivery-note.is-success {
  background: rgba(23, 108, 69, .08);
  color: var(--success);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, .75fr) minmax(500px, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq-intro .eyebrow {
  margin-bottom: 18px;
}

.faq-intro h2 {
  max-width: 11ch;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent-dark);
  font-size: .79rem;
  font-weight: 750;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

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

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: 1fr 28px;
  gap: 24px;
  padding: 16px 2px;
  color: var(--ink);
  font-size: .97rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 50px 27px 2px;
  font-size: .85rem;
  line-height: 1.75;
}

.final-cta {
  padding: 76px 0;
  background: var(--accent-soft);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  margin-bottom: 14px;
}

.final-cta h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.site-footer {
  background: #101511;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, 1fr);
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 62px;
}

.brand-footer .brand-mark {
  background: #fff;
}

.brand-footer .brand-mark i {
  background: var(--accent);
}

.brand-footer .brand-mark i:last-child {
  background: var(--ink);
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, .45);
}

.footer-brand > p {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .4);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, .38);
  font-size: .68rem;
}

.footer-bottom a:hover {
  color: #fff;
}

.lightbox {
  width: min(94vw, 1200px);
  max-width: 1200px;
  height: min(92vh, 900px);
  max-height: 900px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #0e120f;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.lightbox::backdrop {
  background: rgba(5, 8, 6, .86);
  backdrop-filter: blur(8px);
}

.lightbox[open] {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox p {
  padding: 16px 20px 19px;
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(9, 13, 10, .72);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 999px;
  background: #1e7a4f;
  color: #fff;
  box-shadow: 0 16px 38px rgba(14, 70, 43, .3);
  font-size: .74rem;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease;
}

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

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

.noscript-message {
  position: fixed;
  z-index: 9999;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 14px;
  border-radius: 10px;
  background: #fff1d8;
  color: #5f3d12;
  box-shadow: var(--shadow-md);
  font-size: .8rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@media (max-width: 1140px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 74px);
  }

  .hero-grid {
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 50px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-main-image {
    width: 88%;
  }

  .hero-small-image-one {
    right: 0;
  }

  .hero-small-image-two {
    right: 52%;
  }

  .project-fit-grid > div {
    padding-inline: 22px;
  }

  .request-layout {
    grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr);
    gap: 44px;
  }

  .request-benefits {
    grid-template-columns: 1fr;
  }

  .request-benefits > div {
    min-height: auto;
  }
}

@media (max-width: 940px) {
  .section {
    padding: 88px 0;
  }

  .header-quote {
    display: none;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 720px);
    min-height: 620px;
    margin-inline: auto;
  }

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

  .project-fit-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .project-fit-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 640px;
  }

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

  .portfolio-grid {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-item-wide {
    grid-column: span 2;
  }

  .standards-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .standards-media {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .standards-copy {
    width: min(100%, 720px);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-card,
  .process-card:first-child,
  .process-card:last-child {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  }

  .process-card::after {
    display: none;
  }

  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-intro,
  .faq-intro {
    position: static;
  }

  .request-intro h2 {
    max-width: 14ch;
  }

  .request-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro h2 {
    max-width: 14ch;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 13.5vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .brand-copy small {
    display: none;
  }

  .language-switch {
    gap: 0;
    padding: 3px;
  }

  .lang-button {
    width: 29px;
    height: 28px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 55px;
  }

  .hero-pattern {
    background-size: 58px 58px;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: .97rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-main-image {
    width: 92%;
    height: 74%;
    border-radius: 28px 28px 8px 28px;
  }

  .hero-small-image {
    height: 38%;
  }

  .hero-small-image-one {
    width: 38%;
  }

  .hero-small-image-two {
    right: 48%;
    width: 31%;
  }

  .hero-stamp {
    top: 9%;
    left: 0;
    width: 92px;
    height: 92px;
  }

  .hero-stamp span {
    font-size: 1.45rem;
  }

  .hero-main-image figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .project-fit-grid {
    grid-template-columns: 1fr;
  }

  .project-fit-grid > div,
  .project-fit-grid > div:first-child,
  .project-fit-grid > div:nth-child(3) {
    min-height: 90px;
    padding: 20px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .project-fit-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
    padding: 27px;
  }

  .service-number {
    top: 27px;
    right: 27px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .portfolio-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-right: -14px;
    margin-left: -14px;
    padding-inline: 14px;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .portfolio-grid {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item-wide {
    grid-column: span 2;
  }

  .portfolio-item-tall {
    grid-row: span 1;
  }

  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(7) {
    grid-row: span 2;
  }

  .portfolio-overlay {
    right: 13px;
    bottom: 12px;
    left: 13px;
    font-size: .68rem;
  }

  .portfolio-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .portfolio-cta .button {
    width: 100%;
  }

  .standards-media {
    min-height: 530px;
  }

  .standards-media > img {
    width: 92%;
    height: 480px;
    border-radius: 12px 54px 12px 12px;
  }

  .standards-note {
    width: 92%;
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .standards-note svg {
    width: 36px;
    height: 36px;
  }

  .standard-list article {
    gap: 13px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 255px;
    padding: 26px;
  }

  .process-card > svg {
    margin-top: 32px;
  }

  .request-section {
    padding: 78px 0;
  }

  .request-benefits {
    grid-template-columns: 1fr;
  }

  .request-card {
    min-height: auto;
    padding: 24px 17px;
    border-radius: 19px;
  }

  .form-status {
    margin-bottom: 34px;
  }

  .form-status li {
    gap: 5px;
  }

  .form-status li small {
    display: none;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .service-choices {
    grid-template-columns: repeat(2, 1fr);
  }

  .file-list {
    grid-template-columns: 1fr;
  }

  .upload-heading {
    align-items: start;
  }

  .dropzone {
    min-height: 150px;
  }

  .form-navigation {
    gap: 10px;
  }

  .form-navigation .button:not(.button-text) {
    flex: 1;
    padding-inline: 15px;
  }

  .success-actions {
    width: 100%;
    flex-direction: column;
  }

  .success-actions .button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: .88rem;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .lightbox {
    width: 96vw;
    height: 88vh;
    border-radius: 12px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: .82rem;
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 7px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .portfolio-grid {
    grid-auto-rows: 215px;
  }

  .portfolio-item,
  .portfolio-item-wide,
  .portfolio-item-tall,
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(5) {
    grid-row: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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

/* Legal and system pages */
.legal-page {
  background: var(--page);
}

.legal-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, .96);
}

.legal-header .header-inner {
  min-height: var(--header-height);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 78px;
  background: var(--ink);
  color: #fff;
}

.legal-hero::before,
.error-page::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

.legal-hero .container,
.error-page .container {
  position: relative;
}

.legal-hero .eyebrow {
  margin-bottom: 24px;
  color: #d9ad73;
}

.legal-hero h1 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 28px;
  color: #b8c0ba;
  font-size: 1.05rem;
}

.legal-content {
  padding: 84px 0 118px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, .88fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-aside strong {
  display: block;
  margin-bottom: 13px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-aside a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: .92rem;
  transition: color .2s ease;
}

.legal-aside a:hover {
  color: var(--accent-dark);
}

.legal-document {
  min-width: 0;
}

.legal-document section {
  padding: 0 0 38px;
  scroll-margin-top: 110px;
}

.legal-document section + section {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  max-width: none;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.legal-document h3 {
  margin: 24px 0 9px;
}

.legal-document p,
.legal-document li {
  color: #515c54;
}

.legal-document p + p,
.legal-document p + ul,
.legal-document ul + p {
  margin-top: 14px;
}

.legal-document ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 7px;
}

.legal-document a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-notice {
  margin-bottom: 38px;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--accent-soft);
}

.legal-notice p {
  color: #5a4328;
}

.error-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 48px 0;
  background: var(--ink);
  text-align: center;
}

.error-page .brand {
  justify-content: center;
  margin-bottom: 54px;
  color: #fff;
}

.error-code {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 24vw, 16rem);
  line-height: .72;
}

.error-page h1 {
  max-width: none;
  margin-top: 34px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.error-page p {
  max-width: 580px;
  margin: 24px auto 30px;
  color: #b8c0ba;
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 84px 0 62px;
  }

  .legal-content {
    padding: 62px 0 84px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

/* Header contrast while it overlays the dark hero. */
.site-header:not(.is-scrolled):not(.has-open-menu) .brand-copy strong {
  color: #fff;
}

.site-header:not(.is-scrolled):not(.has-open-menu) .brand-copy small {
  color: rgba(255, 255, 255, .58);
}

.site-header:not(.is-scrolled):not(.has-open-menu) .desktop-nav a {
  color: rgba(255, 255, 255, .72);
}

.site-header:not(.is-scrolled):not(.has-open-menu) .desktop-nav a:hover {
  color: #fff;
}

.site-header:not(.is-scrolled):not(.has-open-menu) .language-switch {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.site-header:not(.is-scrolled):not(.has-open-menu) .lang-button {
  color: rgba(255, 255, 255, .62);
}

.site-header:not(.is-scrolled):not(.has-open-menu) .lang-button:hover,
.site-header:not(.is-scrolled):not(.has-open-menu) .lang-button.is-active {
  background: #fff;
  color: var(--ink);
}

.site-header:not(.is-scrolled):not(.has-open-menu) .header-quote {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: none;
}

.site-header:not(.is-scrolled):not(.has-open-menu) .header-quote:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
}

.site-header:not(.is-scrolled):not(.has-open-menu) .menu-button {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* Compact language selector used on small screens when all six languages are available. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.language-select-wrap {
  position: relative;
  display: none;
}

.language-select-wrap::after {
  content: "⌄";
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-58%);
}

.language-select {
  width: 64px;
  height: 38px;
  padding: 0 25px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.language-select:focus-visible {
  outline: 3px solid rgba(216, 175, 120, .36);
  outline-offset: 2px;
}

.site-header:not(.is-scrolled):not(.has-open-menu) .language-select {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.site-header:not(.is-scrolled):not(.has-open-menu) .language-select-wrap::after {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 700px) {
  .language-switch {
    display: none;
  }

  .language-select-wrap {
    display: block;
  }
}

@media (max-width: 430px) {
  .legal-quote-button {
    display: none;
  }
}
