:root {
  --gold-light: #d9b743;
  --gold: #c39d35;
  --gold-dark: #a9791d;
  --silver: #aaa9aa;
  --silver-dark: #878786;
  --silver-light: #c8c7c7;
  --ink: #171717;
  --ink-soft: #313131;
  --white: #ffffff;
  --ivory: #f8f6f1;
  --cream: #efeadf;
  --line: rgba(23, 23, 23, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --gold-gradient: linear-gradient(135deg, #a9791d 0%, #c39d35 48%, #d9b743 100%);
  --silver-gradient: linear-gradient(135deg, #878786 0%, #aaa9aa 48%, #c8c7c7 100%);
  --shadow-soft: 0 1.5rem 5rem rgba(19, 16, 10, 0.1);
  --shadow-gold: 0 1.25rem 3.75rem rgba(169, 121, 29, 0.26);
  --radius-sm: 0.85rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --container: 76rem;
  --header-height: 5.75rem;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 8.8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5.5vw, 5.15rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

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

:focus-visible {
  outline: 0.18rem solid var(--gold);
  outline-offset: 0.25rem;
}

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

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.section-soft {
  background: var(--ivory);
}

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

.section-gold {
  color: var(--ink);
  background: var(--gold-gradient);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.18rem;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor-glow {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(1rem);
}

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

.brand {
  position: relative;
  z-index: 2;
  width: clamp(9.5rem, 24vw, 13rem);
}

.brand img {
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header.is-scrolled .brand img,
body.menu-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  padding: 0.75rem 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: grid;
  gap: 0.35rem;
  width: 1.5rem;
}

.menu-toggle-icon i {
  display: block;
  width: 100%;
  height: 0.12rem;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
  transform: translateY(0.235rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
  transform: translateY(-0.235rem) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.35rem;
  padding: 7rem 2rem 2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}

.nav-panel.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav-panel > a:not(.button) {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 3rem);
  line-height: 1.1;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0.0625rem solid transparent;
  border-radius: 999rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.button span,
.button b {
  position: relative;
  z-index: 1;
}

.button b {
  font-size: 1.1rem;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-105%) skewX(-18deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before {
  transform: translateX(105%) skewX(-18deg);
}

.button:hover {
  transform: translateY(-0.2rem);
}

.button-gold {
  color: var(--ink);
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

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

.button-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

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

.button-small {
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.72rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 0.0625rem solid currentColor;
  padding-bottom: 0.3rem;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.25s ease;
}

.text-link:hover {
  gap: 1rem;
  color: var(--gold-light);
}

.text-link-dark:hover {
  color: var(--gold-dark);
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

.eyebrow-dark {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  will-change: transform;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.25), rgba(9, 9, 9, 0.72)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 48rem;
  margin: 3.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.28);
  padding-top: 1rem;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 500;
}

.hero-trust span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.hero-scroll {
  display: none;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-heading > p:last-child {
  max-width: 40rem;
  color: var(--ink);
  font-size: 1.05rem;
  margin-top: 40px;
}

.section-heading-row {
  max-width: none;
}

.split-layout,
.about-grid,
.solution-grid,
.faq-grid,
.appointment-grid,
.reviews-layout {
  display: grid;
  gap: 3rem;
}

.split-layout .section-heading {
  margin-bottom: 0;
}

.editorial-copy {
  max-width: 42rem;
}

.editorial-copy p {
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  color: var(--ink-soft);
}

.about-gallery {
  position: relative;
  min-height: 36rem;
}

.image-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  height: 100%;
  object-fit: cover;
  object-position: -80px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.image-frame-large {
  inset: 0 2.75rem 6rem 0;
  border-radius: 0 0 var(--radius-lg) 0;
}

.image-frame-small {
  right: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 1 / 1;
  border: 0.65rem solid var(--white);
  border-radius: var(--radius-md) 0 0 0;
}

.floating-note {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 2rem;
  display: inline-flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(0.8rem);
}

.floating-note span {
  color: var(--silver-dark);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.about-copy {
  align-self: center;
}

.about-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.address-card {
  margin-top: 2.5rem;
  border-left: 0.15rem solid var(--gold);
  padding-left: 1.25rem;
}

.address-card span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.address-card p {
  margin: 0.6rem 0;
}

.address-card a {
  font-weight: 700;
}

.section-dark .section-heading > p:last-child,
.section-dark .section-heading-row > p {
  color: rgba(255, 255, 255, 0.66);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-card {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: #252525;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.team-photo {
  position: absolute;
  inset: 0;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.88) 100%);
}

.team-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-info {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  transform: translateZ(2rem);
}

.team-info span,
.team-info p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-info h3 {
  margin-bottom: 0.6rem;
}

.team-info p {
  margin-bottom: 1rem;
}

.team-info a {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.solution-sticky > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  border-top: 0.0625rem solid var(--line);
  padding-block: 2rem;
}

.process-item:last-child {
  border-bottom: 0.0625rem solid var(--line);
}

.process-item > span,
.service-card > span,
.benefit-card > span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-item h3 {
  margin-bottom: 0.75rem;
}

.process-item p {
  margin-bottom: 0;
  color: var(--silver-dark);
}

.benefits-grid,
.services-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0.0625rem solid rgba(23, 23, 23, 0.22);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(0.5rem);
  transition: background 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-0.35rem);
}

.benefit-card span {
  margin-bottom: auto;
  color: var(--ink);
}

.benefit-card h3 {
  margin-bottom: 0.75rem;
}

.benefit-card p {
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0.0625rem solid var(--line);
  padding: 1.5rem;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--ink);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-0.35rem);
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  margin: auto 0 0.75rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--silver-dark);
  transition: color 0.35s ease;
}

.service-card:hover p,
.service-card:hover span {
  color: rgba(255, 255, 255, 0.7);
}

.media-section {
  background: #f2efe8;
}

.video-grid {
  display: grid;
  gap: 1.5rem;
}

.video-card {
  margin: 0;
}

.video-card video {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.video-card-wide video {
  aspect-ratio: 16 / 9;
}

.video-card > div {
  padding-top: 1rem;
}

.video-card span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.5rem;
}

.results-grid {
  display: grid;
  gap: 1rem;
}

.result-card {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
}

.result-card img {
  aspect-ratio: 1 / 0.94;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.62));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.result-card span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.result-card:hover::after,
.result-card:hover span {
  opacity: 1;
}

.result-card:hover span {
  transform: translateY(0);
}

.reviews-section {
  background: var(--white);
}

.reviews-intro > p:not(.eyebrow) {
  color: var(--silver-dark);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.rating-summary > strong {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
}

.rating-summary div {
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
}

.rating-summary small {
  color: var(--silver-dark);
}

.reviews-widget {
  position: relative;
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0.0625rem solid var(--line);
  padding: 1.5rem;
  background: var(--ivory);
  overflow: hidden;
}

.reviews-widget::before {
  content: "“";
  position: absolute;
  top: -2.5rem;
  right: 1rem;
  color: rgba(195, 157, 53, 0.16);
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
}

.reviews-status {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
}

.reviews-status p {
  max-width: 28rem;
  margin: 0;
  color: var(--silver-dark);
}

.reviews-status a {
  color: var(--gold-dark);
  font-weight: 700;
}

.loader {
  width: 2.25rem;
  aspect-ratio: 1;
  border: 0.18rem solid rgba(195, 157, 53, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.reviews-track {
  position: relative;
  z-index: 1;
}

.review-card {
  display: none;
}

.review-card.is-active {
  display: block;
  animation: reviewIn 0.5s ease both;
}

.review-card .stars {
  display: block;
  margin-bottom: 1.5rem;
}

.review-card blockquote {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.35;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--silver-gradient);
  font-weight: 700;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author small {
  color: var(--silver-dark);
}

.reviews-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.0625rem solid var(--line);
  margin-top: 2rem;
  padding-top: 1rem;
}

.reviews-controls button {
  width: 3rem;
  aspect-ratio: 1;
  border: 0.0625rem solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.reviews-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

.reviews-controls span {
  color: var(--silver-dark);
  font-size: 0.78rem;
}

.faq-list {
  border-top: 0.0625rem solid var(--line);
}

.faq-item {
  border-bottom: 0.0625rem solid var(--line);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 0;
  padding: 1.5rem 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 1rem;
  font-weight: 600;
}

.faq-item button i {
  position: relative;
  flex: 0 0 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: currentColor;
  transition: transform 0.25s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 0 1.5rem;
}

.faq-answer p {
  max-width: 44rem;
  margin: 0;
  color: var(--silver-dark);
}

.appointment-section {
  overflow: hidden;
}

.appointment-section::before {
  content: "";
  position: absolute;
  top: -18rem;
  right: -18rem;
  width: 42rem;
  aspect-ratio: 1;
  border: 0.0625rem solid rgba(217, 183, 67, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4rem rgba(217, 183, 67, 0.035), inset 0 0 0 9rem rgba(217, 183, 67, 0.025);
}

.appointment-copy,
.appointment-form {
  position: relative;
  z-index: 1;
}

.appointment-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  border-top: 0.0625rem solid var(--line-light);
  padding-block: 1rem;
}

.contact-list li:last-child {
  border-bottom: 0.0625rem solid var(--line-light);
}

.contact-list span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list p {
  margin: 0;
}

.appointment-form {
  border: 0.0625rem solid var(--line-light);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(1rem);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-light);
  outline: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.form-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  text-align: center;
}

.final-cta {
  text-align: center;
  background: var(--gold-gradient);
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 22rem;
  aspect-ratio: 1;
  border: 0.0625rem solid rgba(23, 23, 23, 0.16);
  border-radius: 50%;
}

.final-cta::before {
  top: -12rem;
  left: -10rem;
}

.final-cta::after {
  right: -12rem;
  bottom: -14rem;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 43rem;
  margin: 0 auto 2rem;
}

.map-section {
  height: 28rem;
  background: var(--cream);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.92);
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #0f0f0f;
  padding-block: 4.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand img {
  width: 12rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 1rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 0.0625rem solid var(--line-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 700;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: #1f9d55;
  box-shadow: 0 1rem 2.5rem rgba(31, 157, 85, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-0.25rem) scale(1.02);
  box-shadow: 0 1.2rem 3rem rgba(31, 157, 85, 0.42);
}

.whatsapp-float span {
  display: grid;
  width: 1.65rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.0625rem solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.whatsapp-float b {
  font-size: 0.75rem;
}

.lightbox {
  width: min(92vw, 62rem);
  max-height: 90vh;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(0.5rem);
}

.lightbox img {
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 1;
  top: -2.8rem;
  right: 0;
  width: 2.5rem;
  aspect-ratio: 1;
  border: 0.0625rem solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes reviewIn {
  from { opacity: 0; transform: translateX(1rem); }
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 42rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

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

  .video-grid {
    grid-template-columns: 0.3fr 0.3fr 0.3fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 62rem) {
  .cursor-glow {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    display: block;
    width: 18rem;
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(217, 183, 67, 0.11), transparent 68%);
    transform: translate(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 50vh) - 50%));
    transition: opacity 0.3s ease;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
    padding: 0;
    color: inherit;
    background: transparent;
    transform: none;
    visibility: visible;
  }

  .nav-panel > a:not(.button) {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .nav-panel > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.4rem;
    left: 0;
    height: 0.08rem;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .nav-panel > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .hero-content {
    padding-bottom: 5.5rem;
  }

  .hero-scroll {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    width: 3rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 0.0625rem solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
  }

  .hero-scroll span {
    width: 0.45rem;
    height: 0.45rem;
    border-right: 0.1rem solid var(--white);
    border-bottom: 0.1rem solid var(--white);
    transform: rotate(45deg) translate(-0.08rem, -0.08rem);
    animation: scrollPulse 1.8s ease-in-out infinite;
  }

  .section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    align-items: start;
    gap: 5rem;
  }

  .section-heading-row > p {
    margin-bottom: 0.8rem;
  }

  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 7rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 6rem;
  }

  .about-gallery {
    min-height: 46rem;
  }

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

  .solution-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 7rem;
    align-items: start;
  }

  .solution-sticky {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
  }

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

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

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

  .reviews-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 7rem;
    align-items: center;
  }

  .reviews-widget {
    padding: 3rem;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 7rem;
    align-items: start;
  }

  .faq-grid .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
    margin-bottom: 0;
  }

  .appointment-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 7rem;
    align-items: start;
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) translate(-0.08rem, -0.08rem); }
  50% { opacity: 1; transform: rotate(45deg) translate(0.2rem, 0.2rem); }
}

