:root {
  --black: #070706;
  --charcoal: #100f0c;
  --charcoal-soft: #181611;
  --paper: #eee6d7;
  --paper-soft: #f7f1e6;
  --gold: #c5a667;
  --gold-muted: #8f794f;
  --line-dark: rgba(197, 166, 103, 0.22);
  --line-light: rgba(8, 8, 7, 0.12);
  --text-dark: #15130f;
  --text-muted: #6e685d;
  --text-light: rgba(247, 241, 230, 0.8);
  --serif: "Didot", "Didot LT Pro", "Bodoni 72", "Bodoni 72 Oldstyle", "Cormorant Garamond",
    Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --side: clamp(20px, 5.5vw, 92px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.22), rgba(238, 230, 215, 0)),
    var(--paper);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

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

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

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

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--paper-soft);
}

.loader-mark {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.loader-mark span,
.top-wordmark {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 2.2rem);
  letter-spacing: 0.24em;
  line-height: 1;
}

.loader-mark p {
  margin: 0;
  color: rgba(255, 252, 244, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader-line {
  width: 112px;
  height: 1px;
  background: var(--gold-muted);
  opacity: 0;
}

.menu-button,
.top-wordmark {
  position: fixed;
  top: 28px;
  z-index: 90;
  color: var(--paper-soft);
  mix-blend-mode: difference;
}

.menu-button {
  left: var(--side);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 10px 0;
  text-transform: uppercase;
}

.menu-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
  transform-origin: left;
  transition: transform 240ms ease;
}

.menu-button:hover::after,
.menu-button:focus-visible::after {
  transform: scaleX(0.45);
}

.top-wordmark {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 360ms ease, transform 360ms ease;
}

.top-wordmark.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  padding: 96px var(--side);
  background:
    linear-gradient(rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.96)),
    url("../assets/images/bg-dark-texture.jpg") center / cover;
  color: var(--paper-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

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

.menu-close {
  position: absolute;
  top: 30px;
  left: var(--side);
  border: 0;
  background: transparent;
  color: var(--paper-soft);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overlay-nav {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  width: min(980px, 100%);
}

.overlay-nav a {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: clamp(14px, 2vw, 24px);
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.88;
}

.overlay-nav span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.panel-dark {
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.025), rgba(8, 8, 7, 0)),
    var(--black);
  color: var(--paper-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.55), rgba(8, 8, 7, 0.25)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.08) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - (var(--side) * 2)));
  padding: clamp(150px, 23vh, 180px) 0 clamp(86px, 12vh, 140px);
  margin-left: var(--side);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
}

.hero-copy {
  max-width: 640px;
  color: var(--text-light);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible,
.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--black);
}

.button-outline {
  border-color: rgba(255, 252, 244, 0.28);
  color: var(--paper-soft);
}

.brand-statement {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 13vw, 180px) var(--side);
}

.statement-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94), rgba(8, 8, 7, 0.74)),
    url("../assets/images/bg-gold-reflection.jpg") center / cover;
  opacity: 0.72;
}

.statement-inner {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
  margin: 0 auto;
  text-align: center;
}

.statement-inner p {
  width: min(720px, 100%);
  margin: 0 auto 36px;
  color: var(--text-light);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
}

.statement-inner h2 {
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.98;
}

.statement-inner span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-grid,
.elements,
.process-section,
.request-access {
  position: relative;
  padding: clamp(110px, 12vw, 180px) var(--side);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
  gap: clamp(58px, 8vw, 132px);
  align-items: center;
}

