/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:      #C47B8A;
  --rose-dark: #A05A6A;
  --rose-light:#F0D9DF;
  --rose-pale: #FAF2F4;
  --gold:      #C9975A;
  --gold-light:#F5E6D3;
  --text:      #3A2A2E;
  --text-muted:#8A7070;
  --white:     #FFFFFF;
  --border:    #E8D5DA;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(58,42,46,0.10);
  --shadow-sm: 0 2px 8px rgba(58,42,46,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--rose);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.btn-primary.full-width { display: block; width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--rose);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--rose);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--rose); color: var(--white); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(58,42,46,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--rose); }

.nav-username {
  font-weight: 700;
  color: var(--rose-dark);
  font-size: 0.85rem;
}

.nav-user-area {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-cta-btn {
  background: var(--rose);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta-btn:hover { background: var(--rose-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 25, 30, 0.52);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: 32px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.92;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.section-label.light { color: rgba(255,255,255,0.75); }

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== CATEGORIES ===== */
.categories-section { padding: 80px 0 60px; background: var(--white); }

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-tab {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.2s;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* ===== QUOTES GRID ===== */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 22px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.quote-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--rose-light);
  margin-bottom: 6px;
}

.quote-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  margin-bottom: 16px;
}

.quote-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rose-pale);
}

.quote-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--rose-pale);
  color: var(--rose-dark);
}

