:root {
  --black: #050505;
  --black-soft: #0a0906;
  --surface: rgba(17, 15, 9, 0.76);
  --surface-solid: #11100b;
  --gold: #ffe76a;
  --gold-bright: #fff4a8;
  --gold-mid: #ddb936;
  --gold-deep: #7a5c0d;
  --cream: #f7f0d0;
  --muted: #a9a58f;
  --line: rgba(255, 232, 107, 0.15);
  --line-strong: rgba(255, 232, 107, 0.32);
  --green: #2ad972;
  --max-width: 1240px;
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 20%, rgba(90, 66, 2, 0.08), transparent 35%),
    var(--black);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.page-ambient {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: min(100%, 1900px);
  height: 930px;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.lamp {
  position: absolute;
  z-index: 3;
  top: -3px;
  left: 50%;
  width: 260px;
  height: 44px;
  transform: translateX(-50%);
}

.lamp::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 148px;
  height: 18px;
  content: "";
  transform: translateX(-50%);
  border: 1px solid rgba(255, 248, 188, 0.55);
  border-top: 0;
  border-radius: 0 0 80px 80px;
  background: linear-gradient(180deg, #241d08 0%, #ad8818 65%, #fff19a 100%);
  box-shadow:
    0 8px 18px rgba(255, 226, 73, 0.5),
    0 0 50px rgba(255, 220, 38, 0.35);
}

.lamp-cap {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 230px;
  height: 30px;
  transform: translateX(-50%);
  border-bottom: 2px solid rgba(255, 244, 161, 0.45);
  border-radius: 0 0 50% 50%;
  filter: drop-shadow(0 8px 13px rgba(255, 219, 47, 0.62));
}

.lamp-glow {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 120px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fffbd6;
  box-shadow:
    0 0 12px #fff7ae,
    0 0 40px #ffdc23,
    0 0 90px rgba(255, 210, 0, 0.8);
}

.light-cone {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 1200px;
  height: 800px;
  opacity: 0.72;
  transform: translateX(-50%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(ellipse at 50% 7%, rgba(255, 252, 219, 0.78), rgba(255, 228, 89, 0.25) 21%, rgba(225, 184, 29, 0.07) 56%, transparent 77%);
  filter: blur(3px);
}

.light-cone::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 12%, rgba(255, 232, 108, 0.06) 50%, transparent 88%);
  filter: blur(22px);
}

.light-orb {
  position: absolute;
  top: 95px;
  left: 50%;
  width: 540px;
  height: 540px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 219, 56, 0.07);
  filter: blur(70px);
}

.mote {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold);
  animation: drift 9s ease-in-out infinite;
}

.mote-one {
  top: 210px;
  left: 39%;
}

.mote-two {
  top: 410px;
  left: 62%;
  animation-delay: -3s;
}

.mote-three {
  top: 565px;
  left: 31%;
  animation-delay: -6s;
}

.mote-four {
  top: 330px;
  left: 53%;
  animation-delay: -4s;
}

@keyframes drift {
  0%,
  100% {
    opacity: 0.1;
    transform: translate(0, 0) scale(0.7);
  }
  50% {
    opacity: 0.9;
    transform: translate(18px, -55px) scale(1.2);
  }
}

.site-header {
  position: relative;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid rgba(255, 236, 128, 0.1);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  animation: headerDrop 0.55s var(--ease);
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.32);
}

@keyframes headerDrop {
  from {
    transform: translateY(-100%);
  }
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 56px), var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  transform: rotate(45deg);
  place-items: center;
  border: 1px solid rgba(255, 236, 119, 0.55);
  background: linear-gradient(135deg, rgba(255, 239, 130, 0.14), transparent);
  box-shadow: 0 0 26px rgba(255, 216, 42, 0.09);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 7px rgba(255, 224, 74, 0.7);
}

.brand-mark::before {
  width: 1px;
  height: 20px;
}

.brand-mark::after {
  width: 20px;
  height: 1px;
}

.brand-mark span::before {
  width: 3px;
  height: 3px;
  transform: rotate(45deg);
}

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

.brand-copy strong {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #bdb9a5;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  box-shadow: 0 0 7px var(--gold);
  transition: transform 0.35s var(--ease);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  cursor: pointer;
  border: 0;
  border-radius: 50px;
  outline: 0;
  background: transparent;
}

.language-switch:focus-visible,
.nav-contact:focus-visible,
.primary-button:focus-visible,
.text-button:focus-visible,
.floating-whatsapp:focus-visible,
.card-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.language-option {
  color: #615e51;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.language-option.active {
  color: var(--gold-bright);
}

.switch-track {
  position: relative;
  width: 31px;
  height: 17px;
  border: 1px solid rgba(255, 231, 106, 0.26);
  border-radius: 100px;
  background: #11100c;
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 225, 57, 0.65);
  transition: transform 0.35s var(--ease);
}

.language-switch[data-language="en"] .switch-thumb {
  transform: translateX(14px);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: #161204;
  border: 1px solid #fff0a2;
  border-radius: 4px;
  background: linear-gradient(110deg, #bd9011 0%, #ffe96e 42%, #fff6be 58%, #d6aa26 100%);
  background-size: 180% 100%;
  box-shadow: 0 0 22px rgba(255, 218, 56, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background-position 0.5s ease,
    box-shadow 0.3s ease;
}

.nav-contact:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 7px 26px rgba(255, 218, 56, 0.22);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold-bright);
  transition: 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.section-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  padding-top: clamp(100px, 15vh, 170px);
  padding-bottom: 94px;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 70px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 80px;
  left: 0;
  width: 1px;
  height: 62%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 232, 109, 0.28), transparent);
}

.hero-aura {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 12%;
  width: 700px;
  height: 420px;
  border-radius: 50%;
  background: rgba(198, 146, 0, 0.06);
  filter: blur(75px);
}