.section-label {
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  left: var(--side);
  color: rgba(197, 166, 103, 0.062);
  font-family: var(--serif);
  font-size: clamp(80px, 13vw, 180px);
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.section-copy,
.section-head {
  position: relative;
  z-index: 1;
}

.about .section-copy h2 {
  max-width: 780px;
}

.section-copy p,
.section-head p,
.request-content > p {
  max-width: 780px;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
}

.reveal-up,
.reveal-mask,
.image-reveal,
.bg-title-reveal {
  opacity: 0;
}

.reveal-up {
  transform: translateY(34px);
}

.reveal-line {
  opacity: 1;
  overflow: visible;
}

.reveal-line > span {
  display: block;
  padding-top: 0.08em;
  padding-bottom: 0.10em;
  margin-top: -0.08em;
  margin-bottom: -0.10em;
  clip-path: inset(100% -0.08em -0.14em -0.08em);
  transform: translateY(0.24em);
}

.reveal-mask {
  clip-path: inset(12% 0 12% 0);
  transform: translateY(26px);
}

.image-reveal {
  clip-path: inset(0 100% 0 0);
}

.image-reveal img,
img.image-reveal {
  transform: scale(1.08);
  transform-origin: center;
}

.parallax-soft {
  overflow: hidden;
}

.parallax-soft img {
  display: block;
  width: 100%;
  height: 115%;
  min-height: 115%;
  object-fit: cover;
  object-position: center;
  position: relative;
  top: -7.5%;
  margin: 0;
}

.service-panel img.image-reveal {
  transform: scale(1.08);
}

.bg-title-reveal {
  transform: translate3d(-26px, 18px, 0);
}

.editorial-image,
.request-image {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  height: min(72vh, 760px);
  margin: 0;
  border: 1px solid var(--line-light);
}

.editorial-image::after,
.request-image::after,
.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.3) 58%, rgba(8, 8, 7, 0.16)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.58), rgba(8, 8, 7, 0.08));
  pointer-events: none;
}

.editorial-image img,
.request-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.editorial-image.parallax-soft img,
.request-image.parallax-soft img {
  height: 115%;
  top: -7.5%;
  bottom: auto;
}

.services-intro-section {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  padding: clamp(110px, 12vw, 180px) var(--side);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94), rgba(8, 8, 7, 0.82)),
    url("../assets/images/bg-dark-texture.jpg") center / cover;
}

.services-intro {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: 0;
}

.services-intro p {
  max-width: 760px;
  color: var(--text-light);
}

.services {
  position: relative;
  overflow: hidden;
  height: 100vh;
  padding: 0;
  background:
    linear-gradient(rgba(8, 8, 7, 0.58), rgba(8, 8, 7, 0.92)),
    url("../assets/images/bg-dark-texture.jpg") center / cover;
}

.service-track-wrap {
  display: flex;
  height: 100vh;
  align-items: center;
  overflow: visible;
}

.service-track {
  display: flex;
  gap: 0;
  width: 300vw;
  padding: 0;
}

.service-panel {
  position: relative;
  display: grid;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  align-items: end;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.7);
  transform: scale(1.04);
}

.service-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 clamp(28px, 5vw, 80px) clamp(10vh, 11vh, 12vh);
}

.service-panel-copy h3 {
  max-width: 760px;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.service-panel-copy h3 span {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.service-panel span,
.access-item span,
.timeline-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-panel p,
.selected-clients p,
.responsible p {
  color: var(--text-light);
}

.service-panel-copy p {
  max-width: 620px;
}

.section-head {
  width: min(980px, 100%);
  margin-bottom: clamp(58px, 7vw, 104px);
}

.elements-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 8, 7, 0.1);
  border-left: 0;
}

.access-item {
  --item-line-scale: 0;
  --item-line-opacity: 0.34;
  position: relative;
  min-height: 310px;
  border-bottom: 1px solid rgba(8, 8, 7, 0.1);
  padding: clamp(34px, 4.2vw, 64px) clamp(24px, 3.4vw, 52px);
  transition: background 260ms ease, transform 260ms ease;
}

.access-item:not(:nth-child(3n)) {
  border-right: 1px solid rgba(8, 8, 7, 0.08);
}

.access-item::after {
  content: "";
  position: absolute;
  right: clamp(24px, 3.4vw, 52px);
  bottom: 0;
  left: clamp(24px, 3.4vw, 52px);
  height: 1px;
  background: var(--gold);
  opacity: var(--item-line-opacity);
  transform: scaleX(var(--item-line-scale));
  transform-origin: left;
  transition: opacity 260ms ease, transform 260ms ease;
}

