/* ==========================================================================
   Infinity Stage – Design System
   ========================================================================== */

:root {
  --bg: #0b0810;
  --bg-alt: #14101e;
  --surface: #1c1628;
  --surface-light: #271f38;
  --border: rgba(216, 182, 90, 0.16);

  --text: #f6f2ec;
  --text-muted: #beb3d3;
  --text-faint: #8a7fa3;

  --primary: #8a3ffc;
  --primary-light: #b46bff;
  --primary-dark: #5b1fb8;
  --gradient-primary: linear-gradient(135deg, #7c2ae8 0%, #c026d3 100%);

  --gold: #d8b65a;
  --gold-light: #ecd590;
  --gold-dark: #a9823a;

  --success: #4caf6d;
  --error: #e0566b;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 12px 30px -10px rgba(216, 182, 90, 0.45);

  --container: 1200px;
  --header-h: 84px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset --------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #161020;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---- Section scaffolding -------------------------------------------------- */

section {
  position: relative;
  padding: 110px 0;
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head.center .eyebrow {
  justify-content: center;
}
.section-head.center .eyebrow::before {
  display: none;
}
.section-head.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem);
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.bg-alt {
  background: var(--bg-alt);
}

.divider-fade {
  height: 140px;
  margin-top: -140px;
  background: linear-gradient(to bottom, transparent, var(--bg-alt));
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* ---- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1326;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(216, 182, 90, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: rgba(246, 242, 236, 0.35);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(246, 242, 236, 0.08);
  border-color: var(--text);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.85rem;
}

/* ---- Header / Nav ---------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
  background: linear-gradient(to bottom, rgba(11, 8, 16, 0.75), transparent);
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(11, 8, 16, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}

.logo .infinity-mark {
  color: var(--gold);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.header-phone svg {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 32px 24px;
    gap: 6px;
    background: rgba(11, 8, 16, 0.98);
    backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links a {
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-actions .btn {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}

/* ---- Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 100px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 8, 16, 0.55) 0%, rgba(11, 8, 16, 0.55) 35%, rgba(11, 8, 16, 0.92) 100%),
    linear-gradient(100deg, rgba(11, 8, 16, 0.75) 0%, rgba(60, 20, 90, 0.35) 55%, rgba(11, 8, 16, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: rgba(216, 182, 90, 0.08);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: badgePulse 2.6s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216, 182, 90, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(216, 182, 90, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 2rem + 3.2vw, 4.6rem);
  margin-bottom: 0.4em;
}

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

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.2em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-microcopy span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 1;
}
.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- Stats bar --------------------------------------------------------------- */

.stats {
  position: relative;
  z-index: 2;
  margin-top: -88px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 38px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);
  color: var(--gold-light);
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 26px 10px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }
}

/* ---- About ------------------------------------------------------------------- */

.about {
  padding-top: 170px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(11, 8, 16, 0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
}

.about-checklist {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}
.about-checklist svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about {
    padding-top: 100px;
  }
}

/* ---- Benefits grid ------------------------------------------------------------ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--surface-light);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Services / event types ---------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover img {
  transform: scale(1.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 8, 16, 0.92) 0%, rgba(11, 8, 16, 0.35) 55%, rgba(11, 8, 16, 0.1) 100%);
}

.service-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
}
.service-card:hover p {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
}

.services-extra {
  margin-top: 36px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.services-extra strong {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    aspect-ratio: 4/3;
  }
  .service-card p {
    max-height: 100px;
    opacity: 1;
  }
}

/* ---- Gallery -------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item .zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 8, 16, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--gold-light);
}
.gallery-item:hover .zoom-icon {
  opacity: 1;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 12, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
  padding: 40px;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- CTA banner ------------------------------------------------------------------ */

.cta-banner {
  border: 1px solid var(--border);
  background: radial-gradient(circle at 20% 20%, rgba(138, 63, 252, 0.25), transparent 60%), var(--surface);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.cta-banner h2 {
  margin-bottom: 14px;
}
.cta-banner p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 30px;
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 36px 22px;
  }
}

/* ---- FAQ ----------------------------------------------------------------------- */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 22px 26px;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
}
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text-muted);
}

/* ---- Contact / Lead form ------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-benefits {
  display: grid;
  gap: 16px;
  margin: 26px 0 34px;
}
.contact-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
}
.contact-benefits svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-faint);
  font-weight: 500;
}
.contact-info-item a, .contact-info-item span.value {
  font-size: 1rem;
  color: var(--text);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 182, 90, 0.15);
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.field-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}
.field-checkbox a {
  color: var(--gold-light);
  text-decoration: underline;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 6px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.form-status.is-visible {
  display: block;
}
.form-status.success {
  background: rgba(76, 175, 109, 0.12);
  border: 1px solid rgba(76, 175, 109, 0.4);
  color: #8fe3ac;
}
.form-status.error {
  background: rgba(224, 86, 107, 0.12);
  border: 1px solid rgba(224, 86, 107, 0.4);
  color: #f29aa8;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-card {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer ------------------------------------------------------------------- */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 11px;
}

.footer-col a,
.footer-col span {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-faint);
}
.footer-bottom a {
  color: var(--text-faint);
}
.footer-bottom a:hover {
  color: var(--gold-light);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}

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

/* ---- Floating mobile CTA bar ---------------------------------------------------- */

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: none;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(11, 8, 16, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-cta-bar.is-visible {
  transform: translateY(0);
}
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 78px;
  }
}

/* ---- Back to top ---------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 760px) {
  .back-to-top {
    bottom: 92px;
  }
}

/* ---- Scroll reveal ---------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Legal pages (Impressum / Datenschutz) ----------------------------------------- */

.legal-page {
  padding: calc(var(--header-h) + 60px) 0 100px;
}
.legal-page .container {
  max-width: 820px;
}
.legal-page h1 {
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.6rem);
  margin-bottom: 0.3em;
}
.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2em;
}
.legal-page p, .legal-page li {
  color: var(--text-muted);
}
.legal-page ul {
  padding-left: 1.2em;
  list-style: disc;
  margin-bottom: 1em;
}
.legal-page a {
  color: var(--gold-light);
  text-decoration: underline;
}
.legal-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 40px;
}

/* ---- Utility ---------------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