.hero-content {
  max-width: 855px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-star {
  font-size: 0.83rem;
  text-shadow: 0 0 14px var(--gold);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff9dc;
  font-size: clamp(2.55rem, 5.1vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.75);
}

.hero h1::first-line {
  color: var(--gold-bright);
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #c1bda8;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 39px;
}

.primary-button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 21px 0 24px;
  color: #151103;
  border: 1px solid #fff1a3;
  border-radius: 4px;
  background:
    linear-gradient(105deg, #a57908 0%, #e7bf39 28%, #fff6b6 52%, #dbae25 77%, #9b7006 100%);
  background-size: 190% 100%;
  box-shadow:
    0 0 0 1px rgba(255, 228, 89, 0.1),
    0 9px 32px rgba(255, 207, 28, 0.12);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    background-position 0.6s ease;
}

.primary-button::before {
  position: absolute;
  top: -100%;
  left: -35%;
  width: 26px;
  height: 300%;
  content: "";
  transform: rotate(22deg);
  background: rgba(255, 255, 255, 0.55);
  filter: blur(5px);
  transition: left 0.7s var(--ease);
}

.primary-button:hover {
  transform: translateY(-4px);
  background-position: 100% 0;
  box-shadow:
    0 0 0 1px rgba(255, 234, 113, 0.25),
    0 14px 46px rgba(255, 210, 37, 0.23);
}

.primary-button:hover::before {
  left: 120%;
}

.button-arrow {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: 4px;
  place-items: center;
  border: 1px solid rgba(30, 23, 0, 0.25);
  border-radius: 50%;
  font-size: 0.8rem;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  color: #c0bca7;
  border-bottom: 1px solid rgba(255, 232, 106, 0.25);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.text-button:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 37px;
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-inline i {
  display: block;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.trust-inline b {
  color: #797667;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-orbit-card {
  position: relative;
  overflow: hidden;
  align-self: center;
  min-height: 375px;
  padding: 53px 35px 36px;
  border: 1px solid var(--line);
  border-radius: 160px 160px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 238, 139, 0.075), transparent 39%),
    rgba(11, 10, 7, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 191, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.hero-orbit-card::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 175px;
  height: 175px;
  content: "";
  transform: translate(-50%, -60%);
  border-radius: 50%;
  background: rgba(255, 220, 55, 0.16);
  filter: blur(31px);
}

.orbit-lines {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 35px;
}

.orbit-lines span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 233, 114, 0.25);
  border-radius: 50%;
}

.orbit-lines span:first-child {
  transform: scaleY(0.4) rotate(15deg);
}

.orbit-lines span:nth-child(2) {
  transform: scaleX(0.4) rotate(-15deg);
}

.orbit-lines span:nth-child(3) {
  inset: 48px;
  border: 0;
  background: var(--gold-bright);
  box-shadow:
    0 0 12px var(--gold),
    0 0 45px rgba(255, 218, 42, 0.8);
}

.orbit-kicker {
  display: block;
  color: #8c8878;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-orbit-card strong {
  display: block;
  margin-top: 7px;
  color: var(--gold-bright);
  font-size: 1.42rem;
  line-height: 1.25;
}

.hero-orbit-card p {
  margin: 14px 0 0;
  color: #9d9988;
  font-size: 0.74rem;
  line-height: 1.8;
}

.orbit-signature {
  position: absolute;
  right: 27px;
  bottom: 19px;
  color: rgba(255, 235, 123, 0.21);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.33em;
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue span {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.scroll-cue small {
  color: #5d594e;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services,
.about,
.commitment,
.closing {
  padding-top: 140px;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 60px;
  grid-template-columns: 190px minmax(0, 1fr) minmax(260px, 370px);
  gap: 34px;
}

.section-heading > div:first-child {
  display: flex;
  align-items: center;
  gap: 17px;
}

.section-index {
  display: inline-grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
}

.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.closing h2 {
  margin: 0;
  color: #fff9df;
  font-size: clamp(2rem, 3.55vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: #8f8b7b;
  font-size: 0.84rem;
  line-height: 1.85;
}

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

.service-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 355px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    radial-gradient(380px circle at var(--mouse-x) var(--mouse-y), rgba(255, 230, 91, 0.085), transparent 42%),
    linear-gradient(145deg, rgba(20, 18, 11, 0.93), rgba(8, 8, 6, 0.95));
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: transform 0.45s var(--ease);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.52);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  grid-row: span 2;
  min-height: 725px;
  border-color: rgba(255, 232, 101, 0.3);
  background:
    radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(255, 231, 97, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(48, 39, 10, 0.9), rgba(9, 8, 5, 0.96) 67%);
}

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

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-number {
  color: #635e4d;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 235, 108, 0.025);
  box-shadow: 0 0 25px rgba(255, 218, 41, 0.06);
}

.service-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.service-card h3 {
  margin: 0 0 15px;
  color: #f8f1cf;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: #918d7d;
  font-size: 0.78rem;
  line-height: 1.85;
}

.service-card.featured h3 {
  font-size: 1.75rem;
}

.service-card.featured p {
  font-size: 0.86rem;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 17px;
  color: #7e7968;
  border-top: 1px solid rgba(255, 236, 127, 0.09);
  font-size: 0.65rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-link span:last-child {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
}

.card-link:hover {
  color: var(--gold-bright);
}

.card-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.about {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 140px);
}

.about-visual {
  position: relative;
  display: flex;
  min-height: 670px;
  align-items: center;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 430px);
  height: 610px;
  border: 1px solid rgba(255, 234, 116, 0.22);
  border-radius: 220px 220px 9px 9px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 228, 76, 0.17), transparent 32%),
    linear-gradient(180deg, rgba(255, 231, 91, 0.08), rgba(12, 10, 6, 0.88));
  box-shadow:
    inset 0 0 80px rgba(255, 220, 36, 0.035),
    0 30px 100px rgba(0, 0, 0, 0.5);
}

.portrait-frame::before,
.portrait-frame::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 234, 116, 0.08);
  border-radius: inherit;
}

.portrait-frame::before {
  inset: 13px;
}

.portrait-frame::after {
  inset: -18px 20px 20px -18px;
}

.portrait-symbol {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 260px;
  height: 380px;
  transform: translate(-50%, -50%);
}

