@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600&family=Sacramento&display=swap');

:root {
  /* Brand Colors */
  --navy:       #032040;
  --cream:      #f1e7dd;

  --gold:       #af8553;   /* "Privilege" */
  --gold-dark:  #8c6b35;   /* "Become" */
  --accent:     #b2884c;   /* Solid heart */

  --line:       #a19379;

  /* Supporting Colors */
  --ink:        #1e2b35;
  --paper:      #fffdf9;

  /* Layout */
  --max:        1180px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 153, 112, 0.12),
      transparent 34rem
    ),
    var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

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

/* ---------- Header ---------- */

.site-header {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.82;
  color: var(--navy);
}

.brand-script {
  font-family: "Sacramento", cursive;
  font-size: 3rem;
}

.brand-small {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

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

/* ---------- Hero ---------- */

.hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 4rem;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/*
 * Supports the current Coming Soon page where the image
 * is placed directly inside the hero section.
 */
.hero > img {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

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

/* ---------- Typography ---------- */

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  line-height: 1.02;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h1 em {
  font-family: "Sacramento", cursive;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.intro {
  max-width: 42rem;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.2s ease;
}

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

.button.primary:hover {
  background: var(--navy);
}

.button.secondary:hover {
  background: rgba(40, 75, 111, 0.08);
}

/* ---------- Announcement Card ---------- */

.announcement-card {
  margin: 0;
  padding: 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(48, 38, 27, 0.16);
  transform: rotate(1deg);
}

.announcement-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Content Sections ---------- */

.soft-launch,
.contact {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  text-align: center;
}

.soft-launch p:last-child,
.contact p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.style-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.style-grid article {
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid var(--line);
  padding: 2rem;
}

.style-grid span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.about {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 6rem;
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  background: var(--navy);
}

.about h2,
.about p {
  color: white;
}

.about .eyebrow {
  color: #d9bd97;
}

.centered {
  justify-content: center;
}

/* ---------- Footer ---------- */

footer {
  padding: 3rem 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand {
  margin-bottom: 1rem;
}

footer p {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Tablet and Mobile ---------- */

@media (max-width: 820px) {
  .site-header {
    min-height: 82px;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .hero > img {
    grid-column: 1;
    max-width: 100%;
  }

  .hero-copy {
    text-align: center;
  }

  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .announcement-card {
    width: min(560px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .style-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand-script {
    font-size: 2.35rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  .button {
    width: 100%;
  }

  .hero {
    width: calc(100% - 1rem);
    margin-bottom: 2rem;
  }
}