/* =========================================================
   Nyilas Zoltán — püspökjelölt weboldal
   Design tokens
   ========================================================= */
:root{
  --ink-900:#182533;
  --ink-800:#1f3040;
  --ink-700:#2e3e4e;
  --parchment:#efeae0;
  --paper:#f8f6f0;
  --wine:#6e2a33;
  --wine-light:#8a3b46;
  --gold:#a98240;
  --gold-light:#c9a662;
  --text-dark:#211c18;
  --text-mut:#5a5148;
  --text-light:#ede7da;
  --text-light-mut:#b9c2cb;

  --serif:'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:'Work Sans', -apple-system, Segoe UI, sans-serif;

  --max-w:1180px;
  --edge:clamp(1.5rem, 5vw, 4.5rem);
  --radius:2px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text-dark);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

h1,h2,h3,.serif{font-family:var(--serif);}
p{line-height:1.7;}
a{color:inherit;}
img{max-width:100%;display:block;}
.container{max-width:var(--max-w); margin-inline:auto; padding-inline:var(--edge);}

/* focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* eyebrow label style — used sparingly for real structural labels */
.eyebrow{
  font-family:var(--sans);
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:600;
}

/* =========================================================
   Köszöntő ablak (belépéskor felugró modal)
   ========================================================= */
.welcome-overlay{
  position:fixed; inset:0;
  z-index:300;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1.5rem;
  background:rgba(16,24,31,.72);
  backdrop-filter:blur(3px);
  opacity:0;
  visibility:hidden;
  transition:opacity .4s ease, visibility .4s ease;
}
.welcome-overlay.visible{ opacity:1; visibility:visible; }

.welcome-modal{
  position:relative;
  max-width:560px;
  width:100%;
  max-height:85vh;
  overflow-y:auto;
  background:var(--paper);
  border-radius:var(--radius);
  padding:3rem 2.6rem 2.6rem;
  text-align:center;
  box-shadow:0 40px 80px -20px rgba(0,0,0,.5);
  transform:translateY(18px) scale(.98);
  transition:transform .4s ease;
}
.welcome-overlay.visible .welcome-modal{ transform:translateY(0) scale(1); }

.welcome-close{
  position:absolute;
  top:1rem; right:1.1rem;
  background:none; border:none;
  font-size:1.15rem;
  color:var(--text-mut);
  cursor:pointer;
  line-height:1;
  padding:.4rem;
}
.welcome-close:hover{ color:var(--wine); }

.welcome-seal{ color:var(--wine); margin-bottom:1rem; opacity:.85; }

.welcome-modal h2{
  font-size:clamp(1.6rem,4vw,2.1rem);
  font-weight:500;
  margin:0 0 1.3rem;
  color:var(--ink-900);
}

.welcome-text{ text-align:left; margin-bottom:2rem; }
.welcome-text p{
  color:var(--text-mut);
  font-size:.98rem;
  line-height:1.7;
  margin:0 0 1rem;
}
.welcome-text p:last-child{ margin-bottom:0; }

.welcome-ok{ width:100%; justify-content:center; }

@media (max-width:600px){
  .welcome-modal{ padding:2.4rem 1.6rem 2rem; }
}

/* =========================================================
   Seal motif (signature element) — reused as divider & mark
   ========================================================= */
.seal{ display:inline-block; }
.seal svg{ display:block; }

.divider-seal{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  margin:0 auto;
  width:100%;
  max-width:420px;
}
.divider-seal .line{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, currentColor, transparent);
  opacity:.5;
}

/* =========================================================
   Navigation
   ========================================================= */