.moon {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 173px;
  height: 173px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff9c6, #d9af25);
  box-shadow:
    0 0 40px rgba(255, 223, 61, 0.24),
    0 0 120px rgba(255, 213, 32, 0.11);
}

.moon::after {
  position: absolute;
  top: -19px;
  left: 48px;
  width: 168px;
  height: 168px;
  content: "";
  border-radius: 50%;
  background: #0c0b07;
}

.portrait-star {
  position: absolute;
  z-index: 3;
  top: 124px;
  left: 48%;
  color: var(--gold-bright);
  font-size: 1.35rem;
  text-shadow:
    0 0 12px var(--gold),
    0 0 35px var(--gold);
}

.portrait-line {
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 230px;
  height: 235px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 232, 107, 0.2);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.portrait-line::before {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 112px;
  height: 142px;
  content: "";
  transform: translateX(-50%);
  border: 1px solid rgba(255, 232, 107, 0.16);
  border-radius: 50%;
}

.experience-seal {
  position: absolute;
  z-index: 3;
  right: -38px;
  bottom: 72px;
  display: flex;
  width: 140px;
  height: 140px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(10, 9, 5, 0.94);
  box-shadow:
    inset 0 0 25px rgba(255, 225, 62, 0.05),
    0 16px 50px rgba(0, 0, 0, 0.52);
}

.experience-seal strong {
  color: var(--gold-bright);
  font-size: 2.1rem;
  line-height: 1;
}

.experience-seal span {
  max-width: 83px;
  margin-top: 9px;
  color: #8e8976;
  font-size: 0.54rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vertical-caption {
  position: absolute;
  bottom: 23px;
  left: -47px;
  margin: 0;
  transform: rotate(-90deg);
  color: rgba(255, 237, 128, 0.24);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.section-heading.compact {
  display: block;
  margin-bottom: 35px;
}

.section-heading.compact > div {
  margin-bottom: 28px;
}

.about-body p {
  margin: 0 0 20px;
  color: #9a9685;
  font-size: 0.88rem;
  line-height: 1.95;
}

.about-body p:first-child {
  color: #c9c5b1;
  font-size: 0.96rem;
}

.about-copy blockquote {
  position: relative;
  margin: 36px 0 0;
  padding: 25px 25px 25px 72px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(255, 226, 69, 0.06), transparent);
}

.about-copy blockquote > span {
  position: absolute;
  top: 10px;
  left: 23px;
  color: var(--gold);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1;
}

.about-copy blockquote p {
  margin: 0;
  color: #e8dfba;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.commitment .section-heading.centered {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered > div {
  justify-content: center;
  margin-bottom: 25px;
}

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

.commitment-card {
  position: relative;
  min-height: 290px;
  padding: 38px 29px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition: background 0.35s ease;
}

.commitment-card:last-child {
  border-right: 0;
}

.commitment-card:hover {
  background: rgba(255, 231, 96, 0.035);
}

.commitment-glyph {
  display: block;
  margin-bottom: 70px;
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.commitment-card h3 {
  margin: 0 0 12px;
  color: #f5edc9;
  font-size: 1rem;
  font-weight: 700;
}

.commitment-card p {
  margin: 0;
  color: #858171;
  font-size: 0.73rem;
  line-height: 1.85;
}

.closing {
  padding-bottom: 140px;
}

.closing-panel {
  position: relative;
  overflow: hidden;
  padding: 104px 40px 98px;
  text-align: center;
  border: 1px solid rgba(255, 231, 101, 0.23);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 225, 63, 0.17), transparent 31%),
    linear-gradient(160deg, rgba(37, 30, 8, 0.85), rgba(7, 7, 5, 0.95) 65%);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 174, 0.09),
    0 30px 100px rgba(0, 0, 0, 0.36);
}

.closing-panel::before,
.closing-panel::after {
  position: absolute;
  width: 350px;
  height: 350px;
  content: "";
  border: 1px solid rgba(255, 233, 112, 0.08);
  border-radius: 50%;
}

.closing-panel::before {
  bottom: -250px;
  left: -90px;
}

.closing-panel::after {
  top: -250px;
  right: -90px;
}

.closing-orbit {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 27px;
}

.closing-orbit span:first-child,
.closing-orbit span:nth-child(2) {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 236, 122, 0.24);
  border-radius: 50%;
}

.closing-orbit span:first-child {
  transform: scaleY(0.38);
}

.closing-orbit span:nth-child(2) {
  transform: scaleX(0.38);
}

.closing-orbit span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--gold-bright);
  transform: translate(-50%, -50%);
  text-shadow: 0 0 13px var(--gold);
}

.closing .section-kicker {
  margin-bottom: 18px;
}

.closing h2 {
  max-width: 800px;
  margin: 0 auto;
}

.closing-panel > p:not(.section-kicker) {
  max-width: 620px;
  margin: 25px auto 32px;
  color: #a9a591;
  font-size: 0.9rem;
}

.closing .primary-button {
  margin: 0 auto;
}

.closing-panel > small {
  display: block;
  margin-top: 18px;
  color: #6f6b5e;
  font-size: 0.62rem;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-shell,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.footer-shell {
  min-height: 170px;
}

.footer-shell > p {
  max-width: 380px;
  margin: 0;
  color: #747065;
  font-size: 0.72rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 231, 105, 0.24);
}

.footer-contact:hover {
  color: var(--gold-bright);
}

.footer-legal {
  min-height: 70px;
  color: #4f4c43;
  border-top: 1px solid rgba(255, 240, 145, 0.07);
  font-size: 0.57rem;
  letter-spacing: 0.03em;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: #08150c;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50px;
  background: var(--green);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.48),
    0 0 26px rgba(42, 217, 114, 0.18);
  font-size: 0.68rem;
  font-weight: 700;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.55),
    0 0 38px rgba(42, 217, 114, 0.33);
}

.floating-whatsapp .whatsapp-icon {
  width: 23px;
  height: 23px;
}

