
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f4ec;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
  }
  header {
    text-align: center;
    padding: 3rem 2rem 1rem;
  }
  header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
  }
  .section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
  }
  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-video {
    width: 100%;
    height: 70vh;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .hero-video iframe {
    width: 100%;
    height: 100%;
  }
  .video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
  .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
  }
  .press-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
  }
  .social-follow {
    text-align: center;
    margin-top: 2rem;
  }
  .social-follow a {
    color: #2b2b2b;
    font-weight: 500;
    text-decoration: underline;
  }