.access-item:hover {
  background: rgba(197, 166, 103, 0.055);
  transform: translateY(-4px);
  --item-line-opacity: 0.62;
}

.access-item span {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.9;
  opacity: 0.46;
}

.access-item h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.access-item p,
.timeline-step p {
  color: var(--text-muted);
}

.selected-clients {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 180px) var(--side);
}

.selected-clients::before {
  content: "CLIENTS";
  position: absolute;
  top: 42px;
  right: var(--side);
  color: rgba(197, 166, 103, 0.055);
  font-family: var(--serif);
  font-size: clamp(80px, 13vw, 180px);
  line-height: 0.8;
}

.client-types {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  gap: clamp(18px, 3vw, 44px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(18px, 3vw, 34px) 0;
}

.client-types span {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  color: var(--paper-soft);
  border-right: 0;
  font-family: var(--sans);
  font-family: var(--serif);
  font-size: clamp(16px, 1.15vw, 21px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 22px 18px;
  text-align: center;
  text-transform: uppercase;
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.client-types span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc((clamp(18px, 3vw, 44px) / -2) - 0.5px);
  width: 1px;
  height: 42px;
  background: var(--line-dark);
  transform: translateY(-50%);
}

.client-types span::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 12px;
  left: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.client-types span:hover {
  background: rgba(197, 166, 103, 0.055);
  color: var(--gold);
  transform: translateY(-2px);
}

.client-types span:hover::after {
  transform: scaleX(1);
}

.client-types span:last-child::before {
  display: none;
}

.process-section {
  overflow: visible;
}

.process-intro {
  margin-bottom: clamp(58px, 8vh, 92px);
}

.timeline,
.process-scroll {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(42px, 6vh, 72px);
  width: min(980px, 100%);
  margin-left: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(104px, calc(130px + clamp(24px, 4vw, 56px) + 8px), 194px);
  width: 1px;
  background: rgba(197, 166, 103, 0.16);
}

.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(104px, calc(130px + clamp(24px, 4vw, 56px) + 8px), 194px);
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--gold), rgba(197, 166, 103, 0.24));
  transform: scaleY(var(--timeline-scale, 0));
  transform-origin: top;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(72px, 130px) 16px minmax(0, 620px);
  align-items: start;
  column-gap: clamp(24px, 4vw, 56px);
  min-height: auto;
  padding: clamp(28px, 4vh, 48px) 0;
}

.process-step {
  opacity: 0;
  transform: translateY(50px);
}

.process-step-number,
.process-step-title,
.process-step-text {
  opacity: 0;
  transform: translateY(32px);
}

.timeline-step::before {
  content: "";
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  left: auto;
  top: auto;
  margin-top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197, 166, 103, 0.72);
}

.timeline-step h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
}

.timeline-step span {
  grid-column: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 600;
  line-height: 0.9;
}

.process-step-content {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-step-title {
  margin: 0;
}

.process-step-text {
  margin: 0;
  max-width: 560px;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.responsible {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 180px) var(--side);
}

.responsible-block {
  width: min(1040px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line-dark);
  background: rgba(255, 252, 244, 0.035);
  padding: clamp(44px, 6vw, 88px);
}

.responsible-block h2 {
  max-width: 900px;
}

.responsible-block p:last-child {
  max-width: 900px;
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
}

.request-access {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
  background: var(--paper-soft);
}

.request-image {
  height: min(78vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: transparent;
}

.request-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.request-image.parallax-soft img {
  height: 115%;
  min-height: 115%;
  top: -7.5%;
}

.request-content {
  position: relative;
  z-index: 1;
}

.access-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.access-form label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 8, 7, 0.16);
  border-radius: 2px;
  background: rgba(244, 239, 228, 0.52);
  color: var(--text-dark);
  padding: 15px 16px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-muted);
  background: rgba(251, 247, 239, 0.9);
  box-shadow: 0 0 0 3px rgba(197, 166, 103, 0.12);
  outline: 0;
}

