@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
      --color-accent: #991b1b;
      --color-linen: #fdf6e2;
      --color-dark: #111827;
      --color-light-grey: #f9fafb;
      --color-border: #f3f4f6;
      --font-display: 'Playfair Display', serif;
      --font-body: 'Source Sans 3', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--color-dark);
      background: #ffffff;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header & Navigation */
    header {
      background: #ffffff;
      border-bottom: 1px solid var(--color-border);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-dark);
      text-decoration: none;
      letter-spacing: -0.5px;
    }

    nav {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--color-dark);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease;
      padding-bottom: 0.25rem;
    }

    nav a:hover {
      border-bottom-color: var(--color-accent);
    }

    nav a.active {
      border-bottom-color: var(--color-accent);
    }

    /* Typography */
    h1 {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      color: var(--color-dark);
      letter-spacing: -1px;
    }

    h2 {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-dark);
      letter-spacing: -0.5px;
    }

    h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-dark);
    }

    p {
      font-size: 1rem;
      line-height: 1.7;
      color: #4b5563;
    }

    .subheading {
      font-size: 1.25rem;
      line-height: 1.6;
      color: #6b7280;
      font-weight: 400;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 0.875rem 2rem;
      background: var(--color-accent);
      color: #ffffff;
      text-decoration: none;
      border: none;
      border-radius: 0.375rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .btn:hover {
      background: #a83a0a;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--color-accent);
      border: 1.5px solid var(--color-accent);
    }

    .btn-secondary:hover {
      background: var(--color-linen);
    }

    /* Sections */
    section {
      padding: 5rem 2rem;
    }

    .section-narrow {
      max-width: 700px;
      margin: 0 auto;
    }

    .section-wide {
      width: 100%;
    }

    /* Hero Section */
    #hero {
      background: #ffffff;
      padding: 6rem 2rem;
      text-align: center;
    }

    .hero-content {
      max-width: 700px;
      margin: 0 auto;
    }

    #hero h1 {
      margin-bottom: 1.5rem;
    }

    #hero .subheading {
      margin-bottom: 2.5rem;
      font-size: 1.3rem;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Atmosphere Intro */
    #atmosphere_intro {
      background: var(--color-linen);
      padding: 5rem 2rem;
    }

    .atmosphere-content {
      max-width: 700px;
      margin: 0 auto;
    }

    #atmosphere_intro h2 {
      margin-bottom: 1rem;
    }

    #atmosphere_intro .subheading {
      margin-bottom: 2rem;
    }

    .atmosphere-text {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2.5rem;
      align-items: start;
    }

    .atmosphere-text p {
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .atmosphere-text {
        grid-template-columns: 1fr;
      }
    }

    /* Who We Serve */
    #who_we_serve {
      background: #ffffff;
      padding: 5rem 2rem;
    }

    .who-content {
      max-width: 700px;
      margin: 0 auto;
    }

    #who_we_serve h2 {
      margin-bottom: 1rem;
    }

    #who_we_serve .subheading {
      margin-bottom: 2.5rem;
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .value-card {
      padding: 2rem;
      background: var(--color-light-grey);
      border-radius: 0.5rem;
      text-align: center;
    }

    .value-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      color: var(--color-accent);
    }

    .value-card p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .values-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Core Experience / How It Works */
    #core_experience {
      background: #ffffff;
      padding: 5rem 2rem;
    }

    .experience-content {
      max-width: 700px;
      margin: 0 auto;
    }

    #core_experience h2 {
      margin-bottom: 1rem;
    }

    #core_experience .subheading {
      margin-bottom: 3rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .step {
      padding: 2rem 1.5rem;
      background: var(--color-light-grey);
      border-radius: 0.5rem;
      text-align: center;
      position: relative;
    }

    .step-number {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-accent);
      margin-bottom: 1rem;
    }

    .step h3 {
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }

    .step p {
      font-size: 0.85rem;
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    /* Venue Preview */
    #venue_preview {
      background: var(--color-linen);
      padding: 5rem 2rem;
    }

    .venue-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .venue-text h2 {
      margin-bottom: 1rem;
    }

    .venue-text .subheading {
      margin-bottom: 1.5rem;
    }

    .venue-text p {
      margin-bottom: 1.5rem;
    }

    .venue-image {
      position: relative;
      height: 400px;
      border-radius: 0.5rem;
      overflow: hidden;
    }

    .venue-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .venue-wrapper {
        grid-template-columns: 1fr;
      }

      .venue-image {
        height: 300px;
      }
    }

    /* CTA Block */
    #cta_block {
      background: #ffffff;
      padding: 5rem 2rem;
      text-align: center;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    #cta_block h2 {
      margin-bottom: 1rem;
    }

    #cta_block .subheading {
      margin-bottom: 2.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Footer */
    footer {
      background: var(--color-dark);
      color: #ffffff;
      padding: 3rem 2rem 1rem;
      margin-top: 5rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .footer-brand h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #ffffff;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: #d1d5db;
      line-height: 1.6;
    }

    .footer-nav h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-nav ul {
      list-style: none;
    }

    .footer-nav a {
      color: #d1d5db;
      text-decoration: none;
      font-size: 0.9rem;
      line-height: 1.8;
      transition: color 0.3s ease;
    }

    .footer-nav a:hover {
      color: var(--color-accent);
    }

    .footer-contact h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-contact p {
      font-size: 0.9rem;
      color: #d1d5db;
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    .footer-contact a {
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact a:hover {
      color: var(--color-accent);
    }

    .footer-bottom {
      border-top: 1px solid #374151;
      padding-top: 2rem;
      text-align: center;
      font-size: 0.85rem;
      color: #9ca3af;
    }

    @media (max-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      .subheading {
        font-size: 1.1rem;
      }

      header {
        padding: 1rem 1.5rem;
      }

      .header-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
      }

      nav {
        flex-direction: column;
        gap: 1rem;
      }

      section {
        padding: 3rem 1.5rem;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        text-align: center;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