.site-nav{
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  padding:1.1rem 0;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
  background:transparent;
}
.site-nav.scrolled{
  background:var(--ink-900);
  padding:.7rem 0;
  box-shadow:0 6px 24px rgba(0,0,0,.18);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
}
.nav-brand{
  display:flex; align-items:center; gap:.7rem;
  color:var(--text-light);
  text-decoration:none;
  font-family:var(--serif);
  font-size:1.05rem;
  letter-spacing:.02em;
}
.nav-brand .seal{ color:var(--gold-light); width:30px; }
.nav-links{
  display:flex; align-items:center; gap:1.7rem; list-style:none; margin:0; padding:0;
}
.nav-links a{
  color:var(--text-light-mut);
  text-decoration:none;
  font-size:.82rem;
  letter-spacing:.03em;
  transition:color .2s ease;
  position:relative;
}
.nav-links a:hover, .nav-links a.active{ color:var(--text-light); }
.nav-links a.active::before{
  content:'';
  position:absolute; left:0; right:0; bottom:-8px;
  height:2px; background:var(--gold);
}

/* CTA pill */
.nav-links a.nav-cta{
  color:var(--gold-light);
  border:1px solid rgba(169,130,64,.55);
  border-radius:999px;
  padding:.5rem 1.15rem;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-links a.nav-cta:hover{ background:var(--gold-light); color:var(--ink-900); border-color:var(--gold-light); }
.nav-links a.nav-cta.active::before{ content:none; }
.nav-links a.nav-cta.active{ background:var(--gold-light); color:var(--ink-900); }

/* Dropdown submenu ("Szolgálataim") */
.has-dropdown{ position:relative; }
.has-dropdown > a::after{
  content:'';
  display:inline-block;
  width:0; height:0;
  margin-left:.4rem;
  border-left:3.5px solid transparent;
  border-right:3.5px solid transparent;
  border-top:4px solid currentColor;
  opacity:.7;
  vertical-align:middle;
}

.dropdown{
  list-style:none; margin:0; padding:.5rem 0;
  position:absolute; top:100%; left:50%;
  transform:translateX(-50%) translateY(4px);
  min-width:230px;
  background:var(--ink-900);
  border:1px solid rgba(237,231,218,.12);
  border-radius:var(--radius);
  box-shadow:0 24px 48px -22px rgba(0,0,0,.55);
  opacity:0; visibility:hidden;
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.dropdown a{
  display:block;
  padding:.6rem 1.3rem;
  font-size:.8rem;
  white-space:nowrap;
  color:var(--text-light-mut);
}
.dropdown a:hover{ color:var(--text-light); background:rgba(237,231,218,.06); }
.dropdown a.active::before{ content:none; }
.dropdown a.active{ color:var(--gold-light); }

.nav-toggle{
  display:none;
  background:none; border:none; color:var(--text-light);
  font-size:1.6rem; cursor:pointer; padding:.2rem .4rem;
}

@media (max-width:980px){
  .nav-links{
    position:fixed; inset:0 0 0 auto;
    height:100vh; width:min(78vw,320px);
    background:var(--ink-900);
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:1.7rem;
    padding:2rem 2.2rem;
    transform:translateX(100%);
    transition:transform .4s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ font-size:.95rem; }
  .nav-links a.nav-cta{ padding:.6rem 1.3rem; }
  .nav-toggle{ display:block; }

  /* On mobile the dropdown is always expanded inline, no hover */
  .has-dropdown{ width:100%; }
  .has-dropdown > a::after{ float:right; margin-top:.5rem; }
  .dropdown{
    position:static;
    opacity:1; visibility:visible; transform:none;
    background:transparent; border:none; box-shadow:none;
    min-width:0;
    width:100%;
    padding:.7rem 0 0 1.1rem;
    transition:none;
  }
  .dropdown a{
    padding:.5rem 0;
    font-size:.85rem;
    white-space:normal;
    width:100%;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown{
    transform:none;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(169,130,64,.16), transparent 55%),
    linear-gradient(180deg, var(--ink-900), #10181f 88%);
  color:var(--text-light);
  overflow:hidden;
  padding:8rem var(--edge) 5rem;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg, rgba(237,231,218,.025) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(237,231,218,.025) 0 1px, transparent 1px 64px);
  pointer-events:none;
}
.hero-seal{
  color:var(--gold-light);
  opacity:.9;
  width:64px;
  margin-bottom:1.8rem;
  animation:fadeUp .9s ease both;
}
.hero-verse{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.05rem,2.4vw,1.35rem);
  color:var(--text-light-mut);
  max-width:640px;
  margin:0 0 2rem;
  animation:fadeUp .9s .1s ease both;
}
.hero-verse cite{
  display:block; font-style:normal; margin-top:.6rem;
  font-family:var(--sans); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold-light);
}
.hero h1{
  font-size:clamp(2.8rem,8vw,5.6rem);
  line-height:1.02;
  margin:0 0 .9rem;
  font-weight:500;
  letter-spacing:-.01em;
  animation:fadeUp .9s .2s ease both;
}
.hero .role{
  animation:fadeUp .9s .3s ease both;
  color:var(--gold-light);
  margin-bottom:2.6rem;
}
.hero .role span{ color:var(--text-light-mut); }
.hero-scroll{
  position:absolute; bottom:2.4rem; left:50%; transform:translateX(-50%);
  color:var(--text-light-mut);
  font-size:.7rem; letter-spacing:.2em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
}
.hero-scroll .stick{
  width:1px; height:38px; background:var(--text-light-mut);
  position:relative; overflow:hidden;
}
.hero-scroll .stick::after{
  content:''; position:absolute; left:0; top:-100%; width:100%; height:100%;
  background:var(--gold-light);
  animation:drip 2.2s ease-in-out infinite;
}
@keyframes drip{ to{ top:100%; } }
@keyframes fadeUp{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:none;} }

