:root {
  --bg: #061611;
  --bg-soft: #0d241d;
  --surface: rgba(10, 31, 24, 0.78);
  --surface-strong: rgba(8, 24, 19, 0.96);
  --surface-light: rgba(255, 255, 255, 0.06);
  --text: #f5f4ee;
  --muted: #c7d4cd;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #e1b866;
  --accent-strong: #f6d584;
  --accent-dark: #8b5b21;
  --green-pop: #28d68b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 184, 102, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(40, 214, 139, 0.12), transparent 22%),
    linear-gradient(180deg, #07140f 0%, #092118 38%, #061611 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(4, 15, 11, 0.76);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #ffffff 0 8%, transparent 9%),
    linear-gradient(135deg, var(--accent-strong), var(--accent-dark));
  color: #092118;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-copy,
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.footer-brand {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy span,
.footer-note,
.section-lead,
.content-section p,
.field input,
.field textarea,
.cookie-banner__content p {
  color: var(--muted);
}

.site-nav,
.header-actions,
.hero-actions,
.hero-badges,
.hero-strip,
.footer-links,
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a,
.footer-links a,
.cookie-banner__actions a,
.text-link {
  position: relative;
  color: var(--muted);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--green-pop));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.footer-links a:hover,
.cookie-banner__actions a:hover,
.text-link:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.text-link:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #0a1d15;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 36px rgba(225, 184, 102, 0.26);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.hero-section {
  padding: 82px 0 58px;
}

.hero-grid,
.gallery-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-copy h1,
.content-section h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.hero-text,
.content-section p,
.section-lead {
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 28px;
  font-size: 1.06rem;
}

.hero-strip {
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-strip__item {
  min-width: 160px;
  padding: 12px 16px;
  border-left: 2px solid rgba(225, 184, 102, 0.5);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent);
}

.hero-strip__item span,
.card-label,
.flow-step {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badges {
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.badge,
.info-card,
.contact-panel,
.gallery-card,
.form-shell,
.cookie-banner__content,
.legal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.badge {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 20px;
}

.badge strong,
.info-card h3 {
  display: block;
  margin-bottom: 8px;
}

.badge span,
.contact-panel span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-orbit-one {
  width: 88%;
  height: 88%;
}

.hero-orbit-two {
  width: 58%;
  height: 58%;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(7, 25, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.hero-card img {
  width: 100%;
  border-radius: 24px;
}

.content-section {
  padding: 28px 0 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stacked-grid,
.section-heading,
.gallery-copy,
.contact-copy,
.contact-stack {
  display: grid;
  gap: 18px;
}

.info-grid,
.match-flow,
.visual-points,
.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.contact-panel,
.form-shell {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.match-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-card,
.visual-point,
.final-stat {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 25, 19, 0.9);
}

.flow-card h3,
.visual-point strong {
  margin: 0 0 10px;
}

.flow-card p,
.visual-point span,
.final-stat span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-grid {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(180px, auto);
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.contact-grid {
  align-items: stretch;
}

.contact-copy {
  align-content: center;
}

.contact-stack {
  margin-top: 6px;
}

.contact-panel strong {
  display: block;
  margin-bottom: 10px;
}

.contact-panel-accent {
  background:
    linear-gradient(135deg, rgba(225, 184, 102, 0.12), rgba(40, 214, 139, 0.08)),
    var(--surface);
}

.form-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 9px;
}

.field span {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 16, 12, 0.75);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(225, 184, 102, 0.9);
  box-shadow: 0 0 0 4px rgba(225, 184, 102, 0.12);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  padding: 22px 0 34px;
}

.final-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(225, 184, 102, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(9, 28, 21, 0.92);
  box-shadow: var(--shadow);
}

.final-band-wrap {
  margin-top: 22px;
}

.final-band__copy {
  display: grid;
  gap: 16px;
}

.final-band__stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.final-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-note {
  max-width: 420px;
  margin: 10px 0 0;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 430px;
}

.cookie-banner__content {
  padding: 20px;
  border-radius: 22px;
}

.cookie-banner__content p {
  margin: 0 0 16px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 70;
  min-width: 300px;
  max-width: calc(100% - 32px);
  padding: 17px 22px;
  border-radius: 18px;
  color: #072217;
  background: linear-gradient(135deg, #8ff0c5, var(--green-pop));
  box-shadow: 0 18px 48px rgba(40, 214, 139, 0.28);
  transform: translateX(-50%);
}

.toast p {
  margin: 0;
  font-weight: 800;
  text-align: center;
}

.toast.is-visible {
  animation: toast-in 0.35s ease;
}

.legal-page {
  min-height: 100vh;
  padding: 64px 0;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius-xl);
}

.legal-card h1,
.legal-card h2 {
  font-family: "Sora", sans-serif;
}

.legal-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 1.3rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 18px;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1080px) {
  .header-inner,
  .site-nav,
  .header-actions,
  .hero-actions,
  .hero-badges,
  .footer-inner {
    flex-wrap: wrap;
  }

  .hero-grid,
  .gallery-layout,
  .contact-grid,
  .info-grid,
  .match-flow,
  .final-band {
    grid-template-columns: 1fr;
  }

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

  .final-band__stats {
    justify-content: flex-start;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .footer-links,
  .cookie-banner__actions {
    width: 100%;
  }

  .header-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-section {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 360px;
  }

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

  .final-band__stats {
    width: 100%;
  }

  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .info-card,
  .contact-panel,
  .form-shell,
  .legal-card {
    padding: 24px;
  }

  .cookie-banner {
    right: 14px;
    left: 14px;
    bottom: 14px;
    max-width: none;
  }
}
