@charset "UTF-8";

:root {
  --ink: #121716;
  --ink-soft: #1d2422;
  --paper: #f6f3ed;
  --white: #fffdf9;
  --surface: #eae5dd;
  --surface-dark: #dcd5ca;
  --muted: #626a67;
  --line: rgba(18, 23, 22, 0.14);
  --line-light: rgba(255, 253, 249, 0.18);
  --bronze: #b98249;
  --bronze-dark: #76502c;
  --whatsapp: #1f8f55;
  --shadow: 0 24px 60px rgba(18, 23, 22, 0.15);
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(78px, 10vw, 148px);
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img {
  height: auto;
}

svg {
  display: block;
}

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--bronze);
  font-style: normal;
}

address {
  font-style: normal;
}

::selection {
  background: var(--bronze);
  color: var(--white);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--bronze-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 35px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: #d6a670;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

.button svg,
.text-link svg,
.nav-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 240ms var(--ease);
}

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

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

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: var(--bronze);
  color: var(--white);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button--glass:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

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

.button--dark:hover {
  background: var(--bronze-dark);
}

.button--outline-dark {
  border-color: rgba(18, 23, 22, 0.25);
  background: transparent;
  color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.36);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link--dark {
  border-color: rgba(18, 23, 22, 0.3);
  color: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.utility-bar {
  overflow: hidden;
  max-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 13, 12, 0.72);
  transition: max-height 300ms var(--ease), opacity 300ms ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.utility-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 200ms ease;
}

.utility-bar a:hover {
  color: var(--white);
}

.utility-bar svg {
  width: 14px;
  fill: none;
  stroke: var(--bronze);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-shell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 300ms ease, border-color 300ms ease;
}

.nav-shell__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.site-header.is-scrolled .utility-bar {
  max-height: 0;
  opacity: 0;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 17, 15, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

.brand__logo-crop {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: #141716;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.brand__logo-crop img {
  position: absolute;
  top: -3px;
  left: -32px;
  width: 113px;
  max-width: none;
  height: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand__text strong {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand__text span {
  margin-top: 5px;
  color: rgba(255, 253, 249, 0.63);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.77rem;
  font-weight: 600;
  transition: color 200ms ease;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav-list a:hover {
  color: var(--white);
}

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

.nav-list__mobile-contact {
  display: none;
}

.nav-cta {
  display: inline-flex;
  min-height: 43px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.nav-cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.nav-cta svg {
  width: 17px;
}

.menu-toggle,
.nav-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 57% center;
  animation: heroScale 1.6s var(--ease) both;
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 11, 10, 0.92) 0%, rgba(7, 11, 10, 0.76) 34%, rgba(7, 11, 10, 0.26) 66%, rgba(7, 11, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 11, 10, 0.7) 0%, transparent 42%);
}

.hero__inner {
  display: flex;
  min-height: max(760px, 100svh);
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-top: 170px;
  padding-bottom: 112px;
}

.hero__content {
  min-width: 0;
  max-width: 790px;
  animation: heroUp 900ms 180ms var(--ease) both;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.1vw, 5.7rem);
  font-weight: 500;
  line-height: 0.99;
  text-wrap: balance;
}

.hero h1 em {
  display: inline;
  color: #d9ad78;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

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

.hero__trust {
  display: grid;
  min-width: 235px;
  gap: 0;
  padding-bottom: 2px;
  animation: heroUp 900ms 420ms var(--ease) both;
}

.hero__trust > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__trust strong {
  color: var(--bronze);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__trust span {
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.hero__scroll {
  position: absolute;
  right: 50%;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 253, 249, 0.65);
  transform: translateX(50%);
}

.hero__scroll span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* Section heading */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  margin-bottom: clamp(46px, 6vw, 80px);
}

.section-heading h2,
.process__intro h2,
.faq__intro h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
}

.section-heading > p,
.process__intro > p:last-child,
.faq__intro > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading--compact {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
}

/* Services */
.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  isolation: isolate;
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 35px rgba(18, 23, 22, 0.08);
}

