/* Kaplica Sykstyńska — static site styles */

:root{
  --ink:#2b2119;
  --parchment:#f6efe1;
  --parchment-dark:#ece0c8;
  --maroon:#6e1423;
  --maroon-dark:#4a0d18;
  --gold:#b9892f;
  --gold-light:#d9b45c;
  --border:#d8c8a0;
  --max-width:1080px;
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:"Georgia","Iowan Old Style",serif;
  background:var(--parchment);
  color:var(--ink);
  line-height:1.65;
}

h1,h2,h3{
  font-family:"Trajan Pro","Cinzel","Georgia",serif;
  color:var(--maroon-dark);
  line-height:1.25;
  letter-spacing:0.01em;
}

h1{font-size:2rem;margin:0 0 .5rem;}
h2{font-size:1.5rem;margin:2.2rem 0 .8rem;border-bottom:2px solid var(--gold);padding-bottom:.3rem;}
h3{font-size:1.2rem;margin:1.6rem 0 .6rem;color:var(--maroon);}

a{color:var(--maroon);}
a:hover{color:var(--gold);}

p{margin:0 0 1rem;}

img{max-width:100%;height:auto;display:block;}

/* header */
.site-header{
  background:var(--maroon-dark);
  border-bottom:4px solid var(--gold);
}
.site-header .wrap{
  max-width:var(--max-width);
  margin:0 auto;
  padding:1rem 1.2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:.6rem;
}
.site-title{
  font-family:"Trajan Pro","Cinzel","Georgia",serif;
  color:var(--parchment);
  font-size:1.4rem;
  margin:0;
  text-decoration:none;
}
.site-title:hover{color:var(--gold-light);}
.site-description{
  color:var(--gold-light);
  font-size:.85rem;
  margin:.1rem 0 0;
}
nav.site-nav ul{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:1.2rem;
  margin:0;
  padding:0;
}
nav.site-nav a{
  color:var(--parchment);
  text-decoration:none;
  font-family:"Trajan Pro","Cinzel","Georgia",serif;
  font-size:.9rem;
  letter-spacing:.03em;
  text-transform:uppercase;
}
nav.site-nav a:hover{color:var(--gold-light);}

/* hero — full-bleed, sibling of main */
.hero{
  position:relative;
  width:100%;
  min-height:min(72vh,520px);
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(30,10,10,.15) 0%, rgba(20,7,7,.86) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  max-width:var(--max-width);
  margin:0 auto;
  padding:2.5rem 1.2rem 2.8rem;
  color:var(--parchment);
  width:100%;
}
.hero-content h1{color:#fff;font-size:2.3rem;max-width:40rem;}
.hero-content p.lead{
  color:var(--parchment);
  font-size:1.1rem;
  max-width:38rem;
  margin-bottom:1.4rem;
}

/* CTA buttons */
.cta-button{
  display:inline-block;
  background:var(--gold);
  color:#2b1a05;
  font-family:"Trajan Pro","Cinzel","Georgia",serif;
  font-weight:bold;
  text-decoration:none;
  padding:.85rem 1.6rem;
  border-radius:3px;
  letter-spacing:.03em;
  border:1px solid var(--gold-light);
}
.cta-button:hover{background:var(--gold-light);color:#2b1a05;}
.cta-button.secondary{
  background:transparent;
  color:var(--parchment);
  border:1px solid var(--gold-light);
}
.cta-button.secondary:hover{background:rgba(255,255,255,.12);color:var(--parchment);}
.cta-row{display:flex;flex-wrap:wrap;gap:1rem;}

/* main content */
main{
  max-width:var(--max-width);
  margin:0 auto;
  padding:2.6rem 1.2rem 3rem;
}
main img{
  border:1px solid var(--border);
  border-radius:4px;
  margin:0 0 1.2rem;
  max-height:520px;
  object-fit:cover;
  width:100%;
}

.section-image{max-height:420px;}

/* facts table */
.facts-table{
  width:100%;
  border-collapse:collapse;
  margin:1.4rem 0 1.8rem;
  background:#fff;
}
.facts-table th,.facts-table td{
  text-align:left;
  padding:.7rem .9rem;
  border:1px solid var(--border);
}
.facts-table th{
  background:var(--parchment-dark);
  width:35%;
  color:var(--maroon-dark);
}

/* generic tables (pricing) */
table.price-table{
  width:100%;
  border-collapse:collapse;
  margin:1.2rem 0 1.8rem;
  background:#fff;
}
table.price-table th,table.price-table td{
  text-align:left;
  padding:.65rem .8rem;
  border:1px solid var(--border);
}
table.price-table th{background:var(--maroon-dark);color:var(--parchment);}
table.price-table tr:nth-child(even) td{background:var(--parchment-dark);}

/* testimonials */
.testimonials{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.1rem;
  margin:1.4rem 0 1.8rem;
}
.testimonial{
  background:#fff;
  border:1px solid var(--border);
  border-left:4px solid var(--gold);
  border-radius:4px;
  padding:1rem 1.1rem;
}
.testimonial p{margin:0 0 .5rem;font-style:italic;}
.testimonial .author{
  font-style:normal;
  font-weight:bold;
  color:var(--maroon);
  font-size:.9rem;
}

/* FAQ */
.faq-item{
  border-bottom:1px solid var(--border);
  padding:1.1rem 0;
}
.faq-item h2{border-bottom:none;margin:0 0 .5rem;font-size:1.15rem;}

/* callout / note box */
.note-box{
  background:var(--parchment-dark);
  border-left:4px solid var(--maroon);
  padding:1rem 1.2rem;
  margin:1.2rem 0 1.8rem;
  border-radius:3px;
}

/* footer */
footer.site-footer{
  background:var(--maroon-dark);
  color:var(--parchment);
  border-top:4px solid var(--gold);
}
footer.site-footer .wrap{
  max-width:var(--max-width);
  margin:0 auto;
  padding:2rem 1.2rem;
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  justify-content:space-between;
}
footer.site-footer h2{
  color:var(--gold-light);
  font-size:1rem;
  border:none;
  margin:0 0 .7rem;
}
footer.site-footer a{
  color:var(--parchment);
  text-decoration:none;
}
footer.site-footer a:hover{color:var(--gold-light);}
footer.site-footer ul{list-style:none;margin:0;padding:0;}
footer.site-footer li{margin-bottom:.4rem;}
.footer-bottom{
  text-align:center;
  padding:1rem;
  font-size:.8rem;
  background:#3a0a11;
  color:var(--gold-light);
}

/* mobile */
@media (max-width:640px){
  .hero{min-height:60vh;}
  .hero-content h1{font-size:1.7rem;}
  main img,.section-image{max-height:260px;}
  nav.site-nav ul{gap:.8rem;}
  footer.site-footer .wrap{flex-direction:column;gap:1.3rem;}
}