.floating-pulse {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 1px solid var(--green);
  border-radius: inherit;
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

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

.reveal-delay {
  transition-delay: 0.18s;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 35px;
  }

  .hero-orbit-card {
    padding-right: 28px;
    padding-left: 28px;
  }

  .section-heading {
    grid-template-columns: 165px minmax(0, 1fr);
  }

  .section-heading > p {
    grid-column: 2;
  }

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

  .service-card.featured {
    grid-row: auto;
    min-height: 355px;
  }

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

  .about {
    gap: 75px;
  }

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

  .commitment-card:nth-child(2) {
    border-right: 0;
  }

  .commitment-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 78px;
  }

  .nav-shell,
  .section-shell,
  .footer-shell,
  .footer-legal {
    width: min(calc(100% - 34px), var(--max-width));
  }

  .nav-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 29;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100vh - var(--header-height));
    padding: 48px 28px;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(-20px);
    background: rgba(5, 5, 5, 0.97);
    transition:
      opacity 0.35s ease,
      transform 0.35s var(--ease),
      visibility 0.35s;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding-bottom: 18px;
    color: #ece4c2;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    font-weight: 600;
  }

  .mobile-menu a:last-child {
    color: var(--gold);
  }

  .page-ambient {
    height: 760px;
  }

  .light-cone {
    width: 800px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 115px;
  }

  .hero::before,
  .hero-orbit-card,
  .scroll-cue {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

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

  .section-heading {
    display: block;
  }

  .section-heading > div:first-child {
    margin-bottom: 24px;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .services,
  .about,
  .commitment,
  .closing {
    padding-top: 100px;
  }

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

  .service-card,
  .service-card.featured,
  .service-card.wide {
    min-height: 340px;
    grid-column: auto;
  }

  .service-card.featured h3 {
    font-size: 1.4rem;
  }

  .about {
    display: block;
  }

  .about-visual {
    min-height: 570px;
    margin-bottom: 65px;
  }

  .portrait-frame {
    width: min(90%, 390px);
    height: 545px;
  }

  .experience-seal {
    right: -12px;
  }

  .vertical-caption {
    left: -63px;
  }

  .closing-panel {
    padding: 80px 25px 76px;
  }

  .footer-shell {
    min-height: 260px;
    padding: 45px 0;
    flex-direction: column;
    gap: 30px;
  }

  .footer-legal {
    padding: 23px 0;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 0.7rem;
  }

  .brand-copy small {
    font-size: 0.49rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .nav-actions {
    gap: 5px;
  }

  .language-switch {
    gap: 5px;
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .primary-button {
    width: 100%;
    justify-content: center;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
  }

  .trust-inline {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px;
  }

  .about-visual {
    min-height: 480px;
  }

  .portrait-frame {
    height: 460px;
  }

  .portrait-symbol {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .experience-seal {
    right: -2px;
    bottom: 42px;
    width: 116px;
    height: 116px;
  }

  .experience-seal strong {
    font-size: 1.7rem;
  }

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

  .commitment-card,
  .commitment-card:nth-child(2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .commitment-card:last-child {
    border-bottom: 0;
  }

  .commitment-glyph {
    margin-bottom: 45px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
    min-height: 55px;
    padding: 0;
    justify-content: center;
  }

  .floating-label {
    display: none;
  }
}

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

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

/* Scarlet altar treatment and service photography */
:root {
  --scarlet: #a51c25;
  --scarlet-bright: #ce2e38;
  --scarlet-matte: #65171b;
  --scarlet-dark: #27090b;
}

.background-altar {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image:
    linear-gradient(
      180deg,
      #050505 0%,
      rgba(5, 5, 5, 0.76) 13%,
      rgba(5, 5, 5, 0.42) 34%,
      rgba(5, 5, 5, 0.5) 69%,
      rgba(5, 5, 5, 0.82) 91%,
      #050505 100%
    ),
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(45, 5, 8, 0.08) 50%, rgba(5, 5, 5, 0.68)),
    url('imagenes de servicios/IMAGEN 6.png');
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.04) brightness(1.08);
}

.background-altar::before,
.background-altar::after {
  position: absolute;
  right: -8%;
  left: -8%;
  height: 24vh;
  content: '';
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(58px);
}

.background-altar::before {
  top: -15vh;
  box-shadow: 0 12vh 90px rgba(0, 0, 0, 0.62);
}

.background-altar::after {
  bottom: -15vh;
  box-shadow: 0 -12vh 90px rgba(0, 0, 0, 0.7);
}

.site-header {
  background: linear-gradient(105deg, rgba(89, 10, 16, 0.97), rgba(165, 28, 37, 0.96) 48%, rgba(102, 12, 19, 0.97));
  box-shadow: 0 8px 34px rgba(63, 4, 9, 0.28);
}

.site-header.scrolled {
  background: linear-gradient(105deg, rgba(83, 9, 15, 0.98), rgba(145, 18, 28, 0.98) 48%, rgba(77, 8, 14, 0.98));
}

.site-header .brand-copy small,
.site-header .desktop-nav a {
  color: rgba(255, 244, 216, 0.78);
}

.site-header .language-option:not(.active) {
  color: rgba(255, 222, 207, 0.58);
}

.brand-mark {
  box-shadow:
    0 0 26px rgba(255, 216, 42, 0.09),
    0 0 38px rgba(165, 28, 37, 0.1);
}

.hero-aura {
  width: min(700px, 80vw);
  background:
    radial-gradient(circle at 35% 42%, rgba(198, 146, 0, 0.08), transparent 50%),
    radial-gradient(circle at 70% 55%, rgba(165, 28, 37, 0.1), transparent 58%);
}

.eyebrow-star {
  text-shadow:
    0 0 14px var(--gold),
    0 0 26px var(--scarlet-bright);
}

.hero-orbit-card {
  background:
    linear-gradient(180deg, rgba(255, 238, 139, 0.075), transparent 39%),
    radial-gradient(circle at 50% 82%, rgba(134, 21, 28, 0.14), transparent 46%),
    rgba(11, 10, 7, 0.76);
}

.section-index {
  background: radial-gradient(circle, rgba(145, 22, 29, 0.18), transparent 70%);
  box-shadow: 0 0 24px rgba(145, 22, 29, 0.1);
}

.service-card {
  min-height: 510px;
  background:
    radial-gradient(380px circle at var(--mouse-x) var(--mouse-y), rgba(255, 230, 91, 0.085), transparent 42%),
    radial-gradient(300px circle at 85% 10%, rgba(150, 22, 29, 0.1), transparent 43%),
    linear-gradient(145deg, rgba(20, 18, 11, 0.95), rgba(8, 8, 6, 0.97));
}

.service-card::before {
  background: linear-gradient(90deg, var(--scarlet-matte), var(--gold-bright), var(--scarlet-matte));
}

.service-card:hover {
  border-color: rgba(205, 48, 57, 0.42);
}

.service-card.featured {
  min-height: 1035px;
  background:
    radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(255, 231, 97, 0.12), transparent 42%),
    radial-gradient(circle at 78% 15%, rgba(145, 20, 27, 0.17), transparent 38%),
    linear-gradient(160deg, rgba(48, 39, 10, 0.92), rgba(9, 8, 5, 0.97) 67%);
}

.service-media {
  position: relative;
  overflow: hidden;
  width: auto;
  height: 175px;
  margin: 24px -12px 30px;
  border: 1px solid rgba(255, 231, 105, 0.13);
  border-radius: 3px;
  background: var(--scarlet-dark);
}

.service-media::before,
.service-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: '';
}

.service-media::before {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.28), transparent 34%, rgba(3, 3, 3, 0.64) 100%),
    linear-gradient(90deg, rgba(47, 5, 8, 0.38), transparent 48%);
}

