/* Lessons with Jessica — draft preview styles */
:root {
  --navy: #0b2a4a;
  --navy-deep: #071c32;
  --green: #1f6b4a;
  --green-soft: #e8f3ee;
  --sand: #f7f5f0;
  --ink: #1a1f24;
  --muted: #5a6570;
  --white: #ffffff;
  --line: #d9e0e6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 42, 74, 0.08);
  --max: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-trust {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  filter: brightness(1.05);
}

/* Hero */
.hero {
  background:
    linear-gradient(165deg, rgba(7, 28, 50, 0.92), rgba(31, 107, 74, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 45%);
  color: var(--white);
  padding: 3.25rem 0 3.5rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.hero .lede {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #f4c95f;
  color: var(--navy-deep);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}

.hero-note {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34ch;
}

/* Offer strip */
.offer-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.offer-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.offer-strip li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}

.offer-strip li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 2.75rem 0;
}

.section-title {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-body {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

/* Meet Jessica */
.meet {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.meet-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.meet-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--green-soft);
  box-shadow: var(--shadow);
}

.meet-copy {
  max-width: 42ch;
}

.meet-amenities {
  margin-top: 1.5rem;
}

.meet-amenities .why-grid {
  margin-top: 0;
}

.pga-trust {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.pga-trust-footer {
  margin: 0 0 0.55rem !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.why {
  background: var(--sand);
}

.why-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.why-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* How it works */
.how {
  background: var(--white);
}

.steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 1rem 1rem 1rem 3.1rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.steps strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Location */
.location {
  background: var(--sand);
}

.location .card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.location .card p:last-child {
  margin-bottom: 0;
}

.phone-line a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.phone-line a:hover {
  color: var(--green);
  text-decoration: underline;
}

.phone-micro {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  margin-top: -0.35rem !important;
}

/* Form / CTA section */
.cta-section {
  background:
    linear-gradient(160deg, var(--navy-deep), var(--navy) 55%, #154a36);
  color: var(--white);
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-body {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.cta-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-note a {
  color: #f4c95f;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.75rem 0 2.25rem;
  font-size: 0.92rem;
}

.site-footer a {
  color: #f4c95f;
}

.site-footer p {
  margin: 0 0 0.55rem;
}

.draft-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.7rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

/* Thank-you page */
.thanks-hero {
  padding: 3.5rem 0 2rem;
  background: var(--white);
}

.thanks-hero h1 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  line-height: 1.2;
}

.thanks-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.offer-card {
  margin: 0 0 2rem;
  background: var(--green-soft);
  border: 1px solid #c6dfd2;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.offer-card h2 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.offer-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.offer-card p:last-child {
  margin-bottom: 0;
}

.offer-card .highlight {
  color: var(--green);
  font-weight: 700;
  font-size: 1.05rem;
}

.thanks-actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .offer-strip ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .meet-layout {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.75rem;
  }

  .meet-photo {
    width: 160px;
    height: 160px;
  }

  .meet-copy {
    max-width: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions,
  .thanks-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }
}

/* Longer unified CTA label on narrow phones */
@media (max-width: 420px) {
  .header-cta {
    font-size: 0.72rem;
    padding: 0.5rem 0.65rem;
  }

  .brand-trust {
    display: none;
  }
}
