/* ===================================================================
   PartnerGuru — styles.css
   Palette: deep navy + warm gold accent + warm paper
=================================================================== */

:root {
  --navy:    #16233d;
  --navy-2:  #1d3052;
  --ink:     #1a2235;
  --blue:      #69b0d3;
  --blue-2:    #8cc4e0;
  --blue-deep: #2f7ca6;
  --blue-tint: #e8f3f9;
  --paper:   #ffffff;
  --cream:   #f7f4ee;
  --cream-2: #efe9df;
  --muted:   #5d6779;
  --line:    #e4ddd1;
  --radius:  16px;
  --radius-lg: 26px;
  --shadow:  0 18px 50px -22px rgba(22, 35, 61, 0.35);
  --shadow-sm: 0 8px 24px -14px rgba(22, 35, 61, 0.30);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1rem; }

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

.container.narrow { max-width: 780px; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin: 0 0 1rem;
}
.eyebrow.light { color: var(--blue-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-primary {
  background: var(--blue);
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(105, 176, 211, 0.65);
}
.btn-primary:hover { background: var(--blue-2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(22, 35, 61, 0.25);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.65rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 56px; height: 56px; object-fit: contain; transition: width 0.3s var(--ease), height 0.3s var(--ease); }
.site-header.scrolled .brand-mark { width: 46px; height: 46px; }
.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.3s var(--ease);
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s;
}
.nav .nav-cta:hover { background: var(--navy-2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(120% 95% at 88% -10%, var(--blue-tint) 0%, var(--cream) 38%, var(--paper) 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.2rem;
}
.hero-brand {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.hero-brand::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
.hero-brand--caption {
  display: flex;
  justify-content: center;
  margin: 1.9rem 0 0;
}
.hero h1 .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-deep);
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 30ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-trust {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  padding: 1.6rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--navy); }
.hero-trust span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

.hero-photo { position: relative; }
.hero-photo > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  object-position: center 25%;
}
.hero-photo-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  width: 84px; height: 84px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  padding: 14px;
}
.hero-photo-badge img { width: 100%; }

/* ---------- Intro ---------- */
.intro { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--paper); }
.intro-lead {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.intro p:not(.intro-lead) { color: var(--muted); font-size: 1.08rem; }

/* ---------- Section heads ---------- */
.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }

/* ---------- Situations cards ---------- */
.situations { background: var(--cream); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Process / Intensive ---------- */
.process { background: var(--navy); color: #fff; }
.process h2, .process .section-head h2 { color: #fff; }
.process .section-sub { color: rgba(255,255,255,0.72); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.step:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.07); }
.step-num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 { color: #fff; font-size: 1.4rem; }
.step p { color: rgba(255, 255, 255, 0.74); margin: 0; }

/* ---------- Investment ---------- */
.investment { background: var(--cream); text-align: center; }
.price {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.price span { color: var(--blue); }
.price-note { color: var(--muted); font-size: 1.05rem; max-width: 48ch; margin: 0 auto 0.8rem; }
.price-line { color: var(--ink); font-size: 1.12rem; max-width: 50ch; margin: 0 auto 2rem; font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  margin: 0;
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: "Fraunces", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.35;
  position: absolute;
  top: 0.6rem; left: 1.2rem;
}
.quote blockquote {
  margin: 1.4rem 0 1.5rem;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.quote figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 1rem; }
.quote figcaption strong { color: var(--navy); }
.quote figcaption span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 3.4;
  object-fit: cover;
  object-position: center 20%;
}
.about-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 1.2rem; }
.about-copy p { color: var(--muted); }
.signature {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: 1.4rem;
}
.credentials {
  list-style: none;
  padding: 1.6rem 0 0;
  margin: 1.6rem 0 1.4rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.5rem;
}
.credentials li { position: relative; padding-left: 1.6rem; font-weight: 500; color: var(--ink); }
.credentials li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--blue-deep);
  font-weight: 700;
}
.linkedin-link { color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--blue); padding-bottom: 2px; }
.linkedin-link:hover { color: var(--blue-deep); }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: #fff; text-align: center; }
.contact h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.contact-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 56ch; margin: 0 auto 2.5rem; }

.contact-form { text-align: left; max-width: 560px; margin: 0 auto; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.contact-form .opt { font-weight: 400; color: rgba(255,255,255,0.5); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255,255,255,0.10);
}
.contact-form .btn-block { margin-top: 0.6rem; }
.form-or { text-align: center; font-size: 0.92rem; color: rgba(255,255,255,0.6); margin-top: 1.2rem; }
.form-or a { color: var(--blue-2); font-weight: 600; }
.form-or a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 3.5rem 0 2rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-mark { width: 46px; height: 46px; background: #fff; border-radius: 12px; padding: 7px; }
.footer-name { font-family: "Fraunces", serif; font-size: 1.2rem; color: #fff; margin: 0; }
.footer-tag { margin: 0; font-size: 0.9rem; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.92rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* ---------- Trust strip ---------- */
.assurance { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.05rem 0; }
.assurance-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
}
.assurance-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.assurance-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex: none; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  counter-reset: tl;
}
.timeline li {
  position: relative;
  text-align: center;
  padding-top: 1.4rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  top: -1.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(105, 176, 211, 0.18);
}
.timeline-when { display: block; font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--blue-2); }
.timeline-what { display: block; font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); margin-top: 0.2rem; }

/* ---------- About brand card ---------- */
.about-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 176, 211, 0.28) 0%, transparent 70%);
}
.about-card-mark {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 1.4rem;
}
.about-card-quote {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 1.8rem;
  position: relative; z-index: 1;
}
.about-card-stats {
  display: flex;
  gap: 1.6rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.about-card-stats strong { display: block; font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--blue-2); }
.about-card-stats span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.66); }
.about-card-values {
  margin: 1.4rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-2);
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  background: var(--cream);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); background: #fff; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-family: "Fraunces", serif;
  font-size: 1.12rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  color: var(--blue-deep);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 95;
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 30px -8px rgba(22, 35, 61, 0.45);
  transition: opacity 0.3s var(--ease);
}

/* ---------- Footer link ---------- */
.footer-bottom a { color: rgba(255, 255, 255, 0.7); text-decoration: underline; }
.footer-bottom a:hover { color: var(--blue-2); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: #fff;
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .steps, .quotes { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .brand-mark { width: 48px; height: 48px; }
  .site-header.scrolled .brand-mark { width: 42px; height: 42px; }
}

@media (max-width: 760px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 4.5rem; }
  .assurance-inner { flex-wrap: wrap; justify-content: flex-start; }
  .about-card-quote { font-size: 1.25rem; }
}

@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.4rem; }
  .hero-actions .btn { width: 100%; }
  .brand-mark { width: 44px; height: 44px; }
  .timeline { grid-template-columns: 1fr; gap: 1.6rem; }
  .timeline li { padding-top: 1.6rem; }
  .about-card-stats { gap: 1rem; }
  .about-card-stats strong { font-size: 1.4rem; }
}
