/* =========================================
   HFC – HERO FIGHTERS CHAMPIONSHIP
   Edel · Premium · Champagner-Gold
   ========================================= */

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

:root {
  --gold:      #c2a35e;
  --gold-l:    #e4d0a0;
  --gold-d:    #9a7e44;
  --bg:        #0a0908;
  --bg2:       #100e0b;
  --bg3:       #15120e;
  --line:      rgba(194, 163, 94, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);
  --cream:     #f2ece0;
  --muted:     #948b7c;
  --muted-d:   #6a6359;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.gold { color: var(--gold); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::after {
  content: '';
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: '';
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
  position: relative;
}
.btn--gold {
  background: transparent;
  color: var(--gold-l);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold); color: #0a0908; }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.22);
}
.btn--ghost:hover { border-color: var(--cream); }
.btn--lg { padding: 18px 44px; font-size: 13px; }
.btn--sm { padding: 11px 24px; font-size: 11px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .5s, box-shadow .5s, padding .4s;
}
.nav.scrolled {
  background: rgba(10, 9, 8, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: height .4s;
}
.nav.scrolled .nav__inner { height: 70px; }
.nav__logo { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.logo-hfc {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .14em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .34em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav__links { display: flex; gap: 36px; margin-left: auto; }
.nav__links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(10, 9, 8, .97);
  backdrop-filter: blur(16px);
  padding: 12px 36px 32px;
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
}
.nav__mobile a:last-child {
  border-bottom: none;
  margin-top: 22px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.nav__mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 18%, rgba(194,163,94,.13) 0%, transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(154,126,68,.10) 0%, transparent 60%),
    linear-gradient(180deg, #0a0908 0%, #0d0b09 55%, #0a0908 100%);
}
.hero__frame {
  position: absolute;
  inset: 26px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.hero__frame::before,
.hero__frame::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.hero__frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero__frame::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero__content {
  position: relative;
  text-align: center;
  padding: 140px 32px 100px;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 168px);
  font-weight: 500;
  font-style: italic;
  line-height: .95;
  letter-spacing: .02em;
  color: var(--cream);
  margin: 4px 0 0;
}
.hero__rule {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 34px auto 30px;
  position: relative;
}
.hero__rule::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px; height: 6px;
  background: var(--gold);
}
.hero__meta {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}
.hero__disciplines {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 56px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 92px;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold-d);
  line-height: 1.1;
  font-weight: 300;
}

@media (max-width: 560px) {
  .countdown { gap: 6px; }
  .countdown__block { min-width: 62px; }
  .countdown__num { font-size: 42px; }
  .countdown__sep { font-size: 30px; }
}

.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
}
.hero__scroll span::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 50px; opacity: 0; }
}

/* ── INFOSTRIP ── */
.infostrip {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.infostrip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 46px;
  gap: 10px;
  position: relative;
}
.infostrip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 28px; bottom: 28px;
  width: 1px;
  background: var(--line-soft);
}
.infostrip__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-d);
}
.infostrip__value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--cream);
}

@media (max-width: 760px) {
  .infostrip { flex-direction: column; align-items: center; }
  .infostrip__item { padding: 22px; }
  .infostrip__item:not(:last-child)::after {
    right: 50%; left: 50%;
    top: auto; bottom: 0;
    width: 40px; height: 1px;
    transform: translateX(-50%);
  }
}

/* ── SECTIONS ── */
.section { padding: 130px 0; }
.section--dark { background: var(--bg2); }

.section__header { text-align: center; margin-bottom: 80px; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: .02em;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 20px;
}
.section__title--left { margin-bottom: 28px; }
.section__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: .02em;
}

/* ── FIGHT CARD ── */
.fightcard__cat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 64px 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.fightcard__cat:first-of-type { margin-top: 0; }

/* STAR GAST */
.stargast {
  border: 1px solid var(--line);
  text-align: center;
  padding: 48px 32px;
  margin-bottom: 64px;
  position: relative;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(194,163,94,.07), transparent 70%);
}
.stargast__tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.stargast__name {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  letter-spacing: .03em;
  line-height: 1;
}
.stargast__desc {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

/* FIGHTS */
.fights { display: flex; flex-direction: column; }

.fight {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px 24px;
  gap: 24px;
  position: relative;
  transition: background .4s ease;
}
.fight:first-child { border-top: 1px solid var(--line-soft); }
.fight:hover { background: rgba(194,163,94,.035); }

.fight--main {
  border: 1px solid var(--line);
  padding: 44px 36px;
  margin-bottom: 14px;
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(194,163,94,.06), transparent 70%);
}
.fight--main:first-child { border-top: 1px solid var(--line); }
.fight__badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 4px 18px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.fight__discipline {
  position: absolute;
  bottom: 8px; right: 18px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.fight__fighter { display: flex; align-items: center; }
.fight__fighter--right { justify-content: flex-end; text-align: right; }
.fight__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.12;
  color: var(--cream);
}
.fight--main .fight__name { font-size: 38px; font-style: italic; }

.fight__vs {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .04em;
  text-align: center;
  min-width: 44px;
}
.fight--main .fight__vs { font-size: 30px; }
.fight__vs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 84px;
}
.fight__weight {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--muted-d);
  text-transform: uppercase;
}

/* SOLO FIGHTERS */
.solo-fighters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.solo-fighter {
  background: var(--bg);
  padding: 34px 24px;
  text-align: center;
  transition: background .4s ease;
}
.section--dark .solo-fighter { background: var(--bg2); }
.solo-fighter:hover { background: rgba(194,163,94,.04); }
.solo-fighter__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 10px;
}
.solo-fighter__tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