/* =========================================================
   Esperesi interjú aloldalak — Q&A lista
   ========================================================= */
.interview-qa{ max-width:74ch; }
.qa-item{
  margin-bottom:2.4rem;
  padding-bottom:2.2rem;
  border-bottom:1px dashed rgba(30,20,10,.15);
}
.qa-item:last-child{ border-bottom:none; margin-bottom:0; padding-bottom:0; }
.qa-item .q{
  font-family:var(--serif);
  font-style:italic;
  color:var(--wine);
  font-size:1.15rem;
  line-height:1.5;
  margin:0 0 .8rem;
}
.qa-item .a{
  color:var(--text-mut);
  margin:0;
}

/* =========================================================
   Subpage header (e.g. Személyes bemutatkozás)
   ========================================================= */
.page-header{
  position:relative;
  padding:9.5rem var(--edge) 4.5rem;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(169,130,64,.14), transparent 55%),
    linear-gradient(180deg, var(--ink-900), #10181f 100%);
  color:var(--text-light);
  text-align:center;
}
.page-header .back-link{
  display:inline-flex; align-items:center; gap:.5rem;
  color:var(--text-light-mut);
  text-decoration:none;
  font-size:.8rem; letter-spacing:.06em;
  margin-bottom:2rem;
  transition:color .2s ease;
}
.page-header .back-link:hover{ color:var(--gold-light); }
.page-header .seal{ color:var(--gold-light); width:44px; margin-bottom:1.4rem; opacity:.9; }
.page-header h1{
  font-size:clamp(2.2rem,5.5vw,3.6rem);
  font-weight:500;
  margin:0 0 .8rem;
}
.page-header p{ color:var(--text-light-mut); max-width:520px; margin:0 auto; }

/* =========================================================
   Career timeline (reused .timeline pattern, career variant)
   ========================================================= */
.tl-item.career .tl-date{ color:var(--wine); }
.tl-item.career .tl-date .day{ font-size:1.4rem; }

/* Family / calling text blocks */
.prose-block{ max-width:74ch; }
.prose-block p{ margin:0 0 1.3rem; color:var(--text-mut); }
.section.dark .prose-block p{ color:var(--text-light-mut); }
.prose-block p:last-child{ margin-bottom:0; }

.calling-quote{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.3rem,3vw,1.7rem);
  line-height:1.5;
  color:var(--text-light);
  border-left:3px solid var(--gold);
  padding-left:1.6rem;
  margin:2.2rem 0;
}

/* =========================================================
   Section shell
   ========================================================= */
