:root {
  --gold: #BE9542;
  --gold-dark: #96732f;
  --ink: #11100f;
  --muted: #605d58;
  --paper: #fff;
  --warm: #fbfaf7;
  --line: #e9e6df;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 14px; line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 112px; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-visual-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

.site-header {
  height: 112px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 26px max(54px, calc((100vw - 1440px) / 2 + 54px));
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(190,149,66,.12);
  box-shadow: 0 8px 28px rgba(38,29,13,.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { width: 270px; }
.brand-logo { display: block; width: 100%; height: auto; }
.main-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(24px, 3vw, 50px); }
.main-nav a, .languages { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .015em; }
.main-nav a { padding: 10px 0; position: relative; }
.main-nav a + a::before { content: "·"; position: absolute; left: -16px; top: 50%; color: #b8aa8d; font-weight: 400; transform: translateY(-50%); }
.main-nav a::after { content: ""; height: 1px; background: var(--gold); position: absolute; left: 0; right: 100%; bottom: 4px; transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.main-nav .nav-contact { padding: 11px 20px; color: #fff; background: var(--gold); }
.main-nav .nav-contact::after { display: none; }
.main-nav .nav-contact:hover, .main-nav .nav-contact:focus-visible { background: var(--gold-dark); }
.language-switch {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 32px;
  padding: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(190,149,66,.72);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(42,31,13,.07);
  font: 700 9px/1 var(--sans);
  letter-spacing: .04em;
  box-sizing: border-box;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.language-switch::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 2px;
  left: 2px;
  width: calc((100% - 4px) / 2);
  height: calc(100% - 4px);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 2px 9px rgba(66,47,12,.18);
  pointer-events: none;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.language-switch.is-en::before { transform: translateX(100%); }
.language-switch span { position: relative; z-index: 1; display: grid; place-items: center; }
.language-switch.is-cs span:first-child,
.language-switch.is-en span:last-child { color: #fff; }
.language-switch:hover, .language-switch:focus-visible { border-color: var(--gold); box-shadow: 0 6px 20px rgba(66,47,12,.13); transform: translateY(-1px); }
.menu-toggle { display: none; }

.hero { width: 100%; max-width: none; min-height: 640px; margin: 0; display: grid; grid-template-columns: minmax(500px, 45%) 1fr; overflow: hidden; }
.hero-copy { padding: 50px 65px 60px max(76px, calc((100vw - 1440px) / 2 + 54px)); align-self: center; position: relative; z-index: 2; background: white; animation: hero-copy-in .85s cubic-bezier(.22,.7,.25,1) both; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 5.65vw, 76px); line-height: .96; font-weight: 500; text-transform: uppercase; letter-spacing: -.025em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.gold-rule { width: 44px; height: 2px; margin: 34px 0 27px; background: var(--gold); }
.hero-copy p { max-width: 430px; margin: 0; line-height: 1.85; font-size: 13px; font-weight: 500; }
.hero-copy .hero-experience { margin-top: 14px; color: var(--muted); font-size: 11.5px; font-weight: 500; line-height: 1.8; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 34px; }
.button { min-width: 174px; padding: 12px 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; transition: .25s ease; }
.button-gold { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-dark); border-color: var(--gold-dark); }
.text-link, .card-link { text-transform: uppercase; font-size: 11px; font-weight: 600; letter-spacing: .045em; }
.text-link span, .card-link span { color: var(--gold); font-size: 25px; margin-left: 12px; vertical-align: -2px; font-weight: 400; }
.hero-visual {
  position: relative;
  background-image: url("assets/hero-events-production-v2.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  transform-origin: right center;
  animation: hero-visual-in 1.15s cubic-bezier(.22,.7,.25,1) both;
}
.hero-visual::after { content: ""; position: absolute; top: 0; bottom: 0; left: -2px; width: 40%; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 15%, rgba(255,255,255,.58) 48%, rgba(255,255,255,0) 100%); pointer-events: none; }

.section { max-width: 1180px; margin: 0 auto; padding: 54px 42px; }
.section-kicker { color: var(--gold); text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.section h2 { margin: 4px 0 0; text-align: center; font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.15; letter-spacing: -.025em; }
.title-mark { width: 26px; height: 1px; margin: 13px auto 28px; background: var(--gold); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-card { padding: 0 22px; text-align: center; border-right: 1px solid var(--line); transition: transform .35s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { transform: translateY(-5px); }
.service-icon { height: 58px; display: flex; align-items: center; justify-content: center; }
.service-icon img { width: 43px; height: 43px; }
.service-card h3 { margin: 6px 0 8px; font-size: 12px; text-transform: uppercase; }
.service-card p { margin: 0; font-size: 10.5px; line-height: 1.85; }

.projects { max-width: 1200px; background: var(--warm); padding-top: 46px; padding-bottom: 48px; text-align: center; }
.project-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 30px; text-align: left; }
.project-card { padding-bottom: 2px; transition: transform .35s cubic-bezier(.22,.7,.25,1), box-shadow .35s ease; }
.project-card:hover { transform: translateY(-6px); }
.project-image { aspect-ratio: 1.9; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #090909; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.7,.25,1), filter .45s ease; }
.project-image:hover img, .project-image:focus-visible img, .project-card:hover .project-image img { transform: scale(1.035); filter: saturate(1.04); }
.project-image-light { background: white; }
.project-image-light img { object-fit: contain; padding: 12px; }
.project-card h3 { font-size: 14px; margin: 13px 4px 5px; }
.project-card p { max-width: 540px; font-size: 12px; line-height: 1.7; margin: 0 4px; min-height: 0; }
.project-card .card-link { display: inline-block; margin: 2px 4px 0; color: var(--gold-dark); }
.project-link { margin: 17px 4px 0; min-width: 176px; padding: 10px 17px; border: 1px solid var(--gold); display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; transition: color .25s ease, background .25s ease, transform .25s ease; }
.project-link span { font-size: 20px; line-height: 1; font-weight: 400; transition: transform .25s ease; }
.project-link:hover, .project-link:focus-visible { color: #fff; background: var(--gold); transform: translateY(-2px); }
.project-link:hover span, .project-link:focus-visible span { transform: translateX(4px); }
.featured-project { grid-column: 1 / -1; margin-top: 10px; padding: 38px; display: grid; grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr); gap: 42px; background: #fff; border-top: 1px solid rgba(190,149,66,.3); box-shadow: 0 18px 54px rgba(65,49,20,.055); }
.featured-project-copy { align-self: center; }
.featured-project-logo { width: 180px; height: 75px; object-fit: contain; object-position: left center; margin: 0 0 22px; }
.featured-project h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1.1; }
.featured-project p { margin: 0 0 13px; color: #393632; font-size: 11.5px; line-height: 1.8; }
.featured-project .featured-project-signature { margin-top: 18px; color: var(--gold-dark); font-weight: 700; }
.cesky-gallery { height: min(70vw, 560px); display: grid; grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); grid-template-rows: repeat(2, minmax(0, 1fr)); align-content: stretch; gap: 10px; min-height: 0; }
.cesky-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .65s cubic-bezier(.22,.7,.25,1), filter .45s ease; }
.cesky-gallery .cesky-gallery-portrait { grid-column: 1; grid-row: 1 / -1; object-position: center top; }
.cesky-gallery:hover img { filter: saturate(.94); }
.cesky-gallery img:hover { transform: scale(1.012); filter: saturate(1.06); }
.about { max-width: 1240px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); align-items: stretch; gap: 42px; padding-top: 55px; padding-bottom: 58px; }
.about-copy { padding: 12px 0; }
.about-copy .section-kicker { text-align: left; }
.about-copy h2 { text-align: left; font-size: 42px; margin-top: 7px; max-width: 630px; }
.about-copy .gold-rule { margin: 22px 0 20px; width: 38px; height: 1px; }
.about-copy p { max-width: 680px; font-size: 14px; line-height: 1.85; margin: 0 0 14px; }
.about-copy .about-signature { margin-top: 22px; color: var(--gold-dark); font-weight: 600; }
.about-copy .card-link { color: var(--gold-dark); }
.about-visual { min-height: 470px; position: relative; overflow: hidden; background: #eee9df; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; transition: transform 1.2s cubic-bezier(.22,.7,.25,1); }
.about-visual:hover .about-photo { transform: scale(1.025); }
.about-photo-logo { position: absolute; right: 5%; bottom: 7%; width: min(38%, 300px); height: auto; padding: 15px 18px; background: rgba(255,255,255,.84); box-shadow: 0 8px 30px rgba(42,31,13,.1); }

.collaboration-section { max-width: 1240px; padding-top: 72px; padding-bottom: 72px; }
.collaboration-layout { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.45fr); align-items: stretch; gap: 48px; }
.collaboration-intro { align-self: center; text-align: left; }
.collaboration-intro .section-kicker, .collaboration-intro h2 { text-align: left; }
.collaboration-intro h2 { font-size: 43px; }
.collaboration-intro .title-mark { margin: 18px 0 26px; }
.collaboration-intro p { margin: 0 0 20px; color: #393632; font-size: 15.5px; line-height: 1.9; }
.collaboration-visual { min-height: 500px; overflow: hidden; background: #eee9df; }
.collaboration-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.22,.7,.25,1), filter .45s ease; }
.collaboration-visual:hover img { transform: scale(1.025); filter: saturate(1.03); }

.contact-section { max-width: 1200px; margin: 0 auto 54px; padding: 58px 48px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; background: var(--warm); border-top: 1px solid var(--line); }
.contact-intro .section-kicker { text-align: left; }
.contact-intro h2 { margin: 8px 0 20px; font-family: var(--serif); font-size: 43px; font-weight: 500; line-height: 1.06; }
.contact-intro p { max-width: 390px; margin: 0 0 22px; font-size: 12px; line-height: 1.8; }
.contact-intro .contact-highlight { margin-top: -10px; color: var(--gold-dark); font-weight: 700; }
.company-details { max-width: 390px; margin: 27px 0 22px; padding-top: 20px; display: flex; flex-direction: column; border-top: 1px solid var(--line); color: #393632; font-style: normal; font-size: 11.5px; line-height: 1.75; }
.company-details strong { margin-bottom: 3px; color: var(--ink); font-size: 12px; }
.contact-intro a { display: block; width: max-content; font-size: 12px; font-weight: 600; }
.contact-intro a:hover, .contact-intro a:focus-visible { color: var(--gold-dark); }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 20px; }
.form-honey { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; border: 0; border-bottom: 1px solid #cfc9be; border-radius: 0; padding: 11px 2px; background: transparent; color: var(--ink); font: 500 13px/1.5 var(--sans); outline: none; transition: border-color .2s ease; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.contact-submit { grid-column: 1 / -1; justify-self: start; min-width: 210px; border: 1px solid var(--gold); padding: 13px 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; background: var(--gold); color: #fff; font: 600 11px/1 var(--sans); letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: .2s ease; }
.contact-submit:hover, .contact-submit:focus-visible { background: var(--gold-dark); border-color: var(--gold-dark); }
.contact-submit:disabled { opacity: .62; cursor: wait; }
.form-status { grid-column: 1 / -1; margin: -8px 0 0; color: var(--muted); font-size: 10px; }
.form-status.is-success { color: #3e6c42; }
.form-status.is-error { color: #a13d32; }

.reveal-ready { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,.7,.25,1); }
.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }
.service-card.reveal-ready:nth-child(2), .project-card.reveal-ready:nth-child(2) { transition-delay: .08s; }
.service-card.reveal-ready:nth-child(3), .project-card.reveal-ready:nth-child(3) { transition-delay: .16s; }
.service-card.reveal-ready:nth-child(4), .project-card.reveal-ready:nth-child(4) { transition-delay: .24s; }
.service-card.reveal-ready:nth-child(5) { transition-delay: .32s; }

.footer { max-width: 1130px; margin: 0 auto; padding: 0 16px 42px; display: grid; grid-template-columns: 1.25fr .9fr .9fr 1.15fr; gap: 34px; font-size: 10.5px; }
.footer-brand .brand-logo { width: 190px; }
.footer h2 { margin: 0 0 7px; font-family: var(--sans); font-size: 10px; text-transform: uppercase; font-weight: 600; }
.footer-links > div, .footer-contact { display: flex; flex-direction: column; }
.footer-links-secondary { padding-top: 25px; }
.footer a:hover, .footer a:focus-visible { color: var(--gold-dark); }
.footer-contact p { margin: 0; }

@media (max-width: 950px) {
  .site-header { height: 88px; padding: 18px 26px; grid-template-columns: 1fr auto auto; gap: 12px; }
  .brand { width: 225px; }
  .menu-toggle { display: flex; width: 42px; height: 42px; border: 0; padding: 10px; background: transparent; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span { width: 22px; height: 1px; background: var(--ink); transition: .25s; }
  .main-nav { position: absolute; left: 0; right: 0; top: 87px; padding: 24px; flex-direction: column; gap: 2px; background: rgba(255,255,255,.98); box-shadow: 0 12px 24px rgba(0,0,0,.07); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .3s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { text-align: center; }
  .main-nav a + a::before { display: none; }
  .main-nav .nav-contact { margin-top: 8px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 60px 10vw; }
  .hero h1 { font-size: clamp(52px, 12vw, 82px); }
  .hero-visual { min-height: 620px; background-size: cover; background-position: 61% center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .service-card { border-right: 1px solid var(--line); }
  .service-card:nth-child(even), .service-card:last-child { border-right: 0; }
  .project-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .project-card p { min-height: auto; }
  .featured-project { grid-template-columns: 1fr; padding: 30px; }
  .cesky-gallery { min-height: 0; }
  .about { grid-template-columns: 1fr; }
  .about-copy { max-width: 720px; margin-bottom: 10px; }
  .about-visual { min-height: 460px; }
  .contact-section { margin-inline: 22px; grid-template-columns: 1fr; gap: 38px; }
  .collaboration-layout { grid-template-columns: 1fr; gap: 30px; }
  .collaboration-intro { max-width: 760px; }
  .collaboration-visual { min-height: 470px; }
  .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  body { font-size: 13px; }
  .site-header { padding-inline: 18px; grid-template-columns: 1fr auto auto; gap: 7px; }
  .brand { width: 185px; }
  .language-switch { width: 68px; height: 30px; }
  .hero-copy { padding: 48px 28px 55px; }
  .hero h1 { font-size: clamp(47px, 14.2vw, 68px); }
  .hero-copy p { font-size: 12px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 470px; }
  .section { padding: 43px 22px; }
  .section h2 { font-size: 33px; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(even) { padding: 20px 8px 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .project-card p { font-size: 11px; }
  .featured-project { padding: 24px 19px; gap: 26px; }
  .featured-project h3 { font-size: 28px; }
  .cesky-gallery { height: 70vw; min-height: 0; }
  .about-copy h2, .contact-intro h2 { font-size: 35px; }
  .about-copy p { font-size: 13px; }
  .about-visual { min-height: 350px; }
  .collaboration-intro h2 { font-size: 35px; }
  .collaboration-intro p { font-size: 14px; }
  .collaboration-visual { min-height: 300px; }
  .contact-section { margin: 0 14px 42px; padding: 42px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field, .form-field-wide { grid-column: 1; }
  .footer { grid-template-columns: 1fr 1fr; padding: 10px 28px 38px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .hero-copy, .hero-visual { animation: none; }
  .reveal-ready { opacity: 1; transform: none; }
}
