@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --brand-bg0: #0D0D12;
  --brand-bg1: #141419;
  --brand-bg2: #1A1A22;
  --brand-spot: #F8F8F5;
  --brand-teal: #2DD4BF;
  --brand-teal-deep: #14B8A6;
  --brand-terracotta: #C4705A;
  --brand-ember: #D4A853;
  --brand-ember-deep: #B8893E;
  --primary-color: var(--brand-teal);
  --primary-dark: var(--brand-teal-deep);
  --primary-light: #6BE4D6;
  --accent-warm: var(--brand-ember);
  --accent-soft: rgba(196, 112, 90, 0.16);
  --accent-cool: rgba(45, 212, 191, 0.16);
  --surface: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-hover-border: rgba(45, 212, 191, 0.28);
  --text-dark: var(--brand-spot);
  --text-medium: rgba(248, 248, 245, 0.78);
  --text-light: rgba(248, 248, 245, 0.60);
  --btn-gradient: linear-gradient(135deg, #117d76, #9a6328);
  --btn-gradient-hover: linear-gradient(135deg, #0c6660, #7d4a1d);
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--brand-bg0);
  letter-spacing: -0.01em;
}

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

main,
header,
footer,
.sticky-cta,
.back-to-top {
  position: relative;
  z-index: 2;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.03em;
}

.hero-gradient-mesh {
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(45, 212, 191, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse at 84% 70%, rgba(196, 112, 90, 0.14) 0%, transparent 54%),
    radial-gradient(ellipse at 48% 84%, rgba(212, 168, 83, 0.10) 0%, transparent 50%);
  filter: blur(18px);
  animation: premium-mesh 20s ease-in-out infinite alternate;
}

.hero-badge {
  background: rgba(45, 212, 191, 0.10);
  border-color: rgba(45, 212, 191, 0.26);
  color: var(--text-dark);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-color);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.45);
  animation: premium-pulse 2s ease-in-out infinite;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats {
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stat-item {
  min-width: 120px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.feature-card,
.product-card,
.fun-fact-card,
.service-card,
.reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-card {
  height: 100%;
  gap: 1rem;
}

.feature-card:hover,
.product-card:hover,
.fun-fact-card:hover,
.service-card:hover,
.reason-card:hover {
  border-color: var(--card-hover-border);
}

.theme-dark .feature-title,
.theme-dark .product-title,
.theme-dark .service-card h3,
.theme-dark .reason-card h3,
.theme-dark .spotlight-title {
  color: var(--text-dark);
}

.theme-dark .feature-title,
.theme-dark .product-title {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.feature-icon,
.product-icon,
.fun-fact-icon,
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(196, 112, 90, 0.08));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.feature-icon svg,
.product-icon svg,
.fun-fact-icon svg,
.service-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: currentColor;
}

.product-features {
  width: min(100%, 18rem);
  display: block;
  text-align: left;
}

.product-description {
  max-width: 18rem;
}

.product-actions {
  width: min(100%, 18rem);
  margin-top: auto;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.product-expand,
.product-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.product-extra {
  width: 100%;
}

.product-link {
  margin-top: auto;
}

.why-choose-us {
  padding: var(--spacing-xl) 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.reason-card {
  align-items: flex-start;
  text-align: left;
}

.reason-number {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(196, 112, 90, 0.14));
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reason-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.reason-card p {
  color: var(--text-medium);
  line-height: 1.75;
}

.deal-spotlight {
  padding: clamp(2rem, 5vw, 3.5rem) 0 var(--spacing-xl);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.spotlight-card {
  display: grid;
  gap: 1.15rem;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 112, 90, 0.28);
  box-shadow: var(--shadow-lg);
}

.spotlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spotlight-title {
  margin-top: 1rem;
  font-size: 1.45rem;
}

.glass-shimmer,
.spotlight-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.glass-shimmer::before,
.spotlight-media::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.05) 58%,
    transparent 72%
  );
  transform: translate3d(-82%, 0, 0) rotate(10deg);
  animation: premium-glass-shimmer 8.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.glass-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(13, 13, 18, 0.14) 100%);
  pointer-events: none;
}

.glass-shimmer img,
.spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.02);
}

.spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 18, 0.10) 0%, rgba(13, 13, 18, 0.72) 100%);
}

.spotlight-copy {
  margin-top: 0.8rem;
  color: var(--text-medium);
  line-height: 1.75;
}

.spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.spotlight-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.10);
  border: 1px solid rgba(45, 212, 191, 0.16);
  color: var(--text-medium);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-hero .hero-content {
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.contact-hero .hero-text {
  max-width: 40rem;
  text-align: left;
}

.contact-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.contact-hero-visual {
  display: flex;
  justify-content: center;
}

.contact-hero-media {
  width: min(560px, 100%);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}

.contact-hero-media img {
  filter: saturate(0.92) contrast(1.03);
}

.contact-hero-brandplate {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.75rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.56), rgba(7, 8, 11, 0.82));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-hero-brandplate img {
  display: block;
  width: clamp(150px, 28vw, 192px);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.3));
}

.contact-hero-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.68), rgba(7, 8, 11, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 3;
}

.contact-hero-badge__kicker {
  color: var(--primary-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hero-badge__title {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
}

.form-recaptcha {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
}

.form-recaptcha > div {
  transform-origin: top center;
}

.story-section {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.concierge-cta {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 var(--spacing-xl);
}

.concierge-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.concierge-card:hover {
  border-color: rgba(196, 112, 90, 0.30);
}

.concierge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.concierge-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  text-align: left;
}

.concierge-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.25rem;
  border-radius: 16px;
  border: 1px solid rgba(196, 112, 90, 0.26);
  background: rgba(196, 112, 90, 0.10);
  color: var(--brand-terracotta);
}

.concierge-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.concierge-kicker {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concierge-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.08;
  color: var(--text-dark);
}

.concierge-card p {
  color: var(--text-medium);
  line-height: 1.75;
}

.concierge-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.concierge-benefits span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-medium);
  font-size: 0.92rem;
  font-weight: 700;
}

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.concierge-form {
  display: grid;
  gap: 1rem;
  text-align: left;
  padding: clamp(1.15rem, 3vw, 1.45rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.concierge-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-label--full {
  grid-column: 1 / -1;
}

.concierge-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.concierge-fieldset legend {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.concierge-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.concierge-slot {
  position: relative;
  display: block;
  cursor: pointer;
}

.concierge-slot input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.concierge-slot__surface {
  min-height: 100%;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.concierge-slot strong {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
}

.concierge-slot small {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.45;
}

.concierge-slot:hover .concierge-slot__surface {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.concierge-slot input:checked + .concierge-slot__surface {
  border-color: rgba(45, 212, 191, 0.48);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(212, 168, 83, 0.12));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.concierge-slot input:focus-visible + .concierge-slot__surface {
  outline: 3px solid rgba(45, 212, 191, 0.28);
  outline-offset: 3px;
}

.concierge-submit {
  width: 100%;
  justify-content: center;
}

.concierge-form .form-fineprint {
  margin-top: 0;
}

.reveal.spotlight-card,
.reveal.concierge-card {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes premium-mesh {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-4%, 3%, 0) rotate(4deg) scale(1.04);
  }
  100% {
    transform: translate3d(4%, -2%, 0) rotate(-3deg) scale(1.02);
  }
}

@keyframes premium-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.42);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(45, 212, 191, 0);
    transform: scale(1.14);
  }
}

@keyframes premium-glass-shimmer {
  0%,
  14% {
    transform: translate3d(-82%, 0, 0) rotate(10deg);
    opacity: 0;
  }

  26%,
  58% {
    opacity: 1;
  }

  100% {
    transform: translate3d(82%, 0, 0) rotate(10deg);
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .feature-card,
  .product-card,
  .fun-fact-card,
  .service-card,
  .reason-card,
  .spotlight-card {
    padding: 1.5rem;
  }

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

  .concierge-shell,
  .concierge-form-grid,
  .concierge-slot-grid {
    grid-template-columns: 1fr;
  }

  .concierge-card,
  .concierge-copy {
    text-align: center;
  }

  .concierge-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .concierge-benefits,
  .concierge-actions {
    justify-content: center;
  }

  .concierge-actions .btn,
  .product-expand,
  .product-link {
    width: 100%;
    justify-content: center;
  }

  .spotlight-media {
    min-height: 15rem;
  }
}

@media (max-width: 900px) {
  .contact-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-hero .hero-text {
    max-width: none;
    text-align: center;
  }

  .contact-hero .hero-buttons {
    justify-content: center;
  }

  .contact-hero-media {
    width: min(100%, 34rem);
  }

  .contact-hero-brandplate {
    top: 0.9rem;
    left: 0.9rem;
    padding: 0.65rem 0.8rem;
  }

  .contact-hero-brandplate img {
    width: min(170px, 52vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-shimmer::before,
  .spotlight-media::before {
    animation: none;
    opacity: 0.4;
  }
}