.section{ padding:7rem 0; }
.section.light{ background:var(--parchment); }
.section.paper{ background:var(--paper); }
.section.dark{
  background:linear-gradient(180deg, var(--ink-900), var(--ink-800));
  color:var(--text-light);
}
.section-head{
  max-width:640px;
  margin:0 0 3.5rem;
}
.section.center .section-head{ margin-inline:auto; text-align:center; }
.section-head .eyebrow{ color:var(--wine); display:block; margin-bottom:.9rem; }
.section.dark .section-head .eyebrow{ color:var(--gold-light); }
.section-head h2{
  font-size:clamp(2rem,4.4vw,2.9rem);
  margin:0 0 1rem;
  font-weight:500;
}
.section-head p{ color:var(--text-mut); font-size:1.05rem; }
.section.dark .section-head p{ color:var(--text-light-mut); }

.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* =========================================================
   Esperesek véleménye — dean/testimonial cards linking to full interviews
   ========================================================= */
.dean-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.dean-card{
  padding:2.2rem 2rem 2rem;
  background:var(--paper);
  border:1px solid rgba(30,20,10,.1);
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.dean-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px -22px rgba(30,20,10,.28); }
.dean-avatar{
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--ink-900);
  color:var(--gold-light);
  font-family:var(--serif);
  font-style:italic;
  font-size:1.1rem;
  margin-bottom:1.2rem;
}
.dean-card h3{ font-size:1.15rem; margin:0 0 .3rem; font-weight:500; }
.dean-role{
  display:block;
  font-size:.72rem;
  letter-spacing:.08em;
  color:var(--wine);
  margin-bottom:1.2rem;
}
.dean-excerpt{
  font-family:var(--serif);
  font-style:italic;
  font-size:.98rem;
  line-height:1.6;
  color:var(--text-dark);
  margin:0 0 1.5rem;
  flex-grow:1;
}
.dean-link{
  align-self:flex-start;
  font-size:.82rem;
  font-weight:600;
  color:var(--ink-900);
  text-decoration:none;
  border-bottom:1px solid var(--gold);
  padding-bottom:2px;
  transition:color .2s ease, border-color .2s ease;
}
.dean-link:hover{ color:var(--wine); border-color:var(--wine); }

@media (max-width:900px){
  .dean-grid{ grid-template-columns:1fr; }
}

/* =========================================================
   Közegyházi szolgálataim — small achievement cards
   ========================================================= */
.record-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:1.3rem;
}
.record-card{
  position:relative;
  padding:1.7rem 1.6rem 1.6rem;
  background:var(--paper);
  border:1px solid rgba(30,20,10,.1);
  border-radius:var(--radius);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.record-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px -20px rgba(30,20,10,.28);
  border-color:rgba(110,42,51,.35);
}
.record-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:2.1rem;
  height:2.1rem;
  padding:0 .3rem;
  border-radius:50%;
  background:var(--parchment);
  color:var(--wine);
  font-size:.95rem;
  font-style:italic;
  margin-bottom:1rem;
}
.record-card h3{
  font-size:1.02rem;
  line-height:1.35;
  margin:0 0 .55rem;
  font-weight:500;
}
.record-card p{
  font-size:.86rem;
  line-height:1.55;
  color:var(--text-mut);
  margin:0;
}

/* =========================================================
   Szolgálati helyeim — congregation testimonial cards
   ========================================================= */
.service-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.4rem;
}
.service-card{
  position:relative;
  padding:2.2rem 2.6rem;
  background:var(--paper);
  border:1px solid rgba(30,20,10,.1);
  border-radius:var(--radius);
  display:grid;
  grid-template-columns:170px 1fr auto;
  gap:2.4rem;
  align-items:center;
}

.service-place{
  border-left:3px solid var(--wine);
  padding-left:1.3rem;
}
.service-place h3{
  font-size:1.2rem;
  margin:0 0 .35rem;
  font-weight:500;
  line-height:1.2;
}
.service-period{
  font-size:.68rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--wine);
  display:block;
}

.service-text{
  position:relative;
  font-family:var(--serif);
  font-style:italic;
  font-size:1.05rem;
  line-height:1.65;
  color:var(--text-dark);
  margin:0;
  padding-left:1.9rem;
}
.service-text::before{
  content:'“';
  position:absolute;
  left:-.15rem;
  top:-.5rem;
  font-family:var(--serif);
  font-style:normal;
  font-size:2.6rem;
  color:var(--gold);
  opacity:.6;
}

