:root {
  --maroon: #5c1023;
  --maroon-dark: #3d0a17;
  --gold: #c9a24b;
  --gold-light: #e4c878;
  --cream: #faf6ef;
  --ink: #241014;
  --gray: #6b5f5a;
  --radius: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--maroon-dark);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink); }
a { color: var(--maroon); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.site {
  background: linear-gradient(180deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: #fff !important;
  font-weight: bold;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-decoration: none !important;
}
.logo span { color: var(--gold-light); }

nav.main {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  justify-content: flex-end;
}

nav.main a {
  color: #f1e6d8 !important;
  font-size: 0.92rem;
  padding: 6px 4px;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
nav.main a:hover, nav.main a.active {
  border-bottom-color: var(--gold);
  color: #fff !important;
}

@media (max-width: 820px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav.main { justify-content: flex-start; overflow-x: auto; width: 100%; padding-bottom: 4px; }
}

/* Hero */
.hero {
  background: radial-gradient(ellipse at top right, #7a1830 0%, var(--maroon-dark) 55%, var(--ink) 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(201,162,75,0.05) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero h1 { color: #fff; }
.hero .lead {
  font-size: 1.15rem;
  color: #f1e2d8;
  max-width: 640px;
}
.hero .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 6px;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  padding: 46px 0 40px;
}
.page-hero h1 { color: #fff; margin-bottom: 6px; }
.page-hero p { color: #ecdccf; max-width: 680px; margin: 0; }

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-dark) !important;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(201,162,75,0.35);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { filter: brightness(1.05); }
.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--gold-light);
  color: #fff !important;
  box-shadow: none;
}

/* Sections */
section { padding: 52px 0; }
section.alt { background: #f3ece0; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-title p { color: var(--gray); }

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 18px rgba(60,20,20,0.08);
  border-top: 3px solid var(--gold);
}
.card h3 { margin-bottom: 8px; }
.card .price { color: var(--maroon); font-weight: 700; font-size: 1.15rem; margin-top: 10px; }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.list-check li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: bold;
}

.quote {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 4px 18px rgba(60,20,20,0.08);
  border-left: 4px solid var(--gold);
  position: relative;
}
.quote .name { font-weight: 700; color: var(--maroon-dark); margin-top: 12px; }
.quote .role { color: var(--gray); font-size: 0.9rem; }

table.schedule {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(60,20,20,0.08);
}
table.schedule th, table.schedule td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee0cd;
}
table.schedule th { background: var(--maroon); color: #fff; }
table.schedule tr:last-child td { border-bottom: none; }

.cta-band {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  text-align: center;
  padding: 46px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ecdccf; }

/* Form */
form.lead {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 22px rgba(60,20,20,0.1);
  display: grid;
  gap: 14px;
  max-width: 480px;
}
form.lead label { font-size: 0.9rem; color: var(--gray); display: block; margin-bottom: 4px; }
form.lead input, form.lead textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2d4bd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}
form.lead input:focus, form.lead textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
form.lead button { justify-self: start; }

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { margin-bottom: 6px; }
.contact-info .label { color: var(--gray); font-size: 0.9rem; }

/* Footer */
footer.site {
  background: var(--ink);
  color: #cbb9ac;
  padding: 34px 0 24px;
  font-size: 0.9rem;
}
footer.site a { color: #e4c878; }
footer.site .foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
footer.site .copy { color: #8a7a70; margin-top: 10px; }

.breadcrumb { color: var(--gold-light); font-size: 0.85rem; margin-bottom: 10px; }