.service-media::after {
  opacity: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(207, 46, 56, 0.18), transparent 66%);
  transition: opacity 0.45s ease;
}

.service-card:hover .service-media::after {
  opacity: 1;
}

.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
  transition:
    transform 0.85s var(--ease),
    filter 0.5s ease;
}

.service-card:hover .service-media img {
  filter: saturate(0.98) contrast(1.07) brightness(0.88);
  transform: scale(1.075);
}

.service-media.focus-left img {
  object-position: 27% center;
}

.service-media.focus-right img {
  object-position: 73% center;
}

.service-media.focus-center img {
  object-position: 50% 45%;
}

.service-card.featured .service-media {
  height: 425px;
  margin-top: 30px;
}

.service-icon {
  background:
    radial-gradient(circle at 50% 110%, rgba(160, 22, 30, 0.22), transparent 60%),
    rgba(255, 235, 108, 0.025);
}

.portrait-frame {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 228, 76, 0.17), transparent 32%),
    radial-gradient(circle at 60% 72%, rgba(153, 22, 29, 0.17), transparent 43%),
    linear-gradient(180deg, rgba(255, 231, 91, 0.08), rgba(12, 10, 6, 0.88));
}

.about-copy blockquote {
  border-left-color: var(--scarlet-bright);
  background: linear-gradient(90deg, rgba(145, 21, 28, 0.13), rgba(255, 226, 69, 0.025), transparent);
}

.commitment-card:hover {
  background: linear-gradient(150deg, rgba(154, 22, 29, 0.08), rgba(255, 231, 96, 0.02));
}

.closing-panel {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 225, 63, 0.17), transparent 31%),
    radial-gradient(circle at 85% 86%, rgba(157, 20, 28, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(37, 30, 8, 0.87), rgba(7, 7, 5, 0.96) 65%);
}

@media (max-width: 1080px) {
  .service-card.featured {
    min-height: 510px;
  }

  .service-card.featured .service-media {
    height: 175px;
    margin-top: 24px;
  }
}

@media (max-width: 780px) {
  .background-altar {
    background-position: 56% center;
  }

  .service-card,
  .service-card.featured,
  .service-card.wide {
    min-height: 485px;
  }
}

/* Profile portrait and arched biography composition */
.hero-orbit-card.profile-card {
  min-height: 0;
  padding: 0;
  aspect-ratio: 0.68;
  border-color: rgba(255, 232, 101, 0.34);
  background: #0b0807;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 191, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.52),
    0 0 48px rgba(124, 16, 23, 0.13);
}

.hero-orbit-card.profile-card::before {
  display: none;
}

.hero-profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  filter: saturate(0.88) contrast(1.03) brightness(0.88);
  transform: scale(1.015);
  transition:
    transform 1.1s var(--ease),
    filter 0.5s ease;
}

.profile-card:hover .hero-profile-photo {
  filter: saturate(1) contrast(1.04) brightness(0.95);
  transform: scale(1.055);
}

.hero-profile-vignette {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(20, 3, 5, 0.14), transparent 32%, rgba(3, 3, 3, 0.44) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 32%, rgba(77, 9, 13, 0.08));
  box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.22);
}

.about {
  align-items: center;
  grid-template-columns: minmax(460px, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(65px, 8vw, 110px);
}

.about-visual {
  min-height: 1000px;
}

.about .portrait-frame {
  overflow: hidden;
  width: min(100%, 510px);
  height: 960px;
  border-radius: 255px 255px 10px 10px;
  background:
    radial-gradient(circle at 50% 7%, rgba(255, 225, 70, 0.12), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(153, 22, 29, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(45, 31, 8, 0.94), rgba(12, 9, 7, 0.97) 48%, rgba(20, 6, 8, 0.96));
}

.about .portrait-frame::before {
  z-index: 3;
  pointer-events: none;
}

.about .portrait-frame::after {
  z-index: -1;
}

.about-arch-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding: 138px 47px 48px;
  flex-direction: column;
  justify-content: center;
}

.about-arch-copy .section-heading.compact {
  margin-bottom: 25px;
}

.about-arch-copy .section-heading.compact > div {
  margin-bottom: 20px;
}

.about-arch-copy .section-heading h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.48rem);
}

.about-arch-copy .about-body p {
  margin-bottom: 14px;
  color: #aaa691;
  font-size: 0.77rem;
  line-height: 1.82;
}

.about-arch-copy .about-body p:first-child {
  color: #d0cab1;
  font-size: 0.8rem;
}

