:root {
  --primary-color: #6f2737;
  --primary-color-rgb: 111, 39, 55;
  --primary-color-dark: #4d1824;
  --primary-color-dark-rgb: 77, 24, 36;
  --secondary-color: #b3935f;
  --secondary-color-rgb: 179, 147, 95;
  --secondary-color-dark: #8d7042;
  --bg-dark-1: #4d1824;
  --bg-dark-2: #2d1118;
  --background-color: #fcfaf7;
  --surface-color: #ffffff;
  --surface-soft: #f4eee8;
  --text-main: #2f2929;
  --text-body: #665d5d;
  --text-strong: #433a3a;
  --border-color: #e6ddd7;
  --surface-border: rgba(77, 24, 36, 0.12);
  --success-color: #267a55;
  --error-color: #9f2435;
  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 45px rgba(77, 24, 36, 0.06);
  --shadow-soft-hover: 0 28px 60px rgba(77, 24, 36, 0.1);
  --shadow-card: 0 14px 32px rgba(77, 24, 36, 0.05);
}

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

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-body);
  background: var(--background-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.drawer-open {
  overflow: hidden;
}

body.legal-open {
  overflow: hidden;
}

body.legal-pending {
  overflow: visible;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(var(--secondary-color-rgb), 0.42);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 60;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--bg-dark-2);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.legal-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-top: 1px solid rgba(var(--secondary-color-rgb), 0.22);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -18px 45px rgba(17, 8, 10, 0.09);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.legal-banner-copy,
.legal-banner-actions {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.legal-banner-kicker {
  margin-bottom: 0.2rem;
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-banner-copy h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  letter-spacing: -0.03em;
}

.legal-banner-copy p {
  max-width: 58rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.legal-banner-copy a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.legal-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.legal-banner-actions .btn {
  min-height: 2.85rem;
  padding: 0.8rem 1.05rem;
  font-size: 0.86rem;
}

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(21, 10, 13, 0.58);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.legal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-overlay[hidden] {
  display: none !important;
}

.legal-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  height: min(78vh, 680px);
  overflow: hidden;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(var(--secondary-color-rgb), 0.23) 0%, rgba(var(--secondary-color-rgb), 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 250, 247, 0.98) 100%);
  box-shadow: 0 34px 100px rgba(16, 8, 10, 0.32);
  animation: legalModalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes legalModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.legal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(var(--primary-color-dark-rgb), 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
}

.legal-head {
  max-width: 42rem;
  margin: 0;
  padding: 2.2rem 5rem 1.75rem 2.25rem;
  border-bottom: 1px solid rgba(var(--secondary-color-rgb), 0.15);
}

.legal-head h2 {
  margin-bottom: 0.95rem;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.legal-grid {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(var(--primary-color-rgb), 0.42) rgba(var(--secondary-color-rgb), 0.09);
}

.legal-grid::-webkit-scrollbar {
  width: 0.65rem;
}

.legal-grid::-webkit-scrollbar-track {
  margin: 0.8rem 0;
  border-radius: 999px;
  background: rgba(var(--secondary-color-rgb), 0.09);
}

.legal-grid::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(var(--primary-color-rgb), 0.42);
  background-clip: padding-box;
}

.legal-card {
  display: none;
  padding: 1.8rem 2.25rem 0.4rem;
}

.legal-card.is-active {
  display: block;
  animation: legalPanelIn 0.28s ease both;
}

@keyframes legalPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-card h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 1.08rem;
}

.legal-card i {
  color: var(--primary-color);
}

.legal-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-actions {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-top: 0;
  padding: 1.4rem 2.25rem 2rem;
  border-top: 1px solid rgba(var(--secondary-color-rgb), 0.15);
}

.legal-secondary {
  border-color: rgba(var(--primary-color-dark-rgb), 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-color-dark);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-main);
  font-family: "Urbanist", sans-serif;
  line-height: 1.12;
}

p {
  margin: 0;
  line-height: 1.8;
}

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

.section {
  padding: 7rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at top center, rgba(179, 147, 95, 0.08) 0%, rgba(179, 147, 95, 0) 38%),
    linear-gradient(180deg, rgba(179, 147, 95, 0.05) 0%, rgba(244, 238, 232, 0.88) 100%);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3.4rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.content-block h2,
