/* Imprio Barber Club  premium commercial */

:root {
  --black-deep: #050505;
  --graphite: #111111;
  --gold-aged: #c6a55a;
  --gold-champagne: #d8c28b;
  --white-elegant: #f8f8f8;
  --overlay: rgba(5, 5, 5, 0.78);
  --overlay-light: rgba(5, 5, 5, 0.42);
  --border-subtle: rgba(198, 165, 90, 0.24);
  --border-glow: rgba(198, 165, 90, 0.45);
  --font-serif: "Bodoni Moda", "Cormorant Garamond", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --radius-card: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 28px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(198, 165, 90, 0.08);
  --shadow-hover: 0 36px 72px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(198, 165, 90, 0.18);
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --tap-size: 52px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

:focus-visible {
  outline: 2px solid var(--gold-aged);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: var(--gold-aged);
  color: var(--black-deep);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: max(clamp(1.5rem, 5vw, 2.75rem), env(safe-area-inset-top))
    max(clamp(1.25rem, 4vw, 2.5rem), env(safe-area-inset-right))
    max(clamp(2.25rem, 7vw, 4rem), env(safe-area-inset-bottom))
    max(clamp(1.25rem, 4vw, 2.5rem), env(safe-area-inset-left));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.02);
  animation: heroKen 18s ease-out both;
}

@keyframes heroKen {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img {
    animation: none;
    transform: none;
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      185deg,
      rgba(5, 5, 5, 0.25) 0%,
      rgba(5, 5, 5, 0.45) 28%,
      rgba(5, 5, 5, 0.88) 72%,
      rgba(5, 5, 5, 0.97) 100%
    ),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(198, 165, 90, 0.12) 0%, transparent 52%);
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65), inset 0 -80px 100px rgba(5, 5, 5, 0.9);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(216, 194, 139, 0.72);
  margin: 0 0 1.25rem;
  animation: heroFade 1s var(--transition) both;
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.35rem, 4.5vw, 2.25rem);
  animation: heroFade 1s 0.08s var(--transition) both;
}

.hero__logo {
  position: relative;
  width: clamp(96px, 24vw, 124px);
  height: clamp(96px, 24vw, 124px);
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(
    138deg,
    rgba(216, 194, 139, 0.95) 0%,
    var(--gold-aged) 38%,
    rgba(122, 94, 42, 0.85) 100%
  );
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero__logo-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(198, 165, 90, 0.35);
  pointer-events: none;
}

.hero__logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #1a1a1a 0%, var(--black-deep) 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 165, 90, 0.2);
}

.hero__monogram {
  width: 78%;
  height: auto;
  color: var(--gold-champagne);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.65rem, 10.5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  background: linear-gradient(
    168deg,
    #ffffff 0%,
    var(--white-elegant) 35%,
    var(--gold-champagne) 88%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(198, 165, 90, 0.12);
  animation: heroFade 1s 0.14s var(--transition) both;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-aged);
  margin: 0 0 1.1rem;
  animation: heroFade 1s 0.22s var(--transition) both;
}

.hero__tag {
  font-size: clamp(0.9375rem, 2.9vw, 1.08rem);
  font-weight: 300;
  color: rgba(248, 248, 248, 0.76);
  max-width: 24rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  animation: heroFade 1s 0.28s var(--transition) both;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap-size);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), filter var(--transition);
}

.btn--hero {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  display: flex;
  padding: 1.2rem 2.15rem;
  font-size: 0.6875rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--black-deep);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    168deg,
    #f0e6c8 0%,
    var(--gold-champagne) 18%,
    var(--gold-aged) 52%,
    #8a6d38 100%
  );
  box-shadow: 0 10px 40px rgba(198, 165, 90, 0.35), 0 2px 0 rgba(255, 255, 255, 0.25) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset;
  animation: heroFade 1s 0.36s var(--transition) both;
}

.btn--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.btn--hero:hover::before {
  transform: translateX(120%) skewX(-12deg);
}

.btn--hero__label {
  position: relative;
  z-index: 1;
}

.btn--hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(198, 165, 90, 0.48), 0 2px 0 rgba(255, 255, 255, 0.32) inset;
  filter: brightness(1.03);
}

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

.btn--card {
  flex-shrink: 0;
  padding: 0.72rem 1.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--gold-champagne);
  border-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.btn--card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn--card:hover::after {
  transform: translateX(100%);
}

.btn--card:hover {
  border-color: var(--border-glow);
  color: var(--white-elegant);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* --- Main --- */
.main {
  flex: 1;
  padding: max(clamp(2.25rem, 6vw, 4.25rem), env(safe-area-inset-top))
    max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-right))
    max(clamp(3rem, 8vw, 5.5rem), env(safe-area-inset-bottom))
    max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-left));
  background: linear-gradient(180deg, var(--black-deep) 0%, #080808 38%, var(--black-deep) 100%);
  position: relative;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.main__intro {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.section-label {
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 1.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(198, 165, 90, 0.72);
  margin: 0 0 1rem;
}

.section-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248, 248, 248, 0.62);
  margin: 0;
  letter-spacing: 0.03em;
}

