:root {
  --bg: #f7f3ed;
  --bg-soft: #f2ece3;
  --paper: rgba(255, 253, 249, 0.86);
  --paper-strong: rgba(255, 252, 246, 0.94);
  --text: #2b241d;
  --text-soft: #5f5548;
  --text-muted: #857764;
  --gold: #b8984e;
  --gold-deep: #9f8040;
  --gold-soft: rgba(184, 152, 78, 0.14);
  --border: rgba(64, 49, 29, 0.10);
  --border-strong: rgba(184, 152, 78, 0.22);
  --shadow-soft: 0 22px 56px rgba(43, 36, 29, 0.08);
  --shadow-card: 0 18px 48px rgba(43, 36, 29, 0.07);
  --shadow-button: 0 14px 28px rgba(159, 128, 64, 0.20);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --header-height: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.goddess-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 48%, var(--bg-soft) 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.goddess-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 20% 10%, rgba(184, 152, 78, 0.06), transparent 26%);
}

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

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

.g-shell {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
}

.g-shell-narrow {
  width: min(100% - 28px, 820px);
}

/* Header */

.g-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 152, 78, 0.18);
  box-shadow: 0 10px 34px rgba(46, 34, 18, 0.05);
}

.g-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(184, 152, 78, 0.42),
    rgba(231, 220, 193, 0.28),
    rgba(184, 152, 78, 0.42)
  );
}

.g-header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: 0 4px;
}

.g-logo {
  grid-column: 2;
  justify-self: center;
}

.g-logo img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.g-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.g-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.g-nav a:hover,
.g-nav a:focus-visible {
  opacity: 0.75;
}

/* Hero */

.g-hero {
  padding: 56px 0 18px;
}

.g-kicker {
  margin: 0 0 10px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.g-hero h1 {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 10vw, 6rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  text-wrap: balance;
}

.g-subtitle {
  margin: 16px auto 0;
  max-width: 680px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.34rem, 3.6vw, 2rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--gold-deep);
  text-wrap: balance;
}

/* Section rhythm */

.g-intro,
.g-section,
.g-quote-section,
.g-cta-section {
  padding: 22px 0;
}

.g-section-header {
  margin-bottom: 18px;
  text-align: center;
}

.g-section-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.g-section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.15rem, 5vw, 3.3rem);
  line-height: 0.98;
  font-weight: 600;
  color: var(--text);
  text-wrap: balance;
}

/* Cards */

.g-card,
.g-cta-card {
  position: relative;
  padding: clamp(26px, 4vw, 40px) clamp(18px, 4vw, 36px);
  background: linear-gradient(180deg, var(--paper-strong), var(--paper));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.g-card::before,
.g-cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 152, 78, 0.52), transparent);
}

.g-card p,
.g-cta-card p {
  margin: 0 0 16px;
  font-size: 1.03rem;
  line-height: 1.76;
  color: var(--text-soft);
  text-align: center;
}

.g-card p:last-child,
.g-cta-card p:last-child {
  margin-bottom: 0;
}

/* Lists */

.g-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.g-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 0;
  text-align: center;
  font-size: 1.03rem;
  line-height: 1.74;
  color: var(--text-soft);
}

.g-list li:last-child {
  margin-bottom: 0;
}

/* Quote */

.g-quote {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--text);
}

/* CTA */

.g-cta-card {
  text-align: center;
}

.g-cta-copy {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.g-cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(184, 152, 78, 0.22);
  background: linear-gradient(180deg, #c2a45a 0%, var(--gold) 100%);
  color: #fffdf9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-button);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.g-btn:hover,
.g-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(159, 128, 64, 0.24);
  filter: saturate(1.03);
}

.g-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Footer */

.g-footer {
  padding: 40px 0 60px;
}

.g-footer .g-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.g-footer-logo img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.g-footer-text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 860px) {
  :root {
    --header-height: 88px;
  }

  .g-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .g-logo,
  .g-nav {
    grid-column: auto;
    justify-self: center;
  }

  .g-logo img {
    width: 120px;
  }

  .g-nav {
    justify-content: center;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .g-shell,
  .g-shell-narrow {
    width: min(100% - 20px, 1180px);
  }

  .g-hero {
    padding: 42px 0 12px;
  }

  .g-subtitle {
    margin-top: 12px;
  }

  .g-intro,
  .g-section,
  .g-quote-section,
  .g-cta-section {
    padding: 16px 0;
  }

  .g-card,
  .g-cta-card {
    padding: 22px 16px 24px;
    border-radius: 22px;
  }

  .g-card p,
  .g-cta-card p,
  .g-list li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .g-btn {
    width: 100%;
    min-width: 0;
  }

  .g-footer {
    padding: 30px 0 48px;
  }
}