.cta-inner h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  letter-spacing: -0.04em;
}

.section-heading p:last-child,
.content-block > p {
  margin-top: 1.5rem;
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 1rem 1.45rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(var(--primary-color-rgb), 0.18);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  backdrop-filter: blur(10px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  overflow: clip;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(var(--primary-color-dark-rgb), 0.06);
  box-shadow: 0 10px 36px rgba(77, 24, 36, 0.06);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition:
    transform 0.45s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.at-hero {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(252, 250, 247, 0.82);
  border-bottom-color: rgba(var(--primary-color-dark-rgb), 0.08);
  box-shadow: 0 14px 36px rgba(77, 24, 36, 0.08);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 14px));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
}

.logo-image {
  display: block;
  width: auto;
  height: 116px;
}

.logo-image-default {
  filter: brightness(0) saturate(100%) invert(17%) sepia(25%) saturate(3223%) hue-rotate(295deg) brightness(94%) contrast(91%);
}

.logo-image-inverse {
  display: none;
}

.site-header.at-hero .logo-image-default {
  display: none;
}

.site-header.at-hero .logo-image-inverse {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex: 1 1 auto;
  color: var(--text-main);
}

.site-header.at-hero .main-nav {
  color: #fff;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.35rem 0.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--secondary-color-rgb), 0) 0%, rgba(var(--secondary-color-rgb), 0.95) 50%, rgba(var(--secondary-color-rgb), 0) 100%);
  transform: scaleX(0.2);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.site-header.at-hero .main-nav a:hover,
.site-header.at-hero .main-nav a:focus-visible {
  color: #fff7e8;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(var(--primary-color-dark-rgb), 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(77, 24, 36, 0.06);
  backdrop-filter: blur(14px);
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.28s ease, opacity 0.28s ease, background-color 0.28s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--secondary-color-rgb), 0.4);
  box-shadow: 0 14px 30px rgba(77, 24, 36, 0.1);
}

.site-header.at-hero .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header.at-hero .menu-toggle span {
  background: #fff;
}

.nav-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(19, 8, 11, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: drawerBackdropIn 0.35s ease forwards;
}

.nav-drawer-backdrop[hidden] {
  display: none !important;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 61;
  width: min(440px, 92vw);
  height: 100vh;
  padding: 1rem;
  pointer-events: none;
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  height: 100%;
  padding: 1.4rem 1.45rem 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(111, 39, 55, 0.94) 0%, rgba(77, 24, 36, 0.97) 100%);
  box-shadow: -24px 0 60px rgba(17, 7, 10, 0.28);
  transform: translateX(110%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.nav-drawer.is-open {
  pointer-events: auto;
}

.nav-drawer.is-open .nav-drawer-inner {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-drawer-logo {
  width: auto;
  height: 88px;
}

.nav-drawer-close {
  display: inline-grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.nav-drawer-close:hover,
.nav-drawer-close:focus-visible {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(var(--secondary-color-rgb), 0.42);
}

.nav-drawer-nav {
  display: grid;
  gap: 0.4rem;
}

.nav-drawer-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Urbanist", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transform: translateX(22px);
  opacity: 0;
  transition:
    color 0.28s ease,
    transform 0.42s ease,
    opacity 0.42s ease;
}

.nav-drawer.is-open .nav-drawer-nav a {
  transform: translateX(0);
  opacity: 1;
}

.nav-drawer-nav a:nth-child(1) {
  transition-delay: 0.06s;
}

.nav-drawer-nav a:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-drawer-nav a:nth-child(3) {
  transition-delay: 0.14s;
}

.nav-drawer-nav a:nth-child(4) {
  transition-delay: 0.18s;
}

.nav-drawer-nav a:nth-child(5) {
  transition-delay: 0.22s;
}

.nav-drawer-nav a:nth-child(6) {
  transition-delay: 0.26s;
}

.nav-drawer-nav a:nth-child(7) {
  transition-delay: 0.3s;
}

.nav-drawer-nav a:nth-child(8) {
  transition-delay: 0.34s;
}

.nav-drawer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.8rem;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(var(--secondary-color-rgb), 0) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-drawer-nav a:hover,
.nav-drawer-nav a:focus-visible {
  color: #fff7e8;
}

.nav-drawer-nav a:hover::after,
.nav-drawer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 20%, rgba(255, 255, 255, 0.16) 80%, rgba(255, 255, 255, 0) 100%);
}

