/* =============================================
   ST PHILOMENA SCHOOL — ENGRAVE A BRICK
   Fundraiser Website Stylesheet
   ============================================= */

:root {
  --green:      #00703c;
  --green-dark: #005a30;
  --green-light:#e8f5ee;
  --navy:       #1a2744;
  --navy-dark:  #0f1829;
  --gold:       #C9A84C;
  --gold-light: #f0e0a0;
  --cream:      #F8F4EC;
  --black:      #231f20;
  --white:      #ffffff;
  --brick-red:  #8B3A2A;
  --brick-mid:  #A0442E;
  --brick-light:#C4614A;
  --mortar:     #C4B49A;
  --mortar-dark:#a09070;
  --text:       #2c2420;
  --text-light: #6b5e54;
  --shadow:     rgba(35,31,32,0.15);
  --shadow-lg:  rgba(35,31,32,0.25);
  --radius:     8px;
  --radius-lg:  16px;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans:  'Lato', 'Segoe UI', sans-serif;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--navy-dark); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--gold); }
.section--green { background: var(--green); color: var(--white); }
.section--green h2 { color: var(--white); }
.text-center { text-align: center; }

/* BUTTON */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b8922d;
  border-color: #b8922d;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px var(--shadow-lg);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.navbar__logo img { height: 48px; width: auto; }
.navbar__school-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.navbar__school-name span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.navbar__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.navbar__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--gold); text-decoration: none; }
.navbar__cta .btn { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background:
    linear-gradient(135deg,
      rgba(15,24,41,0.82) 0%,
      rgba(26,39,68,0.75) 60%,
      rgba(15,24,41,0.80) 100%),
    url('assets/hero-pavers.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero__badge::before { content: '✦'; font-size: 0.6rem; }
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  max-width: 480px;
}
.hero__motto {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* HERO BRICK PREVIEW */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero__wall-preview {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(201,168,76,0.55);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}

.hero__brochure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 3px);
}
.hero__progress-wrap {
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.hero__progress-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.hero__progress-bar {
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.hero__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e8c04a);
  border-radius: 50px;
  width: 0%;
  transition: width 1.5s ease;
}
.hero__progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.hero__progress-stats strong { color: var(--gold-light); font-size: 1rem; }

/* =============================================
   MINI BRICK WALL (Hero Preview)
   ============================================= */
.brick-wall-mini {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brick-row {
  display: flex;
  gap: 3px;
}
.brick-row:nth-child(even) { margin-left: 24px; }
.brick {
  height: 28px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  cursor: default;
  transition: transform 0.15s, box-shadow 0.15s;
}
.brick--sm { width: 80px; }
.brick--md { width: 110px; }
.brick--lg { width: 150px; }
.brick--claimed {
  background: linear-gradient(135deg, var(--brick-mid), var(--brick-red));
  color: rgba(255,255,255,0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.3);
}
.brick--available {
  background: rgba(255,255,255,0.07);
  border: 1px dashed rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.3);
}
.brick--available::after { content: '+'; font-size: 0.9rem; }
.brick:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }

/* =============================================
   WHY SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 16px var(--shadow);
  border-top: 4px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow-lg);
}
.why-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.why-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: steps;
}
.step {
  text-align: center;
  position: relative;
  counter-increment: steps;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 1.75rem;
  right: -0.75rem;
  font-size: 1.25rem;
  color: var(--gold);
  z-index: 1;
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}
.step h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--navy); }
.step p { font-size: 0.88rem; color: var(--text-light); }

/* =============================================
   PRICING TIERS
   ============================================= */
