:root {
  --navy: #06172b;
  --navy-2: #0b2440;
  --gold: #d8a642;
  --gold-light: #ffe2a0;
  --cream: #fff7e6;
  --text: #f9edd0;
  --muted: #c6bfae;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6%;
  background: rgba(6, 23, 43, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 166, 66, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--gold-light);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(216, 166, 66, 0.55);
  padding: 12px 20px;
  font-weight: 800;
  transition: 0.25s ease;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, #b67a22, #ffd77a, #b67a22);
  color: #06172b;
}

.btn.secondary {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.btn.small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(216, 166, 66, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 80px 6%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(216, 166, 66, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(6, 23, 43, 0.96), rgba(8, 31, 57, 0.94)),
    url("assets/logo-banner.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -1;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  margin: 0;
  color: var(--gold-light);
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 0.98;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #efe4cc;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid rgba(216, 166, 66, 0.36);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
}

.hero-card {
  border: 1px solid rgba(216, 166, 66, 0.55);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.06);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-strip {
  padding: 24px 6%;
  text-align: center;
  background: linear-gradient(90deg, rgba(216, 166, 66, 0.12), rgba(255, 226, 160, 0.2), rgba(216, 166, 66, 0.12));
  border-top: 1px solid rgba(216, 166, 66, 0.25);
  border-bottom: 1px solid rgba(216, 166, 66, 0.25);
}

.quote-strip p {
  margin: 0;
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.section {
  padding: 92px 6%;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.phrase-grid,
.product-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.phrase-card,
.product-card,
.calendar-card,
.platform-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(216, 166, 66, 0.28);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.phrase-card.featured {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(216, 166, 66, 0.22), rgba(255, 255, 255, 0.045));
}

.phrase-card span,
.product-tag {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phrase-card p,
.product-card p,
.calendar-card p,
.platform-card span,
.bio-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 900;
  padding: 11px 16px;
  margin-top: 12px;
}

.dark-panel {
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 166, 66, 0.18), transparent 30%),
    #03101f;
}

.flashcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.flashcard {
  min-height: 220px;
  perspective: 1000px;
  position: relative;
  border-radius: 24px;
  cursor: pointer;
}

.flashcard .front,
.flashcard .back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(216, 166, 66, 0.38);
  backface-visibility: hidden;
  transition: transform 0.55s ease;
}

.flashcard .front {
  background: linear-gradient(145deg, #0b2440, #07192f);
  font-family: "Cinzel", serif;
  font-size: 1.55rem;
  color: var(--gold-light);
}

.flashcard .back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #d8a642, #ffe2a0);
  color: var(--navy);
  font-weight: 900;
}

.flashcard:hover .front,
.flashcard:focus .front {
  transform: rotateY(180deg);
}

.flashcard:hover .back,
.flashcard:focus .back {
  transform: rotateY(360deg);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.calendar-head span {
  color: var(--gold-light);
}

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

.calendar-grid div {
  padding: 22px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 166, 66, 0.22);
  color: var(--muted);
}

.calendar-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--gold-light);
}

.small-note {
  font-size: 0.92rem;
  margin-top: 18px;
}

.platform-links {
  display: grid;
  gap: 18px;
}

.platform-card {
  display: grid;
  gap: 8px;
}

.platform-card strong {
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
}

.shop-section {
  background: linear-gradient(180deg, #06172b, #09213c);
}

.product-card {
  min-height: 300px;
}

.price {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin: 18px 0;
}

.bio-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #03101f;
}

.bio-image {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 66, 0.4);
  box-shadow: var(--shadow);
}

.bio-copy {
  max-width: 780px;
}

.social-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  border-radius: 24px;
  border: 1px solid rgba(216, 166, 66, 0.35);
  background: rgba(255, 255, 255, 0.055);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.newsletter {
  margin: 0 6% 92px;
  border-radius: 34px;
  border: 1px solid rgba(216, 166, 66, 0.36);
  padding: 34px;
  display: grid;
  grid-template-columns: 100px 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(216, 166, 66, 0.2), rgba(255, 255, 255, 0.05));
}

.newsletter img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.newsletter p {
  color: var(--muted);
  line-height: 1.6;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(216, 166, 66, 0.35);
  border-radius: 999px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 900;
  padding: 14px 20px;
}

.footer {
  padding: 34px 6%;
  text-align: center;
  border-top: 1px solid rgba(216, 166, 66, 0.25);
  color: var(--muted);
}

@media (max-width: 1050px) {
  .hero,
  .booking-layout,
  .bio-section,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .phrase-grid,
  .product-grid,
  .flashcard-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }
}

@media (max-width: 650px) {
  .site-header {
    padding: 12px 5%;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section {
    padding: 64px 5%;
  }

  .phrase-grid,
  .product-grid,
  .flashcard-grid,
  .social-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .phrase-card.featured {
    grid-column: span 1;
  }

  .newsletter {
    margin: 0 5% 64px;
    padding: 24px;
  }

  .newsletter form {
    flex-direction: column;
  }
}