.nav-drawer-info {
  display: grid;
  gap: 1rem;
}

.nav-drawer-block {
  display: grid;
  gap: 0.35rem;
}

.nav-drawer-block span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-drawer-block strong,
.nav-drawer-block a,
.nav-drawer-block p {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.7;
}

.nav-drawer-cta {
  margin-top: auto;
  min-height: 3.5rem;
}

@keyframes drawerBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: min(860px, 100svh);
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-overlay,
.hero-alice-blend {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 4s ease;
}

.hero-slide-alice {
  background-position: 72% center;
  background-size: cover;
}

.hero-alice-blend {
  display: none;
}

@media (min-width: 901px) {
  .hero-slide-alice {
    background-color: var(--bg-dark-2);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto calc(100% - 110px);
  }

  .hero-alice-blend {
    display: block;
    pointer-events: none;
    background:
      linear-gradient(90deg, var(--bg-dark-2) 0%, var(--bg-dark-2) 16%, rgba(45, 17, 24, 0.98) 27%, rgba(77, 24, 36, 0.78) 40%, rgba(77, 24, 36, 0.34) 54%, rgba(77, 24, 36, 0) 68%),
      linear-gradient(180deg, rgba(45, 17, 24, 0.16) 0%, rgba(45, 17, 24, 0) 34%, rgba(45, 17, 24, 0.12) 100%);
  }

}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(45, 17, 24, 0.88) 0%, rgba(77, 24, 36, 0.7) 28%, rgba(77, 24, 36, 0.24) 58%, rgba(45, 17, 24, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(160px, 24vh, 245px);
  padding-bottom: 120px;
  min-height: 420px;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.hero-copy-panel {
  display: none;
  position: relative;
  width: min(660px, 100%);
}

.hero-copy-panel.is-active {
  display: block;
  animation: heroCopyReveal 0.55s ease both;
}

@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-copy h1,
.hero-copy h2 {
  color: #fff;
  max-width: 44rem;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-description {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.hero-description + .hero-description {
  margin-top: 0.9rem;
}

.hero-description-secondary {
  color: rgba(255, 255, 255, 0.76);
}

.hero-cta {
  margin-top: 1.5rem;
  padding: 0.88rem 1.2rem;
  font-size: 0.88rem;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.8rem;
}

.hero-control {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-rating strong {
  font-size: 1.7rem;
  line-height: 1;
}

.hero-rating-note {
  flex-basis: 100%;
  font-size: 0.84rem;
}

.hero-eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stars {
  display: inline-flex;
  gap: 0.35rem;
  color: #f0c76a;
  text-shadow: 0 0 12px rgba(240, 199, 106, 0.28);
}

.info-strip {
  background: var(--bg-dark-1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 100%);
}

.info-item + .info-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item i {
  font-size: 2.4rem;
  color: var(--primary-color);
}

.info-item h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  line-height: 1.6;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: center;
}

.about-layout {
  gap: 4rem;
}

.image-stack {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.stack-card {
  width: calc(50% - 0.75rem);
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  aspect-ratio: 0.74;
  box-shadow: var(--shadow-soft);
}

.stack-bottom {
  margin-top: 58px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.2rem;
  padding: 0;
  margin: 2rem 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 700;
}

.check-list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
}

.services-grid,
.stats-grid,
.feature-grid,
.team-grid,
.footer-grid {
  display: grid;
}

.services-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.65rem;
}

.service-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-color);
  border: 1px solid rgba(var(--secondary-color-rgb), 0.16);
  box-shadow: var(--shadow-card);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 2.2rem;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
}

.service-card p {
  min-height: 120px;
  font-size: 0.98rem;
}

.service-link {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.42);
  border-radius: 50%;
  color: var(--text-main);
}

.section-action {
  margin-top: 3rem;
  text-align: center;
}

.stats {
  background: var(--bg-dark-1);
  padding: 4rem 0;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1.25rem 1rem;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-family: "Urbanist", sans-serif;
}

.stat span {
  font-size: 0.98rem;
}

.why-layout {
  gap: 3rem;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--primary-color-dark-rgb), 0.14);
}

