:root {
  --navy: #662d91;
  --navy-deep: #4a1f6b;
  --gold: #00aeef;
  --gold-light: #3cc2f5;
  --cream: #f7f4fb;
  --white: #ffffff;
  --ink: #291a38;
  --ink-soft: #5c4a70;
  --line: #e5dcee;
  --radius: 10px;
  --shadow: 0 12px 30px rgba(102, 45, 145, 0.1);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.nav a:hover { color: var(--gold); }
.nav-cta { white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.logo-img {
  height: 96px;
  width: 96px;
  object-fit: contain;
  display: block;
  position: relative;
  margin: -18px 0 -54px 0;
  z-index: 60;
}
.footer-inner .logo-img {
  height: 130px;
  width: 130px;
  margin: -92px 0 18px 0;
}
.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; text-align: center; margin-top: 8px; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 96px 0 72px;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-sub {
  color: #cdd6e0;
  font-size: 1.15rem;
  max-width: 600px;
}
.hero-ctas { display: flex; gap: 16px; margin: 28px 0 56px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero .btn-ghost:hover { background: var(--white); color: var(--navy); }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-num {
  display: block;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  color: #a9b6c4;
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section h2 { font-size: 2rem; }
.section-sub { max-width: 620px; font-size: 1.05rem; margin-bottom: 40px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.icon-badge svg {
  width: 34px;
  height: 34px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mini-card .icon-badge svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; }
.card p { font-size: 0.95rem; }

.steps .step {
  border-top: 3px solid var(--gold);
  padding-top: 16px;
}
.step-num {
  display: inline-block;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.checkmarks li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.checkmarks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.booking-card { text-align: left; }
.fine-print { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

.filetypes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.filetypes span {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--navy);
}

.field { display: block; margin-bottom: 16px; }
.field span {
  display: block;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.hidden-field { position: absolute; left: -9999px; }

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.tab-btn {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 18px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--ink-soft);
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.checklist-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.checklist-item h4 { font-size: 0.98rem; margin-bottom: 6px; }
.checklist-item p { font-size: 0.88rem; margin: 0; }

.mini-cards { margin-top: 24px; }
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.mini-card strong { display: block; color: var(--navy); font-family: "Trebuchet MS", sans-serif; margin-bottom: 4px; }
.mini-card p { font-size: 0.85rem; margin: 0; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-method {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-method span { font-weight: 400; color: var(--ink-soft); font-size: 0.95rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #b7c1cc; padding: 56px 0 24px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-inner .logo { color: var(--white); margin-bottom: 10px; }
.footer-inner p { color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.footer-inner h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-inner a { display: block; font-size: 0.9rem; margin-bottom: 8px; color: #b7c1cc; }
.footer-inner a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.82rem;
}

/* Mobile */
@media (max-width: 900px) {
  .nav { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .two-col { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 32px; }
  .logo-img { height: 68px; width: 68px; margin: -12px 0 -38px 0; }
  .footer-inner .logo-img { height: 96px; width: 96px; margin: -68px 0 14px 0; }
}