.pricing-section { background: var(--cream); }
.pricing-section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 0.5rem; }
.pricing-intro { text-align: center; color: var(--text-light); max-width: 560px; margin: 0 auto 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.tier-card--featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.tier-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.tier-card__header {
  padding: 1.75rem 1.75rem 1.25rem;
  text-align: center;
}
.tier-card--standard .tier-card__header { background: var(--brick-red); }
.tier-card--premium .tier-card__header { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.tier-card--triple .tier-card__header { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.tier-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.tier-card--featured .tier-badge {
  background: var(--gold);
  color: var(--navy-dark);
}
.tier-card__header h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.tier-card__price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.tier-card__price sup { font-size: 1.2rem; vertical-align: super; }
.tier-card__price sub {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  opacity: 0.7;
  vertical-align: baseline;
}
.tier-card__brick-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: var(--mortar-dark);
  gap: 4px;
}
.tier-card--premium .tier-card__brick-visual { background: #2d4a35; }
.tier-card--triple .tier-card__brick-visual { background: #1a2233; }
.tier-brick {
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brick-mid), var(--brick-red));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 2px 6px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tier-brick--sm { width: 90px; height: 40px; }
.tier-brick--md { width: 130px; height: 44px; }
.tier-brick--lg { width: 180px; height: 52px; }
.tier-brick__engraving {
  font-family: var(--font-serif);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 0 6px;
  line-height: 1.3;
}
.tier-card__body {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tier-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.tier-features li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.tier-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.tier-card .btn { width: 100%; margin-top: auto; }

/* =============================================
   BRICK WALL DISPLAY
   ============================================= */
.wall-section { background: var(--navy-dark); color: var(--white); padding: 5rem 0; }
.wall-section h2 { color: var(--gold); text-align: center; font-size: 2.2rem; margin-bottom: 0.5rem; }
.wall-subtitle { text-align: center; color: rgba(255,255,255,0.65); margin-bottom: 3rem; }
.full-wall {
  background: var(--mortar-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.4);
  overflow-x: auto;
}
.full-wall .brick-row { flex-wrap: nowrap; }
.full-wall .brick--sm { width: 90px; height: 36px; font-size: 0.6rem; }
.full-wall .brick--md { width: 130px; height: 36px; font-size: 0.6rem; }
.full-wall .brick--lg { width: 175px; height: 36px; font-size: 0.6rem; }
.wall-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.legend-swatch {
  width: 28px;
  height: 16px;
  border-radius: 3px;
}
.legend-swatch--claimed { background: linear-gradient(135deg, var(--brick-mid), var(--brick-red)); }
.legend-swatch--available { background: rgba(255,255,255,0.07); border: 1px dashed rgba(255,255,255,0.3); }

/* =============================================
   ORDER FORM
   ============================================= */
.form-section { background: var(--white); }
.form-section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 0.5rem; }
.form-intro { text-align: center; color: var(--text-light); max-width: 520px; margin: 0 auto 2.5rem; }
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group label span {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4cfc9;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,112,60,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.char-count {
  text-align: right;
  font-size: 0.77rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.char-count.warn { color: #c0392b; }
/* === BRICK PREVIEW === */
.brick-preview-box {
  background: var(--mortar-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.brick-preview-box > p {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.brick-preview-display {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}

/* === Unified brick block — single/double/triple === */
.brick-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #d4622a 0%, #b84e20 55%, #a04018 100%);
  border-radius: 3px;
  padding: 8px;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.18),
    inset 0 -1px 2px rgba(0,0,0,0.2),
    4px 5px 0 #5a2008,
    6px 7px 10px rgba(0,0,0,0.45);
}

/* Single: landscape wide */
.brick-stack--single { width: 280px; }
.brick-stack--single .brick-section { height: 110px; }

/* Double: two sections, almost square overall */
.brick-stack--double { width: 230px; }
.brick-stack--double .brick-section { height: 90px; }

/* Triple: three sections, portrait */
.brick-stack--triple { width: 210px; }
.brick-stack--triple .brick-section { height: 76px; }

/* Substantial: navy special */
.brick-stack--substantial {
  width: 260px;
  background: linear-gradient(160deg, #1a2744 0%, #0f1829 100%);
  box-shadow: 4px 5px 0 #050a12, 6px 7px 10px rgba(0,0,0,0.45);
}
.brick-stack--substantial .brick-section { height: 100px; }

/* Single outer chamfered border frame — SVG overlay, wraps entire unit */
.brick-frame-svg {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.brick-frame-svg polygon {
  fill: none;
  stroke: rgba(0,0,0,0.65);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.brick-stack--substantial .brick-frame-svg polygon {
  stroke: rgba(201,168,76,0.5);
}

/* Groove divider between sections — subtle inset shadow, no hard line, full width */
.brick-section + .brick-section {
  box-shadow: inset 0 4px 5px -2px rgba(0,0,0,0.28);
}

/* Each brick section — no inner border, full width, centered */
.brick-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Engraved text */
.brick-section-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
}
.brick-section-text span {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a0a04;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.07);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brick-stack--substantial .brick-section-text span {
  color: var(--gold-light);
  font-size: 0.75rem;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 720px; margin: 2.5rem auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   CONTACT / FOOTER BANNER
   ============================================= */
.contact-banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.contact-banner h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.contact-banner p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.contact-banner .btn-outline { border-color: var(--white); }

/* FOOTER */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo img { height: 40px; opacity: 0.85; }
.footer__school { font-family: var(--font-serif); color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.footer__motto { font-style: italic; color: var(--gold); font-family: var(--font-serif); font-size: 0.85rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); text-decoration: none; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .tier-card--featured { transform: none; }
  .tier-card--featured:hover { transform: translateY(-6px); }
  .form-row { grid-template-columns: 1fr; }
  .navbar__links { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 2rem; }
}

/* =============================================
   HERO ADDITIONS
   ============================================= */
.hero__tax-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  background: rgba(0,112,60,0.25);
  border: 1px solid rgba(0,112,60,0.5);
  border-radius: 50px;
  display: inline-block;
  padding: 0.35rem 1rem;
}
.hero__tax-note strong { color: #7fffb8; }
.hero__progress-remaining {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-align: center;
  margin-top: 0.4rem;
  font-style: italic;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-text p { color: var(--text-light); line-height: 1.75; }
.about-milestone {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.milestone {
  flex: 1;
  min-width: 120px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.milestone strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.milestone span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.about-costs {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 24px var(--shadow);
}
.about-costs h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}
.cost-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.cost-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: var(--text-light);
}
.cost-list li strong { color: var(--navy); font-size: 0.95rem; }
.about-secured {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
}
.secured-badge {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.about-secured p { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.about-secured strong { color: var(--white); }

/* =============================================
   QUOTES
   ============================================= */
.quotes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.quote-card {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.75rem;
  position: relative;
}
.quote-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.quote-card cite {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
  letter-spacing: 0.02em;
}

/* =============================================
   SUBSTANTIAL DONATIONS
   ============================================= */
.substantial-wrap {
  margin-top: 2.5rem;
}
.substantial-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.substantial-icon { font-size: 2.5rem; flex-shrink: 0; }
.substantial-card h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.substantial-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
}
.substantial-card strong { color: var(--gold-light); }
.substantial-card .btn { flex-shrink: 0; }
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: #b8922d;
  border-color: #b8922d;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}
.pricing-tax {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.pricing-tax strong { color: var(--green-dark); }

/* =============================================
   ENGRAVING IDEAS
   ============================================= */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.idea-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.idea-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-lg);
}
.idea-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.idea-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.idea-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.idea-example {
  background: var(--mortar-dark);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .quotes-wrap { grid-template-columns: 1fr; }
  .ideas-grid { grid-template-columns: 1fr 1fr; }
  .substantial-card { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .ideas-grid { grid-template-columns: 1fr; }
  .about-milestone { flex-direction: column; }
}

/* ── Per-brick engraving groups ── */
.brick-engraving-group {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream-dark, #f0ebe0);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

.brick-group-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.85rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-submit-wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* ── Reference Code Display ───────────────────────── */
.ref-code-wrap {
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 1.2rem 0;
  text-align: center;
}
.ref-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.ref-code {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: 'Space Mono', 'Courier New', monospace;
  margin: 0 0 0.4rem;
  text-shadow: none;
}
.ref-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-style: italic;
}

/* ── Payment Status Radio Group ───────────────────── */
.payment-status-group {
  margin: 1rem 0 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1.5px solid #d4cfc9;
  border-radius: var(--radius);
}
.payment-status-label {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 0.8rem;
  font-family: var(--font-sans);
}
.required-star {
  color: #c0392b;
  margin-left: 2px;
}
.payment-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.45rem 0;
  transition: opacity 0.2s;
}
.payment-radio:hover { opacity: 0.75; }
.payment-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.radio-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #b0a898;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  position: relative;
}
.radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0;
  transition: opacity 0.2s;
}
.payment-radio input[type="radio"]:checked + .radio-custom {
  border-color: var(--navy);
}
.payment-radio input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
}
.radio-text {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
}
.payment-radio input[type="radio"]:checked ~ .radio-text {
  color: var(--navy);
  font-weight: 700;
}

/* ── Payment Details Block ─────────────────────────── */
.payment-details-block {
  margin: 1.5rem 0 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1.5px solid #d4cfc9;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(35,31,32,0.07);
}
.payment-details-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 1rem;
  font-family: var(--font-sans);
}
.payment-details-line {
  font-size: 0.97rem;
  color: var(--text);
  margin: 0.3rem 0;
}
.payment-details-line strong {
  color: var(--navy);
  font-weight: 700;
}
.payment-detail-value {
  font-family: 'Courier New', monospace;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.payment-details-or {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin: 0.6rem 0;
  text-align: center;
}
.payment-ref-line {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid #e8e2db;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.6;
}
.payment-ref-code {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--navy);
  font-family: 'Space Mono', 'Courier New', monospace;
  margin-top: 0.4rem;
}

/* ── Show Code Button ───────────────────────────────── */
.btn-show-code {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.45rem 1.3rem;
  background: var(--navy);
  border: none;
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.btn-show-code:hover {
  background: var(--navy-dark);
  color: #fff;
}

