/* ============================================================
   TEMPLE OF THE ETERNAL BREEZE — Stylesheet
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --navy: #071d33;
  --deep-navy: #04111f;
  --gold: #c99a3e;
  --light-gold: #e7c779;
  --cream: #f7efd9;
  --stone: #d8c7a3;
  --sky: #9ed3f7;
  --text: #1f1f1f;

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.28);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --transition: 0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--light-gold);
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background-color: #f0e6cd;
}

.section--dark {
  background-color: var(--navy);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--light-gold);
}

/* === HEADER === */
.site-header {
  background-color: var(--deep-navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === LOGO === */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  flex-shrink: 0;
}

.logo-emblem svg {
  display: block;
}

.logo-emblem img {
  display: block;
  border-radius: 50%;
}

/* === BANNER IMAGE === */
.banner-wrap {
  background-color: var(--cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--stone);
}

.banner-wrap img {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  height: auto;
}

/* === LORE IMAGE === */
.lore-image-wrap {
  margin: 2.5rem 0;
  text-align: center;
}

.lore-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--light-gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.site-subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === NAVIGATION === */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  align-items: center;
}

.main-nav a {
  color: var(--stone);
  font-size: 0.865rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--light-gold);
  background-color: rgba(199, 153, 62, 0.12);
  outline: none;
}

.main-nav a.active {
  color: var(--light-gold);
  border-bottom: 2px solid var(--gold);
}

/* === HERO SECTION === */
.hero {
  background-color: var(--navy);
  color: var(--cream);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated breeze lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    112deg,
    transparent 0px,
    transparent 58px,
    rgba(199, 153, 62, 0.04) 58px,
    rgba(199, 153, 62, 0.04) 60px
  );
  background-size: 200px 200px;
  animation: breezeSlide 12s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    106deg,
    transparent 0px,
    transparent 38px,
    rgba(231, 199, 121, 0.025) 38px,
    rgba(231, 199, 121, 0.025) 39px
  );
  background-size: 160px 160px;
  animation: breezeSlide 18s linear infinite reverse;
  pointer-events: none;
}

@keyframes breezeSlide {
  0% { background-position: 0 0; }
  100% { background-position: 400px 400px; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--light-gold);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--cream);
  opacity: 0.9;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--light-gold);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--deep-navy);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(199, 153, 62, 0.4);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background-color: var(--light-gold);
  border-color: var(--light-gold);
  color: var(--deep-navy);
  box-shadow: 0 6px 22px rgba(199, 153, 62, 0.55);
}

.btn--navy {
  background-color: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.btn--navy:hover,
.btn--navy:focus-visible {
  background-color: var(--deep-navy);
  color: var(--light-gold);
  border-color: var(--light-gold);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--gold);
  color: var(--deep-navy);
}

/* === SECTION INTRO === */
.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 0.75rem;
}

.section-intro p {
  color: #555;
  font-size: 1.05rem;
  margin: 0;
}

/* === FEATURE CARDS (HOME) === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background-color: #fff;
  border: 1px solid var(--stone);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: #444;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: block;
}

/* === QUOTE BLOCK === */
.quote-block {
  background-color: var(--navy);
  color: var(--light-gold);
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

.quote-block blockquote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 0.05em;
}

.quote-block blockquote::after {
  content: '\201D';
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.55em;
  margin-left: 0.05em;
}

/* === BLESSING BOX (HOME) === */
.blessing-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2640 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blessing-box::before,
.blessing-box::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  opacity: 0.25;
  font-size: 1.8rem;
}

.blessing-box::before { top: 0.6rem; left: 1.2rem; }
.blessing-box::after  { bottom: 0.6rem; right: 1.2rem; }

.blessing-box p {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
}

.blessing-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-style: normal;
}

/* === PAGE HEADER (INNER PAGES) === */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep-navy) 100%);
  color: var(--cream);
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    transparent 0px,
    transparent 55px,
    rgba(199, 153, 62, 0.03) 55px,
    rgba(199, 153, 62, 0.03) 57px
  );
  background-size: 180px 180px;
  animation: breezeSlide 14s linear infinite;
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--light-gold);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.page-header p {
  color: var(--cream);
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* === CONTENT SECTIONS (ABOUT/INNER) === */
.content-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--stone);
}

.content-section:last-of-type {
  border-bottom: none;
}

.content-section h2 {
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  position: relative;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
}

.content-section p {
  color: #3a3a3a;
  font-size: 1.02rem;
  max-width: 760px;
}

