:root {
  --paper: #f7f3ed;
  --paper-soft: #fffaf5;
  --ink: #231f20;
  --muted: #6f6665;
  --line: rgba(35, 31, 32, 0.14);
  --red: #ed1b34;
  --red-deep: #8f1022;
  --red-dark: #4b0d17;
  --rose: #fff0f1;
  --silver: #8f959b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(72, 13, 23, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 243, 237, 0.95);
  box-shadow: 0 12px 35px rgba(72, 13, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-soft);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 112px clamp(20px, 5vw, 72px) 52px;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0.83) 39%, rgba(247, 243, 237, 0.18) 74%),
    linear-gradient(0deg, rgba(247, 243, 237, 0.95) 0%, rgba(247, 243, 237, 0) 24%),
    linear-gradient(120deg, rgba(237, 27, 52, 0.12) 0%, rgba(237, 27, 52, 0) 45%);
  content: "";
}

.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  width: min(1220px, 100%);
}

.hero__content {
  align-self: center;
  width: min(720px, 100%);
}

.hero__portrait {
  position: relative;
  align-self: start;
  margin-top: 82px;
  overflow: hidden;
  border: 1px solid rgba(237, 27, 52, 0.24);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.hero__portrait::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(237, 27, 52, 0.22);
  border-radius: 6px;
  content: "";
  pointer-events: none;
  z-index: 1;
}

.hero__portrait img {
  width: 100%;
  height: min(46vh, 360px);
  object-fit: cover;
  object-position: 38% 50%;
}

.hero__portrait div {
  display: grid;
  gap: 4px;
  padding: 16px 20px 18px;
  background: var(--white);
}

.hero__portrait strong {
  font-size: 1.18rem;
}

.hero__portrait span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.55rem, 5.2vw, 4.95rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #46504a;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero__actions,
.contact__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(237, 27, 52, 0.24);
}

.button--ghost {
  border-color: rgba(237, 27, 52, 0.28);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--paper-soft);
}

.intro article {
  min-height: 220px;
  padding: clamp(26px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.intro article:last-child {
  border-right: 0;
}

.intro span {
  color: var(--red);
  font-weight: 900;
}

.intro h2 {
  margin-top: 48px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.intro p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section,
.projects {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section__head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section__head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 35px rgba(72, 13, 23, 0.05);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, var(--red-dark) 0%, var(--red-deep) 58%, #c5162b 100%);
  color: var(--white);
}

.split-section__text,
.process,
.contact__content,
.contact__panel {
  max-width: 620px;
}

.split-section__text p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.process {
  display: grid;
  gap: 12px;
  justify-self: end;
}

.process div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 6px 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process strong {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.projects {
  background: #fff1f2;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.project-list a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(237, 27, 52, 0.16);
  border-radius: 8px;
  background: var(--paper-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-list a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.project-list span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-list strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.campaign-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: 88vh;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.campaign-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.97) 0%, rgba(247, 243, 237, 0.86) 44%, rgba(247, 243, 237, 0.48) 72%, rgba(247, 243, 237, 0.22) 100%),
    linear-gradient(0deg, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0) 28%),
    linear-gradient(135deg, rgba(237, 27, 52, 0.17) 0%, rgba(237, 27, 52, 0) 52%);
  content: "";
}

.campaign-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.campaign-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.campaign-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.campaign-hero__content h1 {
  max-width: 820px;
}

.campaign-hero__content p:not(.eyebrow) {
  max-width: 650px;
  color: #514a49;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.campaign-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-self: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(237, 27, 52, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.campaign-hero__panel strong {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.campaign-hero__panel p {
  margin: 0;
  color: var(--muted);
}

.campaign-hero__panel ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.campaign-hero__panel li {
  position: relative;
  padding-left: 18px;
  color: #514a49;
  font-weight: 800;
}

.campaign-hero__panel li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.banner-section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background: #fff6f6;
}

.hpl-banner {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(237, 27, 52, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hpl-banner img {
  width: 100%;
  height: auto;
}

.hpl-banner figcaption {
  padding: 14px 18px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.team-section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.team-section--featured {
  padding-top: clamp(56px, 7vw, 96px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.team-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(237, 27, 52, 0.16);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: 0 10px 35px rgba(72, 13, 23, 0.06);
}

.team-card__avatar {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 48px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.team-card__photo {
  width: 96px;
  height: 96px;
  margin-bottom: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% 24%;
  box-shadow: 0 10px 24px rgba(72, 13, 23, 0.16);
}

.team-card__photo--eliska {
  object-position: 50% 18%;
}

.team-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.event-program {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background: #fff6f6;
}

.event-program__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.event-program__grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(237, 27, 52, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(72, 13, 23, 0.05);
}

.event-program__grid strong {
  color: var(--red);
  font-weight: 900;
}

.event-program__grid h3 {
  margin-top: 42px;
}

.event-program__grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.faq-section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--paper-soft);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(72, 13, 23, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.contact__content p:not(.eyebrow) {
  color: var(--muted);
}

.contact__panel {
  justify-self: end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.contact-link {
  display: block;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-link span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .intro,
  .service-grid,
  .service-grid--three,
  .team-grid,
  .event-program__grid,
  .project-list,
  .section__head,
  .split-section,
  .campaign-hero,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero__portrait {
    width: min(360px, 100%);
  }

  .intro article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro article:last-child {
    border-bottom: 0;
  }

  .intro h2 {
    margin-top: 32px;
  }

  .section__head .eyebrow {
    margin-bottom: -8px;
  }

  .process,
  .contact__panel {
    justify-self: stretch;
    max-width: none;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: 100vh;
    padding-top: 92px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 4.7vw, 4.2rem);
  }

  .hero__lead {
    margin-top: 20px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__portrait img {
    height: min(42vh, 320px);
  }

  .hero__portrait {
    margin-top: 106px;
  }

  .hero__portrait div {
    padding: 13px 18px 15px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 20px 48px;
  }

  .campaign-hero {
    min-height: auto;
    gap: 20px;
    padding: 88px 20px 42px;
  }

  .campaign-hero::after {
    background:
      linear-gradient(90deg, rgba(247, 243, 237, 0.97) 0%, rgba(247, 243, 237, 0.9) 68%, rgba(247, 243, 237, 0.62) 100%),
      linear-gradient(0deg, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0) 35%),
      linear-gradient(135deg, rgba(237, 27, 52, 0.18) 0%, rgba(237, 27, 52, 0) 58%);
  }

  .campaign-hero__panel {
    gap: 12px;
    padding: 18px;
  }

  .campaign-hero__panel strong {
    font-size: 1.45rem;
  }

  .campaign-hero__panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .campaign-hero__panel li {
    font-size: 0.88rem;
  }

  .hero__shell {
    gap: 28px;
  }

  .hero__portrait {
    width: min(340px, 86vw);
    margin-top: 0;
  }

  .hero__portrait img {
    height: min(32vh, 230px);
    object-position: 34% 50%;
  }

  .hero__portrait div {
    padding: 14px 16px 16px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(247, 243, 237, 0.97) 0%, rgba(247, 243, 237, 0.88) 58%, rgba(247, 243, 237, 0.42) 100%),
      linear-gradient(0deg, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0) 30%),
      linear-gradient(120deg, rgba(237, 27, 52, 0.16) 0%, rgba(237, 27, 52, 0) 52%);
  }

  h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.85rem);
  }

  .hero__actions,
  .contact__panel {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .process div {
    grid-template-columns: 40px 1fr;
    padding: 20px;
  }
}