.whatsapp-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(143, 121, 79, 0.34);
  border-radius: 999px;
  color: var(--gold-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: rgba(197, 166, 103, 0.08);
  border-color: rgba(143, 121, 79, 0.62);
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--gold-muted);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 0.8fr) minmax(320px, 1.4fr);
  gap: 34px;
  padding: clamp(46px, 7vw, 86px) var(--side);
  background: var(--black);
  color: rgba(255, 252, 244, 0.72);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: var(--paper-soft);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-note,
.copyright {
  color: rgba(255, 252, 244, 0.58);
  font-size: 0.88rem;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}

@media (max-width: 1020px) {
  .section-grid,
  .request-access,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 44px;
  }

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

  .access-item:not(:nth-child(3n)) {
    border-right: 0;
  }

  .access-item:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

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

  .client-types span:nth-child(2)::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .services-intro-section {
    min-height: auto;
    padding: clamp(96px, 12vw, 140px) var(--side);
  }

  .services {
    height: auto;
    min-height: auto;
    padding: 0 0 clamp(88px, 12vw, 130px);
  }

  .service-track-wrap {
    display: block;
    height: auto;
    padding-bottom: 0;
  }

  .service-track {
    display: grid;
    width: auto;
    gap: 22px;
    padding-inline: var(--side);
  }

  .service-panel {
    width: 100%;
    height: auto;
    min-height: 80vh;
  }
}

@media (max-width: 640px) {
  :root {
    --side: 18px;
  }

  .menu-button,
  .top-wordmark {
    top: 20px;
  }

  .top-wordmark {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 24vh;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 0.95;
  }

  .overlay-nav a {
    font-size: clamp(46px, 12vw, 68px);
  }

  .section-label {
    display: none;
  }

  .editorial-image,
  .request-image {
    min-height: 360px;
  }

  .elements-grid,
  .client-types,
  .access-form {
    grid-template-columns: 1fr;
  }

  .access-item,
  .access-item:nth-child(odd) {
    border-right: 0;
  }

  .client-types span,
  .client-types span:nth-child(2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .client-types span:last-child {
    border-bottom: 0;
  }

  .client-types span::before {
    display: none;
  }

  .service-panel {
    min-height: 80vh;
  }

  .timeline {
    margin-left: 0;
    gap: clamp(36px, 8vh, 48px);
  }

  .timeline-step {
    display: block;
    min-height: auto;
    padding: clamp(28px, 6vh, 44px) 0 0 30px;
  }

  .timeline::before,
  .timeline::after {
    left: 0;
  }

  .timeline-step::before {
    display: none;
  }

  .timeline-step::after {
    display: none;
  }

  .process-step-content {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }

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

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

  .intro-loader {
    display: none;
  }

  body.loading {
    overflow: auto;
  }

  .reveal,
  .line-reveal,
  .reveal-up,
  .reveal-mask,
  .image-reveal,
  .bg-title-reveal,
  .reveal-line > span {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}


.access-form > p {
  display: contents;
}

.access-form label {
  display: flex;
  flex-direction: column;
}

.access-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
}

.access-form .form-wide {
  grid-column: 1 / -1;
}

.access-form .form-actions p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.access-form .wpcf7-response-output {
  grid-column: 1 / -1;
}
/* Contact Form 7 button alignment */
.access-form .form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access-form .form-actions p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  flex-wrap: wrap;
  width: 100%;
}

/* Submit button should not stretch */
.access-form .wpcf7-submit.button-gold,
.access-form input[type="submit"].button-gold {
  width: auto;
  min-width: 220px;
  max-width: none;
  height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp secondary button */
.access-form .whatsapp-link {
  width: auto;
  min-width: 280px;
  max-width: 420px;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* CF7 spinner */
.access-form .wpcf7-spinner {
  margin: 0;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .access-form .form-actions p {
    flex-direction: column;
    align-items: stretch;
  }

  .access-form .wpcf7-submit.button-gold,
  .access-form input[type="submit"].button-gold,
  .access-form .whatsapp-link {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}