.about-arch-copy blockquote {
  position: relative;
  margin: 23px 0 0;
  padding: 20px 19px 20px 57px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--scarlet-bright);
  background: linear-gradient(90deg, rgba(145, 21, 28, 0.13), rgba(255, 226, 69, 0.025), transparent);
}

.about-arch-copy blockquote > span {
  position: absolute;
  top: 8px;
  left: 18px;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
}

.about-arch-copy blockquote p {
  margin: 0;
  color: #e8dfba;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-side-signature {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.about-side-signature::before,
.about-side-signature::after {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 1px;
  content: '';
  background: linear-gradient(transparent, rgba(255, 231, 105, 0.16), rgba(166, 25, 33, 0.18), transparent);
}

.about-side-signature::before {
  left: 0;
}

.about-side-signature::after {
  right: 0;
}

.about-side-kicker {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.about-side-name {
  margin-top: 10px;
  color: #fff4c5;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-side-signature .portrait-symbol {
  position: relative;
  top: auto;
  left: auto;
  width: 260px;
  height: 360px;
  margin: 25px auto -10px;
  transform: none;
}

.about-side-signature .experience-seal {
  position: relative;
  right: auto;
  bottom: auto;
  width: 132px;
  height: 132px;
  margin-top: -28px;
}

.about-side-rule {
  display: block;
  width: 1px;
  height: 85px;
  margin-top: 28px;
  background: linear-gradient(var(--gold), var(--scarlet-matte), transparent);
}

@media (max-width: 1080px) {
  .about {
    grid-template-columns: minmax(430px, 1.08fr) minmax(280px, 0.92fr);
    gap: 55px;
  }

  .about .portrait-frame {
    height: 1010px;
  }

  .about-visual {
    min-height: 1040px;
  }

  .about-arch-copy {
    padding-right: 38px;
    padding-left: 38px;
  }
}

@media (max-width: 780px) {
  .hero-orbit-card.profile-card {
    display: block;
    width: min(100%, 310px);
    margin: 75px auto 0;
  }

  .about {
    display: block;
  }

  .about-visual {
    min-height: 1080px;
    margin-bottom: 55px;
  }

  .about .portrait-frame {
    width: min(100%, 440px);
    height: auto;
    min-height: 1040px;
    border-radius: 220px 220px 9px 9px;
  }

  .about-arch-copy {
    min-height: 1040px;
    padding: 130px 31px 45px;
  }

  .about-arch-copy .section-heading h2 {
    font-size: 2rem;
  }

  .about-side-signature {
    min-height: 670px;
  }

  .vertical-caption {
    left: -46px;
  }
}

@media (max-width: 520px) {
  .hero-orbit-card.profile-card {
    width: min(92%, 300px);
  }

  .about-visual {
    min-height: 1130px;
  }

  .about .portrait-frame,
  .about-arch-copy {
    min-height: 1090px;
  }

  .about-arch-copy {
    padding: 125px 25px 38px;
  }

  .about-arch-copy .section-heading h2 {
    font-size: 1.83rem;
  }

  .about-arch-copy .about-body p,
  .about-arch-copy .about-body p:first-child {
    font-size: 0.74rem;
  }

  .about-side-signature .portrait-symbol {
    transform: scale(0.9);
  }
}

/* Interactive service navigator */
.service-showcase {
  position: relative;
}

.service-stage {
  position: relative;
  overflow: hidden;
  height: clamp(600px, 57vw, 720px);
  border: 1px solid rgba(255, 231, 105, 0.24);
  border-radius: 8px;
  background: #080505;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 178, 0.07),
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 55px rgba(113, 10, 18, 0.1);
}

.service-stage:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.service-stage::after {
  position: absolute;
  z-index: 6;
  inset: 12px;
  pointer-events: none;
  content: '';
  border: 1px solid rgba(255, 237, 128, 0.08);
  border-radius: 4px;
}

.service-slide {
  position: absolute;
  visibility: hidden;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.035);
  transition:
    opacity 0.6s ease,
    transform 1.1s var(--ease),
    visibility 0.6s;
}

.service-slide.active {
  visibility: visible;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.service-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06) brightness(0.78);
  transform: scale(1.025);
  transition:
    transform 7s ease,
    filter 0.7s ease;
}

.service-slide.active .service-slide-image {
  filter: saturate(0.96) contrast(1.05) brightness(0.84);
  transform: scale(1.075);
}

.service-slide-vignette {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 76%, rgba(195, 27, 40, 0.42), transparent 39%),
    linear-gradient(90deg, rgba(18, 2, 4, 0.98) 0%, rgba(93, 9, 17, 0.86) 33%, rgba(164, 24, 35, 0.3) 58%, rgba(6, 5, 4, 0.08) 82%),
    linear-gradient(0deg, rgba(4, 3, 3, 0.8), transparent 58%);
}

.service-slide-content {
  position: absolute;
  z-index: 4;
  bottom: 58px;
  left: clamp(38px, 5vw, 72px);
  width: min(540px, 52%);
}

.service-slide-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.service-slide-meta::before {
  display: block;
  width: 23px;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, var(--scarlet-bright), var(--gold));
}

.service-slide-content h3 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #fff7d6;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.service-slide-content p {
  max-width: 525px;
  margin: 0;
  color: rgba(255, 245, 218, 0.78);
  font-size: 0.9rem;
  line-height: 1.85;
}

.service-slide-content .card-link {
  display: inline-flex;
  width: auto;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 14px 0 10px;
  color: var(--gold-bright);
  border-top-color: rgba(255, 235, 122, 0.28);
  font-size: 0.7rem;
}

.service-controls {
  position: absolute;
  z-index: 8;
  right: 42px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-control {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(255, 233, 112, 0.27);
  border-radius: 50%;
  background: rgba(20, 5, 7, 0.7);
  backdrop-filter: blur(10px);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.service-control:hover {
  color: #fff9d9;
  border-color: var(--gold);
  background: rgba(149, 18, 28, 0.82);
  transform: translateY(-3px);
}

.service-control:focus-visible,
.service-nav-item:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.service-counter {
  min-width: 62px;
  color: rgba(255, 240, 177, 0.7);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
}

.service-navigation {
  display: grid;
  overflow-x: auto;
  padding: 16px 2px 10px;
  grid-auto-columns: minmax(145px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--scarlet-matte) transparent;
  scrollbar-width: thin;
}

.service-navigation::-webkit-scrollbar {
  height: 4px;
}

.service-navigation::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--scarlet-matte);
}

