* {
  box-sizing: border-box;
}

:root {
  --navy: #071f3d;
  --gold: #b7863b;
  --cream: #fff8ed;
  --soft: #f6ead8;
  --ink: #172033;
  --muted: #5c6470;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 31, 61, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 237, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(183, 134, 59, 0.22);
  box-shadow: 0 8px 20px rgba(7, 31, 61, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.035em;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  opacity: 0.92;
  padding: 7px 11px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

nav a:hover {
  color: var(--navy);
  background: rgba(183, 134, 59, 0.14);
  opacity: 1;
}

.hero {
  padding: 28px 0 62px;
  background:
    radial-gradient(circle at top left, rgba(183, 134, 59, 0.18), transparent 34%),
    linear-gradient(180deg, #fff8ed 0%, #f7ead7 100%);
}

.banner-frame {
  width: min(100%, 1040px);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(183, 134, 59, 0.26);
  background: #fff;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card {
  margin: 26px auto 0;
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(183, 134, 59, 0.24);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 46px);
  width: min(960px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.65rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

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

.lead {
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  max-width: 780px;
  margin: 20px auto 0;
  color: #333b4a;
}

.section {
  padding: 76px 0;
}

.alt {
  background: var(--soft);
}

.section-intro {
  max-width: 820px;
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(7, 31, 61, 0.16);
}

.primary {
  background: var(--navy);
  color: var(--white);
}

.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(183, 134, 59, 0.35);
}

.release-grid,
.collection-grid {
  display: grid;
  gap: 18px;
}

.release-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-card,
.collection-card,
.signup-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(183, 134, 59, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(7, 31, 61, 0.08);
}

.release-card.featured {
  border-color: rgba(183, 134, 59, 0.58);
  background: linear-gradient(180deg, #ffffff 0%, #fff5e5 100%);
}

.tag {
  display: inline-block;
  background: rgba(183, 134, 59, 0.13);
  color: var(--gold);
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.date {
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 10px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid rgba(183, 134, 59, 0.25);
  border-radius: 18px;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.signup {
  background:
    linear-gradient(rgba(7, 31, 61, 0.85), rgba(7, 31, 61, 0.85)),
    radial-gradient(circle at top left, rgba(183, 134, 59, 0.35), transparent 44%);
  color: var(--white);
}

.signup h2,
.signup .eyebrow {
  color: var(--white);
}

.signup p {
  color: rgba(255, 255, 255, 0.86);
}

.signup-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.signup .primary {
  background: var(--white);
  color: var(--navy);
  white-space: nowrap;
}

.contact {
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.site-footer p {
  margin: 5px 0;
}

.small {
  font-size: 0.9rem;
  opacity: 0.78;
}

@media (max-width: 920px) {
  .release-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-wrap {
    align-items: center;
    flex-direction: row;
  }

  nav {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .wrap,
  .narrow {
    width: min(100% - 24px, 1120px);
  }

  .release-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }

  nav {
    justify-content: flex-start;
    gap: 5px;
    font-size: 0.88rem;
  }

  nav a {
    padding: 5px 8px;
  }

  .hero {
    padding: 18px 0 52px;
  }

  .banner-frame {
    border-radius: 16px;
    max-height: none;
  }

  .hero-banner {
    height: auto;
    object-fit: contain;
  }

  .hero-card {
    margin-top: 18px;
    text-align: left;
    border-radius: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .signup-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-row {
    justify-content: flex-start;
  }
}


/* Final mobile polish */
@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    gap: 10px;
  }

  .logo {
    font-size: 1.18rem;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 6px 10px;
  }

  nav a {
    padding: 5px 0;
    font-size: 0.94rem;
  }

  .hero {
    padding: 18px 0 44px;
  }

  .banner-frame {
    border-radius: 16px;
  }

  .hero-card {
    margin-top: 20px;
    padding: 28px 24px;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .lead {
    font-size: 1.12rem;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.25rem;
  }

  .hero-card {
    padding: 26px 22px;
  }

  .lead {
    font-size: 1.06rem;
  }
}


/* Final mobile balance: reduce oversized intro headline and body text */
@media (max-width: 640px) {
  .hero-card {
    padding: 26px 22px;
    margin-top: 18px;
  }

  h1 {
    font-size: clamp(1.85rem, 7.4vw, 2.45rem);
    line-height: 1.12;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.95rem;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-card {
    padding: 24px 20px;
  }
}
