
:root {
  --paper: #ffffff; --tint: #f7f4fa; --ink: #2b2138; --plum: #46215a; --plum-deep: #331946;
  --teal: #0fa3a3; --brass: #c99a2e; --muted: #6f6580;
  --gold: #0fa3a3; --white: #ffffff; --white-soft: rgba(247,244,250,0.85);
  --light: #f7f4fa; --dark: #46215a; --black: #331946;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Karla', 'Segoe UI', sans-serif; color: var(--ink); background: var(--paper); line-height: 1.75; font-size: 16.5px; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.18; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.site-header { background: var(--paper); border-bottom: 1px solid #ece6f2; position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.hatmark { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: 'Fraunces', serif; font-size: 21px; font-weight: 700; color: var(--plum); }
.hatmark svg { width: 30px; height: 30px; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; font-size: 15px; color: var(--ink); }
.site-nav a:hover { color: var(--teal); }
.site-nav a.nav-cta { background: var(--teal); color: #fff; padding: 10px 22px; border-radius: 999px; font-weight: 700; }
.site-nav a.nav-cta:hover { background: var(--plum); }

/* shared vocabulary */
.hero { background: var(--plum); color: var(--white-soft); text-align: center; padding: 100px 24px; }
.hero.hero-inner { padding: 68px 24px; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); color: #fff; margin-bottom: 18px; }
.hero p { max-width: 640px; margin: 0 auto; }
.kicker { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.btn { display: inline-block; background: var(--teal); color: #fff; text-decoration: none; padding: 14px 34px; border-radius: 999px; font-weight: 700; font-size: 15.5px; border: 0; cursor: pointer; font-family: inherit; }
.btn:hover { background: var(--plum); }
.section { padding: 86px 0; }
.section-light { background: var(--tint); }
.section-dark { background: var(--plum); color: var(--white-soft); }
.section-black { background: var(--plum-deep); color: var(--white-soft); }
.section-dark h2, .section-black h2, .section-dark h3, .section-black h3 { color: #fff; }
.section-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; color: var(--plum); }
.section-dark .section h2 { color: #fff; }
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; }

/* homepage-specific */
.mh-hero { background: var(--plum); color: var(--white-soft); }
.mh-hero .split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.mh-hero .copy { padding: 90px 6vw 90px calc(max((100vw - 1120px) / 2, 24px)); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.mh-hero h1 { font-size: clamp(38px, 4.6vw, 60px); color: #fff; margin: 12px 0 20px; }
.mh-hero .lead { font-size: 18px; max-width: 460px; margin-bottom: 32px; }
.mh-hero .pic { min-height: 420px; background: url('/assets/images/gala.jpg') center/cover no-repeat; }
.ticket-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
.ticket { background: var(--paper); border-radius: 22px; border-top: 6px solid var(--brass); box-shadow: 0 6px 24px rgba(70,33,90,0.10); padding: 36px 32px; transform: rotate(-0.6deg); }
.ticket:nth-child(even) { transform: rotate(0.6deg); border-top-color: var(--teal); }
.ticket:hover { transform: rotate(0deg); }
.ticket h3 { font-size: 22px; color: var(--plum); margin-bottom: 10px; }
.ticket.wide { grid-column: 1 / -1; }
.steps-dotted { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; margin-top: 52px; text-align: center; }
.sd .ball { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: var(--plum); color: #fff; font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 3px dotted var(--brass); }
.sd h3 { font-size: 20px; color: var(--plum); margin-bottom: 8px; }
.why-band .container { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; }
.why-band img { max-width: 270px; border-radius: 20px; transform: rotate(2deg); }

.article { max-width: 780px; margin: 0 auto; padding: 64px 24px 90px; }
.article h1 { font-size: 34px; color: var(--plum); margin-bottom: 28px; }
.article h2 { font-size: 22px; margin: 32px 0 12px; color: var(--plum); }
.article p { margin-bottom: 14px; }
.article a { color: var(--teal); }

.contact-card { max-width: 640px; margin: 48px auto 0; background: var(--paper); border: 1px solid #ece6f2; border-radius: 22px; box-shadow: 0 6px 24px rgba(70,33,90,0.08); padding: 40px; }
.contact-card label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--plum); }
.contact-card input, .contact-card textarea { width: 100%; padding: 12px 14px; border: 1px solid #ded5e8; border-radius: 12px; background: var(--tint); font-family: inherit; font-size: 15px; margin-bottom: 18px; }
.contact-card input:focus, .contact-card textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }

.site-footer { background: var(--plum-deep); color: var(--white-soft); padding: 60px 0 0; font-size: 15px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 46px; padding-bottom: 44px; }
.site-footer .hatmark { color: #fff; margin-bottom: 12px; }
.site-footer h5 { font-family: 'Fraunces', serif; color: #fff; font-size: 16px; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--white-soft); text-decoration: none; }
.site-footer a:hover { color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(247,244,250,0.12); padding: 20px 0; font-size: 13px; text-align: center; }

@media (max-width: 880px) {
  .mh-hero .split { grid-template-columns: 1fr; }
  .mh-hero .copy { padding: 70px 24px; }
  .mh-hero .pic { min-height: 280px; }
  .ticket-grid, .steps-dotted { grid-template-columns: 1fr; }
  .why-band .container, .site-footer .cols { grid-template-columns: 1fr; }
  .why-band img { margin: 0 auto; }
  .site-nav { gap: 14px; flex-wrap: wrap; }
}
