@import url('https://fonts.googleapis.com/css2?family=Rye&family=Playfair+Display:wght@600;800&family=Great+Vibes&display=swap');

:root{
  --ivory:#fff5e7;
  --paper:#faead2;
  --ink:#1d1514;
  --rose:#c72e69;
  --wine:#8d1748;
  --teal:#005d63;
  --orange:#e16d22;
  --gold:#d6a141;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(199,46,105,.18), transparent 25%),
    radial-gradient(circle at 90% 100%, rgba(0,93,99,.18), transparent 30%),
    linear-gradient(180deg,var(--ivory),var(--paper));
  font-family:'Playfair Display', Georgia, serif;
}
.topbar{
  background:var(--wine);
  color:#fff;
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  padding:10px 16px;
  font-weight:800;
  position:sticky;
  top:0;
  z-index:10;
}
.site-frame{
  max-width:1240px;
  margin:16px auto 34px;
  border:7px solid #111;
  border-radius:34px;
  background:rgba(255,245,231,.98);
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  overflow:hidden;
  position:relative;
}
.dot-border{
  position:absolute;
  inset:18px;
  border:4px dotted var(--rose);
  border-radius:24px;
  pointer-events:none;
  opacity:.9;
}
.hero{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:24px;
  padding:42px 48px 30px;
  position:relative;
}
.hero-art img{
  width:100%;
  border:4px solid var(--wine);
  border-radius:24px;
  display:block;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}
.hero-copy{text-align:center}
.eyebrow{
  color:var(--teal);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:2px;
}
h1{
  font-family:'Rye', Georgia, serif;
  font-size:clamp(3rem,7vw,6.2rem);
  margin:0;
  line-height:.95;
  text-shadow:3px 3px 0 rgba(199,46,105,.22);
}
h1 span{
  display:block;
  font-family:'Great Vibes', cursive;
  color:var(--wine);
  font-size:.82em;
  text-shadow:none;
}
.tagline{
  margin:22px auto;
  padding:14px;
  border-top:3px solid var(--wine);
  border-bottom:3px solid var(--wine);
  font-weight:900;
  text-transform:uppercase;
}
.btn{
  display:inline-block;
  background:var(--wine);
  color:#fff;
  text-decoration:none;
  padding:13px 22px;
  border-radius:999px;
  border:3px solid #111;
  font-weight:900;
  cursor:pointer;
  font-family:'Playfair Display', Georgia, serif;
  font-size:1rem;
}
.btn.alt{background:var(--teal)}
.hero-buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.nav{
  background:var(--teal);
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px;
  border-top:5px solid #111;
  border-bottom:5px solid #111;
  padding:12px;
  position:sticky;
  top:41px;
  z-index:9;
}
.nav a{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  padding:8px 14px;
  border-right:3px dotted rgba(255,255,255,.55);
}
.nav a:last-child{border-right:0}
.section{
  margin:34px 48px;
  padding:30px;
  border:3px solid var(--wine);
  border-radius:24px;
  background:rgba(255,255,255,.46);
  position:relative;
}
.section h2{
  text-align:center;
  font-family:'Rye', Georgia, serif;
  font-size:clamp(1.8rem,4vw,3rem);
  margin:0 0 20px;
}
.intro p{
  text-align:center;
  max-width:850px;
  margin:0 auto;
  font-size:1.22rem;
  line-height:1.55;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.card{
  background:#fff9ef;
  border:3px solid var(--wine);
  border-radius:18px;
  padding:18px;
  text-align:center;
  min-height:176px;
}
.icon{
  font-size:2.2rem;
}
.card h3{
  color:var(--wine);
  margin:8px 0;
  text-transform:uppercase;
}
.event-strip{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
  text-align:center;
}
.event-strip span{
  border-right:3px dotted var(--rose);
  padding:10px;
  font-weight:900;
}
.event-strip span:last-child{border-right:0}
.split{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:24px;
  line-height:1.55;
}
.note-box{
  border:3px dotted var(--rose);
  border-radius:20px;
  padding:18px;
  background:#fff9ef;
}
.note-box h3{
  color:var(--wine);
  text-align:center;
  text-transform:uppercase;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
label{
  display:block;
  font-weight:900;
}
input,textarea{
  width:100%;
  border:2px solid var(--wine);
  border-radius:10px;
  padding:12px;
  margin-top:6px;
  background:#fffdf8;
  font:inherit;
}
textarea{min-height:130px}
fieldset{
  margin:20px 0;
  border:3px dotted var(--rose);
  border-radius:18px;
  padding:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
legend{
  color:var(--wine);
  font-weight:900;
  text-transform:uppercase;
  padding:0 10px;
}
fieldset input{width:auto;margin-right:8px}
footer{
  text-align:center;
  padding:36px 24px 44px;
  background:linear-gradient(90deg,rgba(199,46,105,.18),rgba(0,93,99,.18),rgba(225,109,34,.16));
  border-top:6px solid #111;
}
footer h2{
  font-family:'Rye', Georgia, serif;
  margin:0 0 12px;
}
footer p{margin:6px 0;font-weight:900}
@media(max-width:950px){
  .hero,.split{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .event-strip{grid-template-columns:repeat(2,1fr)}
  .form-grid,fieldset{grid-template-columns:1fr}
  .section,.hero{margin:20px;padding:22px}
  .topbar{position:static}
  .nav{position:static}
}
@media(max-width:560px){
  .cards{grid-template-columns:1fr}
  .site-frame{border-radius:20px;margin:0;border-width:4px}
  .dot-border{display:none}
}