.fights--title .fight { padding: 22px 24px; }
.fights--title .fight__name { font-size: 22px; }

.fightcard__cta { text-align: center; margin-top: 72px; }

@media (max-width: 640px) {
  .fight { padding: 22px 8px 30px; gap: 12px; }
  .fight__name { font-size: 19px; }
  .fight--main { padding: 40px 20px; }
  .fight--main .fight__name { font-size: 25px; }
  .fights--title .fight__name { font-size: 16px; }
}

/* ── TICKETS ── */
.tickets__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  max-width: 760px;
  margin: 0 auto 80px;
}
.ticket-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.section--dark .ticket-card { background: var(--bg2); }
.ticket-card--vip {
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(194,163,94,.09), var(--bg2) 70%);
}
.ticket-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticket-card__type {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticket-card__price {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 400;
  color: var(--cream);
  line-height: .9;
  letter-spacing: .01em;
}
.ticket-card--vip .ticket-card__price { color: var(--gold-l); }
.ticket-card__price span {
  font-size: 30px;
  font-weight: 300;
  color: var(--muted);
  margin-left: 4px;
}
.ticket-card__label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-d);
  margin-top: -10px;
}
.ticket-card__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin: 10px 0 6px;
}
.ticket-card__perks li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  letter-spacing: .02em;
}
.ticket-card__perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* VIP TABLES */
.vip-tables {
  border: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}
.vip-tables__header {
  padding: 40px 44px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(194,163,94,.06), transparent 70%);
}
.vip-tables__header h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: .03em;
  color: var(--gold-l);
  margin-bottom: 10px;
}
.vip-tables__header p {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.vip-tables__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vip-table-card {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line-soft);
}
.vip-table-card:last-child { border-right: none; }
.vip-table-card__persons {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.vip-table-card__price {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 400;
  color: var(--gold-l);
  line-height: .9;
}
.vip-table-card__price span {
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  margin-left: 4px;
}
.vip-table-card__perks { flex: 1; display: flex; flex-direction: column; gap: 12px; margin: 6px 0; }
.vip-table-card__perks li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  letter-spacing: .02em;
}
.vip-table-card__perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 1px;
  background: var(--gold);
}

@media (max-width: 680px) {
  .tickets__grid { grid-template-columns: 1fr; }
  .vip-tables__grid { grid-template-columns: 1fr; }
  .vip-table-card { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .vip-table-card:last-child { border-bottom: none; }
}

/* ── TERMINE ── */
.schedule { display: flex; flex-direction: column; gap: 28px; }
.schedule__block { border: 1px solid var(--line-soft); }
.schedule__venue-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.schedule__venue {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: .03em;
  color: var(--cream);
}
.schedule__month {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.schedule__row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 34px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .4s ease;
}
.schedule__row:last-child { border-bottom: none; }
.schedule__row:hover { background: rgba(255,255,255,.018); }
.schedule__row--featured { background: radial-gradient(ellipse 50% 100% at 0% 50%, rgba(194,163,94,.07), transparent 60%); }
.schedule__date {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  min-width: 110px;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.schedule__info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.schedule__event {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--cream);
}
.schedule__desc { font-size: 13px; font-weight: 300; color: var(--muted-d); letter-spacing: .02em; }

@media (max-width: 560px) {
  .schedule__row { gap: 18px; padding: 18px 22px; }
  .schedule__venue-header { padding: 18px 22px; }
  .schedule__date { min-width: 84px; font-size: 18px; }
  .schedule__event { font-size: 18px; }
  .schedule__venue { font-size: 22px; }
}

/* ── ÜBER HFC ── */
.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: center;
}
.about__quote {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-l);
  margin-bottom: 28px;
  line-height: 1.3;
}
.about__body {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  letter-spacing: .015em;
}
.about__body strong { color: var(--cream); font-weight: 400; }
.about__socials { display: flex; gap: 32px; margin-top: 38px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .35s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { width: 18px; height: 18px; }

/* BIG CSS LOGO */
.hfc-logo-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(194,163,94,.05), transparent 70%);
}
.hfc-logo-large::before,
.hfc-logo-large::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.hfc-logo-large::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.hfc-logo-large::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.hfc-logo-large__hfc {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 600;
  color: var(--gold);
  line-height: .9;
  letter-spacing: .08em;
}
.hfc-logo-large__line {
  width: 70px; height: 1px;
  background: var(--gold-d);
  margin: 22px 0 18px;
}
.hfc-logo-large__sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 56px; }
  .about__logo { order: -1; }
  .hfc-logo-large__hfc { font-size: 84px; }
}

/* ── KONTAKT ── */
.kontakt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  max-width: 900px;
  margin: 0 auto;
}
.kontakt__card {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  transition: background .4s ease;
}
.kontakt__card:hover { background: rgba(194,163,94,.035); }
.kontakt__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted-d);
}
.kontakt__value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-l);
  transition: color .35s;
  line-height: 1.5;
}
a.kontakt__value:hover { color: var(--gold); }

@media (max-width: 680px) {
  .kontakt__grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 44px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__brand { display: flex; align-items: baseline; gap: 12px; }
.footer__brand .logo-hfc { font-size: 36px; }
.footer__motto {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .04em;
  color: var(--muted);
}
.footer__links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.footer__links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .35s;
}
.footer__links a:hover { color: var(--gold); }
.footer__links span { color: var(--muted-d); }
.footer__links--legal { margin-top: -6px; }
.footer__links--legal a { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); }
.footer__links--legal a:hover { color: var(--gold); }
.footer__copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--muted-d);
  margin-top: 10px;
}
