/* ============================================================
   ROSEWOOD COLLEGE CONSULTING  |  styles.css
   ============================================================ */

:root {
  --navy:        #003262;
  --navy-dark:   #00264d;
  --navy-mid:    #1a4a7a;
  --gold:        #FDB515;
  --gold-dark:   #d4960d;
  --gold-light:  #fef5dc;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --light-bg:    #f0f4f9;
  --text-dark:   #111827;
  --text-body:   #374151;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --shadow:      0 4px 20px rgba(0,50,98,0.08);
  --shadow-lg:   0 10px 40px rgba(0,50,98,0.14);
  --radius:      8px;
  --radius-lg:   16px;
  --max-width:   1100px;
  --transition:  all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
}

.navbar-brand { display: flex; flex-direction: column; line-height: 1.2; }
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.navbar-brand .brand-sub {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 5px;
  border-bottom: none;
  font-weight: 700;
}
.nav-links .nav-cta a:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  font-family: 'Lato', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253,181,21,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,50,98,0.25);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */

section { padding: 80px 0; }

.section-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--navy-mid); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-label          { justify-content: center; }
.text-center .section-label::before  { display: none; }
.text-center .section-subtitle       { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO  (index.html)
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 90px 28px 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(253,181,21,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 38px;
  max-width: 520px;
  line-height: 1.85;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero photo */
.hero-photo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(253,181,21,0.25);
  border-radius: var(--radius-lg);
  overflow: visible;
  position: relative;
}
.hero-photo-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}
.hero-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 22px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

/* ============================================================
   CAMPUS PHOTO BANNER
   ============================================================ */

.campus-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.campus-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.campus-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,38,77,0.82) 0%, rgba(0,50,98,0.70) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}
.campus-banner-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 16px;
}
.campus-banner-attr {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ============================================================
   CAMPUS PHOTO PAIR  (between services and testimonials)
   ============================================================ */

.campus-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 300px;
  overflow: hidden;
  gap: 4px;
}
.campus-photo-item {
  overflow: hidden;
  position: relative;
}
.campus-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}
.campus-photo-item:hover img { transform: scale(1.04); }

/* ============================================================
   CREDENTIALS STRIP
   ============================================================ */

.credentials-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 30px 28px;
}
.credentials-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.cred-item i { color: var(--gold-dark); font-size: 0.95rem; }
.cred-divider { color: var(--border); font-size: 1.4rem; line-height: 1; }

/* ============================================================
   ABOUT PREVIEW  (index.html)
   ============================================================ */

.about-preview { background: var(--white); }
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 75%;
  height: 75%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.credential-list { list-style: none; margin-bottom: 36px; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-body);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list li i { color: var(--gold-dark); margin-top: 4px; flex-shrink: 0; }

/* ============================================================
   ABOUT STATS PANEL  (replaces second headshot on home page)
   ============================================================ */

.about-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-self: center;
}

.stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }

.stat-card-gold {
  background: var(--gold);
}
.stat-card-gold .stat-number,
.stat-card-gold .stat-label {
  color: var(--navy);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   SERVICES GRID  (index.html + services.html)
   ============================================================ */

.services-preview { background: var(--light-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card-icon i { color: var(--navy); font-size: 1.3rem; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.service-card-coming {
  background: linear-gradient(135deg, #f0f4f9, #e8eff7);
  border: 2px dashed #b8cfe0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card-coming:hover { border-color: var(--gold); }
.service-card-coming h3 { color: #4a6a85; }
.service-card-coming p  { color: #6a8a9f; }

/* ============================================================
   TESTIMONIALS  (index.html + testimonials.html)
   ============================================================ */

/* ============================================================
   STUDENT OUTCOMES
   ============================================================ */
.outcomes-section {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
}
.outcomes-category h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 16px;
  text-align: center;
}
.outcomes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.school-pill {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 24px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.school-pill:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.outcomes-footnote {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
}
.outcomes-block {
  margin-bottom: 56px;
}
.outcomes-block:last-child { margin-bottom: 0; }
.outcomes-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin: 0 0 32px;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
}
.outcomes-block-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}
@media (max-width: 640px) {
  .school-pill { font-size: 0.85rem; padding: 7px 14px; }
}

.testimonials-section { background: var(--navy); }
.testimonials-section .section-label       { color: var(--gold); }
.testimonials-section .section-label::before { background: var(--gold); }
.testimonials-section .section-title       { color: var(--white); }
.testimonials-section .section-subtitle    { color: rgba(255,255,255,0.68); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 4px;
  left: 18px;
  line-height: 1;
}

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-initial {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.88rem; color: var(--white); }
.author-info span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--gold-light);
  border-top: 3px solid var(--gold);
  padding: 72px 28px;
  text-align: center;
}
.cta-banner h2   { font-size: 2rem; margin-bottom: 12px; }
.cta-banner p    { color: var(--text-muted); margin-bottom: 36px; font-size: 1.02rem; }
.cta-buttons     { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE  (about.html)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 72px 28px;
  text-align: center;
}
.page-hero h1    { color: var(--white); font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.page-hero p     { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.page-hero-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-main { background: var(--white); }
.about-main-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

.about-photo-sidebar img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.about-text h2   { font-size: 1.5rem; margin: 36px 0 12px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p    { margin-bottom: 18px; color: var(--text-body); }

.diff-list { list-style: none; margin: 0 0 28px; }
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.diff-list li:last-child { border-bottom: none; }
.diff-list li i { color: var(--gold-dark); margin-top: 3px; flex-shrink: 0; font-size: 1rem; }
.diff-list li strong { font-size: 0.9rem; }

.ethics-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
  margin: 28px 0;
}
.ethics-box h4 { margin-bottom: 8px; font-size: 1rem; color: var(--navy); }
.ethics-box p  { margin: 0; font-size: 0.93rem; color: var(--text-body); }

/* ============================================================
   ABOUT PAGE SIDEBAR CARDS
   ============================================================ */

.about-sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}

.about-campus-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-campus-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.campus-photo-caption {
  display: block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 10px 16px;
}

.sidebar-card-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-facts {
  list-style: none;
}
.sidebar-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
}
.sidebar-facts li:last-child { border-bottom: none; }
.sidebar-facts li i {
  color: var(--gold-dark);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.sidebar-facts-light li {
  border-bottom-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
}

/* ============================================================
   SERVICES PAGE  (services.html)
   ============================================================ */

.services-full { background: var(--white); }

.service-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 28px;
  transition: var(--transition);
  border-left: 5px solid var(--gold);
}
.service-block:hover { box-shadow: var(--shadow-lg); }
.service-block-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.service-block-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-block-icon i { color: var(--navy); font-size: 1.4rem; }
.service-block h3    { font-size: 1.25rem; margin-bottom: 4px; }
.service-block .tag  {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy-mid);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.service-block p    { color: var(--text-body); margin-bottom: 14px; font-size: 0.97rem; }

.service-block ul {
  list-style: none;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.service-block ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.service-block ul li i { color: var(--gold-dark); font-size: 0.78rem; }

.coming-soon-block {
  background: linear-gradient(135deg, #f0f4f9, #e8eff7);
  border: 2px dashed #b8cfe0;
  border-left: 5px dashed #b8cfe0;
  text-align: center;
  padding: 48px 36px;
}
.coming-soon-block:hover { border-color: var(--gold); }
.coming-soon-block h3 { color: #4a6a85; margin-bottom: 10px; }
.coming-soon-block p  { color: #6a8a9f; max-width: 520px; margin: 0 auto; }

/* ============================================================
   SERVICES PAGE EXTRAS
   ============================================================ */

.services-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.services-intro-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}
.services-intro-item i {
  color: var(--navy);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.how-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.how-step-number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.how-step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.how-step-arrow {
  color: var(--gold-dark);
  font-size: 1.4rem;
  text-align: center;
}

@media (max-width: 760px) {
  .services-intro-grid    { grid-template-columns: 1fr; gap: 20px; }
  .how-it-works-grid      { grid-template-columns: 1fr; }
  .how-step-arrow         { transform: rotate(90deg); margin: 0 auto; }
}

/* ============================================================
   CONTACT PAGE  (contact.html)
   ============================================================ */

.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2  { font-size: 1.65rem; margin-bottom: 16px; }
.contact-info p   { color: var(--text-muted); margin-bottom: 28px; font-size: 0.97rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.contact-detail i {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-detail span   { color: var(--text-muted); font-size: 0.9rem; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.contact-form-card .form-sub { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,50,98,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS PAGE  (testimonials.html)
   ============================================================ */

.fiverr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1dbf73;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.testimonials-full { background: var(--light-bg); }
.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card-light:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card-light::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 4px;
  left: 18px;
  line-height: 1;
}
.testimonial-card-light .testimonial-text {
  color: var(--text-body);
  font-style: italic;
}
.testimonial-card-light .author-initial {
  background: var(--navy);
  color: var(--white);
}
.testimonial-card-light .author-info strong { color: var(--navy); }
.testimonial-card-light .author-info span   { color: var(--text-muted); }
.testimonial-card-light .stars i            { color: var(--gold-dark); }

/* ============================================================
   CONTACT PAGE EXTRAS
   ============================================================ */

.contact-what-to-include {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 28px;
}
.contact-what-to-include h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.contact-what-to-include ul {
  list-style: none;
  margin: 0;
}
.contact-what-to-include ul li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.contact-what-to-include ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.faq-item h4 {
  font-size: 0.97rem;
  margin-bottom: 10px;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-item h4 i {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.95rem;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 700px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS PAGE  (rating summary)
   ============================================================ */

.rating-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-score {
  text-align: center;
  flex-shrink: 0;
}
.rating-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.rating-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 8px; }
.rating-stars i { color: var(--gold-dark); font-size: 1.1rem; }
.rating-label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

.rating-divider {
  width: 1px;
  height: 100px;
  background: var(--border);
  flex-shrink: 0;
}

.rating-badges { display: flex; flex-direction: column; gap: 20px; }
.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rating-badge i {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rating-badge strong { display: block; font-size: 0.95rem; color: var(--navy); }
.rating-badge span   { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 640px) {
  .rating-divider { width: 100%; height: 1px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.68);
  padding: 56px 28px 28px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .brand-tagline {
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 300px; }

.footer-col h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 940px) {
  .hero-inner                { grid-template-columns: 1fr; text-align: center; }
  .hero-inner .hero-photo-wrap { order: -1; max-width: 260px; margin: 0 auto 16px; }
  .hero-eyebrow              { justify-content: center; }
  .hero-actions              { justify-content: center; }
  .hero-desc                 { margin: 0 auto 38px; }
  .about-preview-inner       { grid-template-columns: 1fr; }
  .about-photo-wrap          { max-width: 340px; margin: 0 auto; }
  .services-grid             { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid         { grid-template-columns: 1fr; }
  .about-main-inner          { grid-template-columns: 1fr; }
  .about-photo-sidebar       { max-width: 340px; margin: 0 auto; }
  .contact-inner             { grid-template-columns: 1fr; }
  .testimonials-full-grid    { grid-template-columns: 1fr; }
  .footer-inner              { grid-template-columns: 1fr 1fr; }
  .footer-brand              { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-toggle  { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }

  .services-grid             { grid-template-columns: 1fr; }
  .service-block ul          { grid-template-columns: 1fr; }
  .credentials-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cred-divider              { display: none; }
  .footer-inner              { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom             { flex-direction: column; text-align: center; }
  .form-group .form-row      { grid-template-columns: 1fr; }
  .contact-form-card         { padding: 28px 22px; }
}

/* ============================================================
   PRICING SECTION  (services.html)
   ============================================================ */

.pricing-section {
  background: var(--light-bg);
  padding: 64px 0 72px;
}

/* header labels */
.pricing-section .section-label { justify-content: center; }

.wordcount-note {
  background: var(--gold-light);
  border: 1px solid #e8c96a;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 0.88rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  line-height: 1.75;
}
.wordcount-note strong { color: var(--navy); }

/* two-track process layout */
.two-track-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
}
.track-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
}
.process-track-header {
  margin-bottom: 28px;
}
.process-track-label {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.premium-label {
  background: var(--gold-dark);
  color: var(--navy);
}
.process-steps-vertical {
  display: flex;
  flex-direction: column;
}
.vstep {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vstep-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vstep-number-gold {
  background: var(--gold-dark);
  color: var(--navy);
}
.vstep-body h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 4px;
}
.vstep-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.vstep-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 6px 0 6px 15px;
}
@media (max-width: 720px) {
  .two-track-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .track-divider { display: none; }
}

/* three-column pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-top-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0,50,98,0.15);
  transform: translateY(-6px);
}
.pricing-card.featured:hover { transform: translateY(-10px); }

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-tier {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.card-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-price-block {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 20px;
}
.card-price-block.gold-bg { background: var(--gold-light); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 0.88rem;
}
.price-row .price-label { color: var(--text-muted); }
.price-row .price-amount { font-weight: 700; color: var(--navy); }

.price-row.short-price .price-amount,
.price-row.long-price  .price-amount {
  font-size: 1.55rem;
  font-family: 'Playfair Display', Georgia, serif;
}
.price-row.long-price {
  border-top: 1px dashed #ddd;
  margin-top: 4px;
  padding-top: 8px;
}
.price-row.rush-price {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 8px;
}
.price-row.rush-price .price-label { font-size: 0.8rem; color: var(--text-muted); }
.price-row.rush-price .price-amount { font-size: 0.88rem; color: var(--text-muted); }

.card-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0 20px;
}

.card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 700;
}
.card-meta-item i { color: var(--gold-dark); font-size: 0.8rem; }

.card-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.card-features li:last-child { border-bottom: none; }
.card-features li i { color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; font-size: 0.82rem; }
.card-features li.dimmed { color: var(--text-muted); }
.card-features li.dimmed i { color: #ccc; }

.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  text-decoration: none;
}
.card-cta:hover { background: var(--navy); color: var(--white); }
.card-cta.cta-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.card-cta.cta-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
}

/* PIQ BUNDLE — two-option layout */
.piq-bundle-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 44px 44px;
  box-shadow: var(--shadow-lg);
}
.piq-bundle-header {
  margin-bottom: 28px;
}
.piq-bundle-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.piq-bundle-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.75;
}
.piq-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.piq-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.piq-option-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.piq-option-card.piq-featured {
  background: rgba(253,181,21,0.12);
  border-color: rgba(253,181,21,0.4);
}
.piq-option-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.piq-option-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}
.piq-option-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 10px 0 4px;
}
.piq-option-price-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  display: block;
}
.piq-option-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.piq-option-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}
.piq-option-meta-item i { color: var(--gold); font-size: 0.76rem; }
.piq-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.piq-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.piq-features li:last-child { border-bottom: none; }
.piq-features li i { color: var(--gold); font-size: 0.78rem; flex-shrink: 0; margin-top: 4px; }

/* COMPREHENSIVE ESSAY PACKAGE */
.comprehensive-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px 44px;
  box-shadow: var(--shadow-lg);
  margin-top: 56px;
  border: 2px solid var(--gold);
}
.comprehensive-header {
  margin-bottom: 28px;
}
.comprehensive-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 8px;
}
.comprehensive-header p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.75;
}
.comp-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.comprehensive-card {
  background: rgba(253,181,21,0.08);
  border: 1px solid rgba(253,181,21,0.32);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.comp-value-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(253,181,21,0.14);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 26px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}
.comp-value-callout i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.comp-value-callout strong {
  color: var(--gold);
  font-weight: 700;
}
.comp-card-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  align-items: start;
}
.comp-card-left { display: flex; flex-direction: column; }
.comp-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.comp-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}
.comp-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 14px 0 4px;
}
.comp-price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  display: block;
}
.comp-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.comp-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
}
.comp-meta-item i { color: var(--gold); font-size: 0.85rem; width: 16px; text-align: center; }
.comp-features-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.comp-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comp-features li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.6;
}
.comp-features li:last-child { border-bottom: none; }
.comp-features li i {
  color: var(--gold);
  font-size: 0.82rem;
  position: absolute;
  left: 0;
  top: 15px;
}
.comp-features li strong {
  color: var(--gold);
  font-weight: 700;
}
.prompt-name {
  color: var(--gold);
  font-weight: 700;
}
.comp-footnote {
  margin-top: 28px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.comp-footnote a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
}
@media (max-width: 720px) {
  .comprehensive-wrap { padding: 28px 22px 32px; }
  .comp-card-top { grid-template-columns: 1fr; gap: 28px; }
  .comp-price { font-size: 2.4rem; }
}

/* responsive */
@media (max-width: 860px) {
  .pricing-grid       { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .piq-options-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .piq-bundle-wrap    { padding: 28px 22px 32px; }
}

/* ============================================================
   TERMS & POLICIES PAGE
   ============================================================ */
.terms-section {
  padding: 72px 0 96px;
  background: var(--off-white);
}
.terms-inner {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.terms-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  font-style: italic;
}
.terms-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 36px 0 14px;
  font-weight: 600;
}
.terms-inner h2:first-of-type { margin-top: 0; }
.terms-inner p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}
.terms-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.terms-inner ul li {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 8px;
}
.terms-inner a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 700;
}
.terms-inner a:hover { color: var(--gold-dark); }
.terms-contact {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}
.terms-contact h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.terms-contact p { margin: 0; }
.terms-updated {
  margin-top: 36px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
@media (max-width: 720px) {
  .terms-inner { padding: 36px 28px; }
}
