: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;
  inset: 0 0 auto 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;
}

.g-intro,
.g-section,
.g-quote-section,
.g-cta-section {
  padding: 32px 0;
}

.g-section-header {
  margin-bottom: 22px;
  text-align: center;
}

.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;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.g-cta-title {
  max-width: 22ch;
}

.g-cta-card {
  padding: clamp(34px, 5vw, 56px) clamp(22px, 5vw, 44px);
}

.g-cta-copy {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.04rem;
  line-height: 1.72;
}

.g-cta-actions {
  margin-top: 30px;
}

.g-cta-title {
  max-width: 12ch;
}
  .g-cta-title {
    max-width: 12ch;
  }

  .g-cta-copy {
    max-width: 30ch;
    font-size: 1rem;
  }
}
.g-title-command {
  display: block;
  margin-top: 8px;
  font-size: 0.7em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}

.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 p,
.g-cta-card p {
  margin: 0 0 14px;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--text-soft);
}

.g-card p {
  text-align: left;
}

.g-intro .g-card p,
.g-cta-card p {
  text-align: center;
}

.g-card p:last-child,
.g-cta-card p:last-child {
  margin-bottom: 0;
}

.g-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.g-list li {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(64, 49, 29, 0.08);
}

.g-list li:last-child {
  border-bottom: none;
}

.g-quote {
  margin: 0 auto;
  max-width: 22ch;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  line-height: 1.32;
  font-style: italic;
  color: var(--text);
}

.g-cta-card {
  text-align: center;
}

.g-cta-copy {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.g-cta-actions {
  margin-top: 28px;
  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.24);
  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: 0 14px 28px rgba(159, 128, 64, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.g-btn:hover,
.g-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(159, 128, 64, 0.24);
  filter: saturate(1.04) brightness(1.01);
  border-color: rgba(184, 152, 78, 0.34);
}

.g-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(159, 128, 64, 0.16);
}

.g-btn:focus-visible {
  outline: none;
}

/* 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);
}

@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: 22px 0;
  }

  .g-card,
  .g-cta-card {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .g-btn {
    width: 100%;
    min-width: 0;
  }

  .g-footer { padding: 30px 0 48px; }
}
.g-cta {
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(78, 61, 44, 0.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 38px 34px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.g-cta .cta-copy {
  max-width: 34ch;
  margin: 10px auto 26px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--muted);
  text-align: center;
}

.g-cta .button {
  margin-top: 8px;
}
.g-cta .button {
  margin-top: 14px;
}
