/* ── Page layout (shared with future pages) ── */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2.5rem 4rem;
}

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

.nav a.active {
  opacity: 1;
  color: var(--gold-light);
}

/* ── Hello hero ── */
.hello-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 8rem);
  text-align: center;
  gap: 2rem;
}

.hello-sub {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem) !important;
  opacity: 0.75 !important;
}

/* ── About content ── */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 1rem 8rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* ── Intro ── */
.about-intro {
  text-align: center;
}

.hello {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}

.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.9;
  color: #ffffff;
  opacity: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-body em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2em;
  color: var(--gold-light);
  font-style: italic;
}

/* ── Gift sections ── */
.gift {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(232, 128, 106, 0.25);
}

.gift-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}

.gift-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.gift-body p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.85;
}

.gift-body em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15em;
  color: var(--gold-light);
  font-style: italic;
}

.gift-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem) !important;
  font-style: italic;
  color: var(--gold-light) !important;
  opacity: 1 !important;
  margin-top: 1rem;
}

/* ── Cards ── */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 2.2rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s, border-color 0.3s;
}

.card:hover {
  background: rgba(201, 169, 110, 0.07);
  border-color: rgba(201, 169, 110, 0.45);
}

.card-symbol {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22.5rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.card p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.8;
}

/* ── Quote ── */
.about-quote {
  max-width: 620px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.85;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.about-quote em {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .page {
    padding: 2rem 1.5rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}