/* --- Trust / proof --- */
.trust {
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.trust__grid {
  list-style: none;
  margin: 0;
  padding: clamp(1.25rem, 4vw, 1.65rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.92) 0%, rgba(10, 10, 10, 0.96) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.35rem;
  min-height: 3.25rem;
}

.trust__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  opacity: 0.88;
  background-color: var(--gold-aged);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.trust__icon--plus {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E");
}

.trust__icon--star {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.trust__icon--pin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E");
}

.trust__icon--clock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v7l4.28 2.57.8-1.34-3.58-2.15V7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v7l4.28 2.57.8-1.34-3.58-2.15V7z'/%3E%3C/svg%3E");
}

.trust__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust__headline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-elegant);
  line-height: 1.2;
}

.trust__text {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(248, 248, 248, 0.52);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Reveal on scroll --- */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition),
    box-shadow var(--transition), border-color var(--transition);
}

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

.trust__item.reveal-item.is-visible:nth-child(1) {
  transition-delay: 0.03s;
}
.trust__item.reveal-item.is-visible:nth-child(2) {
  transition-delay: 0.08s;
}
.trust__item.reveal-item.is-visible:nth-child(3) {
  transition-delay: 0.13s;
}
.trust__item.reveal-item.is-visible:nth-child(4) {
  transition-delay: 0.18s;
}

.card.reveal-item.is-visible:nth-child(1) {
  transition-delay: 0.04s;
}
.card.reveal-item.is-visible:nth-child(2) {
  transition-delay: 0.1s;
}
.card.reveal-item.is-visible:nth-child(3) {
  transition-delay: 0.16s;
}
.card.reveal-item.is-visible:nth-child(4) {
  transition-delay: 0.22s;
}
.card.reveal-item.is-visible:nth-child(5) {
  transition-delay: 0.28s;
}

.cards {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 4vw, 2rem);
}

.card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: clamp(220px, 48vw, 280px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.card__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(198, 165, 90, 0.14), inset 0 0 48px rgba(0, 0, 0, 0.2);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(198, 165, 90, 0.42);
}

.card__media {
  position: absolute;
  inset: 0;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.card:hover .card__media img {
  transform: scale(1.045);
}

.card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    112deg,
    var(--overlay) 0%,
    rgba(5, 5, 5, 0.55) 48%,
    rgba(5, 5, 5, 0.38) 100%
  );
  transition: background 0.55s ease;
}

.card:hover .card__overlay {
  background: linear-gradient(
    112deg,
    rgba(5, 5, 5, 0.88) 0%,
    rgba(5, 5, 5, 0.58) 55%,
    rgba(5, 5, 5, 0.42) 100%
  );
}

.card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4.5vw, 2.15rem);
  gap: 0.65rem;
}

.card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 4.8vw, 2rem);
  line-height: 1.12;
  margin: 0;
  color: var(--white-elegant);
  letter-spacing: 0.03em;
}

.card__text {
  margin: 0;
  font-size: clamp(0.9rem, 2.5vw, 1.02rem);
  font-weight: 300;
  color: rgba(248, 248, 248, 0.8);
  max-width: 28rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.45rem;
}

.card__accent {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-champagne), var(--gold-aged), transparent);
  border-radius: 2px;
}

/* --- Floating WhatsApp --- */
.fab-wa {
  position: fixed;
  z-index: 9000;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  max-width: calc(100vw - 2rem);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black-deep);
  background: linear-gradient(165deg, var(--gold-champagne) 0%, var(--gold-aged) 55%, #7d6230 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(198, 165, 90, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.fab-wa__glyph {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--black-deep);
  opacity: 0.85;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.fab-wa__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fab-wa:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(198, 165, 90, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
  .fab-wa {
    display: inline-flex;
  }
}

/* --- Footer --- */
.footer {
  padding: 2rem 1.25rem max(2.5rem, calc(4.5rem + env(safe-area-inset-bottom)));
  text-align: center;
  background: var(--black-deep);
  border-top: 1px solid rgba(198, 165, 90, 0.1);
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 2.5rem;
  }
}

.footer__credit {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.32);
  margin: 0;
}

.footer__credit a {
  color: rgba(198, 165, 90, 0.5);
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--gold-champagne);
}

@media (min-width: 768px) {
  .hero__content {
    max-width: 44rem;
  }

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

  .trust__item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 0.5rem 0.25rem;
  }

  .trust__icon {
    margin-top: 0;
  }

  .cards {
    max-width: 640px;
  }

  .card {
    min-height: 256px;
  }
}

@media (min-width: 1024px) {
  .main {
    padding-top: 3.75rem;
  }
}