.service-card:nth-child(1) {
  grid-column: span 7;
  min-height: 530px;
}

.service-card:nth-child(2) {
  grid-column: span 5;
  min-height: 530px;
}

.service-card:nth-child(6) {
  grid-column: span 12;
  min-height: 500px;
}

.service-card picture,
.service-card img,
.service-card__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.service-card:nth-child(2) img {
  object-position: 52% center;
}

.service-card:nth-child(6) img {
  object-position: center 58%;
}

.service-card__shade {
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 11, 10, 0.9) 0%, rgba(7, 11, 10, 0.08) 62%);
  transition: background 400ms ease;
}

.service-card__number {
  position: absolute;
  top: 25px;
  left: 27px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(10, 15, 13, 0.14);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.service-card__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 7px 18px;
}

.service-card__kicker {
  grid-column: 1 / -1;
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card__content strong {
  max-width: 420px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-card__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 300ms var(--ease);
}

.service-card__arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.service-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.service-card:hover .service-card__arrow {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  transform: translateX(4px);
}

/* Craft */
.craft {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.craft::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(185, 130, 73, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(185, 130, 73, 0.035), 0 0 0 180px rgba(185, 130, 73, 0.025);
  pointer-events: none;
}

.craft__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.craft__visual {
  position: relative;
}

.craft__visual picture {
  overflow: hidden;
  border-radius: var(--radius);
}

.craft__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.craft__badge {
  position: absolute;
  right: -32px;
  bottom: 42px;
  display: flex;
  min-width: 184px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(18, 23, 22, 0.86);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.craft__badge svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--bronze);
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.craft__badge span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.71rem;
  line-height: 1.5;
}

.craft__badge strong {
  color: var(--white);
  font-size: 0.82rem;
}

.craft__content h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
}

.craft__content > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 253, 249, 0.66);
  line-height: 1.75;
}

.feature-list {
  margin: 0 0 36px;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-light);
}

.feature-list li > span {
  padding-top: 3px;
  color: var(--bronze);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.feature-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.78rem;
  line-height: 1.65;
}

/* Showcase */
.showcase {
  background: var(--paper);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(245px, 1fr));
  gap: 18px;
}

.showcase-item {
  position: relative;
  grid-column: span 4;
  min-height: 245px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface);
}

.showcase-item--hero {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 510px;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.showcase-item:not(.showcase-item--hero):nth-child(3) img {
  object-position: center 42%;
}

.showcase-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(7, 11, 10, 0.72), transparent);
  content: "";
}

.showcase-item figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 600;
}

.showcase-item figcaption span {
  color: #d8aa73;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.showcase-item:hover img {
  transform: scale(1.03);
}

/* Process */
.process {
  background: var(--surface);
}

.process__intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.process__intro .eyebrow {
  align-self: start;
}

.process__intro h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 4vw, 64px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 51px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: rgba(18, 23, 22, 0.18);
  content: "";
}

.process-list li {
  position: relative;
  padding-top: 7px;
}

.process-list__number {
  display: block;
  margin-bottom: 24px;
  color: var(--bronze-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(18, 23, 22, 0.22);
  border-radius: 50%;
  background: var(--surface);
}

.process-list__icon svg {
  width: 26px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.process-list h3 {
  margin-bottom: 13px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq__intro {
  align-self: start;
}

.faq__intro h2 {
  margin-bottom: 25px;
}

.faq__intro > p {
  margin-bottom: 32px;
}

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

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

.accordion summary {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

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

.accordion summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(18, 23, 22, 0.24);
  border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

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

.accordion details[open] summary i {
  border-color: var(--bronze);
  background: var(--bronze);
}

.accordion details[open] summary i::before,
.accordion details[open] summary i::after {
  background: var(--white);
}

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

.accordion details > p {
  max-width: 700px;
  margin: -6px 65px 27px 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.75;
}

/* Contact */
.contact {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
}

.contact__media,
.contact__media img,
.contact__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact__media img {
  object-fit: cover;
  object-position: center 45%;
}

.contact__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 11, 10, 0.92) 0%, rgba(7, 11, 10, 0.65) 50%, rgba(7, 11, 10, 0.35) 100%), linear-gradient(0deg, rgba(7, 11, 10, 0.68), transparent 55%);
}

.contact__inner {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.66fr);
  align-items: end;
  gap: clamp(55px, 10vw, 150px);
  padding-block: var(--section-space);
}

