:root{
  --bg: #f6f1ea;            /* cream */
  --text: #1f1f1f;          /* near-black */
  --muted: #5a5a5a;         /* warm gray */

  /* LINES + SURFACES (softer = less UI-kit) */
  --line: rgba(31,31,31,.11);
  --line-strong: rgba(31,31,31,.16);

  --card: rgba(255,255,255,.52);
  --card2: rgba(255,255,255,.34);

  /* Shadow slightly tighter + more “paper” */
  --shadow: 0 16px 42px rgba(0,0,0,.06);

  --accent: #0a7ea4;        /* restrained VirWave teal */
  --gold: rgba(171, 130, 72, .38); /* subtle brushed gold */

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --radius: 18px;

  /* Rhythm */
  --section-pad: 84px;

  /* Focus */
  --focus: color-mix(in srgb, var(--accent) 48%, transparent);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a, button, input, select { -webkit-tap-highlight-color: transparent; }

.skip-link{
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}
.skip-link:focus{ left: 10px; z-index: 999; }

.container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
}

.section{
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
}

/* Subtle “paper wash” behind band sections */
.wide-band{
  background:
    radial-gradient(1200px 500px at 30% 0%, rgba(255,255,255,.34), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.16));
}

/* Reduce the “template box” feeling: thinner border, softer fill, slightly more radius */
.wide-band .container{
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255,255,255,.20);
  box-shadow: var(--shadow);
  padding: 38px 34px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 234, 0.84);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 72px;
}

.brand-link{
  font-family: var(--serif);
  letter-spacing: .20em;
  font-size: 18px;
  text-decoration: none;
  color: var(--text);
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav a{
  color: var(--text);
  text-decoration: none;
  font-size: 13px;                 /* slightly smaller = more luxe */
  letter-spacing: .08em;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(255,255,255,.28);
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.hero{
  border-top: 0;
  padding-top: 66px;
  /* add depth without “designy” */
  background:
    radial-gradient(900px 420px at 18% 20%, rgba(255,255,255,.30), transparent 62%),
    radial-gradient(900px 420px at 82% 10%, rgba(255,255,255,.18), transparent 62%);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hero-title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.03;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.hero-subtitle{
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin: 12px 0 10px 0;
}

.hero-note{
  margin: 16px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 64ch;
}

.hero-rule{
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* Buttons: reduce “app UI” feel. Softer fill, better hover */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, var(--gold));
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.30);
  transition: transform .10s ease, background .14s ease, box-shadow .14s ease;
  font-size: 14px;
  letter-spacing: .02em;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.46);
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
}
.btn:active{ transform: translateY(0px); }
.btn:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.btn-ghost{
  background: transparent;
  border: 1px solid var(--line);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  margin: 0;
  letter-spacing: -0.01em;
}

.lead{
  font-size: 16px;
  max-width: 70ch;
  margin: 0 0 12px 0;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.origin-grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items:center;
}

.portrait-card{
  margin: 0;
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.portrait{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display:block;
  filter: contrast(1.02) saturate(.98);
}

.portrait-caption{
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
}

.micro-pillars{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill{
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  font-size: 13px;
}

/* Cards: make them feel more like “paper” */
.card-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card{
  display:grid;
  grid-template-columns: minmax(200px, .95fr) minmax(0, 1.45fr) auto;
  align-items:start;
  column-gap: 24px;
  row-gap: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 26px 22px; /* slightly roomier */
  transition: transform .12s ease, box-shadow .14s ease, background .14s ease;
}
.card:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 52px rgba(0,0,0,.07);
  background: rgba(255,255,255,.58);
}

.card.subtle{
  background: var(--card2);
  box-shadow: none;
}
.card-eyebrow{
  grid-column: 1 / -1;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.card-title{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.card-text{
  margin: 0;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
}
.card-actions{
  justify-self: end;
  align-self: end;
}

.link{
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  padding-bottom: 2px;
}
.link:hover{
  color: color-mix(in srgb, var(--text) 80%, var(--accent));
  border-bottom-color: var(--accent);
}

.events-wrap{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items:start;
}

.events-list{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.26);
}

.event{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  padding: 18px 18px; /* a touch more padding */
  border-top: 1px solid var(--line);
}
.event:first-child{ border-top: 0; }

.event-title{
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 2px;
}

.event-meta{
  font-size: 13px;
  color: var(--muted);
}

.event-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 8px;
}

.event-date{
  font-size: 13px;
  color: var(--muted);
}

.event-link{
  text-decoration:none;
  color: var(--text);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.event-link:hover{
  border-bottom-color: var(--accent);
  color: color-mix(in srgb, var(--text) 80%, var(--accent));
}

.quote-block{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.24);
  padding: 22px 18px;
}
.quote{
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 10px 0;
}

.signup-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.26);
  padding: 22px 18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 14px;
}

.label{
  font-size: 13px;
  color: var(--muted);
}

input, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.52);
  font: inherit;
  color: var(--text);
}
input:focus, select:focus{
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.list{
  margin: 10px 0 0 18px;
  padding: 0;
  color: var(--muted);
}
details summary{
  cursor: pointer;
  margin-top: 10px;
}

.chips{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.chip{
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.22);
  padding: 14px 14px;
  text-align:center;
  font-size: 13px;
  letter-spacing: .02em;
  transition: background .14s ease, transform .12s ease;
}
.chip:hover{
  background: rgba(255,255,255,.32);
  transform: translateY(-1px);
}

.contact-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
}
.contact-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.site-footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.dot{ margin: 0 8px; }

@media (max-width: 980px){
  :root{ --section-pad: 74px; }
  .wide-band .container{ padding: 26px 22px; }
  .origin-grid{ grid-template-columns: 1fr; }
  .portrait{ height: 460px; }
  .card{
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .card-actions{ justify-self: start; }
  .events-wrap{ grid-template-columns: 1fr; }
  .signup-grid{ grid-template-columns: 1fr; }
  .chips{ grid-template-columns: 1fr 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .contact-inner{ flex-direction:column; align-items:flex-start; }
}