.feature-grid h3 {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.feature-grid p {
  font-size: 0.98rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1.2rem;
}

.mosaic-card {
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  aspect-ratio: 1.12;
  box-shadow: var(--shadow-soft);
}

.mosaic-card.tall {
  grid-row: span 2;
  aspect-ratio: 0.78;
}

.professional-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(var(--secondary-color-rgb), 0.14) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 238, 232, 0.98) 100%);
  box-shadow: 0 28px 64px rgba(77, 24, 36, 0.07);
  overflow: hidden;
}

.professional-spotlight::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-color-rgb), 0.16) 0%, rgba(var(--secondary-color-rgb), 0) 70%);
  pointer-events: none;
}

.professional-visual {
  position: relative;
}

.professional-frame {
  position: relative;
  padding: 1.2rem;
  border-radius: 30px;
  background:
    linear-gradient(155deg, rgba(var(--primary-color-rgb), 0.95) 0%, rgba(var(--primary-color-dark-rgb), 0.96) 100%);
  box-shadow: 0 24px 48px rgba(77, 24, 36, 0.16);
}

.professional-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.18);
  pointer-events: none;
}

.professional-photo-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, #f8f4ef 0%, #ece2d7 100%);
}

.professional-photo-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--secondary-color-rgb), 0.22) 0%, rgba(var(--secondary-color-rgb), 0) 32%),
    linear-gradient(90deg, rgba(77, 24, 36, 0.08) 0%, rgba(77, 24, 36, 0) 40%);
  pointer-events: none;
}

.professional-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: normal;
}

.professional-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-color-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(32, 16, 20, 0.16);
  backdrop-filter: blur(10px);
}

.professional-badge-top {
  top: auto;
  bottom: 1.8rem;
  left: 1.8rem;
}

.professional-badge-bottom {
  right: 1.8rem;
  bottom: 1.8rem;
}

.professional-copy {
  position: relative;
  z-index: 1;
  padding-right: 1rem;
}

.professional-kicker {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.professional-copy h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.professional-role {
  margin-bottom: 1.3rem;
  color: var(--text-strong);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.6;
}

.professional-copy > p:last-of-type {
  max-width: 40rem;
}

.professional-highlights {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
}

.professional-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-strong);
  font-weight: 600;
}

.professional-highlights span::before {
  content: "\f00c";
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(var(--secondary-color-rgb), 0.16);
  color: var(--primary-color);
  font-family: "Font Awesome 6 Free";
  font-size: 0.72rem;
  font-weight: 900;
}

.professional-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.professional-secondary-btn {
  border-color: rgba(var(--primary-color-rgb), 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary-color-dark);
}

.professional-secondary-btn:hover {
  background: rgba(var(--secondary-color-rgb), 0.12);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid rgba(var(--primary-color-dark-rgb), 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 2rem 1.15rem 0;
  list-style: none;
  cursor: pointer;
  color: var(--text-strong);
  font-size: 1.04rem;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
}

.faq-list details[open] summary::after {
  content: "\f106";
}

.faq-list p {
  padding: 0 0 1.15rem;
  font-size: 0.98rem;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 1.25rem 0 2.25rem;
  margin: -1.25rem 0 -2.75rem;
}

.testimonial-wrap::before,
.testimonial-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.75rem;
  background: var(--surface-soft);
  pointer-events: none;
  z-index: 2;
}

.testimonial-wrap::before {
  left: 0;
}

.testimonial-wrap::after {
  right: 0;
}

.testimonial-rail {
  --testimonial-gap: 1rem;
  display: flex;
  gap: var(--testimonial-gap);
  width: 100%;
  padding: 0.25rem 0 1rem;
  margin-inline: 0;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-gap) * 3)) / 4);
  width: calc((100% - (var(--testimonial-gap) * 3)) / 4);
  min-height: 23rem;
  padding: 1.25rem 1rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface-color);
  border: 1px solid rgba(var(--secondary-color-rgb), 0.14);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.quote-mark {
  display: block;
  color: var(--primary-color);
  font-size: 1.8rem;
  text-align: left;
}

.testimonial-avatar {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0.1rem auto 0.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.9rem;
}

.testimonial-author strong {
  color: var(--text-main);
  font-size: 0.92rem;
}