.service-attr{
  font-size:.75rem;
  line-height:1.5;
  letter-spacing:.03em;
  color:var(--text-mut);
  text-align:right;
  padding-left:2rem;
  border-left:1px solid rgba(30,20,10,.14);
  white-space:nowrap;
}

@media (max-width:900px){
  .service-card{
    grid-template-columns:1fr;
    gap:1.2rem;
    padding:2rem 1.7rem;
  }
  .service-text{ padding-left:1.7rem; }
  .service-attr{
    text-align:left;
    white-space:normal;
    border-left:none;
    padding-left:0;
    padding-top:1rem;
    border-top:1px solid rgba(30,20,10,.1);
  }
}

/* =========================================================
   Lelkipásztori hivatásom — three-column cards
   ========================================================= */
.vocation-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.4rem;
}
.vocation-card{
  padding:2.4rem 2rem;
  background:var(--paper);
  border:1px solid rgba(30,20,10,.1);
  border-top:3px solid var(--wine);
  border-radius:var(--radius);
  transition:transform .3s ease, box-shadow .3s ease;
}
.vocation-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px -22px rgba(30,20,10,.28); }
.vocation-icon{
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--parchment);
  color:var(--wine);
  margin-bottom:1.4rem;
}
.vocation-icon svg{ width:24px; height:24px; }
.vocation-card h3{ font-size:1.25rem; margin:0 0 .7rem; font-weight:500; }
.vocation-card p{ font-size:.93rem; color:var(--text-mut); margin:0; }

@media (max-width:860px){
  .vocation-grid{ grid-template-columns:1fr; }
}

/* =========================================================
   Bemutatkozás
   ========================================================= */
.bio-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:start;
}
.bio-portrait{
  position:relative;
  aspect-ratio:4/5;
  background:linear-gradient(160deg,#dcd4c2,#c9bfa7);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 24px 50px -20px rgba(30,20,10,.35);
}
.bio-portrait svg{ width:100%; height:100%; }
.bio-portrait figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding:1rem 1.2rem;
  background:linear-gradient(0deg, rgba(24,37,51,.82), transparent);
  color:var(--text-light);
  font-size:.78rem; letter-spacing:.05em;
}
.bio-text .pull{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.5rem;
  line-height:1.5;
  color:var(--ink-900);
  border-left:3px solid var(--wine);
  padding-left:1.4rem;
  margin:0 0 2rem;
}
.bio-facts{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.4rem 2rem;
  margin-top:2.4rem;
  padding-top:2rem;
  border-top:1px solid rgba(30,20,10,.12);
}
.bio-facts dt{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--wine); margin-bottom:.35rem; }
.bio-facts dd{ margin:0; font-family:var(--serif); font-size:1.05rem; }

@media (max-width:760px){
  .bio-grid{ grid-template-columns:1fr; }
  .bio-facts{ grid-template-columns:1fr 1fr; }
}

/* =========================================================
   Program — numbered theses (justified: real ordered priorities)
   ========================================================= */
.theses{ list-style:none; margin:0; padding:0; }
.thesis{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:1.6rem 2.2rem;
  padding:2.4rem 0;
  border-top:1px solid rgba(237,231,218,.14);
}
.thesis:last-child{ border-bottom:1px solid rgba(237,231,218,.14); }
.thesis .num{
  font-family:var(--serif);
  font-style:italic;
  font-size:2rem;
  color:var(--gold-light);
  line-height:1;
}
.thesis h3{
  font-size:1.35rem;
  margin:0 0 .6rem;
  font-weight:500;
  color:var(--text-light);
}
.thesis p{ margin:0; color:var(--text-light-mut); max-width:56ch; }

@media (max-width:640px){
  .thesis{ grid-template-columns:1fr; gap:.6rem; }
}

/* =========================================================
   Események — timeline
   ========================================================= */
