@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --bg-deep: #060607;
  --bg-panel: rgba(18, 16, 14, 0.72);
  --gold: #d4af37;
  --gold-dim: #9a7b2c;
  --gold-bright: #f0dfa8;
  --text: #f2efe8;
  --text-muted: #9a958a;
  --line: rgba(212, 175, 55, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(30, 74, 140, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(26, 107, 60, 0.06), transparent 40%);
  z-index: -1;
}

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.95) 0%, rgba(8, 8, 9, 0.78) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link img {
  height: clamp(44px, 8vw, 56px);
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 12vw, 7rem) clamp(1.5rem, 5vw, 3rem) clamp(3.5rem, 8vw, 5rem);
  overflow: hidden;
}

/* Slideshow variant (homepage): full-bleed immersive carousel */
@keyframes heroKen {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero--slideshow {
  min-height: clamp(26rem, 78vh, 46rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 12vw, 7rem) clamp(1.5rem, 5vw, 3rem) clamp(5.5rem, 13vw, 8rem);
}

.hero--slideshow .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease-in-out, visibility 1.1s step-end;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s ease-in-out, visibility 0s step-start;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: contrast(1.09) saturate(1.14) brightness(1.05);
  transform: scale(1.02);
  will-change: transform;
}

.hero-slide.is-active img {
  animation: heroKen 16s ease-out forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 70% at 50% 35%, rgba(8, 8, 10, 0.2) 0%, rgba(6, 6, 7, 0.55) 55%, rgba(4, 4, 5, 0.88) 100%),
    linear-gradient(180deg, rgba(6, 6, 7, 0.35) 0%, rgba(6, 6, 7, 0.5) 35%, rgba(6, 6, 7, 0.82) 100%);
}

.hero--slideshow .hero-eyebrow,
.hero--slideshow h1,
.hero--slideshow .hero-lead {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.78), 0 1px 4px rgba(0, 0, 0, 0.92);
}

.hero--slideshow .hero-inner {
  position: relative;
  z-index: 3;
}

.hero-slideshow-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  pointer-events: none;
}

.hero-caption {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-slideshow-ui > * {
  pointer-events: auto;
}

.hero-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 560px;
  padding: 0 0.5rem;
}

.hero-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(8, 8, 9, 0.5);
  color: var(--gold-bright);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.hero-nav:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
  color: #fff;
}

.hero-nav:active {
  transform: scale(0.96);
}

.hero-nav svg {
  width: 20px;
  height: 20px;
}

.hero-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.25rem;
  flex: 1 1 auto;
  max-width: min(100%, 300px);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-dot:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.3);
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold-bright);
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

.hero-dot-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .hero-dots {
    padding: 0 1rem;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-slide.is-active img {
    animation: none;
    transform: none;
  }

  .hero-slide img {
    transform: none;
    filter: contrast(1.05) saturate(1.08) brightness(1.03);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 0.55em;
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 32em;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-dim));
  color: #1a1508;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
  color: #0a0906;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.02rem;
}

/* Gem grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.card-media {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 40%, rgba(40, 38, 34, 0.9), #080807);
  overflow: hidden;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.card:hover .card-media img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
}

.card-meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.65rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}

/* Split / prose pages */
.page-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.prose {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--text-muted);
  font-weight: 300;
}

.contact-block {
  text-align: center;
  padding: 0.5rem 0 2rem;
}

.contact-block a {
  font-size: 1.1rem;
}

@keyframes contact-lux-pulse {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.68;
  }
}

/* Contact page */
.page-contact .contact-main {
  flex: 1;
}