.quote-share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--rose-light);
  transition: all 0.2s;
  background: var(--white);
}
.quote-share-btn:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* Category accent colors */
.accent-inspirational { background: linear-gradient(90deg, #C47B8A, #E8A4B4); }
.accent-funny         { background: linear-gradient(90deg, #C9975A, #E8C090); }
.accent-encouraging   { background: linear-gradient(90deg, #7BA5B8, #A4CBE0); }
.accent-new-mom       { background: linear-gradient(90deg, #A47BB8, #C4A4D8); }
.accent-working-mom   { background: linear-gradient(90deg, #7BB87A, #A4D8A0); }
.accent-single-mom    { background: linear-gradient(90deg, #B87A5A, #D8A080); }
.accent-tired-mom     { background: linear-gradient(90deg, #8A8AB8, #B0B0D8); }
.accent-sarcastic-mom { background: linear-gradient(90deg, #D4A017, #F0C040); }

/* ===== PICTURE QUOTES SECTION ===== */
.picture-quotes-section {
  padding: 90px 0;
  background: var(--rose-pale);
}

.picture-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pq-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pq-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.pq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pq-card--wide {
  flex-direction: row;
}

.pq-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.pq-card--wide .pq-img-wrap {
  width: 50%;
}

.pq-card:not(.pq-card--wide) .pq-img-wrap {
  height: 220px;
}

.pq-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pq-card:hover .pq-img-wrap img { transform: scale(1.04); }

.pq-content {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.pq-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}
.pq-badge--sarcastic  { background: #FFF3E0; color: #B8860B; }
.pq-badge--funny      { background: var(--gold-light); color: var(--gold); }
.pq-badge--encouraging{ background: #E0F0F8; color: #3A7A9A; }
.pq-badge--inspirational { background: var(--rose-pale); color: var(--rose-dark); }

.pq-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

.pq-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== SHARE MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,15,0.7);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.share-modal-inner {
  background: var(--white);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.6rem;
  color: var(--text-muted);
  z-index: 10;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

.share-card-preview {
  padding: 30px 30px 0;
}

.share-card-design {
  background: linear-gradient(135deg, #FDF0F3 0%, #F5E6D3 100%);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.share-card-design::before {
  content: '"';
  position: absolute;
  top: -10px; left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(196,123,138,0.15);
  line-height: 1;
}

.share-card-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.share-card-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  max-width: 480px;
}

.share-card-category {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}

.share-actions {
  padding: 24px 30px 28px;
}

.share-actions h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.share-btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid;
  transition: all 0.2s;
}
.share-copy { border-color: var(--rose); color: var(--rose); background: transparent; }
.share-copy:hover { background: var(--rose); color: var(--white); }
.share-download { border-color: var(--gold); color: var(--gold); background: transparent; }
.share-download:hover { background: var(--gold); color: var(--white); }
.share-pinterest { border-color: #E60023; color: #E60023; background: transparent; }
.share-pinterest:hover { background: #E60023; color: var(--white); }
.share-fb { border-color: #1877F2; color: #1877F2; background: transparent; }
.share-fb:hover { background: #1877F2; color: var(--white); }

.share-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== MOTHER'S DAY FINDER ===== */
.mothers-day-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--gold-light) 100%);
}

.md-finder-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.md-finder-text .section-label { margin-bottom: 12px; }

.md-finder-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.md-finder-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.md-finder-tool {
  background: var(--white);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.finder-step label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.finder-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finder-choice {
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}
.finder-choice:hover, .finder-choice.selected {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.finder-quote-card {
  background: linear-gradient(135deg, #FDF0F3, #F5E6D3);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}

.finder-quote-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.finder-quote-meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.finder-result-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== PRINTABLES ===== */
.printables-section { padding: 90px 0; background: var(--rose-pale); }

.printables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.printable-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.printable-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.printable-preview {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.printable-preview blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.printable-preview .print-logo {
  position: absolute;
  bottom: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 1;
}

.print-bg-1 { background: linear-gradient(145deg, #C47B8A, #9A5A6A); }
.print-bg-2 { background: linear-gradient(145deg, #C9975A, #A07040); }
.print-bg-3 { background: linear-gradient(145deg, #7BA5B8, #5A8090); }
.print-bg-4 { background: linear-gradient(145deg, #A47BB8, #7A5A90); }
.print-bg-5 { background: linear-gradient(145deg, #7BB87A, #5A905A); }
.print-bg-6 { background: linear-gradient(145deg, #8A8AB8, #6A6A90); }

.printable-info {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.printable-info span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.print-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose);
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--rose-light);
  transition: all 0.2s;
  background: var(--white);
}
.print-btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ===== EMAIL SECTION ===== */
.email-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.email-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.email-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90, 30, 45, 0.72);
  z-index: 1;
  pointer-events: none;
}

.email-section-content {
  position: relative;
  z-index: 2;
}

.email-signup-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.email-signup-wrap h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.email-signup-wrap p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 30px;
  line-height: 1.7;
}

.email-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.email-input, .email-select {
  padding: 13px 18px;
  border-radius: 50px;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  outline: none;
  min-width: 200px;
}
.email-input { flex: 1; }
.email-select { min-width: 160px; }

.email-fine {
  font-size: 0.82rem;
  opacity: 0.7;
}

.email-success {
  text-align: center;
  color: var(--white);
}
.success-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.email-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

/* ===== AUTH MODAL ===== */
.auth-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.auth-header {
  text-align: center;
  margin-bottom: 26px;
}

.auth-flower {
  color: var(--rose);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.auth-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.auth-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group { margin-bottom: 14px; }

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--rose); }

.otp-input {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}
.otp-msg {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.auth-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--rose);
}
.auth-link:hover { text-decoration: underline; }

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.auth-switch a { color: var(--rose); font-weight: 700; }
.auth-switch a:hover { text-decoration: underline; }

.auth-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.form-error {
  color: #C0392B;
  font-size: 0.85rem;
  min-height: 20px;
  margin-top: 8px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 240px;
}

.footer-links h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .picture-quotes-grid { grid-template-columns: 1fr; }
  .pq-card--wide { grid-column: auto; flex-direction: column; }
  .pq-card--wide .pq-img-wrap { width: 100%; height: 240px; }

  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.mobile-open .nav-user-area { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: flex; }

  .md-finder-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .pq-card:not(.pq-card--wide) .pq-img-wrap { height: 180px; }
  .pq-content { padding: 20px 18px; }
  .pq-quote { font-size: 0.97rem; }

  .hero { min-height: 85vh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .email-form-row { flex-direction: column; }
  .email-input, .email-select { min-width: unset; width: 100%; border-radius: 10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .share-modal-inner { border-radius: 12px; }
  .share-actions { padding: 18px 20px 22px; }
  .share-card-preview { padding: 20px 20px 0; }
  .auth-modal { padding: 32px 24px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.95rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-badge { font-size: 0.78rem; }
}
