@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");

:root {
  --ink: #280905;
  --bg: #f3e9d2;
  --blue: #d62929;
  --side: clamp(16px, 6vw, 100px);
  --max: 1000px;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Dancing Script", Georgia, serif;
}

.hero-img {
  width: 100%;
  height: clamp(260px, 38vw, 480px);
  display: block;
  object-fit: cover;
  object-position: top center;
}

.wrap {
  width: min(calc(100% - (var(--side) * 2)), var(--max));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 56px) 0 clamp(44px, 7vw, 70px);
}

.statement {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.script-title {
  margin: 0 0 18px 0;
  font-size: clamp(28px, 5vw, 60px);
  color: var(--blue);
  font-weight: 500;
}

.statement-p {
  margin: 0 auto;
  width: 100%;
  padding: clamp(12px, 2vw, 20px);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  font-family: Georgia, serif;
  text-align: justify;
  text-justify: inter-word;
}

.video-section {
  margin-top: clamp(26px, 5vw, 46px);
}

.video-frame {
  width: min(100%, 820px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.thumb-banner {
  width: 100vw;
  margin: clamp(34px, 6vw, 70px) calc(50% - 50vw) 0;
  overflow: hidden;
}

.thumb-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

.thumb-strip {
  height: clamp(140px, 18vw, 220px);
  width: auto;
  display: block;
}

.site-footer {
  background: #d62929;
  opacity: 0.6;
}

.footer-inner {
  width: 70%;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-note,
.footer-contact {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 200;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.contact-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-icon {
  display: inline-block;
  width: 20px;
  font-size: 30px;
  color: #fff;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}