/* =============================================
   SHARED STYLES — anna-senselova
   Loaded by all pages. Page-specific overrides
   remain in each file's inline <style> block.
   ============================================= */


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

/* ── Base variables ── */
:root {
  --nav-height: 64px;
  --cream: #F9F7F2; --ink: #1A1A1A; --red: #C41E3A;
  --gold: #D4AF37; --gold-dark: #A07C10; --section-alt: #F2EDE4;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  background: var(--cream); color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.7;
  overflow-x: hidden;
  opacity: 1; transition: opacity 0.35s ease;
}
body.page-leaving { opacity: 0; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--red); color: #fff;
  padding: 0.55rem 1.2rem;
  font-family: 'Cinzel', serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; z-index: 99999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Section label ── */
.section-label {
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.2rem;
}

/* ── Gold line ── */
.gold-line {
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── @keyframes fadeIn ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── NAV CSS ── */
nav:not([class]) {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(249,247,242,0.97);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid #D4AF37;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  flex-direction: row;
}
nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
nav .logo img {
  height: 40px;
  width: auto;
  display: block;
}
nav > div, nav > a:not(.logo), .nav-back, .nav-breadcrumb, .nav-prev, .nav-next {
  display: none;
}
nav ul {
  list-style: none; display: flex;
  gap: 1.8rem; align-items: center; margin: 0; padding: 0;
}
nav ul li { position: relative; }
nav ul li > a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1A1A1A;
  transition: color 0.3s;
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0; white-space: nowrap;
}
nav ul li > a:hover, nav ul li > a.active { color: #C41E3A; }
nav ul li > a:focus-visible { outline: 2px solid #D4AF37; outline-offset: 3px; }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid #D4AF37; border-top: 2px solid #C41E3A;
  min-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200; padding-top: 8px;
}
.dropdown::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0;
  height: 8px; background: transparent;
}
.dropdown.dropdown-open {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 0.65rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; letter-spacing: 0.06em;
  color: #1A1A1A; text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #fdf8f0; color: #C41E3A; }
.dropdown a:focus-visible { outline: 2px solid #D4AF37; outline-offset: -2px; }
.dropdown .dropdown-label {
  display: block; padding: 0.5rem 1.2rem 0.3rem;
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: #A07C10;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  font-family: 'Cinzel', serif; margin-bottom: 0.2rem;
}
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 0.5rem;
  z-index: 10001; flex-shrink: 0;
}
.hamburger:focus-visible { outline: 2px solid #D4AF37; outline-offset: 3px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #1A1A1A; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ── Language switcher ── */
.lang-switch {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  flex-shrink: 0; margin-left: 1.4rem;
}
.lang-current { color: var(--red); font-weight: 700; }
.lang-sep { color: rgba(0,0,0,0.25); font-weight: 300; }
.lang-link {
  color: #5A5A5A; text-decoration: none;
  transition: color 0.25s ease;
}
.lang-link:hover { color: var(--red); }

/* Mobile lang item inside hamburger menu */
.nav-lang-item { display: none; }
.nav-lang-link {
  font-family: 'Cinzel', serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
  opacity: 0.85;
}
.nav-lang-link:hover { opacity: 1; color: var(--red) !important; }

@media (max-width: 768px) {
  .lang-switch { display: none; }
  .nav-lang-item { display: block; border-top: 1px solid rgba(212,175,55,0.35) !important; margin-top: 0.5rem; }
}

/* Nav — medium screens: prevent item overflow */
@media (min-width: 769px) and (max-width: 960px) {
  nav { padding: 0 1.4rem; }
  nav ul { gap: 1rem; }
  nav ul li > a { font-size: 0.78rem; letter-spacing: 0.08em; }
  nav .logo img { height: 36px; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  nav .logo img { height: 32px; }
  .hamburger { display: flex; }
  nav ul {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: rgba(249,247,242,0.99);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem 2.5rem;
    align-items: flex-start; z-index: 10000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-bottom: 2px solid #D4AF37;
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; border-bottom: 1px solid rgba(212,175,55,0.2); }
  nav ul li:last-child { border-bottom: none; }
  nav ul li > a {
    font-size: 1.05rem; padding: 0.9rem 0;
    width: 100%; justify-content: space-between;
    white-space: normal; line-height: 1.4;
  }
  .dropdown {
    position: static; transform: none;
    opacity: 1; pointer-events: none;
    box-shadow: none; border: none;
    border-top: 1px solid rgba(212,175,55,0.2);
    background: rgba(242,237,228,0.7);
    display: none; min-width: unset; width: 100%; padding-top: 0;
  }
  .dropdown.open { display: block; pointer-events: auto; }
  .dropdown a {
    padding: 0.7rem 1rem 0.7rem 1.5rem;
    font-size: 0.97rem; white-space: normal; line-height: 1.4;
  }
  .dropdown .dropdown-label { padding: 0.55rem 1rem 0.4rem 1.5rem; font-size: 0.65rem; }
  nav ul li .dropdown.open { display: block; pointer-events: auto; }
}

/* ── GDPR Modal ── */
.gdpr-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,26,26,0.72); z-index: 99999;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.gdpr-overlay.open { display: flex; }
.gdpr-box {
  background: var(--cream); max-width: 620px; width: 100%;
  padding: 3rem 2.5rem 2.5rem; position: relative;
  border-top: 3px solid var(--red);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-height: 90vh; overflow-y: auto;
}
.gdpr-box h2 {
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.5rem;
}
.gdpr-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: #252525; line-height: 1.85;
  margin-bottom: 1rem;
}
.gdpr-box strong { color: var(--ink); }
.gdpr-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: #999; line-height: 1;
  transition: color 0.2s;
}
.gdpr-close:hover { color: var(--red); }
.gdpr-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-gdpr-link {
  background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(249,247,242,0.5);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.3s; padding: 0;
}
.footer-gdpr-link:hover { color: var(--gold); }
@media (max-width: 600px) {
  .gdpr-box { padding: 2.5rem 1.5rem 2rem; }
}

