:root {
  --dark: #00040c;
  --navy: #0f172a;
  --blue-navy: #172033;
  --gold: #f59e0b;
  --gold-dark: #d88706;
  --light: #f7f8fb;
  --text: #1f2937;
  --muted: #cbd5e1;
  --white: #ffffff;
  --radius: 1rem;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.14);

  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.6;
  background: var(--light);
}

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

a {
  color: inherit;
}

.site-header {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.25rem;
}

.header-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.header-logov1-medium {
  width: 120px;
  max-width: 32vw;
}

.brand-name {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.brand-tagline {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-letter {
  color: var(--gold);
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .active {
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .book-link {
  background: var(--gold);
  color: #000;
  padding: 0.65rem 1.1rem;
  text-transform: uppercase;
}

.site-nav .book-link:hover,
.site-nav .book-link:focus-visible,
.site-nav .book-link.active {
  background: var(--gold-dark);
}

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 6rem) 1.25rem;
}

.hero-inner,
.section-wrapper {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p.eyebrow, .page-hero p.eyebrow {
  color: var(--gold);
}

.hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #e5e7eb;
  max-width: 44rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.55rem;
  color: #f3f4f6;
  font-weight: 600;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

 .hero-list li::before {
  content: "-";
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
 /* margin-right: 0.6rem; */
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  background: var(--gold);
  color: #000;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.75rem;
}

.hero-card p {
  margin: 1rem 0 0;
  color: #e5e7eb;
  font-weight: 700;
}

.section-light,
.section-dark,
.section-accent,
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-accent {
  background: #fff7e8;
}

.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  text-align: center;
}

.page-hero p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #e5e7eb;
  font-size: 1.1rem;
}

.section-wrapper h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.section-wrapper .about-heading {
  margin-left:9rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 760px;
}

.card-grid,
.pricing-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card,
.package-card,
.service-card {
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.section-dark .card,
.section-dark .service-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card h3,
.package-card h3,
.service-card h3 {
  margin-top: 0;
  line-height: 1.2;
}

.package-card ul,
.service-card ul,
.card ul {
  margin: 0.75rem 0 0 1.25rem;
  padding: 0;
}

.package-card li,
.service-card li,
.card li {
  margin-bottom: 0.45rem;
}

.notice-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 2rem;
  align-items: start;
}

.info-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}

.info-panel p {
  margin: 0.3rem 0;
}

.calendar-embed {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 720px;
  border: 1px solid #d1d5db;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: center;
}

.contact-section p {
  margin: 0.5rem 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-line {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  font-family: Georgia, Times, serif;
  font-style: italic;
}

.site-footer {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--navy);
  color: var(--muted);
}

.footer-motto {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,15);

  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .18em;

  color: #8e9397;

  max-width: 850px;
  margin-left: auto;
  margin-right: auto;

  line-height: 1.7;
}

.price-disclaimer {
  max-width: 850px;
  margin: 0 auto 1rem;
  font-size: 0.9rem;
}

.price-disclaimer h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
}

@media (max-width: 860px) {
  .header-inner,
  .brand-link {
    flex-direction: column;
    text-align: center;
  }

  .site-nav {
    justify-content: center;
  }

  .hero-inner,
  .about-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-list {
    text-align: left;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .info-panel {
    position: static;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.85rem;
  }

  .header-logov1v1-medium {
    width: 98px;
  }

  .site-nav {
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 0.9rem;
    padding: 0.45rem 0.55rem;
  }

  .hero,
  .section-light,
  .section-dark,
  .section-accent,
  .page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .calendar-embed,
  .calendar-embed iframe {
    min-height: 640px;
  }
}
