:root {
  --black: #000000;
  --ink: #222222;
  --text: #333333;
  --muted: #555555;
  --line: #d0d0d0;
  --form-bg: #dddddd;
  --soft: #f5f5f5;
  --white: #ffffff;
  --yellow: #fdb521;
  --yellow-hover: #e9a40f;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}

/* ——— Header (black bar + yellow phone) ——— */
.site-header {
  background: var(--black);
  color: var(--white);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100px;
  padding: 0.75rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand-logo img {
  height: 72px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.btn-yellow:hover { background: var(--yellow-hover); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-block { width: 100%; }

/* ——— Top split: content + form ——— */
.top-split {
  padding: 2.5rem 0 3rem;
  background: var(--white);
}

.top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.page-kicker {
  margin: 0 0 0.35rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0 0 1rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  text-transform: uppercase;
}

.intro {
  margin: 0 0 1.5rem;
  max-width: 560px;
  font-size: 1rem;
  color: var(--text);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin: 0 0 0.75rem;
  color: var(--yellow);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.testimonial-inline {
  max-width: 560px;
}

.testimonial-inline p {
  margin: 0 0 0.5rem;
  font-style: italic;
  color: var(--text);
  font-size: 0.98rem;
}

.testimonial-inline cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--black);
  font-size: 0.92rem;
}

/* ——— Quote / book form panel ——— */
.quote-panel {
  position: sticky;
  top: 1rem;
  background: var(--form-bg);
  padding: 1.75rem 1.35rem 1.5rem;
}

.quote-panel h2 {
  margin: 0 0 0.5rem;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
}

.quote-panel .form-lead {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-field {
  margin-bottom: 0.85rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(253, 181, 33, 0.55);
  border-color: var(--yellow);
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ——— Dark benefits band ——— */
.why-band {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
}

.why-band h2 {
  margin: 0 0 2rem;
  text-align: center;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 1.5rem 1rem;
  text-align: center;
  min-height: 100%;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--white);
}

.why-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.why-card h3 {
  margin: 0 0 0.65rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--white);
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.why-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ——— White content sections ——— */
.section {
  padding: 3.5rem 0;
  background: var(--white);
}

.section-soft { background: var(--soft); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}

.section-head .sub {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.package-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.package-card .tag {
  display: inline-block;
  width: fit-content;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.3rem 0.55rem;
}

.package-card h3 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black);
}

.package-card .price {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.package-card .duration {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.package-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-card .btn { margin-top: 0.5rem; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: var(--white);
}

.step-num {
  display: block;
  margin-bottom: 0.5rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-hover);
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
}

.step-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— About / dark CTA ——— */
.about-band,
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.about-band h2,
.cta-band h2 {
  margin: 0 0 1rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.about-band p,
.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

/* ——— Testimonials ——— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  border: 1px solid var(--line);
  padding: 1.35rem;
  background: var(--white);
}

.review-card .stars {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.review-card p {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
}

/* ——— Detail rows (why need fitting) ——— */
.detail-list {
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.detail-card {
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem;
  background: var(--white);
}

.detail-card h3 {
  margin: 0 0 0.65rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
}

.detail-card ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.detail-card li { margin-bottom: 0.35rem; }

/* ——— Map / footer ——— */
.map-section {
  padding: 3rem 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.map-section .section-head { margin-bottom: 1.25rem; }

.map-embed {
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-directions {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

.map-directions a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--black);
  color: #cfcfcf;
  text-align: center;
  padding: 1.75rem 1rem;
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .top-grid,
  .why-grid,
  .package-grid,
  .step-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-panel { position: static; }
}

@media (max-width: 640px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 0.85rem;
  }

  .site-header .btn { width: 100%; }

  .top-grid,
  .why-grid,
  .package-grid,
  .step-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo img { height: 52px; }

  .map-embed iframe { height: 280px; }
}
