:root {
  --ink: #2c2d2e;
  --muted: #6f7374;
  --blue: #6ec1e4;
  --paper: #fbfbfa;
  --line: rgba(44, 45, 46, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

h1, h2, p { margin-top: 0; }

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #3c4549 url("public/assets/yachtwedding-original/hero/hlavni_foto.jpeg") center / cover no-repeat;
}

.hero__video, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__video { object-fit: cover; }

.hero__shade { background: rgba(9, 17, 20, .38); }

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  padding: 76px 0;
  text-align: center;
}

.hero__logo { width: min(350px, 82vw); height: auto; margin: 0 auto 64px; display: block; }

.hero__years {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__years { color: rgba(255, 255, 255, .85); }

.hero h1 {
  max-width: 690px;
  margin: 0 auto 20px;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.26;
}

.hero__intro { max-width: 620px; margin: 0 auto; font-size: clamp(15px, 1.5vw, 18px); font-weight: 400; line-height: 1.65; }

.scroll-cue { position: absolute; z-index: 1; bottom: 28px; left: 50%; width: 1px; height: 44px; background: rgba(255,255,255,.48); transform: translateX(-50%); }
.scroll-cue span { display: block; width: 1px; height: 14px; background: #fff; animation: descend 2s infinite ease-in-out; }
@keyframes descend { 0%, 100% { transform: translateY(0); opacity: .25; } 50% { transform: translateY(30px); opacity: 1; } }

.section { padding: clamp(88px, 13vw, 184px) 24px; }
.copy { margin: 0 auto; }
.copy--narrow { max-width: 720px; }
.copy--wide { max-width: 1000px; }

h2 { margin-bottom: 30px; font-size: clamp(27px, 3vw, 39px); font-weight: 600; letter-spacing: normal; line-height: 1.3; }
.section h2, .thanks h2 { text-transform: uppercase; }
.copy p { margin-bottom: 25px; }

.film { background: #f4f5f4; }
.film__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #202426; box-shadow: 0 16px 48px rgba(25, 33, 36, .12); }
.film__frame iframe { position: absolute; width: 100%; height: 100%; border: 0; }
.film__caption { margin: 18px 0 0; color: var(--muted); font-size: 14px; }

.chapter { background: #fff; }

.thanks {
  position: relative;
  padding: clamp(96px, 14vw, 190px) 24px;
  color: #fff;
  background-color: #37474d;
  background-image: linear-gradient(rgba(55, 71, 77, .82), rgba(55, 71, 77, .82)), url("public/assets/yachtwedding-original/live-com/backgrounds/yw-bg-seamless.jpg");
  background-position: center, top center;
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, auto;
}
.thanks__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.thanks h2 { font-size: clamp(38px, 4.8vw, 58px); }
.thanks__copy { max-width: 660px; margin: 0 auto; font-weight: 400; }
.thanks__copy p { margin-bottom: 25px; }
.thanks__statement { margin: 64px auto 0; max-width: 710px; font-size: clamp(25px, 3.4vw, 40px); font-weight: 400; letter-spacing: normal; line-height: 1.35; }

.footer { padding: 84px 24px 28px; background: #f8f8f7; color: #4f5354; }
.footer__grid, .shareholders { width: min(1080px, 100%); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(56px, 10vw, 140px); padding-bottom: 76px; }
.footer h2 { margin-bottom: 20px; font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: normal; line-height: 1.35; }
.corporate-data { margin: 0; font-size: 14px; line-height: 1.65; }
.corporate-data div { display: grid; grid-template-columns: 190px minmax(0, 1fr); padding: 10px 0; border-bottom: 1px solid var(--line); }
.corporate-data dt { color: var(--muted); }
.corporate-data dd { margin: 0; }
.notice-date { margin-bottom: 25px; font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.notice-date span { padding: 0 7px; color: var(--blue); }
.quiet-link { color: var(--ink); font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--blue); padding-bottom: 4px; }
.quiet-link:hover, .quiet-link:focus-visible { color: #347c9c; }
.quiet-link span { padding-left: 8px; }

.shareholders { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 42px; border-top: 1px solid var(--line); }
.shareholders h2 { margin-bottom: 10px; }
.shareholders p:not(.eyebrow) { max-width: 510px; margin: 0; font-size: 14px; }

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  background-color: #f7f8f7;
  background-image: linear-gradient(rgba(247, 248, 247, .82), rgba(247, 248, 247, .82)), url("public/assets/yachtwedding-original/live-com/backgrounds/yw-bg-seamless.jpg");
  background-position: center, top center;
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, auto;
}
.placeholder-page__content {
  width: min(670px, 100%);
  padding: clamp(42px, 8vw, 82px);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 70px rgba(40, 52, 56, .12);
}
.placeholder-page__logo { display: block; width: min(270px, 75%); height: auto; margin-bottom: 64px; }
.placeholder-page h1 { font-size: clamp(33px, 5vw, 50px); font-weight: 300; line-height: 1.2; }

@media (max-width: 700px) {
  body { font-size: 16px; line-height: 1.72; }
  .hero__content { width: min(100% - 40px, 620px); padding: 64px 0; }
  .hero__logo { width: min(280px, 78vw); margin-bottom: 44px; }
  .hero h1 { font-size: clamp(31px, 9vw, 45px); }
  .scroll-cue { bottom: 18px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .thanks { padding-left: 20px; padding-right: 20px; }
  .footer { padding: 64px 20px 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 56px; padding-bottom: 56px; }
  .corporate-data div { grid-template-columns: 1fr; gap: 2px; }
  .shareholders { display: block; }
  .shareholders .quiet-link { display: inline-block; margin-top: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; }
}