.timeline{ list-style:none; margin:0; padding:0; }
.tl-item{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:1.8rem;
  padding:1.8rem 0;
  border-top:1px dashed rgba(30,20,10,.2);
}
.tl-item:last-child{ border-bottom:1px dashed rgba(30,20,10,.2); }
.tl-date{
  font-family:var(--serif);
  color:var(--wine);
}
.tl-date .day{ display:block; font-size:2.1rem; line-height:1; }
.tl-date .month{ font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mut); }
.tl-body h3{ margin:0 0 .4rem; font-size:1.2rem; font-weight:500; }
.tl-body .place{ font-size:.85rem; color:var(--text-mut); margin-bottom:.6rem; display:block; }
.tl-body p{ margin:0; color:var(--text-mut); }

@media (max-width:600px){
  .tl-item{ grid-template-columns:70px 1fr; }
  .tl-date .day{ font-size:1.5rem; }
}

/* =========================================================
   Hírek — cards
   ========================================================= */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.news-card{
  background:var(--paper);
  border:1px solid rgba(30,20,10,.1);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
}
.news-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px -22px rgba(30,20,10,.3); }
.news-thumb{
  aspect-ratio:16/10;
  background:linear-gradient(150deg,var(--parchment),#ddd3ba);
  display:flex; align-items:center; justify-content:center;
  color:var(--wine); opacity:.55;
}
.news-thumb svg{ width:38px; height:38px; }
.news-card .inner{ padding:1.5rem 1.6rem 1.8rem; }
.news-date{ font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--wine); }
.news-card h3{ font-size:1.15rem; margin:.6rem 0 .6rem; font-weight:500; }
.news-card p{ font-size:.92rem; color:var(--text-mut); margin:0 0 1rem; }
.news-card .more{ font-size:.82rem; font-weight:600; color:var(--ink-900); text-decoration:none; border-bottom:1px solid var(--gold); }

@media (max-width:900px){ .news-grid{ grid-template-columns:1fr; } }

/* =========================================================
   Kapcsolat
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);
}
.contact-info dl{ margin:2rem 0 0; }
.contact-info dt{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light); margin-bottom:.3rem; }
.contact-info dd{ margin:0 0 1.6rem; font-family:var(--serif); font-size:1.15rem; }
.contact-info dd a{ text-decoration:none; border-bottom:1px solid rgba(237,231,218,.4); }

.form-field{ margin-bottom:1.3rem; display:flex; flex-direction:column; gap:.5rem; }
.form-field label{ font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-light-mut); }
.form-field input, .form-field textarea{
  background:rgba(237,231,218,.06);
  border:1px solid rgba(237,231,218,.25);
  border-radius:var(--radius);
  padding:.85rem 1rem;
  color:var(--text-light);
  font-family:var(--sans);
  font-size:.95rem;
}
.form-field textarea{ resize:vertical; min-height:120px; }
.form-field input::placeholder, .form-field textarea::placeholder{ color:rgba(237,231,218,.35); }
.btn{
  display:inline-flex; align-items:center; gap:.6rem;
  background:var(--wine);
  color:var(--text-light);
  border:none;
  padding:.95rem 1.8rem;
  font-family:var(--sans);
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  border-radius:var(--radius);
  transition:background .25s ease, transform .2s ease;
}
.btn:hover{ background:var(--wine-light); transform:translateY(-2px); }
.btn-outline{
  background:transparent;
  color:var(--wine);
  border:1.5px solid var(--wine);
  margin-top:2.2rem;
}
.btn-outline:hover{ background:var(--wine); color:var(--text-light); }
.form-note{ font-size:.8rem; color:var(--text-light-mut); margin-top:.8rem; }

@media (max-width:800px){ .contact-grid{ grid-template-columns:1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background:var(--ink-900);
  color:var(--text-light-mut);
  padding:3rem 0 2.2rem;
  text-align:center;
  font-size:.82rem;
}
.site-footer .seal{ color:var(--gold-light); width:34px; margin:0 auto 1.2rem; }
.site-footer .fname{ font-family:var(--serif); color:var(--text-light); font-size:1.05rem; margin-bottom:.3rem; }
.site-footer .fnote{ margin-top:1.4rem; opacity:.6; }
