
:root {
  --bg: #070707;
  --bg-soft: #0d0c0b;
  --panel: rgba(17, 15, 13, 0.88);
  --panel-solid: #11100e;
  --text: #f6f2eb;
  --muted: #b9b0a5;
  --orange: #ff7a1a;
  --orange-light: #ffad64;
  --orange-dark: #a93f05;
  --line: rgba(255, 122, 26, 0.34);
  --line-soft: rgba(255, 255, 255, 0.1);
  --header-height: 76px;
  --shell: min(1180px, calc(100vw - 40px));
  --display: Calibri, "Segoe UI", Arial, sans-serif;
  --body: Calibri, "Segoe UI", Arial, sans-serif;
  --shadow-orange: 0 0 16px rgba(255, 104, 15, 0.36), 0 0 42px rgba(255, 91, 0, 0.12);
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(114, 39, 0, 0.16), transparent 30%),
    linear-gradient(rgba(7,7,7,.92), rgba(7,7,7,.96)), url("images/mars-texture.jpg") center/cover fixed;
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { color: inherit; }
::selection { background: var(--orange); color: #090909; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--orange);
  color: #050505;
  border-radius: 4px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--orange-light); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; position: relative; z-index: 2; }
.section { position: relative; padding: 112px 0; overflow: hidden; }
.section-anchor { scroll-margin-top: calc(var(--header-height) - 1px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 122, 26, 0.22);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.95), rgba(6, 6, 6, 0.8));
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}
.header-inner {
  width: min(1320px, calc(100vw - 36px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 190px;
  font-family: var(--display);
  letter-spacing: 0.14em;
  color: var(--orange-light);
  text-shadow: 0 0 8px rgba(255, 118, 26, 0.8), 0 2px 0 #5b1d00;
}
.brand::before, .brand::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.55;
}
.brand::before { left: -2px; }
.brand::after { right: -2px; }
.brand-main { font-size: 17px; font-weight: 800; line-height: 1; }
.brand-sub { margin-top: 5px; font-size: 8px; font-weight: 700; letter-spacing: 0.65em; padding-left: 0.65em; }
.desktop-nav { display: flex; align-items: stretch; height: 100%; }
.desktop-nav button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0 17px;
  color: #d7d0c7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease;
}
.desktop-nav button::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  transition: transform 220ms ease;
}
.desktop-nav button.active { color: var(--orange-light); background: linear-gradient(180deg, transparent, rgba(255, 106, 13, 0.06)); }
.desktop-nav button.active::after { transform: scaleX(1); }
.menu-button { display: none; border: 1px solid var(--line); background: rgba(255, 122, 26, 0.05); padding: 9px; cursor: pointer; }

