/* =============================================
   Mastic Peninsula Historical Society
   Aesthetic: Archival editorial — parchment tones,
   deep navy, aged gold accents. Timeless & dignified.
   ============================================= */

:root {
  --navy:    #1a2744;
  --navy-mid:#253356;
  --gold:    #c8a45a;
  --gold-lt: #e2c47e;
  --parchment: #f5f0e8;
  --parchment-dk: #ede5d4;
  --ink:     #2a2118;
  --ink-mid: #4a3f32;
  --ink-lt:  #7a6e60;
  --white:   #fff;
  --red-accent: #8b2635;

  --serif: 'Playfair Display', Georgia, serif;
  --body:  'Source Serif 4', Georgia, serif;

  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-strong: 0 8px 40px rgba(26,39,68,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 1.05rem;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-family: var(--body);
  letter-spacing: 0.04em;
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 0.45rem 2rem;
  flex-wrap: wrap;
}
.topbar span { white-space: nowrap; }

/* ---- HEADER ---- */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-emblem svg { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-subtitle {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

nav ul {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}
nav ul li a {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.4rem 0.65rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--navy);
  background: var(--parchment);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.3rem 0.5rem;
}
.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 1rem 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%231a2744"/><path d="M0 30h60M30 0v60" stroke="%23253356" stroke-width="0.5" opacity="0.5"/></svg>');
  opacity: 0.8;
}
/* Decorative aged paper texture overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(200,164,90,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,38,53,0.07) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  z-index: 1;
  max-width: 720px;
  margin-left: clamp(2rem, 8vw, 10rem);
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--body);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bob 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---- ANNOUNCEMENT BANNER ---- */
.announcement {
  background: var(--parchment-dk);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(200,164,90,0.3);
}
.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ann-label {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-inner p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  flex: 1;
}
.ann-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.ann-link:hover { color: var(--gold); }

/* ---- SECTION COMMONS ---- */
section { padding: 5rem 2rem; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-family: var(--body);
  font-weight: 600;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-desc {
  max-width: 600px;
  margin: 0.8rem auto 0;
  color: var(--ink-lt);
  font-size: 1rem;
}

/* ---- MISSION CARDS ---- */
.mission-section { background: var(--white); }
.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--parchment);
  border: 1px solid var(--parchment-dk);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.7rem;
  border-radius: 3px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.card p { color: var(--ink-mid); font-size: 0.95rem; line-height: 1.65; }
.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.card-link:hover { border-color: var(--gold); }

/* ---- FEATURE SECTION ---- */
.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
}
.map-feature { background: var(--white); }
.feature-img-box {
  border: 2px solid var(--gold);
  padding: 2.5rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  border-radius: 3px;
}
.map-placeholder {
  text-align: center;
  color: var(--ink-lt);
}
.map-placeholder span { font-size: 4rem; display: block; margin-bottom: 1rem; }
.map-placeholder p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-lt);
}
.feature-text-side h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.feature-text-side p {
  color: var(--ink-mid);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ---- BOOKLETS ---- */
.booklets-section {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
}
.booklets-section .section-header h2 { color: var(--white); }
.booklets-row {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.booklet {
  text-align: center;
  flex-shrink: 0;
}
.booklet-cover {
  width: 100px;
  height: 130px;
  background: var(--navy-mid);
  border: 2px solid rgba(200,164,90,0.4);
  border-radius: 3px 6px 6px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
  box-shadow: 3px 3px 0 rgba(200,164,90,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.booklet:hover .booklet-cover {
  transform: rotate(-2deg) translateY(-3px);
  box-shadow: 5px 8px 0 rgba(200,164,90,0.25);
}
.booklet-new .booklet-cover {
  border-color: var(--gold);
  background: rgba(200,164,90,0.1);
}
.booklet p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
.booklet-new p { color: var(--gold); font-weight: 600; }
.booklets-cta { text-align: center; }

/* ---- DONATE SECTION ---- */
.donate-section {
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  text-align: center;
  padding: 5rem 2rem;
}
.donate-inner {
  max-width: 680px;
  margin: 0 auto;
}
.donate-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.donate-section p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.75;
}
.donate-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- NEWS / ANNOUNCEMENTS ---- */
.news-section { background: var(--parchment); }
.news-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-item {
  background: var(--white);
  border: 1px solid var(--parchment-dk);
  border-left: 4px solid var(--gold);
  padding: 1.8rem 1.5rem;
  border-radius: 0 3px 3px 0;
}
.news-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.news-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.news-item p { color: var(--ink-lt); font-size: 0.9rem; line-height: 1.65; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 0.5rem; }
footer ul li { margin-bottom: 0.4rem; }
footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--gold); }
.footer-social {
  color: var(--gold) !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(200,164,90,0.3);
  padding-bottom: 1px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: var(--navy);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px);
}
.page-hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1rem;
  position: relative;
}

/* ---- ABOUT PAGE ---- */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-body h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.about-body p {
  color: var(--ink-mid);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-body ul {
  list-style: none;
  padding: 0;
}
.about-body ul li {
  color: var(--ink-mid);
  font-size: 0.95rem;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--parchment-dk);
}
.about-body ul li::before {
  content: '⟶';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.about-sidebar .info-box {
  background: var(--parchment);
  border: 1px solid var(--parchment-dk);
  border-top: 3px solid var(--gold);
  padding: 1.8rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.info-box h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.info-box p, .info-box a {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.7;
  display: block;
  margin-bottom: 0.4rem;
}
.info-box a { color: var(--navy); font-weight: 600; }
.info-box a:hover { color: var(--gold); }

/* ---- TIMELINE ---- */
.timeline-section { background: var(--white); padding: 5rem 2rem; }
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--parchment-dk));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-date {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.timeline-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.timeline-item p {
  color: var(--ink-lt);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- MEMBERSHIP PAGE ---- */
.membership-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
}
.membership-tier {
  background: var(--parchment);
  border: 1px solid var(--parchment-dk);
  border-radius: 3px;
  padding: 2rem 1.7rem;
  text-align: center;
}
.membership-tier.featured {
  background: var(--navy);
  border-color: var(--gold);
  border-top: 4px solid var(--gold);
  color: var(--white);
}
.tier-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  margin: 0.8rem 0;
}
.membership-tier h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
}
.membership-tier.featured h3 { color: var(--white); }
.tier-features { text-align: left; margin: 1.2rem 0; }
.tier-features li {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--ink-mid);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-left: 1.2rem;
  position: relative;
}
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }
.membership-tier.featured .tier-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }

/* ---- CONTACT PAGE ---- */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form-area h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--parchment-dk);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }

/* ---- COLLECTIONS PAGE ---- */
.collections-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
  text-align: center;
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.8;
}
.collections-grid {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.collection-item {
  border: 1px solid var(--parchment-dk);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.collection-item:hover { box-shadow: var(--shadow-strong); }
.collection-thumb {
  background: var(--parchment);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 3px solid var(--gold);
}
.collection-body { padding: 1.4rem; }
.collection-body h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.collection-body p { font-size: 0.88rem; color: var(--ink-lt); line-height: 1.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .feature-section { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-section { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  header nav { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-content { margin-left: 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .topbar { gap: 0.8rem; font-size: 0.7rem; }
  .feature-section { padding: 3rem 1.5rem; }
  .booklets-row { gap: 0.8rem; }
  .booklet-cover { width: 80px; height: 105px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 1.2rem; }
  .header-inner { padding: 0.7rem 1.2rem; }
  .logo-title { font-size: 1rem; }
  .logo-subtitle { font-size: 0.85rem; }
}