.service-nav-item {
  position: relative;
  overflow: hidden;
  height: 112px;
  padding: 0;
  cursor: pointer;
  color: var(--cream);
  border: 1px solid rgba(255, 232, 107, 0.13);
  border-radius: 4px;
  background: #110608;
  text-align: left;
  transition:
    transform 0.38s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-nav-item img,
.service-nav-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-nav-item img {
  object-fit: cover;
  filter: saturate(0.58) brightness(0.55);
  transform: scale(1.03);
  transition:
    filter 0.35s ease,
    transform 0.6s var(--ease);
}

.service-nav-shade {
  z-index: 1;
  background: linear-gradient(0deg, rgba(39, 4, 8, 0.96), rgba(124, 14, 23, 0.22) 70%, rgba(0, 0, 0, 0.2));
}

.service-nav-number,
.service-nav-title {
  position: absolute;
  z-index: 2;
  left: 13px;
}

.service-nav-number {
  top: 10px;
  color: var(--gold);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-nav-title {
  right: 11px;
  bottom: 11px;
  overflow: hidden;
  color: rgba(255, 246, 215, 0.72);
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.service-nav-item:hover,
.service-nav-item.active {
  transform: translateY(-4px);
  border-color: rgba(255, 230, 91, 0.62);
  box-shadow: 0 10px 30px rgba(92, 6, 13, 0.26);
}

.service-nav-item:hover img,
.service-nav-item.active img {
  filter: saturate(0.95) brightness(0.76);
  transform: scale(1.08);
}

.service-nav-item.active::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: '';
  background: linear-gradient(90deg, var(--scarlet-bright), var(--gold-bright), var(--scarlet-bright));
  box-shadow: 0 0 11px rgba(255, 224, 68, 0.46);
}

.service-nav-item.active .service-nav-title {
  color: #fff7d0;
}

@media (max-width: 780px) {
  .service-stage {
    height: 650px;
  }

  .service-slide-image {
    object-position: center;
  }

  .service-slide-vignette {
    background:
      radial-gradient(circle at 20% 72%, rgba(195, 27, 40, 0.4), transparent 45%),
      linear-gradient(0deg, rgba(20, 2, 5, 0.98) 0%, rgba(96, 10, 18, 0.78) 42%, rgba(132, 17, 27, 0.2) 72%, rgba(5, 5, 5, 0.16));
  }

  .service-slide-content {
    right: 23px;
    bottom: 36px;
    left: 23px;
    width: auto;
  }

  .service-slide-content h3 {
    margin-bottom: 15px;
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .service-slide-content p {
    font-size: 0.8rem;
    line-height: 1.75;
  }

  .service-slide-content .card-link {
    min-width: min(230px, 72%);
    margin-top: 20px;
  }

  .service-controls {
    top: 22px;
    right: 20px;
    bottom: auto;
  }

  .service-control {
    width: 42px;
    height: 42px;
  }

  .service-counter {
    min-width: 48px;
    color: #fff0b5;
  }

  .service-navigation {
    margin-right: -17px;
    margin-left: -17px;
    padding-right: 17px;
    padding-left: 17px;
    grid-auto-columns: 142px;
  }

  .service-nav-item {
    height: 104px;
  }
}

@media (max-width: 520px) {
  .service-stage {
    height: 620px;
    border-radius: 5px;
  }

  .service-stage::after {
    inset: 8px;
  }

  .service-slide-content {
    right: 20px;
    bottom: 30px;
    left: 20px;
  }

  .service-slide-meta {
    margin-bottom: 13px;
  }

  .service-slide-content h3 {
    font-size: 2.05rem;
  }
}

/* Compact in-image navigation for services */
.service-slide-meta,
.service-counter,
.service-nav-item img,
.service-nav-shade,
.service-nav-number,
.service-nav-title {
  display: none;
}

.service-navigation {
  position: absolute;
  z-index: 10;
  bottom: 25px;
  left: 50%;
  display: flex;
  overflow: visible;
  width: auto;
  margin: 0;
  padding: 8px 10px;
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 232, 107, 0.08);
  border-radius: 40px;
  background: rgba(17, 3, 5, 0.36);
  backdrop-filter: blur(8px);
}

.service-nav-item {
  width: 29px;
  height: 5px;
  min-height: 0;
  padding: 0;
  flex: 0 0 29px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 231, 105, 0.32);
  box-shadow: none;
  transition:
    width 0.38s var(--ease),
    flex-basis 0.38s var(--ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.service-nav-item:hover,
.service-nav-item.active {
  transform: none;
  border: 0;
}

.service-nav-item:hover {
  background: rgba(255, 235, 122, 0.7);
}

.service-nav-item.active {
  width: 50px;
  flex-basis: 50px;
  background: linear-gradient(90deg, #b98609, var(--gold-bright), #c89a18);
  box-shadow:
    0 0 8px rgba(255, 224, 68, 0.45),
    0 0 18px rgba(255, 207, 30, 0.2);
}

.service-nav-item.active::after {
  display: none;
}

.service-controls {
  position: absolute;
  z-index: 11;
  inset: 0;
  display: block;
  pointer-events: none;
}

.service-control {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 96px;
  pointer-events: auto;
  color: var(--gold-bright);
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(86, 9, 16, 0.5), rgba(14, 3, 5, 0.08));
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 3.1rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.service-control.previous {
  left: 14px;
}

.service-control.next {
  right: 14px;
  background: linear-gradient(270deg, rgba(86, 9, 16, 0.5), rgba(14, 3, 5, 0.08));
}

.service-control:hover {
  color: #fffbdc;
  border: 0;
  background: linear-gradient(90deg, rgba(156, 21, 31, 0.68), rgba(14, 3, 5, 0.14));
  transform: translateY(-50%) scale(1.06);
}

.service-control.next:hover {
  background: linear-gradient(270deg, rgba(156, 21, 31, 0.68), rgba(14, 3, 5, 0.14));
}

@media (max-width: 780px) {
  .service-navigation {
    right: auto;
    bottom: 18px;
    left: 50%;
    width: auto;
    margin: 0;
    padding: 7px 9px;
    gap: 6px;
    transform: translateX(-50%);
  }

  .service-nav-item {
    width: 23px;
    height: 4px;
    flex-basis: 23px;
  }

  .service-nav-item.active {
    width: 39px;
    flex-basis: 39px;
  }

  .service-controls {
    inset: 0;
  }

  .service-control {
    top: 50%;
    width: 44px;
    height: 84px;
    font-size: 2.7rem;
  }

  .service-control.previous {
    left: 5px;
  }

  .service-control.next {
    right: 5px;
  }

  .service-slide-content {
    right: 58px;
    bottom: 58px;
    left: 58px;
  }
}

@media (max-width: 520px) {
  .service-navigation {
    bottom: 15px;
  }

  .service-control {
    width: 40px;
    height: 76px;
    font-size: 2.45rem;
  }

  .service-slide-content {
    right: 54px;
    bottom: 54px;
    left: 54px;
  }
}

/* Additional success seal in the About section */
.about-side-signature {
  min-height: 920px;
}

.about-side-signature .success-seal {
  margin-top: 18px;
  border-color: rgba(206, 46, 56, 0.42);
  background:
    radial-gradient(circle at 50% 105%, rgba(164, 22, 31, 0.18), transparent 58%),
    rgba(10, 9, 5, 0.94);
  box-shadow:
    inset 0 0 25px rgba(177, 24, 33, 0.08),
    0 16px 50px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(156, 20, 29, 0.08);
}

.about-side-signature .success-seal strong {
  font-size: 1.8rem;
}

.about-side-signature .success-seal span {
  max-width: 92px;
}

.about-side-signature .about-side-rule {
  height: 55px;
  margin-top: 22px;
}

@media (max-width: 780px) {
  .about-side-signature {
    min-height: 890px;
  }
}

/* Custom Maestra Raima brand symbol */
.brand-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  transform: none;
  border-color: rgba(255, 231, 105, 0.62);
  border-radius: 50%;
  background-image: url('imagenes de servicios/simbolo.png');
  background-position: center;
  background-size: 148%;
  box-shadow:
    0 0 0 2px rgba(91, 10, 16, 0.22),
    0 0 18px rgba(255, 213, 42, 0.28),
    0 0 38px rgba(165, 28, 37, 0.12);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  display: none;
}

@media (max-width: 520px) {
  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

/* Arched commitment cards */
#confianza .section-heading.centered > div {
  margin-bottom: 18px;
}

#confianza .commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 0;
}

#confianza .commitment-card,
#confianza .commitment-card:nth-child(2),
#confianza .commitment-card:last-child {
  overflow: hidden;
  width: 100%;
  height: 290px;
  min-height: 290px;
  padding: 103px 34px 32px;
  border: 1px solid rgba(255, 234, 116, 0.22);
  border-radius: 210px 210px 8px 8px;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 225, 70, 0.14), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(153, 22, 29, 0.18), transparent 43%),
    linear-gradient(180deg, rgba(45, 31, 8, 0.94), rgba(12, 9, 7, 0.97) 56%, rgba(20, 6, 8, 0.96));
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 174, 0.07),
    0 22px 60px rgba(0, 0, 0, 0.33);
  transition:
    transform 0.42s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