/* ── UNIFIED FOOTER CSS ── */
footer {
  background: #111; color: #F9F7F2;
  text-align: center; padding: 4rem 2rem 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; max-width: 860px; margin: 0 auto 3rem; text-align: left;
}
.footer-col-center { text-align: center; }
.footer-name { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; color: #D4AF37; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.85rem; letter-spacing: 0.1em; opacity: 0.7; font-style: italic; margin-top: 0.5rem; }
.footer-col-title { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; opacity: 0.9; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding: 0; }
.footer-links a { text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: #F9F7F2; opacity: 0.85; letter-spacing: 0.06em; transition: opacity 0.3s, color 0.3s; }
.footer-links a:hover { opacity: 1; color: #D4AF37; }
.footer-divider { width: 100%; height: 1px; background: rgba(212,175,55,0.15); margin: 0 auto 1.5rem; max-width: 860px; }
.footer-copy { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.footer-disclaimer { margin-top: 1rem; font-size: 0.85rem; opacity: 0.8; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.75; font-style: italic; text-transform: none; letter-spacing: 0.02em; }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-col-center { order: -1; }
}

/* ── GDPR Modal ── */
.footer-gdpr-link {
  background: none; border: none; padding: 0;
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(249,247,242,0.55); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.3s;
}
.footer-gdpr-link:hover { color: var(--gold); }
.footer-gdpr-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.gdpr-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,10,10,0.65); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.gdpr-overlay.open { display: flex; }

.gdpr-box {
  position: relative; background: var(--cream); color: var(--ink);
  max-width: 560px; width: 100%; padding: 3rem 2.5rem 2.5rem;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-radius: 2px; max-height: 90vh; overflow-y: auto;
}
.gdpr-box h2 {
  font-family: 'Cinzel', serif; font-size: 1rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.5rem;
}
.gdpr-box p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; color: #252525; }
.gdpr-box p:last-child { margin-bottom: 0; }

.gdpr-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 1px solid rgba(212,175,55,0.4);
  width: 2rem; height: 2rem; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.gdpr-close:hover { background: rgba(196,30,58,0.08); border-color: var(--red); color: var(--red); }
.gdpr-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 600px) {
  .gdpr-box { padding: 2.5rem 1.5rem 2rem; }
}

/* ── Dekoratívne akvarelové ilustrácie ── */
.ilustracia {
  display: block;
  pointer-events: none;
  user-select: none;
  filter: sepia(18%) saturate(0.82) brightness(1.04);
  opacity: 0.9;
  height: auto;
}
.ilustracia-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  overflow: hidden;
}
/* Ilustrácia s gold čiarami po stranách — vizuálny oddeľovač sekcií */
.ilustracia-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  overflow: hidden;
}
.ilustracia-divider::before,
.ilustracia-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
@media (max-width: 600px) {
  .ilustracia-wrap { padding: 1.5rem 0; }
  .ilustracia-divider { padding: 2rem 0; gap: 1rem; }
  .ilustracia-divider::before,
  .ilustracia-divider::after { max-width: 60px; }
}

/* =============================================
   MOTÍV — BOČNÉ ORNAMENTY (zdieľané naprieč stranami)
   ============================================= */
.side-ornament {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 220px;
  background-image: url('assets/motiv-ludovy.svg');
  background-repeat: repeat-y;
  background-size: 220px auto;
  background-position: center top;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.8s ease;
  will-change: opacity;
  display: none;
}
.side-ornament--left  { left: -110px; }
.side-ornament--right { right: -110px; transform: scaleX(-1); }
@media (min-width: 768px) {
  .side-ornament { display: block; width: 200px; background-size: 200px auto; }
  .side-ornament--left  { left:  -100px; }
  .side-ornament--right { right: -100px; }
}
@media (min-width: 1100px) {
  .side-ornament { width: 260px; background-size: 260px auto; }
  .side-ornament--left  { left:  -130px; }
  .side-ornament--right { right: -130px; }
}
@media (min-width: 1400px) {
  .side-ornament { width: 320px; background-size: 320px auto; }
  .side-ornament--left  { left:  -160px; }
  .side-ornament--right { right: -160px; }
}
/* Homepage: JS pridáva .is-visible cez IntersectionObserver */
.side-ornament.is-visible { opacity: 0.13; }
/* Podstránky: vždy viditeľné, bez JS */
body.ornaments-always .side-ornament { opacity: 0.13; }