.mobile-menu { position: fixed; inset: 0; z-index: 1200; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(7px); }
.mobile-menu-panel {
  margin-left: auto;
  width: min(86vw, 420px);
  height: 100%;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.08), transparent 28%),
    #0b0a09;
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.55);
}
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); color: var(--orange-light); letter-spacing: 0.2em; }
.mobile-menu-head button { border: 1px solid var(--line); background: transparent; padding: 8px; cursor: pointer; }
.mobile-menu nav { display: grid; margin-top: 50px; }
.mobile-menu nav button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  padding: 20px 6px;
  text-align: left;
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.mobile-menu nav button span { color: var(--orange); font-size: 10px; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: calc(var(--header-height) + 80px) 0 88px;
  background: #050505;
}
.hero-image { object-fit: cover; object-position: center; z-index: -4; }
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.88) 84%, #070707 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.28));
}
.hex-grid {
  position: absolute;
  width: 540px;
  height: 540px;
  opacity: 0.24;
  background-image:
    linear-gradient(30deg, rgba(255, 122, 26, 0.22) 12%, transparent 12.5%, transparent 87%, rgba(255, 122, 26, 0.22) 87.5%, rgba(255, 122, 26, 0.22)),
    linear-gradient(150deg, rgba(255, 122, 26, 0.22) 12%, transparent 12.5%, transparent 87%, rgba(255, 122, 26, 0.22) 87.5%, rgba(255, 122, 26, 0.22)),
    linear-gradient(30deg, rgba(255, 122, 26, 0.22) 12%, transparent 12.5%, transparent 87%, rgba(255, 122, 26, 0.22) 87.5%, rgba(255, 122, 26, 0.22)),
    linear-gradient(150deg, rgba(255, 122, 26, 0.22) 12%, transparent 12.5%, transparent 87%, rgba(255, 122, 26, 0.22) 87.5%, rgba(255, 122, 26, 0.22)),
    linear-gradient(60deg, rgba(255, 122, 26, 0.12) 25%, transparent 25.5%, transparent 75%, rgba(255, 122, 26, 0.12) 75%, rgba(255, 122, 26, 0.12)),
    linear-gradient(60deg, rgba(255, 122, 26, 0.12) 25%, transparent 25.5%, transparent 75%, rgba(255, 122, 26, 0.12) 75%, rgba(255, 122, 26, 0.12));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  mask-image: radial-gradient(circle, black, transparent 70%);
  pointer-events: none;
}
.hero-hexes { right: -100px; bottom: -150px; z-index: -2; }
.hero-content { width: var(--shell); }
.hero-content > div { max-width: 900px; }
.hero-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-light);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-kicker::before, .eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.hero h1 { margin: 18px 0 20px; line-height: 0.98; text-transform: uppercase; }
.hero h1 span {
  display: block;
  font-family: var(--display);
  font-size: clamp(45px, 7.6vw, 108px);
  font-weight: 800;
  letter-spacing: 0.035em;
  color: #1c1008;
  -webkit-text-stroke: 2px var(--orange-light);
  text-shadow:
    0 0 8px rgba(255, 148, 68, 0.7),
    0 0 22px rgba(255, 86, 0, 0.45),
    0 4px 0 #6b2600,
    0 10px 30px rgba(0, 0, 0, 0.8);
}
.hero h1 strong {
  display: block;
  margin-top: 11px;
  max-width: 850px;
  font-family: var(--display);
  font-size: clamp(23px, 3.3vw, 47px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange-light);
  text-shadow: var(--shadow-orange);
}
.hero-manifesto { max-width: 780px; margin-top: 18px; color: #f6f0e9; font-size: clamp(18px, 1.8vw, 24px); line-height: 1.35; text-shadow: 0 2px 8px #000; }
.hero-manifesto p { margin: 0; }
.hero-manifesto p + p { margin-top: 4px; color: #ddd3c8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--orange);
  padding: 13px 22px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button-primary { background: linear-gradient(180deg, #ff913c, #d95008); color: #090604; box-shadow: 0 0 16px rgba(255, 109, 19, 0.42), inset 0 1px rgba(255, 255, 255, 0.45); }
.button-secondary { background: rgba(8, 8, 8, 0.72); color: #fff5ed; }
.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}
.scroll-cue svg { color: var(--orange); animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.section-heading { max-width: 790px; margin-bottom: 50px; }
.section-heading h2 {
  margin: 14px 0 14px;
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #f4e9de;
  text-shadow: 0 0 22px rgba(255, 103, 14, 0.1);
}
.section-heading p { max-width: 660px; margin: 0; color: var(--muted); font-size: 20px; }

.about { background: linear-gradient(180deg, #070707, #0c0a08 56%, #080808); }
.section-hexes { left: -230px; top: 80px; }
.about-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; align-items: center; gap: 72px; }
.about-copy .lead { font-size: 24px; color: #f5e9de; font-weight: 600; }
.about-copy p { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid var(--line); }
.about-facts div { padding: 20px 14px 0 0; border-right: 1px solid var(--line-soft); }
.about-facts div:last-child { border-right: 0; padding-left: 14px; }
.about-facts div:nth-child(2) { padding-left: 14px; }
.about-facts strong { display: block; font-family: var(--display); color: var(--orange); font-size: 22px; }
.about-facts span { color: #eee2d6; font-size: 15px; }
.about-visual-wrap { position: relative; }
.about-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  clip-path: polygon(17% 0, 83% 0, 100% 17%, 100% 83%, 83% 100%, 17% 100%, 0 83%, 0 17%);
  border: 1px solid var(--orange);
  filter: drop-shadow(0 0 24px rgba(255, 91, 0, 0.22));
}
.about-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 70px #000; background: linear-gradient(135deg, transparent 48%, rgba(255, 107, 13, 0.17)); }
.about-visual img { object-fit: cover; object-position: 58% center; transform: scale(1.08); }
.about-visual-label { position: absolute; z-index: 2; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 9px; min-width: max-content; padding: 10px 15px; background: rgba(5, 5, 5, 0.82); border: 1px solid var(--line); color: var(--orange-light); font-family: var(--display); font-size: 10px; letter-spacing: 0.12em; }

.services { background: radial-gradient(circle at 50% -10%, rgba(126, 42, 0, 0.17), transparent 42%), #080808; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative;
  height: 100%;
  min-height: 360px;
  padding: 30px 24px 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.07), transparent 42%),
    rgba(13, 12, 10, 0.86);
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.service-card::before { content: ""; position: absolute; inset: 0; opacity: 0.2; background-image: linear-gradient(30deg, transparent 48%, rgba(255, 122, 26, 0.13) 49%, transparent 51%); background-size: 34px 34px; }
.hex-icon {
  width: 64px;
  height: 58px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: linear-gradient(135deg, #5f2100, #ff7a1a 48%, #6a2400);
  color: #090604;
  margin-bottom: 30px;
  box-shadow: var(--shadow-orange);
}
.hex-icon svg { width: 27px; height: 27px; }
.card-index { position: absolute; top: 22px; right: 22px; font-family: var(--display); color: rgba(255, 146, 66, 0.35); font-size: 12px; }
.service-card h3 { position: relative; margin: 0 0 14px; font-family: var(--display); font-size: 18px; line-height: 1.25; text-transform: uppercase; color: var(--orange-light); }
.service-card p { position: relative; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.card-line { position: absolute; left: 24px; right: 24px; bottom: 20px; height: 1px; background: linear-gradient(90deg, var(--orange), transparent); transform: scaleX(0.35); transform-origin: left; transition: transform 240ms ease; }

.process { background: linear-gradient(180deg, #0b0908, #060606); }
.process-hexes { right: -260px; top: -20px; transform: rotate(28deg); }
.process-line { position: absolute; z-index: 0; left: 8%; right: 8%; height: 1px; margin-top: 46px; background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent); box-shadow: 0 0 15px rgba(255, 122, 26, 0.4); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step { position: relative; text-align: center; padding: 0 10px; }
.step-hex { position: relative; z-index: 2; width: 92px; height: 80px; margin: 0 auto 28px; display: grid; place-items: center; clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); background: #100b07; border: 0; color: var(--orange-light); font-family: var(--display); font-size: 22px; text-shadow: 0 0 11px var(--orange); filter: drop-shadow(0 0 10px rgba(255, 93, 0, 0.38)); }
.step-hex::before { content: ""; position: absolute; inset: 2px; clip-path: inherit; border: 2px solid var(--orange); }
.process-step h3 { margin: 0 0 10px; color: var(--orange-light); font-family: var(--display); font-size: 17px; text-transform: uppercase; }
.process-step p { margin: 0; color: var(--muted); }

.media-section { background: radial-gradient(circle at 20% 40%, rgba(119, 41, 0, 0.2), transparent 30%), #080808; }
.media-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 24px; align-items: stretch; }
.video-card, .audio-card { position: relative; border: 1px solid var(--line); background: rgba(11, 10, 9, 0.9); padding: 18px; box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35); }
.media-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-family: var(--display); letter-spacing: 0.12em; }
.media-label span { color: var(--orange-light); font-size: 12px; }
.media-label small { color: #837a70; font-size: 9px; }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; border: 1px solid rgba(255, 255, 255, 0.08); }
.audio-card { display: flex; flex-direction: column; }
.audio-art { flex: 1; min-height: 260px; display: grid; place-content: center; justify-items: center; gap: 15px; background: radial-gradient(circle, rgba(255, 97, 0, 0.17), transparent 54%), linear-gradient(135deg, #15100d, #050505); border: 1px solid rgba(255, 122, 26, 0.18); color: var(--orange); }
.audio-art svg { filter: drop-shadow(0 0 14px rgba(255, 101, 0, 0.48)); }
.audio-art span { font-family: var(--display); font-size: 12px; letter-spacing: 0.18em; color: var(--orange-light); }
.audio-player { display: flex; align-items: center; gap: 16px; padding-top: 18px; }
.audio-play { flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--orange); border-radius: 50%; background: var(--orange); color: #090604; cursor: pointer; box-shadow: var(--shadow-orange); }
.audio-copy { min-width: 0; flex: 1; }
.audio-copy > span { display: block; font-weight: 700; color: #f5ede5; }
.audio-copy small { display: block; color: #968d84; font-size: 13px; line-height: 1.3; }
.audio-track-row { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 8px; margin-top: 10px; color: #a99f95; font-size: 11px; }
.audio-track-row input { width: 100%; height: 4px; appearance: none; border-radius: 8px; background: linear-gradient(90deg, var(--orange) var(--audio-progress), #332a24 var(--audio-progress)); cursor: pointer; }
.audio-track-row input::-webkit-slider-thumb { appearance: none; width: 13px; height: 13px; border-radius: 50%; background: var(--orange-light); box-shadow: 0 0 9px var(--orange); }

.audience { background: linear-gradient(180deg, #070707, #0c0907); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255, 122, 26, 0.05), transparent), #0c0b0a; transition: transform 220ms ease, border-color 220ms ease; }
.audience-card > svg { width: 42px; height: 42px; color: var(--orange); margin-bottom: 30px; }
.audience-card h3 { font-family: var(--display); text-transform: uppercase; color: var(--orange-light); font-size: 18px; }
.audience-card p { color: var(--muted); margin-bottom: 0; }
.benefit-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border: 1px solid var(--line); background: rgba(7, 7, 7, 0.65); }
.benefit { display: flex; gap: 14px; padding: 24px 20px; border-right: 1px solid var(--line-soft); }
.benefit:last-child { border-right: 0; }
.benefit svg { flex: 0 0 auto; color: var(--orange); }
.benefit strong { display: block; color: #eee5dc; font-family: var(--display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.benefit span { display: block; margin-top: 6px; color: #968e85; font-size: 14px; line-height: 1.3; }

.contact { background: radial-gradient(circle at 80% 50%, rgba(116, 37, 0, 0.2), transparent 31%), #080706; }
.contact-hexes { left: -240px; bottom: -170px; transform: rotate(-15deg); }
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 70px; align-items: start; }
.contact-list { display: grid; margin-top: 36px; }
.contact-list > a, .contact-list > div { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-list svg { color: var(--orange); }
.contact-list small { display: block; color: #8d837a; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-list span { color: #f1e9e0; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a { width: 44px; height: 40px; display: grid; place-items: center; clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%); background: rgba(255, 122, 26, 0.1); color: var(--orange-light); transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.socials svg { width: 19px; }
.contact-form { padding: 28px; border: 1px solid var(--line); background: rgba(12, 11, 9, 0.88); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; }
.contact-form label > span { color: #cfc6bc; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255, 122, 26, 0.24); background: #080808; color: #f5eee6; padding: 13px 14px; border-radius: 0; transition: border-color 180ms ease, box-shadow 180ms ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #726b65; }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.09); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.submit-button { width: 100%; }
.submit-button:disabled { cursor: wait; opacity: 0.65; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #aaa198; font-size: 14px; }
.form-status.success { color: #82d894; }
.form-status.error { color: #ff8f7c; }

.footer { border-top: 1px solid var(--line); background: #050505; padding: 32px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.footer-brand { display: inline-flex; flex-direction: column; width: max-content; font-family: var(--display); color: var(--orange-light); letter-spacing: 0.13em; text-shadow: 0 0 8px rgba(255, 100, 0, 0.5); }
.footer-brand span { font-size: 16px; font-weight: 800; }
.footer-brand small { align-self: center; font-size: 7px; letter-spacing: 0.5em; padding-left: 0.5em; }
.footer p { margin: 0; color: #807970; font-size: 13px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; color: #958c83; font-size: 13px; }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav button:hover { color: var(--orange-light); }
  .button:hover { transform: translateY(-3px); box-shadow: 0 0 24px rgba(255, 103, 15, 0.5), 0 12px 25px rgba(0, 0, 0, 0.35); }
  .button-secondary:hover { background: var(--orange); color: #080503; }
  .service-card:hover { transform: translateY(-10px); border-color: var(--orange); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38), 0 0 23px rgba(255, 93, 0, 0.12); }
  .service-card:hover .hex-icon { transform: rotate(4deg) scale(1.08); }
  .service-card:hover .card-line { transform: scaleX(1); }
  .audience-card:hover { transform: translateY(-8px); border-color: var(--orange); }
  .socials a:hover { background: var(--orange); color: #080604; transform: translateY(-3px); }
  .contact-list a:hover span { color: var(--orange-light); }
}

@media (max-width: 1050px) {
  .desktop-nav button { padding-inline: 10px; font-size: 10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-strip { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; --shell: min(100% - 28px, 680px); }
  body { font-size: 17px; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .brand { min-width: 160px; }
  .brand-main { font-size: 15px; }
  .section { padding: 82px 0; }
  .hero { min-height: 920px; align-items: end; padding-bottom: 84px; }
  .hero-image { object-position: 52% center; }
  .hero-vignette { background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.94) 70%, #070707 100%); }
  .hero h1 span { font-size: clamp(42px, 12vw, 72px); -webkit-text-stroke-width: 1.4px; }
  .hero h1 strong { font-size: clamp(22px, 6.5vw, 34px); }
  .hero-manifesto { font-size: 19px; }
  .scroll-cue { display: none; }
  .about-grid, .media-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-visual { min-height: 430px; }
  .process-line { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 42px 18px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 24px); }
  .header-inner { width: calc(100vw - 24px); }
  .brand { align-items: flex-start; min-width: 0; }
  .brand::before, .brand::after { display: none; }
  .brand-sub { align-self: center; }
  .hero { min-height: 860px; padding-top: 100px; padding-bottom: 58px; }
  .hero-content { width: var(--shell); }
  .hero-kicker { font-size: 9px; }
  .hero h1 { margin-top: 14px; }
  .hero h1 span { font-size: clamp(38px, 13vw, 58px); letter-spacing: 0; }
  .hero h1 strong { margin-top: 9px; font-size: clamp(20px, 7.2vw, 30px); line-height: 1.12; }
  .hero-manifesto { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(29px, 9.7vw, 42px); }
  .section-heading p { font-size: 17px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div, .about-facts div:nth-child(2), .about-facts div:last-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .about-visual { min-height: 340px; clip-path: polygon(12% 0, 88% 0, 100% 14%, 100% 86%, 88% 100%, 12% 100%, 0 86%, 0 14%); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding-bottom: 54px; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-step { display: grid; grid-template-columns: 76px 1fr; grid-template-rows: auto auto; gap: 0 15px; text-align: left; }
  .step-hex { grid-row: 1 / 3; width: 74px; height: 66px; margin: 0; }
  .process-step h3 { align-self: end; }
  .audio-art { min-height: 220px; }
  .audio-player { align-items: flex-start; }
  .audio-copy small { display: none; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit, .benefit:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .benefit:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 20px 16px; }
  .footer-links { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
/* Static preview helpers */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-static-copy { opacity: 0; transform: translateY(24px); animation: heroIn .9s .2s forwards cubic-bezier(.22,1,.36,1); }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
.simple-icon { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mobile-menu[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .hero-static-copy { opacity: 1; transform: none; animation: none; } }
/* Needed because Next/Image normally injects these positioning rules. */
.static-preview-note { display:none; }
.hero > .hero-image { position:absolute; inset:0; width:100%; height:100%; }
.about-visual > img { position:absolute; inset:0; width:100%; height:100%; }

/* Mars-based final direction */
.about, .services, .process, .media-section, .audience, .contact {
  background-image:
    linear-gradient(180deg, rgba(7,7,7,.92), rgba(10,8,7,.96)),
    url("images/mars-texture.jpg");
  background-size: cover;
  background-attachment: fixed;
}
.hero-image { filter: saturate(.85) contrast(1.08) brightness(.72); }
.hero-static-copy { padding: 30px; background: linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.28)); border-left: 2px solid var(--orange); box-shadow: var(--shadow-orange); }

/* Regenthus V6: Calibri typography, uncropped brand artwork and language selector */
html, body, body *, button, input, textarea, select, option {
  font-family: Calibri, "Segoe UI", Arial, sans-serif !important;
}

.header-inner {
  width: min(1380px, calc(100vw - 36px));
}

.brand {
  min-width: 210px;
  height: 100%;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.brand::before,
.brand::after { display: none; }
.brand img {
  display: block;
  width: 195px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 7px rgba(255, 121, 34, .3));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.language-switcher { position: relative; z-index: 1300; }
.language-current {
  width: 50px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(10, 9, 8, .82);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.language-current img,
.language-menu img {
  width: 27px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}
.language-chevron { color: var(--orange-light); font-size: 12px; line-height: 1; }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 164px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(8, 7, 6, .98);
  box-shadow: 0 18px 48px rgba(0,0,0,.55), var(--shadow-orange);
}
.language-menu[hidden] { display: none; }
.language-menu button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #eee5dc;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.language-menu button.active { color: var(--orange-light); background: rgba(255,122,26,.12); }

.hero-brand-logo {
  display: block;
  width: min(100%, 760px);
  height: auto;
  max-height: 250px;
  object-fit: contain;
  object-position: center;
  margin: 0 0 12px;
  filter: drop-shadow(0 0 14px rgba(255, 111, 25, .22));
}
.hero h1 strong {
  font-family: Calibri, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(28px, 3.3vw, 48px);
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1.03;
  color: var(--orange-light);
}
.hero-static-copy { max-width: 900px; }
.hero-manifesto { font-family: Calibri, "Segoe UI", Arial, sans-serif !important; }

.section-heading h2,
.service-card h3,
.process-step h3,
.audience-card h3,
.button,
.desktop-nav button,
.mobile-menu nav button,
.hero-kicker,
.eyebrow,
.media-label,
.contact-form label,
.contact-list,
.footer {
  font-family: Calibri, "Segoe UI", Arial, sans-serif !important;
}
.section-heading h2,
.service-card h3,
.process-step h3,
.audience-card h3 { letter-spacing: .01em; }
.audience-icon { font-size: 42px; }
.audio-art img { width: min(88%, 360px); margin: auto; object-fit: contain; }
.footer-brand img { width: 220px; height: auto; max-height: 62px; object-fit: contain; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status.success { color: #bce78b; }
.form-status.error { color: #ff998c; }
.submit-button[disabled] { opacity: .6; cursor: wait; }

@media (hover: hover) and (pointer: fine) {
  .language-current:hover { border-color: var(--orange); box-shadow: 0 0 15px rgba(255, 103, 15, .25); transform: translateY(-1px); }
  .language-menu button:hover { background: rgba(255,122,26,.1); color: var(--orange-light); }
}

@media (max-width: 1120px) {
  .desktop-nav button { padding-inline: 9px; font-size: 10px; }
  .brand { min-width: 185px; }
  .brand img { width: 175px; }
}

@media (max-width: 820px) {
  .brand { min-width: 165px; padding-block: 7px; }
  .brand img { width: 158px; max-height: 52px; }
  .language-current { width: 46px; height: 36px; }
  .language-current img { width: 25px; height: 17px; }
  .hero-brand-logo { width: min(100%, 680px); max-height: 220px; }
}

@media (max-width: 560px) {
  .header-inner { width: calc(100vw - 18px); gap: 8px; }
  .brand { min-width: 0; width: 145px; height: 100%; padding: 8px 0; align-items: center; }
  .brand img { width: 142px; height: auto; max-height: 48px; object-fit: contain; }
  .header-actions { gap: 7px; }
  .language-current { width: 43px; height: 34px; }
  .language-current img { width: 23px; height: 15px; }
  .language-menu { width: 154px; }
  .hero-brand-logo { width: 100%; max-height: 175px; margin-bottom: 8px; }
  .hero h1 strong { font-size: clamp(25px, 8vw, 34px); line-height: 1.05; }
}
/* O STUDIU - oprava ořezu obrázku */
.about img,
.about-section img,
.about-image img,
.about-media img,
.section-about img {
  object-fit: contain !important;
  object-position: left center !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.about-image,
.about-media,
.section-about-image {
  overflow: visible !important;
}/* O STUDIU – zobrazit celou fotografii včetně písmene R */
.about-visual {
  background: #050505 !important;
}

.about-visual > img {
  position: absolute !important;
  inset: 18px !important;
  width: calc(100% - 36px) !important;
  height: calc(100% - 36px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}/* MOBIL – oprava horní navigace */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
  }

  .brand {
    min-width: 0 !important;
    width: auto !important;
    justify-self: start !important;
  }

  .brand img {
    display: block !important;
    width: min(220px, 52vw) !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    justify-self: end !important;
    gap: 7px !important;
    min-width: 0 !important;
  }

  .language-current,
  .menu-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    padding: 0 !important;
    flex: 0 0 46px !important;
  }

  .language-current img {
    width: 27px !important;
    height: auto !important;
  }

  .language-menu {
    right: 0 !important;
    left: auto !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
  }
}

/* MOBIL – finální pevné umístění loga, jazyků a menu */
@media (max-width: 767px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .header-inner {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--header-height) !important;
    margin: 0 !important;
    padding: 0 10px !important;
    overflow: visible !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .brand {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 138px !important;
    max-width: calc(100% - 112px) !important;
    min-width: 0 !important;
    height: 52px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
  }

  .brand img {
    display: block !important;
    width: 138px !important;
    max-width: 100% !important;
    max-height: 48px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .header-actions {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .language-switcher {
    position: relative !important;
    z-index: 1300 !important;
    flex: 0 0 40px !important;
  }

  .language-current,
  .menu-button {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 40px !important;
  }

  .language-current img {
    width: 24px !important;
    height: 16px !important;
  }

  .language-menu {
    right: 0 !important;
    left: auto !important;
    width: min(170px, calc(100vw - 20px)) !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 122px !important;
    max-width: calc(100% - 104px) !important;
  }

  .brand img {
    width: 122px !important;
  }

  .header-actions {
    right: 8px !important;
    gap: 4px !important;
  }

  .language-current,
  .menu-button {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    flex-basis: 38px !important;
  }
}
/* MOBIL – jazyk a menu nezávisle ukotvit vpravo */
@media (max-width: 767px) {
  .header-inner {
    position: relative !important;
  }

  .header-actions {
    position: static !important;
    transform: none !important;
  }

  .language-switcher {
    position: absolute !important;
    top: 50% !important;
    right: 58px !important;
    transform: translateY(-50%) !important;
  }

  .menu-button {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* REGENTHUS v7.0.10 — stable EveryThink button */
.button-everythink {
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid #4ba3ff !important;
  background: linear-gradient(180deg, #2d8cff 0%, #0b57d0 58%, #073b91 100%) !important;
  color: #ffffff !important;
  font-family: Calibri, "Segoe UI", Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.1;
  text-transform: none !important;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 20px rgba(21,113,255,.48),
    0 8px 22px rgba(0,0,0,.32) !important;
}

.button-everythink:visited { color: #ffffff !important; }

@media (hover: hover) and (pointer: fine) {
  .button-everythink:hover {
    background: linear-gradient(180deg, #49a0ff 0%, #1768e5 58%, #0a469f 100%) !important;
    color: #ffffff !important;
    border-color: #8bc5ff !important;
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(255,255,255,.18) inset,
      0 0 26px rgba(34,130,255,.62),
      0 10px 25px rgba(0,0,0,.36) !important;
  }
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 6px;
  text-align: left;
  font-family: Calibri, "Segoe UI", Arial, sans-serif !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  color: #ffffff;
}

.mobile-menu nav a > span:first-child {
  color: #62adff;
  font-size: 10px;
}

.mobile-menu nav .mobile-menu-everythink {
  margin-top: 8px;
  border: 1px solid #388fff;
  background: linear-gradient(180deg, rgba(45,140,255,.98), rgba(11,87,208,.98));
  box-shadow: 0 0 20px rgba(21,113,255,.34);
  padding-inline: 12px;
}

.mobile-menu nav .mobile-menu-everythink > span:nth-child(2) {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.mobile-menu nav .mobile-menu-everythink > b { color: #ffffff; }

@media (max-width: 560px) {
  .hero-actions .button-everythink {
    width: 100%;
    min-height: 56px;
    font-size: 16px !important;
  }
}


/* REGENTHUS – finální oprava podkladu sekcí */
.hex-grid,
.hero-hexes,
.section-hexes,
.process-hexes,
.contact-hexes {
  display: none !important;
}

.about, .services, .process, .media-section, .audience, .contact {
  background-image:
    linear-gradient(180deg, rgba(7,7,7,.52), rgba(10,8,7,.72)),
    url("images/plastve-original.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

@media (max-width: 1024px) {
  .about, .services, .process, .media-section, .audience, .contact {
    background-attachment: scroll !important;
  }
}

/* zachování modrého EveryThink tlačítka */
.button-everythink {
  border: 1px solid #4ba3ff !important;
  background: linear-gradient(180deg, #2d8cff 0%, #0b57d0 58%, #073b91 100%) !important;
  color: #ffffff !important;
}
.button-everythink:visited { color: #ffffff !important; }
@media (hover: hover) and (pointer: fine) {
  .button-everythink:hover {
    background: linear-gradient(180deg, #49a0ff 0%, #1768e5 58%, #0a469f 100%) !important;
    color: #ffffff !important;
    border-color: #8bc5ff !important;
  }
}
.mobile-menu nav .mobile-menu-everythink {
  border: 1px solid #388fff !important;
  background: linear-gradient(180deg, rgba(45,140,255,.98), rgba(11,87,208,.98)) !important;
  box-shadow: 0 0 20px rgba(21,113,255,.34) !important;
}
.mobile-menu nav .mobile-menu-everythink > span:nth-child(2),
.mobile-menu nav .mobile-menu-everythink > b {
  color: #ffffff !important;
}
/* REGENTHUS – pouze zesvětlení hory v hero sekci */
.hero-image {
  filter: saturate(.94) contrast(1.04) brightness(.96) !important;
}

.hero-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 34%, rgba(0, 0, 0, 0.64) 80%, #070707 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.03) 52%, rgba(0, 0, 0, 0.10)) !important;
}

@media (max-width: 820px) {
  .hero-image {
    filter: saturate(.95) contrast(1.03) brightness(.99) !important;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.04) 34%, rgba(0, 0, 0, 0.58) 78%, #070707 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02) 54%, rgba(0, 0, 0, 0.08)) !important;
  }
}
/* REGENTHUS – jediná změna: plynulý přechod HORA → PLÁSTVE */

/* Přechodová textura se vloží pouze do spodní části úvodní hory. */
.hero {
  overflow: hidden !important;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 300px;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0) 0%,
      rgba(7, 7, 7, 0.10) 28%,
      rgba(7, 7, 7, 0.32) 66%,
      rgba(7, 7, 7, 0.52) 100%
    ),
    url("images/plastve-original.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 18%,
    rgba(0, 0, 0, 0.62) 54%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 18%,
    rgba(0, 0, 0, 0.62) 54%,
    #000 100%
  );
}

/* Odstraní černé ukončení hory; horní část hory zůstává beze změny. */
.hero-vignette {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.05) 34%,
      rgba(0, 0, 0, 0.38) 78%,
      rgba(7, 7, 7, 0.18) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.03) 52%,
      rgba(0, 0, 0, 0.10)
    ) !important;
}

/* Spojí obě sekce bez mezery a zarovná stejnou fotku přesně od horní hrany. */
.about {
  margin-top: -1px !important;
  background-position: center top !important;
}

@media (max-width: 820px) {
  .hero::after {
    height: 240px;
  }
}

@media (max-width: 560px) {
  .hero::after {
    height: 210px;
  }
}
/* REGENTHUS EXACT BUTTON BLUE 0057D9 START */
/* Pouze tlačítko EveryThink. Žádné nadpisy, ikony ani ostatní texty. */
a.button-everythink,
a.button-everythink:visited,
a.mobile-menu-everythink,
a.mobile-menu-everythink:visited {
  border-color: #4da3ff !important;
  background-color: #0057d9 !important;
  background-image: linear-gradient(135deg, #1c7dff 0%, #0057d9 58%, #003e9f 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 22px rgba(0,87,217,.42),
    0 9px 22px rgba(0,0,0,.30) !important;
}
a.button-everythink > *,
a.mobile-menu-everythink > * {
  color: #ffffff !important;
}
a.button-everythink:hover,
a.button-everythink:focus-visible,
a.mobile-menu-everythink:hover,
a.mobile-menu-everythink:focus-visible {
  border-color: #82c4ff !important;
  background-color: #0a63e6 !important;
  background-image: linear-gradient(135deg, #3290ff 0%, #0a63e6 58%, #0048b8 100%) !important;
  color: #ffffff !important;
}
a.button-everythink:active,
a.mobile-menu-everythink:active {
  background-color: #0048b8 !important;
  background-image: linear-gradient(135deg, #176edb 0%, #0048b8 58%, #00347f 100%) !important;
}
/* REGENTHUS EXACT BUTTON BLUE 0057D9 END */
