:root {
    --ink: #13110f;
    --ink-2: #1f1b17;
    --ink-3: #0a0806;
    --gold: #cfaf4f;
    --gold-light: #e3c977;
    --red: #ab2e32;
    --red-dark: #7c2226;
    --red-deep: #5e181c;
    --cream: #faf0de;
    --cream-2: #f4eedb;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
  }
  h1, h2, h3, .brand { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

  /* Header */
  header {
    background: var(--cream);
    color: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 2px 10px rgba(19,17,15,0.08);
  }
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 24px 6px;
    max-width: 1180px;
    margin: 0 auto;
  }
  .brand-link { display: flex; align-items: center; }
  .brand-logo { height: 58px; width: auto; }
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  nav a {
    font-size: 14.5px;
    white-space: nowrap;
    font-weight: 600;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--red); }
  .nav-cta {
    white-space: nowrap;
    background: var(--red);
    color: var(--cream) !important;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
  }
  .nav-cta:hover { background: var(--red-dark); }
  .menu-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 26px; cursor: pointer; }

  /* Light-string banner top border, cropped from the logo's ornament string */
  .light-banner { position: relative; }
  .light-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 26px;
    background-image: url('assets/light-string-tile.png');
    background-repeat: repeat-x;
    background-position: top left;
    background-size: auto 100%;
    z-index: 1;
  }

  /* Hero */
  .hero {
    background:
      linear-gradient(160deg, rgba(171,46,50,0.94), rgba(171,46,50,0.82)),
      repeating-linear-gradient(45deg, #7c2226, #7c2226 40px, #601a1d 40px, #601a1d 80px);
    color: var(--cream);
    padding: 90px 24px 90px;
    text-align: center;
  }
  .hero h1 {
    font-size: 42px;
    max-width: 750px;
    margin: 0 auto 18px;
    line-height: 1.25;
    color: var(--cream);
  }
  .hero .gold-text { color: var(--gold); }
  .hero p {
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
    color: var(--cream);
  }
  .btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Playfair Display', Georgia, serif;
    transition: transform 0.15s, background 0.2s;
  }
  .btn-primary { background: var(--gold); color: var(--ink); }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline { background: transparent; border: 2px solid var(--cream); color: var(--cream); margin-left: 14px; }
  .btn-outline:hover { background: rgba(250,240,222,0.12); }

  /* Section generic */
  section { padding: 80px 24px; }
  section[id] { scroll-margin-top: 110px; }
  .section-head { text-align: center; margin-bottom: 50px; }
  .section-head .eyebrow {
    color: var(--red);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    font-family: 'Playfair Display', Georgia, serif;
  }
  .section-head h2 {
    font-size: 32px;
    margin-top: 8px;
    color: var(--ink);
  }
  .section-head p { max-width: 560px; margin: 14px auto 0; color: var(--ink); }

  /* Services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    background: var(--red);
    border-radius: 8px;
    padding: 32px 26px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 4px 14px rgba(19,17,15,0.08);
    transition: transform 0.3s;
  }
  .service-card:hover { transform: scale(1.05); }
  .service-card .icon {
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin-bottom: 16px;
  }
  .service-card h3 { color: var(--cream); font-size: 19px; margin-bottom: 10px; }
  .service-card p { color: var(--cream); font-size: 15px; }

  /* How it works */
  .how {
    background:
      linear-gradient(160deg, rgba(171,46,50,0.94), rgba(171,46,50,0.82)),
      repeating-linear-gradient(45deg, #7c2226, #7c2226 40px, #601a1d 40px, #601a1d 80px);
    color: var(--cream);
  }
  .how .section-head .eyebrow { color: var(--gold); }
  .how .section-head h2 { color: var(--cream); }
  .how .section-head p { color: var(--cream); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step { text-align: center; }
  .step .num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    margin: 0 auto 14px;
    font-family: 'Playfair Display', Georgia, serif;
  }
  .step h3 { font-size: 16px; margin-bottom: 8px; color: var(--cream); }
  .step p { font-size: 14px; color: var(--cream); }

  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(19,17,15,0.15);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }
  .gallery-item:hover img { transform: scale(1.05); }

  /* Garland divider */
  .garland-divider {
    background: var(--cream);
    padding: 6px 0 18px;
  }
  .garland-svg { display: block; width: 100%; height: auto; }

  /* Testimonials */
  .testimonials { background: var(--cream); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .testi-card {
    background: var(--red);
    border-radius: 8px;
    padding: 28px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 14px rgba(19,17,15,0.2);
    transition: transform 0.3s;
  }
  .testi-card:hover { transform: scale(1.05); }
  .testi-card .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
  .testi-card p { font-style: italic; color: var(--cream); margin-bottom: 14px; font-size: 15px; }
  .testi-card .name { font-weight: 700; font-family: 'Playfair Display', Georgia, serif; color: var(--cream); font-size: 14px; }

  /* Quote form */
  .quote {
    background:
      linear-gradient(160deg, rgba(171,46,50,0.94), rgba(171,46,50,0.82)),
      repeating-linear-gradient(45deg, #7c2226, #7c2226 40px, #601a1d 40px, #601a1d 80px);
    color: var(--cream);
  }
  .quote .section-head .eyebrow { color: var(--gold); }
  .quote .section-head h2, .quote .section-head p { color: var(--cream); }
  .quote-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }
  .quote-info h3 { font-size: 20px; margin-bottom: 16px; color: var(--gold); }
  .quote-info ul { list-style: none; margin-bottom: 24px; }
  .quote-info li { margin-bottom: 12px; font-size: 15px; color: #e6ddc7; }
  .quote-info .contact-line { font-size: 22px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', Georgia, serif; margin-top: 10px; }
  .quote-cta-panel {
    background: var(--cream);
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 38px 32px;
    color: var(--ink);
    text-align: center;
    box-shadow: 0 8px 24px rgba(19,17,15,0.25);
  }
  .quote-cta-panel h3 {
    font-size: 24px;
    color: var(--red);
    margin-bottom: 12px;
  }
  .quote-cta-panel p { font-size: 15px; margin-bottom: 24px; }
  .quote-cta-panel .btn { width: 100%; border: none; cursor: pointer; }
  .quote-cta-note { font-size: 12px; margin-top: 14px; margin-bottom: 0 !important; }

  /* Footer */
  footer {
    background: var(--cream);
    color: var(--ink);
    padding: 40px 24px 24px;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid var(--gold);
  }
  footer .brand-logo { height: 48px; width: auto; margin: 0 auto 16px; }
  footer p { margin-bottom: 6px; }
  footer .fine { margin-top: 18px; color: var(--ink); font-size: 12px; }

  /* Responsive */
  @media (max-width: 860px) {
    .services-grid, .steps, .gallery-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-wrap { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    nav ul, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    nav.open ul {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px; left: 0; right: 0;
      background: var(--cream);
      padding: 20px 24px;
      gap: 18px;
      box-shadow: 0 8px 14px rgba(19,17,15,0.1);
    }
    nav.open .nav-cta { display: inline-block; margin-top: 6px; }
    .hero h1 { font-size: 30px; }
    .services-grid, .steps, .gallery-grid, .testi-grid { grid-template-columns: 1fr; }
    .btn-outline { margin-left: 0; margin-top: 12px; }
    .brand-logo { height: 52px; }
  }

/* ============================================================
   Multi-page additions
   ============================================================ */

/* Active nav state */
nav a.active { color: var(--red); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* Page header (interior pages) */
.page-header {
  background:
    linear-gradient(160deg, rgba(171,46,50,0.94), rgba(171,46,50,0.82)),
    repeating-linear-gradient(45deg, #7c2226, #7c2226 40px, #601a1d 40px, #601a1d 80px);
  color: var(--cream);
  padding: 62px 24px 58px;
  text-align: center;
}
.page-header .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.page-header h1 { font-size: 38px; max-width: 780px; margin: 0 auto 14px; line-height: 1.25; }
.page-header .gold-text { color: var(--gold); }
.page-header p { font-size: 17px; max-width: 620px; margin: 0 auto; }
@media (max-width: 640px) { .page-header h1 { font-size: 27px; } }

/* Home teaser cards */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.teaser-card {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(19,17,15,0.12);
  transition: transform 0.3s;
  display: flex; flex-direction: column;
}
.teaser-card:hover { transform: scale(1.04); }
.teaser-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.teaser-body { padding: 22px 22px 26px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.teaser-body h3 { font-size: 20px; color: var(--red); margin-bottom: 8px; }
.teaser-body p { font-size: 14.5px; color: var(--ink); flex: 1; margin-bottom: 16px; }
.teaser-link { font-weight: 700; color: var(--red); font-size: 14px; letter-spacing: 0.4px; }
.teaser-link:hover { color: var(--red-dark); }

/* Mid-page CTA band */
.cta-band {
  background: var(--cream-2);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  text-align: center;
  padding: 58px 24px;
}
.cta-band h2 { font-size: 28px; color: var(--red); margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 24px; color: var(--ink); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(19,17,15,0.08);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--red); }
.faq-q .chev { color: var(--gold); font-size: 20px; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 15px; color: var(--ink); }
.faq-item.open .faq-a { display: block; }

/* Service areas */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 860px; margin: 0 auto; }
.area-col {
  background: var(--red);
  color: var(--cream);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: 0 4px 14px rgba(19,17,15,0.15);
}
.area-col h3 { color: var(--gold); font-size: 21px; margin-bottom: 14px; }
.area-col ul { list-style: none; columns: 2; column-gap: 20px; }
.area-col li { font-size: 15px; margin-bottom: 8px; }

/* About page */
.about-wrap { max-width: 780px; margin: 0 auto; }
.about-wrap p { font-size: 16.5px; margin-bottom: 18px; }
.about-wrap p:last-child { margin-bottom: 0; }
.pull-quote {
  border-left: 4px solid var(--gold);
  background: var(--cream-2);
  border-radius: 8px;
  padding: 24px 26px;
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--red);
}

/* Calendly embed */
.calendly-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
  border: 3px solid var(--gold);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(19,17,15,0.25);
}
.calendly-inline-widget { min-width: 320px; height: 720px; }
@media (max-width: 640px) { .calendly-inline-widget { height: 940px; } }

/* Booking page side info */
.book-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto 40px; }
.perk {
  background: var(--red);
  color: var(--cream);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 22px 20px;
  text-align: center;
}
.perk .icon { font-size: 24px; margin-bottom: 8px; }
.perk h3 { font-size: 16px; color: var(--cream); margin-bottom: 6px; }
.perk p { font-size: 13.5px; color: var(--cream); }

@media (max-width: 860px) {
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .book-perks { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .area-col ul { columns: 1; }
}
