    :root {
      --bg: #f7f3f2;          /* Background */
      --text: #2e2c2b;        /* Body text */
      --primary: #283b57;     /* Main brand colour */
      --accent: #954c4c;      /* Buttons & interactive accents */
      --gold: #c3a372;        /* Secondary / highlight colour */
    }

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

    h1 {
    font-family: 'Cinzel Decorative', serif;
    }

    h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    }

    .cinzel-decorative {
    font-family: 'Cinzel Decorative', cursive;
    }

    header {
      background: var(--bg);
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--accent);
    }

    .logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .nav-toggle span {
      background: var(--text);
      height: 2px;
      margin: 4px 0;
      width: 25px;
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
        font-family: 'Cinzel', serif;

    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 2rem 1rem;
    }

    .hero {
      text-align: center;
      padding: 6rem 1rem 5rem;
      animation: fadeInDown 1s ease-in-out;
      background-color: #fff;
    }

    .hero h1 {
      font-size: 3.5rem;
      color: var(--gold);
    }

  .button {
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2.5rem; /* increased spacing here */
    transition: transform 0.3s, background 0.3s;
  }

    .button:hover {
      transform: scale(1.05);
      background: #652e2e; /* slightly darker */
    }

    section {
      margin-bottom: 3rem;
      animation: fadeInUp 1s ease-in-out;
    }

    .section-title {
      font-size: 2.5rem;
      font-family: 'Cinzel', serif;
      margin-bottom: 1.5rem;
      text-align: center;
      color: var(--text);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .card {
      padding: 1.5rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      animation: zoomIn 0.5s ease-in-out;
    }

    .hero h1 {
        font-size: 4rem;
        color: var(--gold);
        letter-spacing: 1px;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    /* Icon styling inside service cards */
    .card .icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 0.75rem;
    }

    .split-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .split-section > div {
      background: var(--accent);
      padding: 1.5rem;
      border-radius: 4px;
      color: #fff;
    }

    /* Reviews: add extra spacing between cards */
    #reviews .card {
      margin-bottom: 1.5rem;
  color: #000;


    }

    form input,
    form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    form button {
      width: 100%;
    }

    .map {
      width: 100%;
      height: 300px;
      border: none;
      margin: 1rem 0;
      border-radius: 4px;
    }

    footer {
      background: var(--primary);
      text-align: center;
      color: white;
      padding: 1rem;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .nav-toggle {
        display: flex;
      }

      nav {
        position: absolute;
        right: 0;
        top: 70px;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        display: none;
        padding: 1rem;
        border-top: 1px solid var(--accent);
      }

      nav.open {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
      }

      .split-section {
        grid-template-columns: 1fr;
      }
    }

    .hero h1 {
    font-size: 4rem; /* Bigger for drama */
    color: var(--gold);
    letter-spacing: 1px;
    }   

    /* Adjust nav background for mobile */
@media (max-width: 768px) {
  nav {
    background: var(--gold); /* to match header */
  }
}

/* General link styles to override browser defaults */
a {
  color: rgb(247, 242, 242);
  text-decoration: none;
}

a:visited {
  color: rgb(247, 242, 242);
}

a:hover {
  color: rgb(54, 12, 12);
}

.hero p {
  margin-bottom: 2rem;
}
