  @font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/fraunces-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/oswald-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/work-sans-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/work-sans-latin-500-normal.woff2') format('woff2');
}

:root {
    --paper: #F3EDE0;
    --card: #FFFDF8;
    --ink: #22291F;
    --red: #C13A2E;
    --gold: #D19A3A;
    --wood: #5B3A29;
    --text-secondary: #5A5A52;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--paper);
    font-family: 'Work Sans', sans-serif;
    color: var(--ink);
  }

  header {
    background: var(--ink);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .logo {
    color: var(--paper);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
  }

  header .tagline {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  main {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .date-box-wrap {
    text-align: center;
    padding: 32px 0 8px;
  }

  .date-box {
    display: inline-block;
    background: var(--card);
    border: 1.5px dashed var(--red);
    border-radius: 6px;
    padding: 18px 32px;
    transform: rotate(-1deg);
  }

  .date-box .label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 8px;
  }

  .date-box .datetime {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 21px;
    color: var(--ink);
  }

  .date-box .venue {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
  }

  .hero {
    text-align: center;
    padding: 32px 8px 24px;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 48px;
    margin: 0;
    line-height: 1;
  }

  .hero h1 .qmark {
    color: var(--red);
  }

  .hero p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 12px auto 0;
    line-height: 1.6;
  }

  .card {
    background: var(--card);
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin-bottom: 16px;
  }

  .card h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--red);
    margin: 0 0 8px;
  }

  .card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .team-section {
    background: var(--ink);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
  }

  .team-section h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--gold);
    margin: 0 0 10px;
  }

  .team-section > p {
    font-size: 15px;
    color: var(--paper);
    line-height: 1.6;
    margin: 0 0 20px;
  }

  .team-photos {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
  }

  .team-photo { flex: 1; margin: 0; }

  .team-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }

  .team-photo figcaption {
    font-size: 12px;
    color: #B8B4A8;
    text-align: center;
    margin-top: 8px;
  }

  .team-section h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--gold);
    margin: 0 0 6px;
  }

  .team-section .booking p {
    font-size: 15px;
    color: var(--paper);
    line-height: 1.6;
    margin: 0;
  }
  
  .booking-link {
    color: var(--gold);
  }

  footer {
    background: var(--ink);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
  }

  footer span {
    color: #999;
    font-size: 12px;
  }

  footer a {
    color: var(--gold);
    font-size: 12px;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  @media (max-width: 520px) {
    .hero h1 { font-size: 36px; }
    .team-photos { flex-direction: column; }
    .team-photo img { height: 260px; }
    .date-box { padding: 16px 20px; }
  }
