:root {
  --bg: #fff8ef;
  --bg-soft: #fffdf8;
  --ink: #263238;
  --muted: #66727a;
  --primary: #e85d75;
  --primary-dark: #c43e58;
  --secondary: #ffb45c;
  --mint: #89c9b8;
  --line: rgba(38, 50, 56, 0.12);
  --shadow: 0 22px 60px rgba(67, 43, 31, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "PingFang HK", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 180, 92, 0.25), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, #fff 42%, #f6fbf8 100%);
  line-height: 1.7;
}

img,
video {
  display: block;
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 248, 239, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 28px rgba(232, 93, 117, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #43515a;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(67, 43, 31, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.hero-text,
.section-heading p,
.split-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 30px rgba(232, 93, 117, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 28px rgba(67, 43, 31, 0.08);
}

.hero-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  color: #fff;
  background: rgba(38, 50, 56, 0.72);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.stats-band {
  width: min(var(--max-width), calc(100% - 32px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats-band article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 40px rgba(67, 43, 31, 0.08);
}

.stats-band span {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--mint);
  font-weight: 900;
}

.stats-band p {
  margin: 0;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 48px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
  color: #43515a;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  content: "✓";
  font-size: 0.8rem;
}

.video-card {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.video-card video {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #1d252a;
  object-fit: cover;
}

.video-note {
  margin: 14px 8px 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: #f4eee6;
  font-size: 0.9em;
}

.message-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(16px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(135deg, rgba(137, 201, 184, 0.2), rgba(255, 180, 92, 0.18)),
    #fffdf8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.message-card,
.gallery-card,
.contact-form {
  border: 1px solid rgba(38, 50, 56, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(67, 43, 31, 0.08);
}

.message-card {
  min-height: 280px;
  padding: 30px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.message-card p,
.gallery-card p,
.form-note {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 20px;
}

.character-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.scene-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  height: 300px;
  object-fit: cover;
}

.gallery-card div {
  padding: 22px;
}

.scene-gallery .gallery-card img {
  height: 240px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: start;
}

.contact-info {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 36px rgba(67, 43, 31, 0.08);
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: #43515a;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(232, 93, 117, 0.14);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--primary-dark);
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 6px;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .message-grid,
  .character-gallery,
  .scene-gallery,
  .stats-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero-card,
  .hero-card img {
    min-height: 380px;
  }

  .hero-card {
    border-width: 8px;
    border-radius: 30px;
  }

  .floating-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .gallery-card img,
  .scene-gallery .gallery-card img {
    height: 250px;
  }

  .site-footer {
    flex-direction: column;
  }
}