.testimonial-card p {
  font-size: 0.84rem;
  line-height: 1.65;
}

.cta-band {
  background: linear-gradient(135deg, #8d7042 0%, #b3935f 100%);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.6rem 0;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.cta-note {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer {
  background: linear-gradient(180deg, #2d1118 0%, #1d0b10 100%);
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
  gap: 2.4rem;
  padding: 6rem 0 5rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.site-footer .logo-image {
  height: 148px;
}

.site-footer h3 {
  margin-bottom: 1.3rem;
  color: #fff;
  font-size: 1.08rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.97rem;
}

.socials {
  display: flex;
  gap: 1.3rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
}

.footer-contact-item {
  margin-bottom: 1.8rem;
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 0.98rem;
}

.footer-contact-item i {
  color: var(--primary-color);
}

.footer-hours {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.8rem;
}

.footer-hours p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-hours span:first-child {
  color: rgba(255, 255, 255, 0.76);
}

.footer-hours span:last-child {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.footer-hours-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
}

.footer-hours-panel + .footer-hours-panel {
  margin-top: 0.8rem;
}

.footer-hours-panel summary {
  display: grid;
  gap: 0.35rem;
  cursor: pointer;
  list-style: none;
}

.footer-hours-panel summary::-webkit-details-marker {
  display: none;
}

.footer-hours-panel summary span {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-hours-panel summary strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(var(--primary-color-rgb), 0.22);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 5rem;
  z-index: 48;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.34);
  font-size: 1.5rem;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -0.55rem;
  z-index: 0;
  border: 2px solid rgba(77, 255, 156, 0.82);
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42);
  opacity: 0;
  pointer-events: none;
  animation: whatsapp-pulse 2.35s ease-out infinite;
}

.whatsapp-float i {
  position: relative;
  z-index: 1;
}

@keyframes whatsapp-pulse {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.8);
  }

  12% {
    opacity: 0.9;
  }

  70%,
  100% {
    box-shadow: 0 0 0 1rem rgba(37, 211, 102, 0);
    opacity: 0;
    transform: scale(1.32);
  }
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 38px rgba(18, 140, 126, 0.4);
}

@media (max-width: 1180px) {
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid,
  .faq-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .mosaic {
    max-width: 760px;
  }

  .professional-spotlight {
    grid-template-columns: 1fr;
  }

  .professional-copy {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .legal-banner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 1rem;
  }

  .legal-banner-actions {
    justify-content: flex-start;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
  }

  .nav-drawer-backdrop,
  .nav-drawer {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .site-header.at-hero {
    background: var(--bg-dark-2);
    backdrop-filter: none;
  }

  .hero-copy-panel.is-active {
    animation: heroCopyRevealMobile 0.3s ease both;
  }

  .reveal,
  .reveal.is-visible {
    filter: none;
  }

  .reveal {
    transform: translateY(12px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide-alice {
    background-color: var(--bg-dark-2);
    background-position: 64% bottom;
    background-repeat: no-repeat;
    background-size: auto calc(100% - 92px);
  }

  .hero-content {
    padding-top: 180px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 3.2rem;
  }

  .info-grid,
  .stats-grid,
  .services-grid,
  .check-list,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .info-item + .info-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-controls {
    right: 1rem;
    bottom: 1rem;
  }

  .testimonial-card {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
    width: calc((100% - var(--testimonial-gap)) / 2);
    min-height: 21rem;
  }

  .professional-photo-shell,
  .professional-photo {
    min-height: 520px;
  }

  .professional-badge-top,
  .professional-badge-bottom {
    position: static;
  }

  .professional-frame {
    display: grid;
    gap: 1rem;
  }
}

@keyframes heroCopyRevealMobile {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .legal-banner {
    padding: 0.9rem 0.85rem;
  }

  .legal-banner-actions {
    flex-direction: column;
  }

  .legal-banner-actions .btn {
    width: 100%;
  }

  .legal-overlay {
    padding: 1rem;
  }

  .legal-modal {
    height: min(82vh, 680px);
    padding: 0;
    border-radius: 24px;
  }

  .legal-head {
    padding: 1.75rem 4.3rem 1.35rem 1.35rem;
  }

  .legal-card {
    padding: 1.35rem 1.35rem 0.25rem;
  }

  .legal-actions {
    padding: 1.1rem 1.35rem 1.35rem;
  }

  .section {
    padding: 4.6rem 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo-image {
    height: 96px;
  }

  .site-footer .logo-image {
    height: 128px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 2.5rem;
  }

  .hero-rating {
    gap: 0.65rem;
    font-size: 0.9rem;
  }

  .image-stack {
    flex-direction: column;
  }

  .stack-card,
  .stack-bottom {
    width: 100%;
    margin-top: 0;
  }

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

  .mosaic-card.tall {
    grid-row: auto;
    aspect-ratio: 1.2;
  }

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

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-controls {
    display: none;
  }

  .testimonial-card {
    flex-basis: 100%;
    width: 100%;
    min-height: auto;
  }

  .footer-hours p {
    flex-direction: column;
    gap: 0.1rem;
  }

  .footer-hours span:last-child {
    text-align: left;
  }

  .professional-spotlight {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .professional-frame {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .professional-photo-shell,
  .professional-photo {
    min-height: 420px;
  }

  .professional-copy h3 {
    font-size: 2.3rem;
  }

  .professional-role {
    font-size: 1.02rem;
  }

  .professional-cta-row {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Dentia-inspired refinements */
.eyebrow.accent,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: 0.14em;
}

.eyebrow.accent::before,
.hero-eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--secondary-color-rgb), 0) 0%, rgba(var(--secondary-color-rgb), 0.95) 100%);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 24px rgba(77, 24, 36, 0.08);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.38s ease;
}

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

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(0);
}

.btn-primary::before,
.nav-cta::before {
  background: linear-gradient(135deg, #7e3042 0%, #55202c 100%);
}

.btn-outline-light::before,
.professional-secondary-btn::before {
  background: rgba(255, 255, 255, 0.16);
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--secondary-color-rgb), 0) 0%, rgba(var(--secondary-color-rgb), 1) 50%, rgba(var(--secondary-color-rgb), 0) 100%);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--secondary-color);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.hero-content {
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: min(42rem, 100%);
}

