:root {
  --bg: #eef4ff;
  --bg-soft: #ddeeff;
  --ink: #1a1a1a;
  --muted: #4f5c6b;
  --line: #b3d4ff;
  --panel: rgba(255, 255, 255, 0.9);
  --accent: #1e90ff;
  --accent-dark: #1565c0;
  --teal: #1e90ff;
  --shadow: 0 18px 40px rgba(26, 26, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.7) 0 140px, transparent 150px),
    radial-gradient(circle at 92% 86%, rgba(255, 255, 255, 0.62) 0 170px, transparent 180px),
    linear-gradient(165deg, var(--bg), var(--bg-soft));
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 31, 46, 0.1);
  background: rgba(220, 238, 255, 0.85);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: #fff;
  background: var(--teal);
  transform: translateY(-1px);
}

.hero,
.page-hero {
  padding: 64px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  line-height: 1.08;
  margin: 12px 0 14px;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 68ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 24px;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--accent), #56b4ff);
  box-shadow: 0 10px 22px rgba(30, 144, 255, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(21, 101, 192, 0.44);
}

.slider {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 520ms ease;
}

.slide {
  min-width: 100%;
  padding: 34px 30px;
  color: #fff;
}

.slide h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3.3vw, 2.1rem);
  font-family: "Archivo Black", sans-serif;
}

.slide p {
  margin: 0;
  max-width: 40ch;
  line-height: 1.6;
}

.slide-tag {
  margin: 0 0 10px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slide-a {
  background: linear-gradient(130deg, #1d4e89, #1b8d8f);
}

.slide-b {
  background: linear-gradient(130deg, #a63d40, #de6b48);
}

.slide-c {
  background: linear-gradient(130deg, #2b2d42, #5c677d);
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 14px 16px 18px;
  background: #fff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #c6ced8;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.section {
  padding: 42px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(16, 31, 46, 0.08);
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 18px;
}

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: 0 8px 18px rgba(16, 31, 46, 0.08);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hover-rise {
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.hover-rise:hover,
.hover-rise:focus-within {
  transform: translateY(-5px);
  border-color: #1e90ff;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(16, 31, 46, 0.12);
  background: #fff;
}

.photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-card:hover img {
  transform: scale(1.08);
}

.photo-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #90c4ff;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #90c4ff;
  border-color: #1e90ff;
}

.site-footer {
  border-top: 1px solid rgba(16, 31, 46, 0.1);
  margin-top: 30px;
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 600;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.slider,
.card,
.photo-card {
  animation: reveal 560ms ease both;
}

@media (max-width: 960px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section {
    padding: 28px 0;
  }

  .hero-centered {
    padding: 48px 0 36px;
  }

  .hero-logo {
    max-width: 360px;
  }

  .coming-soon-grid {
    gap: 28px;
  }

  .cards,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    padding: 26px 22px;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 0;
    text-align: center;
    padding: 8px 0;
  }
}

.logo-display {
  margin-bottom: 28px;
}

.hero-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(30, 144, 255, 0.28));
  animation: reveal 560ms ease both;
}

/* Centered home-page hero */
.hero-centered {
  text-align: center;
  padding: 80px 0 60px;
}

.hero-centered .logo-display {
  display: flex;
  justify-content: center;
}

.hero-centered h1 {
  margin-bottom: 20px;
}

.hero-lead {
  max-width: 58ch;
  margin: 0 auto 16px;
}

.book-tagline {
  font-style: italic;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--accent-dark);
  max-width: 50ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Coming soon strip */
.section-coming-soon {
  padding: 32px 0 48px;
}

.coming-soon-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.coming-item {
  text-align: center;
}

.coming-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.coming-label {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 1rem;
}

.coming-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Lightbox ─────────────────────────────────── */
.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 20, 40, 0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  animation: lb-in 220ms ease both;
}

@keyframes lb-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.lead-large {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 8px 0 12px;
}

.hero-meta {
  margin: 12px 0 16px;
  padding: 12px 0;
  border-block: 1px solid #ddd;
}

.launch-date {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

.section-intro {
  margin-top: -8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.idea-content {
  max-width: 70ch;
  margin: 0 auto;
}

.idea-content p {
  margin: 16px 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}

.idea-content p:first-child {
  margin-top: 0;
}

.moment-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.moment-item {
  padding: 20px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.moment-item .moment-title {
  font-weight: 800;
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--accent);
}

.moment-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.apparel-preview {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.apparel-item {
  text-align: center;
}

.apparel-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.white-box {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  border: 2px solid var(--accent);
}

.black-box {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 2px solid var(--accent);
}

.apparel-item p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.apparel-item .small-text {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form {
  padding: 28px;
}

.contact-form a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.contact-form a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .moment-list {
    grid-template-columns: 1fr;
  }

  .apparel-preview {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
