:root {
  --navy: #07111F;
  --canvas: #0D1C33;
  --steel: #E6EBF2;
  --mist: #F3F6FA;
  --rope: #F7F8FA;
  --ring-red: #D4001A;
  --ring-red-deep: #9B0014;
  --blue-corner: #1E4D8C;
  --muted: #6B7788;
  --ink: #0A121E;
  --line: #C9D2DE;
  --font-display: "Teko", Impact, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1140px;
  --header-h: 72px;
  --shadow: 0 20px 48px rgba(7, 17, 31, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(212, 0, 26, 0.07), transparent 55%),
    radial-gradient(700px 360px at 0% 20%, rgba(30, 77, 140, 0.08), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--steel) 100%);
  line-height: 1.55;
  font-size: 16.5px;
}
body.has-cookie-banner { padding-bottom: 110px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ring-red); text-underline-offset: 3px; }
a:hover { color: var(--ring-red-deep); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 248, 250, 0.12);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--ring-red) 0 33%, var(--rope) 33% 66%, var(--blue-corner) 66%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.logo:hover { color: inherit; }
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--ring-red), var(--ring-red-deep));
  color: var(--rope);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 2px solid rgba(247, 248, 250, 0.35);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 248, 250, 0.65);
  font-weight: 700;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: var(--rope);
  text-transform: uppercase;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(247, 248, 250, 0.4);
  background: transparent;
  color: var(--rope);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a {
  text-decoration: none;
  color: rgba(247, 248, 250, 0.88);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nav-list a:hover { color: #fff; }
.nav-legal { position: relative; color: rgba(247, 248, 250, 0.88); }
.nav-legal summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  list-style: none;
}
.nav-legal summary::-webkit-details-marker { display: none; }
.legal-drop {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: var(--navy);
  border: 1px solid rgba(247, 248, 250, 0.18);
  box-shadow: var(--shadow);
  padding: 0.85rem 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 170px;
  z-index: 120;
}
.nav-legal[open] .legal-drop { display: flex; }
.legal-drop a { color: rgba(247, 248, 250, 0.9) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ring-red);
  color: #fff;
  border-color: var(--ring-red);
}
.btn-primary:hover {
  background: var(--ring-red-deep);
  color: #fff;
  border-color: var(--ring-red-deep);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--mist); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.section-dark .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.section-dark .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.cta-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.section-cta { margin-top: 1.85rem; }

/* Hero — full-bleed boxing ring image */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.04);
  animation: ringDrift 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.25) 0%, rgba(7, 17, 31, 0.45) 45%, rgba(7, 17, 31, 0.9) 100%),
    linear-gradient(115deg, rgba(212, 0, 26, 0.28) 0%, transparent 42%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 3.5rem;
  max-width: 720px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 7rem);
  line-height: 0.88;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.55);
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  max-width: 34ch;
  margin: 0 0 1.55rem;
  color: rgba(243, 246, 250, 0.95);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}
.hero .cta-group { animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.16s both; }

@keyframes ringDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-head { max-width: 620px; margin-bottom: 1.85rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
  line-height: 0.95;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-dark {
  background:
    linear-gradient(180deg, #0A1628 0%, var(--navy) 100%);
  color: #fff;
}
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(230, 235, 242, 0.7); }
.section-band {
  background:
    linear-gradient(180deg, #DCE3EE 0%, #CDD6E4 100%);
  border-block: 1px solid var(--line);
  position: relative;
}
.section-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ring-red), var(--blue-corner));
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Price board */
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 248, 250, 0.16);
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(247, 248, 250, 0.1);
  border-right: 1px solid rgba(247, 248, 250, 0.1);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: rgba(247, 248, 250, 0.92);
}
.price-list li:nth-child(2n) { border-right: 0; }
.price-list strong {
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: #FFD6DB;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #14233A;
}
.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-card:hover .gallery-card-media img { transform: scale(1.06); }
.gallery-card-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.gallery-name {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1;
}
.gallery-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}
.gallery-price {
  margin: 0.45rem 0 0;
  font-weight: 800;
  color: var(--ring-red);
  font-size: 1.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.15rem;
}
.product-item {
  background: #fff;
  border: 1px solid var(--line);
  padding-bottom: 0.9rem;
}
.product-item img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  max-height: 200px;
}
.product-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.75rem 1rem 0.25rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.product-item .price {
  margin: 0 1rem;
  font-weight: 800;
  color: var(--ring-red);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.product-item p { margin: 0.35rem 1rem 0; color: var(--muted); font-size: 0.86rem; }
.noscript-prices {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 0.95;
}
.about-copy a { color: #FFB4BD; }
.verifier-panel {
  background: linear-gradient(165deg, #12233C, #07111F);
  color: #fff;
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(247, 248, 250, 0.16);
  border-top: 4px solid var(--ring-red);
}
.verifier-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--ring-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
  border-radius: 4px;
}
.verifier-panel h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1;
}
.badge-years {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.35rem 0.7rem;
  background: rgba(212, 0, 26, 0.18);
  color: #FFD6DB;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 0, 26, 0.45);
}
.verifier-id { color: rgba(243, 246, 250, 0.65); font-size: 0.85rem; }
.campaign-id {
  font-family: ui-monospace, Consolas, monospace;
  font-weight: 800;
  color: #FFD6DB;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 0.95;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.contact-list li { margin-bottom: 0.55rem; }
.map-wrap {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  min-height: 280px;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; min-height: 280px; border: 0; display: block; }
.form-stack { display: grid; gap: 0.85rem; }
.form-stack label {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
}
.form-stack input:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--ring-red);
}
.form-note { font-size: 0.82rem; color: var(--muted); margin: 0; }

