/* ============================================
   OVERMORE PRESS — SHARED STYLESHEET
   Imprint layer: Playfair Display Black + Lora
   Baked & Blended series: Bevan + Nunito
   ============================================ */

:root {
  --cream: #fdf6ec;
  --warm-white: #fffaf4;
  --brown-dark: #5a2d0c;
  --brown-mid: #8b4a1e;
  --brown-light: #c4874a;
  --dusty-blue: #a8c4cc;
  --dusty-blue-light: #d4e8ec;
  --blush: #f2c4c4;
  --blush-light: #fae8e8;
  --text-dark: #3a1f0a;
  --text-mid: #6b3d1e;
  --gold: #d4a843;
  --story-brown: #3c2415; /* universal catalog text anchor */
}

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

body {
  background-color: var(--cream);
  font-family: 'Nunito', sans-serif;
  color: var(--story-brown);
  overflow-x: hidden;
}

a { color: inherit; }

/* ── SCATTERED HEARTS BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(242,196,196,0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(168,196,204,0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.wrapper--narrow { max-width: 760px; }

/* ── SITE HEADER / NAV ── */
.site-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0 14px;
  animation: fadeDown 0.8s ease both;
}
@media (min-width: 640px) {
  .site-header { padding: 32px 0 20px; }
}
.site-header a.imprint-link { text-decoration: none; }
.imprint-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--story-brown);
}
.imprint-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--brown-light);
  margin-top: 2px;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.site-nav a {
  text-decoration: none;
  color: var(--brown-mid);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brown-dark);
  border-bottom-color: var(--brown-light);
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  opacity: 0.4;
}
.divider-line { flex: 1; height: 1px; background: var(--brown-light); }
.divider-icon { font-size: 1rem; color: var(--brown-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--brown-dark);
  color: white !important;
  box-shadow: 0 4px 16px rgba(90,45,12,0.2);
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(90,45,12,0.25); }
.btn-secondary {
  background: transparent;
  color: var(--brown-dark) !important;
  border: 1.5px solid var(--brown-light);
}
.btn-secondary:hover { background: rgba(196,135,74,0.08); transform: translateY(-2px); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.badge {
  text-decoration: none;
  display: inline-block;
  background: var(--dusty-blue);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ── PRODUCT CARD (used on homepage hub) ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 32px 0;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
.product-card {
  background: var(--warm-white);
  border: 1.5px solid rgba(196,135,74,0.18);
  border-radius: 20px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(90,45,12,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(90,45,12,0.1); }
.product-card > a {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.product-card img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(90,45,12,0.15);
}
.product-card h3 {
  font-family: 'Bevan', serif;
  font-size: 1.25rem;
  color: var(--brown-dark);
}
.product-card p.tagline {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--brown-mid);
  font-size: 0.95rem;
  margin-top: -6px;
}
.product-card p.desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ── HERO (product pages) ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 16px 0 40px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-cover-wrap {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .hero-cover-wrap { width: 280px; }
}
.hero-cover-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--dusty-blue-light), var(--blush-light), var(--cream));
  z-index: -1;
  filter: blur(12px);
  opacity: 0.8;
}
.hero-cover {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(90,45,12,0.15), 0 20px 48px rgba(90,45,12,0.12), 4px 4px 0 rgba(168,196,204,0.4);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-cover:hover { transform: translateY(-6px) rotate(1deg); }
.hero-text { text-align: center; max-width: 520px; }
.hero-title {
  font-family: 'Bevan', serif;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  color: var(--brown-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero-title .amp { color: var(--brown-mid); }
.hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: var(--brown-mid);
  margin-bottom: 18px;
}
.hero-description { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 10px; }
.meta-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .hero { flex-direction: row; align-items: flex-start; text-align: left; gap: 44px; }
  .hero-text { text-align: left; }
}

/* ── GENERIC SECTION ── */
.section-heading {
  font-family: 'Bevan', serif;
  font-size: 1.5rem;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 40px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(90,45,12,0.1);
  display: block;
}
.gallery-grid figure { margin: 0; }
.gallery-grid figcaption {
  font-size: 0.78rem;
  color: var(--brown-light);
  text-align: center;
  margin-top: 6px;
}

/* ── EMAIL SECTION ── */
.email-section {
  background: linear-gradient(135deg, var(--warm-white), var(--blush-light));
  border: 1.5px solid rgba(196,135,74,0.2);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(90,45,12,0.06);
}
.email-section h2 {
  font-family: 'Bevan', serif;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.email-section p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 20px; }

/* ── PULL QUOTE ── */
.pull-quote { text-align: center; padding: 20px 0 30px; }
.pull-quote blockquote {
  font-family: 'Bevan', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 10px;
}
.pull-quote cite { font-size: 0.85rem; color: var(--brown-light); font-style: normal; }

/* ── SIMPLE CONTENT SECTION (institutional / about) ── */
.content-section { margin: 40px 0; }
.content-section h2 {
  font-family: 'Bevan', serif;
  font-size: 1.35rem;
  color: var(--brown-dark);
  margin-bottom: 14px;
}
.content-section p { font-size: 0.98rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }
.content-section ul { margin: 0 0 18px 20px; color: var(--text-mid); font-size: 0.96rem; line-height: 1.9; }

.info-card {
  background: var(--warm-white);
  border: 1.5px solid rgba(196,135,74,0.18);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 18px;
}
.info-card h3 { font-family: 'Bevan', serif; font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 8px; }
.info-card p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.65; margin: 0; }

/* ── ABOUT (founder) ── */
.about-hero { text-align: center; padding: 20px 0 30px; }
.about-hero img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(90,45,12,0.15);
  margin-bottom: 20px;
}
.about-hero h1 { font-family: 'Bevan', serif; font-size: 1.8rem; color: var(--brown-dark); margin-bottom: 6px; }
.about-hero p.role { color: var(--brown-mid); font-weight: 700; font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 0 32px;
  font-size: 0.85rem;
  color: var(--brown-light);
}
.footer-imprint {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--brown-mid);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-tagline { font-family: 'Lora', serif; font-style: italic; font-size: 0.82rem; color: var(--brown-light); margin-bottom: 14px; }
footer a { text-decoration: none; color: var(--brown-mid); font-weight: 700; }
footer a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 14px 0 10px;
  font-size: 0.82rem;
}
.footer-links span { color: rgba(139,74,30,0.3); }
.footer-fine { font-size: 0.75rem; color: rgba(139,74,30,0.6); margin-top: 10px; }
.footer-consultancy { font-size: 0.75rem; margin-top: 4px; color: rgba(139,74,30,0.55); }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── ACCESSIBILITY ── */
a:focus-visible, button:focus-visible { outline: 2px solid var(--brown-dark); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