/* =============================================
   FOOTER — SOCIÁLNE SIETE
   ============================================= */
.footer-social {
  margin: 0.9rem 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-social a {
  color: rgba(249,247,242,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--gold); }
.footer-social-sep {
  color: rgba(212,175,55,0.35);
  font-size: 0.55rem;
}

/* ── Hero primary CTA — solid fill ── */
.btn--solid {
  background: #fff !important;
  color: var(--red) !important;
  border-color: #fff !important;
  font-weight: 700;
  text-shadow: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn--solid:hover {
  background: rgba(255,255,255,0.88) !important;
  border-color: #fff !important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

/* ── Konzistentný červený CTA tlačidlo (blog, sekcie) ── */
.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--red);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--red);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-cta-red:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

/* ── Mapa Spomienok teaser sekcia ── */
#mapa-teaser {
  background: var(--section-alt);
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.mapa-teaser-inner { max-width: 640px; margin: 0 auto; }
.mapa-teaser-title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 0;
}
.mapa-teaser-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-style: italic;
  color: #333;
  line-height: 1.85;
  margin: 1.5rem 0 2.2rem;
}

/* ── Blog preview sekcia ── */
.blog-preview-section { border-top: none; }
.blog-preview-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.blog-preview-perex {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem; font-style: italic;
  color: #3A3A3A; line-height: 1.85; margin-bottom: 2.5rem;
}
.blog-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2.5rem; text-align: left;
}
@media (max-width: 640px) { .blog-preview-grid { grid-template-columns: 1fr; } }
.blog-preview-card {
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--cream); border: 1px solid rgba(212,175,55,0.22);
  padding: 1.8rem 1.8rem 1.4rem; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-preview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.blog-preview-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); border-color: rgba(212,175,55,0.45); }
.blog-preview-tag {
  font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); display: block; margin-bottom: 0.6rem;
}
.blog-preview-title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--red); line-height: 1.3; margin-bottom: 0.75rem;
}
.blog-preview-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: #333; line-height: 1.75; margin-bottom: 0;
}
.blog-preview-read {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dark); margin-top: 1.2rem;
  transition: color 0.3s ease;
}
.blog-preview-card:hover .blog-preview-read { color: var(--red); }

/* ── Footer zjednodušený ── */
.footer-simple { text-align: center; padding: 3rem 2rem 1.5rem; }

/* ── Slovakiana blok (lipa.html) ── */
.slovakiana-block {
  margin-top: 3rem;
  padding: 2rem 2.2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.slovakiana-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.slovakiana-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.slovakiana-links li::before {
  content: '→ ';
  color: var(--gold-dark);
  font-weight: 600;
}
.slovakiana-links a {
  color: var(--red);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.slovakiana-links a:hover { color: var(--gold-dark); text-decoration: underline; }

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
  background: var(--section-alt);
  border-top: 3px solid var(--red);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle folk ornament watermark */
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,30,58,0.045) 0%, transparent 70%);
  pointer-events: none;
}

/* Bottom gold rule */
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.65;
  margin-bottom: 1.2rem;
  display: block;
}

.newsletter-title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--red);
  line-height: 1.4;
  margin-bottom: 1.8rem;
}

.newsletter-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,124,16,0.55), transparent);
  margin: 0 auto 2rem;
}

.newsletter-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: rgba(26,26,26,0.72);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.newsletter-text:last-of-type {
  color: rgba(26,26,26,0.85);
  font-style: italic;
}

.newsletter-form { margin-top: 2.8rem; }

.newsletter-input-wrap {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 2px 14px rgba(196,30,58,0.08);
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(160,124,16,0.3);
  border-right: none;
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  min-width: 0;
}
.newsletter-input::placeholder { color: rgba(26,26,26,0.38); }
.newsletter-input:focus {
  border-color: rgba(196,30,58,0.45);
  background: #fff;
}

.newsletter-btn {
  padding: 0.9rem 1.6rem;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-btn:hover { background: #a01830; border-color: #a01830; }
.newsletter-btn:disabled { opacity: 0.6; cursor: default; }

.newsletter-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  color: rgba(26,26,26,0.38);
  margin-top: 0.9rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

.newsletter-confirm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--red);
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 560px) {
  .newsletter-section { padding: 4rem 1.5rem; }
  .newsletter-input-wrap { flex-direction: column; box-shadow: none; }
  .newsletter-input { border-right: 1px solid rgba(160,124,16,0.3); border-bottom: none; }
  .newsletter-btn { width: 100%; }
}