.contact__copy {
  padding-bottom: 15px;
}

.contact__copy h2 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
}

.contact__copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1rem;
}

.contact-card {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.contact-card__phone {
  position: relative;
  display: block;
  padding: 0 54px 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card__phone strong {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.contact-card__phone svg {
  position: absolute;
  top: 8px;
  right: 0;
  width: 39px;
  height: 39px;
  padding: 10px;
  border-radius: 50%;
  background: var(--ink);
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: background 200ms ease, transform 200ms var(--ease);
}

.contact-card__phone:hover svg {
  background: var(--bronze-dark);
  transform: rotate(-8deg);
}

.contact-card__address {
  padding-block: 24px;
}

.contact-card__address address {
  color: #343b39;
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-card__actions .button {
  padding-inline: 16px;
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  background: #0b0f0e;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  align-items: center;
  gap: 70px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: block;
  width: 188px;
  overflow: hidden;
  border-radius: 11px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer__top > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 253, 249, 0.52);
  font-size: 0.8rem;
}

.site-footer__top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.site-footer__top nav a,
.site-footer__bottom {
  color: rgba(255, 253, 249, 0.64);
  font-size: 0.72rem;
  font-weight: 600;
}

.site-footer__top nav a {
  transition: color 200ms ease;
}

.site-footer__top nav a:hover,
.site-footer__bottom a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 800ms var(--ease);
}

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

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

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

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Tablet */
@media (max-width: 1100px) {
  .nav-list {
    gap: 18px;
  }

  .nav-list a {
    font-size: 0.72rem;
  }

  .hero__trust {
    display: none;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(6) {
    grid-column: span 1;
    min-height: 450px;
  }

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

  .craft__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr);
    gap: 70px;
  }

  .process__intro {
    grid-template-columns: 0.7fr 1.2fr;
  }

  .process__intro > p:last-child {
    grid-column: 2;
  }

  .contact__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .utility-bar {
    display: none;
  }

  .nav-shell {
    background: rgba(10, 15, 13, 0.46);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .nav-shell__inner {
    min-height: 72px;
  }

  .brand__logo-crop {
    width: 42px;
    height: 42px;
  }

  .brand__logo-crop img {
    top: -3px;
    left: -29px;
    width: 104px;
  }

  .brand__text strong {
    font-size: 0.86rem;
  }

  .brand__text span {
    font-size: 0.52rem;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1102;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    margin: 2.5px 0;
    background: var(--white);
    transition: transform 260ms var(--ease), opacity 180ms ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .js .nav-list {
    position: fixed;
    z-index: 1101;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(87vw, 410px);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 36px 90px;
    background: var(--ink);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.32);
    transform: translateX(105%);
    transition: transform 420ms var(--ease);
  }

  .js .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .js .nav-list a {
    display: block;
    padding: 16px 0;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .js .nav-list a::after {
    display: none;
  }

  .js .nav-list__mobile-contact {
    display: block;
    margin-top: 24px;
    border: 0;
  }

  .js .nav-list__mobile-contact a {
    color: var(--bronze);
    font-size: 1.35rem;
    font-weight: 600;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  .menu-open .nav-list {
    transform: translateX(0);
  }

  .menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-open body {
    overflow: hidden;
  }

  .hero__inner {
    padding-top: 135px;
  }

  .section-heading,
  .section-heading--compact {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .craft__visual {
    width: min(100%, 690px);
  }

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

  .craft__badge {
    right: 24px;
  }

  .showcase-grid {
    grid-template-rows: minmax(390px, 1.4fr) minmax(250px, 1fr);
  }

  .showcase-item--hero {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 390px;
  }

  .showcase-item:not(.showcase-item--hero) {
    grid-column: span 6;
  }

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

  .process-list::before {
    display: none;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq__intro {
    max-width: 640px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .contact__copy {
    max-width: 760px;
  }

  .contact-card {
    max-width: 620px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .site-footer__top nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --radius: 16px;
    --section-space: 82px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .brand__text strong {
    font-size: 0.82rem;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero__media img {
    object-position: 65% center;
  }

  .hero__veil {
    background: linear-gradient(0deg, rgba(7, 11, 10, 0.96) 0%, rgba(7, 11, 10, 0.82) 43%, rgba(7, 11, 10, 0.2) 82%), linear-gradient(90deg, rgba(7, 11, 10, 0.45), transparent);
  }

  .hero__inner {
    min-height: max(720px, 100svh);
    padding-top: 140px;
    padding-bottom: 88px;
  }

  .hero__content {
    width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 1.01;
  }

  .hero__lead {
    margin-bottom: 27px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 13px;
    font-size: 0.76rem;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading h2,
  .process__intro h2,
  .faq__intro h2 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }

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

  .section-heading > p {
    font-size: 0.92rem;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(6) {
    grid-column: span 1;
    min-height: 390px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(6) {
    min-height: 430px;
  }

  .service-card__content {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .service-card__number {
    top: 20px;
    left: 20px;
  }

  .service-card__content strong {
    font-size: 1.4rem;
  }

  .service-card__arrow {
    width: 44px;
    height: 44px;
  }

  .craft__grid {
    gap: 55px;
  }

  .craft__visual img {
    aspect-ratio: 4 / 4.7;
  }

  .craft__badge {
    right: 14px;
    bottom: 16px;
    min-width: 168px;
    padding: 16px;
  }

  .craft__content h2 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .feature-list li {
    grid-template-columns: 34px 1fr;
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-item,
  .showcase-item--hero,
  .showcase-item:not(.showcase-item--hero) {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
  }

  .showcase-item--hero {
    min-height: 360px;
  }

  .showcase-item--hero img {
    object-position: 62% center;
  }

  .process__intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 55px;
  }

  .process__intro > p:last-child {
    grid-column: 1;
    margin-top: 8px;
  }

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

  .process-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .process-list__number {
    position: absolute;
    top: 29px;
    right: 0;
    margin: 0;
  }

  .process-list__icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-list h3 {
    align-self: end;
    margin: 2px 35px 5px 0;
  }

  .process-list p {
    grid-column: 2;
  }

  .faq__grid {
    gap: 42px;
  }

  .accordion summary {
    min-height: 82px;
    gap: 16px;
    font-size: 0.9rem;
  }

  .accordion summary i {
    width: 32px;
    height: 32px;
  }

  .accordion details > p {
    margin-right: 0;
    font-size: 0.82rem;
  }

  .contact {
    min-height: auto;
  }

  .contact__media img {
    object-position: 55% center;
  }

  .contact__veil {
    background: linear-gradient(0deg, rgba(7, 11, 10, 0.92), rgba(7, 11, 10, 0.55));
  }

  .contact__inner {
    min-height: auto;
    gap: 42px;
    padding-block: 92px;
  }

  .contact__copy h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .contact-card {
    width: 100%;
  }

  .contact-card__phone strong {
    font-size: 1.75rem;
  }

  .contact-card__actions {
    grid-template-columns: 1fr;
  }

  .contact-card__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__top nav {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: initial;
    gap: 15px 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 995;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 -8px 30px rgba(18, 23, 22, 0.13);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    min-width: 0;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-actions a:last-child {
    background: var(--whatsapp);
    color: var(--white);
  }

  .mobile-actions svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}

@media (max-width: 390px) {
  .brand__text span {
    display: none;
  }

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

  .hero h1 {
    font-size: 2.65rem;
  }

  .contact-card__phone strong {
    font-size: 1.55rem;
  }
}

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

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

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