.hero-copy h1,
.hero-copy h2 {
  text-wrap: balance;
  max-width: 11ch;
  text-shadow: 0 12px 34px rgba(26, 10, 14, 0.2);
}

.info-item,
.service-card,
.mosaic-card,
.testimonial-card,
.faq-list details,
.professional-spotlight,
.professional-frame {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(var(--secondary-color-rgb), 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-icon,
.service-link {
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--secondary-color-rgb), 0.34);
  box-shadow: var(--shadow-soft-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.06);
  color: var(--secondary-color-dark);
}

.service-card:hover .service-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: rotate(90deg);
}

.mosaic-card {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mosaic-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-soft-hover);
}

.faq-list {
  gap: 0.25rem;
}

.faq-list details {
  padding-inline: 1rem;
  border-bottom-color: rgba(var(--primary-color-dark-rgb), 0.08);
  border-radius: 18px;
}

.faq-list details:hover,
.faq-list details[open] {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(77, 24, 36, 0.05);
}

.faq-list summary,
.faq-list summary::after {
  transition: color 0.28s ease, transform 0.28s ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--primary-color-dark);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.testimonial-wrap {
  padding-top: 1.75rem;
  margin-top: -1.75rem;
}

.testimonial-wrap::before,
.testimonial-wrap::after {
  display: none;
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 250, 247, 0.98) 100%);
  box-shadow:
    0 20px 40px rgba(77, 24, 36, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--secondary-color-rgb), 0.3);
  box-shadow: 0 22px 44px rgba(77, 24, 36, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    filter 0.7s ease;
}

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

.socials a {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(var(--secondary-color-rgb), 0.45);
  background: rgba(var(--secondary-color-rgb), 0.12);
}

.whatsapp-float {
  right: 1.4rem;
  bottom: 5.3rem;
  z-index: 49;
}

.back-to-top {
  z-index: 48;
}

@media (max-width: 900px) {
  .hero-content {
    min-height: 360px;
  }

  .reveal,
  .reveal.is-visible {
    filter: none;
  }

  .main-nav a::after {
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-copy h1,
  .hero-copy h2 {
    max-width: 12ch;
  }

  .socials {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 4.9rem;
  }
}
