*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --orange: #d28c4b;
  --orange-dark: #b56f2f;
  --cream: #f5e6d3;
  --cream-dark: #e8d4bc;
  --ink: #2a1f14;
  --white: #fffaf3;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream-dark);
}

.video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.video-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 230, 211, 0.72);
}

.hidden {
  display: none !important;
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero {
  text-align: center;
}

.hero-logo {
  width: min(220px, 55vw);
  height: auto;
  border-radius: 999px;
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(42, 31, 20, 0.18);
  object-fit: cover;
}

.hero-title {
  margin: 1rem 0 0.35rem;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  opacity: 0.85;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
  max-width: 44rem;
}

.btn {
  appearance: none;
  border: 2px solid var(--ink);
  background: rgba(255, 250, 243, 0.95);
  color: var(--ink);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--orange);
  color: var(--white);
  outline: none;
}

.ca-display {
  margin: 0;
  max-width: 42rem;
  text-align: center;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.85rem;
  word-break: break-all;
  opacity: 0.75;
}

.inspiration {
  width: 100%;
  padding-top: 1rem;
  border-top: 2px solid rgba(42, 31, 20, 0.12);
}

.inspiration-intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
}

.section-copy {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.7;
  opacity: 0.88;
}

.inu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.inu-card {
  background: rgba(255, 250, 243, 0.92);
  border: 2px solid rgba(42, 31, 20, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(42, 31, 20, 0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(42, 31, 20, 0.14);
}

.inu-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
}

.inu-card h3 {
  margin: 0;
  padding: 0.85rem 0.5rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.inspiration-outro {
  max-width: 36rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(42, 31, 20, 0.25);
}

@media (max-width: 900px) {
  .inu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
    text-align: center;
  }

  .inu-grid {
    grid-template-columns: 1fr;
  }
}