@media (min-width: 78rem) {
  .nav-panel {
    gap: 1.7rem;
  }
}

@media (max-width: 31rem) {
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust li {
    display: grid;
    grid-template-columns: 8rem 1fr;
    align-items: baseline;
    gap: 0.75rem;
  }

  .whatsapp-float b {
    display: none;
  }

  .whatsapp-float {
    width: 3.5rem;
    aspect-ratio: 1;
    justify-content: center;
    padding: 0;
  }
}

@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;
  }

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

  .cursor-glow {
    display: none;
  }
}


#faq-title{
font-size: clamp(2.35rem, 5.5vw, 4.5rem);
}

.service-modal-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.service-modal {
  width: min(92vw, 600px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #1c1c1c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.service-modal::backdrop {
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(3px);
}

.service-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid #e8e8e8;
}

.service-modal__header h2 {
  margin: 0;
}

.service-modal__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

#serviceModalContent {
  padding: 26px 28px 30px;
}

#serviceModalContent p {
  margin: 0 0 20px;
  line-height: 1.65;
}

#serviceModalContent p:last-child {
  margin-bottom: 0;
}

.service-modal__header h2{
  font-size: 3rem;
}


.service-card {
  position: relative;
}

.service-modal-trigger {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.service-modal-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-modal-trigger:hover {
  text-decoration: underline;
}

.service-modal-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
  border-radius: 2px;
}