.page-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.page-hero--contact {
  padding-bottom: clamp(2rem, 5vw, 2.75rem);
  background:
    radial-gradient(ellipse 95% 90% at 50% -35%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(30, 90, 140, 0.07), transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero--contact h1 {
  margin-bottom: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2rem) clamp(5.5rem, 10vw, 6.5rem);
  align-items: stretch;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
}

.contact-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -32px 48px -28px rgba(212, 175, 55, 0.05);
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% 0%, rgba(212, 175, 55, 0.09), transparent 52%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(80, 120, 180, 0.06), transparent 48%);
  opacity: 0.85;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel-intro {
  padding: clamp(1.35rem, 3vw, 1.65rem) clamp(1.35rem, 3vw, 1.85rem) 1.15rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

.contact-panel-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 48px rgba(212, 175, 55, 0.2), 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-panel-intro .lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-perks {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.65;
}

.contact-perks li {
  margin-bottom: 0.35rem;
}

.contact-perks li:last-child {
  margin-bottom: 0;
}

.contact-perks li::marker {
  color: var(--gold-dim);
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: transparent;
  border: none;
  border-radius: 0;
  color-scheme: dark;
  min-height: 0;
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.15rem;
}

@media (max-width: 560px) {
  .form-row--split {
    grid-template-columns: 1fr;
  }
}

.form-field {
  min-width: 0;
}

.form-field label,
.form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.label-optional {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: #6a665c;
}

.form-row input,
.form-row select,
.form-row textarea,
.form-field input {
  width: 100%;
  padding: 0.82rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.form-field input::placeholder {
  color: #5c5850;
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover,
.form-field input:hover {
  border-color: rgba(212, 175, 55, 0.32);
  background: rgba(0, 0, 0, 0.45);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.form-field input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
  background: rgba(0, 0, 0, 0.5);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-actions .btn {
  border: none;
  cursor: pointer;
  min-width: 11rem;
}

.form-note-wrap {
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-note {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-aside {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  padding: clamp(1.35rem, 3vw, 1.75rem);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -40px 56px -40px rgba(212, 175, 55, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.contact-aside::after {
  content: "";
  position: absolute;
  inset: -25%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 42% at 100% 0%, rgba(212, 175, 55, 0.16), transparent 52%),
    radial-gradient(ellipse 48% 38% at 0% 100%, rgba(37, 211, 102, 0.07), transparent 48%),
    radial-gradient(ellipse 75% 55% at 50% 115%, rgba(212, 175, 55, 0.1), transparent 58%);
  opacity: 0.52;
  animation: contact-lux-pulse 14s ease-in-out infinite;
}

.contact-aside > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .contact-aside::after {
    animation: none;
    opacity: 0.5;
  }

  .contact-person:hover {
    transform: none;
  }

  .contact-aside-btn:hover {
    transform: none;
  }

  .btn-whatsapp--person:hover {
    transform: none;
  }
}

.contact-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 211, 102, 0.45) 22%,
    rgba(212, 175, 55, 0.85) 50%,
    rgba(37, 211, 102, 0.45) 78%,
    transparent 100%
  );
  opacity: 0.95;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.contact-aside-eyebrow {
  margin: 0.35rem 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.contact-aside-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.55rem);
  margin: 0 0 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-aside-title.contact-aside-title--team {
  margin-bottom: 0.35rem;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .contact-aside-title.contact-aside-title--team {
    background: linear-gradient(135deg, #fff9e8 0%, var(--gold-bright) 38%, #c9a227 88%, #8a7020 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(212, 175, 55, 0.25));
  }
}

.contact-aside-text {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.93rem;
  line-height: 1.55;
}

.contact-team-lead {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
}

.contact-shared-email {
  position: relative;
  margin: 0 0 1.15rem;
  padding: 0.95rem 1rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.22) 100%);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.35);
}

.contact-shared-email::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  pointer-events: none;
  border: 1px solid rgba(212, 175, 55, 0.12);
  opacity: 0.9;
}

.contact-shared-email > * {
  position: relative;
  z-index: 1;
}

.contact-shared-email-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-shared-email .contact-mail {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-people {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  min-height: 0;
}

.contact-person {
  position: relative;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.1rem 1.15rem 1.1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, transparent 38%),
    rgba(0, 0, 0, 0.38);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.contact-person::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, rgba(240, 223, 168, 0.95) 0%, rgba(212, 175, 55, 0.45) 45%, rgba(154, 123, 44, 0.5) 100%);
  box-shadow: 2px 0 18px rgba(212, 175, 55, 0.2);
}

.contact-people .contact-person:nth-child(1)::before {
  background: linear-gradient(180deg, #7ecf9a 0%, #2d8f5a 38%, rgba(212, 175, 55, 0.75) 100%);
  box-shadow: 2px 0 20px rgba(45, 143, 90, 0.25);
}

.contact-people .contact-person:nth-child(2)::before {
  background: linear-gradient(180deg, #8eb4e8 0%, #3d6cab 42%, rgba(212, 175, 55, 0.8) 100%);
  box-shadow: 2px 0 20px rgba(61, 108, 171, 0.28);
}

.contact-person:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.contact-person > * {
  position: relative;
  z-index: 1;
}

.contact-person::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -40%;
  width: 55%;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 68%);
  opacity: 0.9;
}

.contact-person-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 0 0 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  flex-shrink: 0;
  text-shadow: 0 0 32px rgba(212, 175, 55, 0.22);
}

.contact-tel.contact-tel--inline {
  padding: 0.52rem 0.78rem;
  font-size: 0.88rem;
  gap: 0.45rem;
  margin-top: 0;
  align-self: flex-start;
  flex-shrink: 0;
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-aside .mail-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-aside .mail-row h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold-bright) !important;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-tel:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: #fff !important;
}

.contact-tel-icon {
  display: flex;
  color: var(--gold);
  opacity: 0.9;
}

.mail-intro {
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.9rem;
}

.contact-mail {
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  word-break: break-word;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-mail:hover {
  border-bottom-color: var(--gold);
  color: #fff !important;
}

.contact-aside-cta {
  margin-top: auto;
  padding-top: 1rem;
}

.contact-aside-btn {
  width: 100%;
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  letter-spacing: 0.2em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.contact-aside-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(212, 175, 55, 0.12);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 12px;
  background: linear-gradient(180deg, #34e070, #25d366 42%, #1bab4d);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff !important;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

.page-contact .form-actions .btn {
  min-width: 0;
  width: 100%;
}

.page-contact .contact-form .form-actions .btn-primary {
  min-height: 3.375rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 12px;
  line-height: 1.25;
  justify-content: center;
}

.btn-whatsapp--person {
  width: 100%;
  margin-top: 0.65rem;
  min-height: 2.875rem;
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  gap: 0.55rem;
  box-sizing: border-box;
  border-radius: 13px;
  background: linear-gradient(180deg, #3ae87a, #25d366 38%, #169e4a 100%);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-whatsapp--person:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 12px 36px rgba(37, 211, 102, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-whatsapp--person svg {
  width: 18px;
  height: 18px;
}

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2fe06d, #25d366);
  color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 48px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: #fff;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.section-cta {
  text-align: center;
  margin: 0;
}

/* Footer */
.site-footer {
  margin-top: auto;
  text-align: center;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.site-footer strong {
  color: var(--gold-dim);
  font-weight: 500;
}

.footer-phone {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.footer-phone a {
  color: var(--gold-bright);
  font-weight: 500;
}

.footer-phone a:hover {
  color: #fff;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.trust-strip div {
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.trust-strip span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .site-header {
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
  }
}