.appeal-block {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--ring-red);
  padding: 1.7rem 1.45rem;
  margin: 0 0 2.25rem;
  box-shadow: var(--shadow);
}
.appeal-block h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 0.95;
}
.appeal-block h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  margin: 1.45rem 0 0.6rem;
  color: var(--ring-red-deep);
  font-weight: 600;
}
.appeal-copy {
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.92rem;
}
.appeal-copy p { margin: 0 0 0.75rem; }
.appeal-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.ads-table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; font-size: 0.9rem; }
.ads-table th, .ads-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  background: #fff;
}
.ads-table th { background: rgba(212, 0, 26, 0.06); width: 32%; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 2rem; }
.keyword-cloud span {
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  background: #fff;
  font-weight: 700;
}
.keyword-cloud .kw-hl {
  border-color: var(--ring-red);
  background: rgba(212, 0, 26, 0.08);
  color: var(--ring-red-deep);
}

.ads-disclaimer {
  border-left: 5px solid var(--ring-red);
  padding: 16px 20px;
  margin: 28px 0 8px;
  font-size: 0.86rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left-width: 5px;
}
.legal-page { padding: 3rem 0 4rem; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-weight: 600;
  line-height: 0.95;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--ring-red-deep);
  font-weight: 600;
}
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; background: #fff; }
.legal-meta { color: var(--muted); margin-bottom: 1.4rem; }

.page-hero {
  padding: 3.2rem 0 1.5rem;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.92)),
    var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--ring-red);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 0.92;
}
.page-hero p { margin: 0; color: rgba(230, 235, 242, 0.8); max-width: 62ch; }
.page-hero a { color: #FFB4BD; }

.site-footer {
  background: var(--navy);
  color: rgba(243, 246, 250, 0.88);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--ring-red);
}
.site-footer a { color: #FFB4BD; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #fff;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.45rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 248, 250, 0.14);
  font-size: 0.88rem;
}
.footer-legal a { text-decoration: none; }
.footer-copy { margin-top: 1.2rem; font-size: 0.82rem; opacity: 0.7; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 3px solid var(--ring-red);
  box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-inner {
  width: min(100% - 1rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-inner p { margin: 0; flex: 1 1 280px; font-size: 0.88rem; }
.cookie-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 17, 31, 0.94);
}
.lightbox.is-open { display: flex; }
.lightbox-inner { max-width: min(900px, 100%); text-align: center; }
.lightbox-inner img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  margin: 0 auto 1rem;
  border: 2px solid rgba(247, 248, 250, 0.25);
}
.lightbox-caption {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  font-weight: 600;
}
.lightbox-price {
  color: #FFD6DB;
  font-weight: 800;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(247, 248, 250, 0.45);
  background: transparent;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .about-grid, .contact-grid, .footer-grid, .price-list { grid-template-columns: 1fr; }
  .price-list li { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 3px solid var(--ring-red);
    display: none;
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .nav-legal[open] .legal-drop {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
  }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-brand { font-size: clamp(3rem, 17vw, 4rem); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .reveal { animation: none; transition: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
