
:root {
  --ivory: #fbf8f2;
  --green: #0b302c;
  --gold: #c99427;
  --muted: #66706f;
  --line: #e8dfd2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--green);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header {
  max-width: 1120px;
  margin: auto;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 28px;
  letter-spacing: 0.28em;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 28px;
}

a {
  color: var(--green);
  text-decoration: none;
}

.hero {
  max-width: 920px;
  margin: 80px auto 100px;
  padding: 0 28px;
  text-align: center;
}

.eyebrow,
.label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

h1 {
  margin: 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 86px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.choices {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
}

.choice {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.choice:first-child {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.choice h2 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.choice p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.75;
}

.closing {
  margin-top: 60px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

footer {
  max-width: 1120px;
  margin: auto;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

footer div {
  display: flex;
  gap: 24px;
}

@media (max-width: 700px) {
  header {
    padding: 24px 20px;
  }

  nav {
    gap: 14px;
    font-size: 14px;
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    margin-top: 55px;
    padding: 0 20px;
  }

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

  .choice {
    padding: 30px;
  }

  footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}

/* Privacy Policy */
.privacy-content {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: left;
  line-height: 1.7;
}

.privacy-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--green);
}

.privacy-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.privacy-content strong {
  color: var(--green);
}

.privacy-content a {
  color: var(--green);
  text-decoration: underline;
}

/* Alora Brand Mark */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 25px;
  height: 31px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 28px;
  border-radius: 3px;
  background: #C8912E;
}

.brand-mark::before {
  left: 6px;
  transform: rotate(29deg);
}

.brand-mark::after {
  right: 6px;
  transform: rotate(-29deg);
}

.brand-spark {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: #C8912E;
}

.brand-spark::before,
.brand-spark::after {
  content: "";
  position: absolute;
  background: #C8912E;
}

.brand-spark::before {
  width: 2px;
  height: 10px;
  left: 2px;
  top: -2px;
}

.brand-spark::after {
  width: 10px;
  height: 2px;
  left: -2px;
  top: 2px;
}

.brand-wordmark {
  color: #102A27;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-left: 5px;
}

/* Refine website header brand sizing */
header .brand {
  transform: scale(1.55);
  transform-origin: left center;
}

header .brand-wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 5px;
}

/* Correct Alora four-point sparkle */
.brand-spark {
  left: 50%;
  bottom: 5px;
  width: 9px;
  height: 9px;
  background: #C8912E;
  transform: translateX(-50%) rotate(45deg);
}

.brand-spark::before,
.brand-spark::after {
  content: none;
}

/* Exact four-point Alora-style sparkle */
.brand-spark {
  display: none;
}

.brand-spark-svg {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  fill: #C8912E;
}

/* Master Alora logo asset */
header .brand {
  transform: none;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}

/* Final Alora website logo sizing */
.brand-logo {
  width: 145px;
  height: auto;
}

/* Final header logo scale */
.brand-logo {
  width: 210px;
}
