/* ===== Carlson Prep — Brand Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Lato:wght@300;400;600;700&display=swap');

:root {
  --navy: #0d1f3c;
  --navy-light: #16305a;
  --gold: #bb8a4e;
  --gold-light: #d4ab73;
  --cream: #f7f2e7;
  --cream-dark: #efe8d8;
  --white: #ffffff;
  --text-dark: #1c2b42;
  --text-muted: #5a6478;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Divider / ornament ===== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0;
}
.divider .line {
  height: 1px;
  width: 48px;
  background: var(--gold);
}
.divider .diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.eyebrow {
  font-family: var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== Header / Nav ===== */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  gap: 20px;
  justify-self: end;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
}
.logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-text .prep {
  display: block;
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  margin-top: 3px;
  text-align: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  justify-self: center;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
  border-radius: 1px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-menu a.active { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}
.btn-primary:hover { background: var(--navy); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold-light);
}
.btn-outline:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
}
.hero h1 {
  color: var(--white);
  font-size: 48px;
  margin: 18px 0 20px;
}
.hero p.lead {
  max-width: 600px;
  margin: 0 auto 34px;
  color: #cdd6e6;
  font-size: 17px;
}
.goal-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 34px;
  margin-bottom: 12px;
}
.goal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.goal-chips a {
  border: 1.5px solid var(--gold-light);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.goal-chips a:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
}

.hero .tagline-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 46px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.hero .tagline-row .star { color: var(--gold); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}
.hero-grid .lead { margin-left: 0; }
.hero-grid .tagline-row { justify-content: flex-start; }
.hero-side-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-quotes { display: grid; gap: 26px; }
.hero-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.hero-quote .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--white);
  line-height: 1.5;
}
.hero-quote .attribution {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 10px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  justify-self: center;
}
.hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.hero-photo-badge .badge-line {
  font-size: 12px;
  color: var(--text-muted);
}
.hero-photo-badge .badge-line.strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}

.testimonial-strip {
  background: var(--cream);
  padding: 70px 0 84px;
}
.hero-quotes-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.testimonial-strip .hero-quote .quote { color: var(--navy); }
.testimonial-strip .hero-quote .attribution { color: var(--gold); }

/* ===== Sections ===== */
section { padding: 84px 0; }
section.alt { background: var(--white); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-head h2 { font-size: 34px; margin-top: 10px; }
.section-head p { color: var(--text-muted); margin-top: 14px; }

/* ===== Stats grid ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
}
.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}
.stat-card .num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
}
.stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

/* ===== Cards / services ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 38px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13,31,60,0.10);
}
.service-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.tier-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.service-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 15px; }
.service-card ul {
  margin-top: 16px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
}
.service-card ul li { margin-bottom: 6px; }

.check-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}
.check-list li {
  position: relative;
  padding-left: 24px;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== Quote / callout box ===== */
.callout {
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 32px 40px;
  text-align: center;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  max-width: 780px;
  margin: 0 auto;
}
.callout .highlight { color: var(--gold); font-style: normal; font-weight: 600;}

/* ===== About page layout ===== */
.about-hero {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.about-hero h1 { color: var(--white); font-size: 40px; margin-top: 12px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.about-photo {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  border-radius: 8px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  text-align: center;
  padding: 30px;
  border: 1px solid var(--gold);
}
.about-text h2 { font-size: 30px; margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: var(--text-dark); max-width: 62ch; }
.credential-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 5px;
  padding: 14px 18px;
}
.credential-item .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.credential-item b { color: var(--navy); }

/* ===== Timeline / process steps ===== */
.process-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.process-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 32px 30px;
}
.testimonial-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 18px;
}
.testimonial-card .attribution {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info-item .icon-sm {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info-item h4 { font-size: 15px; margin-bottom: 3px; }

.next-steps { margin-top: 30px; }
.next-steps-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.next-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dark);
}
.next-step-num {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 14px; }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 36px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-dark);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== Footer ===== */
footer.site-footer {
  background: var(--navy);
  color: #b9c2d6;
  padding: 50px 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-tagline {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 13px; color: #b9c2d6; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding: 22px 0;
  color: #7c88a3;
}

/* ===== Mobile sticky booking bar ===== */
.mobile-cta-bar { display: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .menu-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-row { flex-direction: column; }
  .hero h1 { font-size: 34px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-grid .lead { margin-left: auto; margin-right: auto; }
  .hero-grid .tagline-row { justify-content: center; }
  .goal-chips { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-photo { margin: 0 auto; }
  .hero-photo-badge { position: static; transform: none; margin-top: 30px; display: inline-block; }
  .hero-quotes-row { grid-template-columns: 1fr; gap: 26px; }
  .hero-quote { text-align: left; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }

  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .section-head { margin-bottom: 36px; }

  body { padding-bottom: 66px; }
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 10px 16px;
    z-index: 200;
    box-shadow: 0 -2px 14px rgba(13,31,60,0.25);
  }
  .mobile-cta-bar a {
    display: block;
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 13px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

/* ===== Launch additions ===== */
.service-card .icon svg,
.contact-info-item .icon-sm svg { display: block; }
.callout .callout-attr {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-legal {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 11px;
  line-height: 1.5;
  color: #7c88a3;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Primary button sitting on a navy background keeps contrast on hover */
.hero .btn-primary:hover { background: var(--gold-light); color: var(--navy); }

/* Touch screens: a tap triggers :hover and it sticks until you tap elsewhere.
   Reset hover-only changes so tapped elements keep their normal look. */
@media (hover: none) {
  .btn-primary:hover { background: var(--gold); color: var(--navy); }
  .btn-outline:hover { background: transparent; color: var(--white); }
  .btn-outline-navy:hover { background: transparent; color: var(--navy); }
  .nav-cta:hover { background: var(--navy); color: var(--white) !important; }
  .goal-chips a:hover { background: transparent; color: var(--white); border-color: var(--gold-light); }
  .service-card:hover { transform: none; box-shadow: none; }
  .nav-links a:not(.active):hover { color: var(--navy); border-bottom-color: transparent; }
  .footer-nav a:hover { color: #b9c2d6; }
}
