/* Jackie Rieck Strategic Marketing — editorial / consultant aesthetic */

:root {
  --accent: #0d2340;
  --accent-dark: #081730;
  --accent-bright: #1f4a82;
  --accent-light: #dbe5f1;
  --accent-pale: #f4f1ea;
  --warm: #c9a96e;
  --cream: #f9f6ef;
  --ink: #1a1a1a;
  --muted: #5b6273;
  --rule: #e6e1d3;
  --white: #ffffff;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-bright); }

/* --- Header --- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo { display: inline-flex; align-items: baseline; }
.wordmark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header nav a {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.site-header nav a:hover { color: var(--accent); }
.site-header nav .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 500;
}
.site-header nav .nav-cta:hover { background: var(--accent-dark); color: var(--white); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* --- Hero --- */
.hero {
  padding: 110px 0 80px;
  background: var(--cream);
}
.hero-inner { max-width: 920px; }
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-em {
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--warm);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-stat {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-stat-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* --- Brand strip --- */
.brand-strip {
  background: var(--accent);
  padding: 28px 0;
}
.brand-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px 36px;
}
.brand-list li {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Generic section --- */
.section { padding: 110px 0; border-bottom: 1px solid var(--rule); }
.section:last-of-type { border-bottom: none; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 20px;
}
.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-bottom: 22px;
  max-width: 820px;
}
.section-lede {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 760px;
  margin-bottom: 28px;
}
.section-sub {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 48px;
}
.section-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  max-width: 720px;
  margin-bottom: 22px;
}

/* --- About --- */
.about { background: var(--cream); }
.about-grid { max-width: 820px; }
.pull-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--warm);
  background: var(--accent-pale);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--accent);
}
.pull-quote em { font-style: italic; }

/* --- Expertise --- */
.expertise { background: var(--white); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.expertise-item {
  padding: 42px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.expertise-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.expertise-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1.2;
}
.expertise-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

/* --- Results --- */
.results { background: var(--accent); color: var(--white); }
.results .section-label { color: var(--warm); }
.results .section-h2 { color: var(--white); }
.results .section-sub { color: rgba(255, 255, 255, 0.78); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.result-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px 26px;
  border-left: 2px solid var(--warm);
}
.result-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.result-note {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* --- Testimonials --- */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}
.testimonial {
  padding: 32px 30px;
  background: var(--white);
  border-top: 2px solid var(--warm);
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.testimonial figcaption strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}
.testimonial figcaption span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Engagements --- */
.engagements { background: var(--white); }
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.engagement-card {
  position: relative;
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--rule);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.engagement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 35, 64, 0.08);
}
.engagement-card.highlighted {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.engagement-card.highlighted .engagement-name { color: var(--white); }
.engagement-card.highlighted .engagement-hours { color: var(--warm); }
.engagement-card.highlighted .engagement-bullets li { color: rgba(255, 255, 255, 0.9); }
.engagement-card.highlighted .engagement-bullets li::before { color: var(--warm); }
.ribbon {
  position: absolute;
  top: 14px;
  right: -8px;
  background: var(--warm);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  border-style: solid;
  border-width: 0 8px 6px 0;
  border-color: transparent #8c7349 transparent transparent;
}
.engagement-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.15;
}
.engagement-hours {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 22px;
}
.engagement-bullets {
  list-style: none;
  margin: 0;
}
.engagement-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink);
}
.engagement-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--warm);
  font-weight: 600;
}
.engagements-footnote {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--accent-pale);
  border-left: 3px solid var(--warm);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 920px;
}

/* --- FAQ --- */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm);
  transition: transform 0.18s ease;
}
.faq-item[open] summary::after {
  content: "—";
}
.faq-item p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}

/* --- Contact --- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-copy .section-h2 { margin-bottom: 18px; }
.contact-direct { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--rule); }
.direct-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 18px;
}
.direct-list { list-style: none; }
.direct-list li {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.direct-list li:last-child { border-bottom: none; }
.direct-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  min-width: 100px;
}

/* --- Contact form --- */
.contact-form-wrap {
  background: var(--cream);
  padding: 40px 36px;
  border: 1px solid var(--rule);
}
.contact-form .hp-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { margin-top: 8px; }
.form-success {
  padding: 36px 28px;
  background: var(--accent-pale);
  border-left: 3px solid var(--warm);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
}
.form-error {
  padding: 14px 18px;
  background: #fce8e6;
  border-left: 3px solid #c5221f;
  color: #80120e;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* --- Footer --- */
.site-footer {
  background: var(--accent-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-wordmark {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-top: 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.footer-contact a:hover { color: var(--warm); }
.footer-legal {
  padding-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.pw-footer {
  background: var(--accent-dark);
  padding: 14px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pw-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.pw-footer a:hover { color: var(--warm); }

/* --- Responsive --- */
@media (max-width: 860px) {
  .mobile-menu-btn { display: inline-block; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 28px;
    gap: 0;
  }
  .site-header nav.open { display: flex; }
  .site-header nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
  }
  .site-header nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
  .hero { padding: 70px 0 56px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-stat:last-child { border-bottom: none; }
  .section { padding: 70px 0; }
  .expertise-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
  .brand-list { justify-content: center; }
}