#confianza .commitment-card::before {
  position: absolute;
  z-index: 1;
  inset: 10px;
  pointer-events: none;
  content: '';
  border: 1px solid rgba(255, 234, 116, 0.07);
  border-radius: 200px 200px 5px 5px;
}

#confianza .commitment-card::after {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 50%;
  color: var(--gold-bright);
  content: '✦';
  transform: translateX(-50%);
  font-size: 0.86rem;
  text-shadow:
    0 0 10px var(--gold),
    0 0 24px rgba(206, 46, 56, 0.42);
}

#confianza .commitment-card h3,
#confianza .commitment-card p {
  position: relative;
  z-index: 3;
}

#confianza .commitment-card h3 {
  margin-bottom: 13px;
  color: #fff4c9;
  font-size: 1.08rem;
}

#confianza .commitment-card p {
  color: #aaa590;
  font-size: 0.73rem;
  line-height: 1.82;
}

#confianza .commitment-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 229, 93, 0.4);
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 225, 70, 0.18), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(176, 25, 35, 0.23), transparent 43%),
    linear-gradient(180deg, rgba(50, 34, 8, 0.96), rgba(13, 9, 7, 0.98) 56%, rgba(24, 6, 9, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 174, 0.09),
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(156, 20, 29, 0.08);
}

@media (max-width: 780px) {
  #confianza .commitment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #confianza .commitment-card,
  #confianza .commitment-card:nth-child(2),
  #confianza .commitment-card:last-child {
    max-width: 390px;
    margin: 0 auto;
  }
}


.footer-seo-nav {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 201, 93, 0.2);
}
.footer-seo-nav h2 {
  margin: 0 0 12px;
  color: #ffe59a;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-seo-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer-seo-links a { color: #d9c9aa; font-size: 0.76rem; text-decoration: none; }
.footer-seo-links a:hover { color: #ffe59a; }
@media (max-width: 620px) {
  .footer-seo-nav { width: min(100% - 32px, 1180px); }
  .footer-seo-links { flex-direction: column; gap: 10px; }
}


.services-detail-link {
  justify-self: start;
  align-self: end;
  color: #f5d879;
  border-bottom: 1px solid rgba(245, 216, 121, 0.45);
  padding-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}
.services-detail-link:hover { color: #fff1b8; border-color: #fff1b8; }
@media (max-width: 900px) { .services-detail-link { grid-column: 1 / -1; } }