/* === MOTTO DISPLAY === */
.motto-display {
  background: linear-gradient(135deg, var(--navy), #0d2a47);
  color: var(--light-gold);
  padding: 1.75rem 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
}

/* === DISCLAIMER NOTE === */
.disclaimer-note {
  background-color: #f5f0e8;
  border: 1px solid var(--stone);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

/* === VIRTUE GRID === */
.virtue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.virtue-card {
  background-color: #fff;
  border: 2px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  user-select: none;
}

.virtue-card:hover {
  border-color: rgba(199, 153, 62, 0.6);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.virtue-card.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 153, 62, 0.22), var(--shadow-md);
  background-color: #fffdf5;
}

.virtue-card.active .virtue-number {
  background-color: var(--gold);
  color: var(--deep-navy);
}

.virtue-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--navy);
  color: var(--light-gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.85rem;
  transition: background-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.virtue-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.virtue-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

.virtue-hint {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
}

/* === HOLY DAYS TIMELINE === */
.holy-days-list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2.5rem;
}

.holy-days-list::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--light-gold), var(--gold));
  border-radius: 2px;
}

.holy-day-item {
  position: relative;
  background-color: #fff;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.holy-day-item::before {
  content: '';
  position: absolute;
  left: -2.15rem;
  top: 1.6rem;
  width: 14px;
  height: 14px;
  background-color: var(--gold);
  border: 3px solid var(--deep-navy);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(199, 153, 62, 0.25);
}

.holy-day-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.holy-day-date {
  display: inline-block;
  background-color: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.holy-day-item h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.holy-day-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* === BLESSING REVEAL === */
.blessing-reveal {
  margin: 3.5rem 0;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--navy), #0d2a47);
  border-radius: var(--radius-md);
  border: 2px solid rgba(199, 153, 62, 0.4);
}

.blessing-reveal h2 {
  color: var(--light-gold);
  margin-bottom: 1.25rem;
}

.blessing-output {
  margin-top: 1.75rem;
  min-height: 2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.blessing-output.revealed {
  animation: fadeIn 0.5s ease forwards;
}

/* === JOIN FORM === */
.join-section {
  max-width: 660px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--stone);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background-color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 153, 62, 0.2);
}

/* Custom select arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  pointer-events: none;
  font-size: 0.9rem;
}

.select-wrapper select {
  padding-right: 2.5rem;
}

/* Checkbox row */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border: 2px solid var(--stone);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checkbox-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 153, 62, 0.2);
}

.checkbox-row input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-row label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

/* Form feedback */
.form-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-message--success {
  background-color: #edf7ed;
  border: 2px solid #66bb6a;
  color: #2e7d32;
}

.form-message--error {
  background-color: #fdecea;
  border: 2px solid #ef9a9a;
  color: #c62828;
}

.form-message.visible {
  display: block;
}

/* === MEMBERSHIP CARD === */
.membership-card {
  display: none;
  max-width: 400px;
  margin: 2.5rem auto 0;
  background: linear-gradient(140deg, var(--navy) 0%, var(--deep-navy) 100%);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(199, 153, 62, 0.15);
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(199, 153, 62, 0.07), transparent 65%);
  pointer-events: none;
}

.membership-card.visible {
  display: block;
  animation: cardReveal 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes cardReveal {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.card-badge {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.card-label {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.card-org {
  color: var(--stone);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(199, 153, 62, 0.3);
  margin: 0 0 1.4rem;
}

.card-member-label {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.card-member-name {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.card-status {
  display: inline-block;
  background-color: rgba(199, 153, 62, 0.18);
  border: 1px solid var(--gold);
  color: var(--light-gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}

.card-motto {
  color: var(--stone);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.88rem;
}

/* === FOOTER === */
.site-footer {
  background-color: var(--deep-navy);
  border-top: 3px solid var(--gold);
  color: var(--stone);
  padding: 2.75rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-motto {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--light-gold);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.site-footer p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
}

.site-footer .disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #5a6a7a;
  font-style: italic;
}

/* === GOLD ORNAMENT DIVIDER === */
.ornament {
  text-align: center;
  margin: 2.5rem 0;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.6rem;
  opacity: 0.65;
}

/* === RESPONSIVE === */
@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .main-nav {
    width: 100%;
    gap: 0.15rem;
  }

  .main-nav a {
    font-size: 0.8rem;
    padding: 0.38rem 0.65rem;
  }

  .hero {
    padding: 4.5rem 1.25rem;
    min-height: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .virtue-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 0.95rem;
  }

  .page-header {
    padding: 3rem 1rem 2.5rem;
  }

  .blessing-reveal {
    padding: 2rem 1.25rem;
  }

  .membership-card {
    margin: 2rem 1rem 0;
  }
}
