/* ==========================================================================
   Sparkin Advisory — stylesheet
   ========================================================================== */

:root {
  --navy: #097c87;
  --navy-dark: #063a40;
  --navy-soft: #23ced9;
  --gold: #fca47c;
  --gold-hover: #f9d779;
  --gold-light: #f9d779;
  --gold-ink: #9f3504;
  --cream: #faf6ef;
  --white: #ffffff;
  --text: #16343a;
  --muted: #4f6e70;
  --border: #d4e8d7;
  --shadow: 0 20px 50px -20px rgba(9, 124, 135, 0.3);
  --radius: 14px;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-color: var(--navy-soft) var(--cream); scrollbar-width: thin; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--muted); }

::selection { background: var(--gold-light); color: var(--navy-dark); }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy-soft); border-radius: 8px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }

.hero :focus-visible,
.page-hero :focus-visible,
.cta-strip :focus-visible,
.site-footer :focus-visible,
.history-panel :focus-visible {
  outline-color: var(--gold-light);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

.section-tight { padding: 56px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Motion ---------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-top h1 { animation: fadeUp 0.8s var(--ease) both; }
.hero-top .lead { animation: fadeUp 0.8s var(--ease) 0.08s both; }
.hero-actions { animation: fadeUp 0.8s var(--ease) 0.16s both; }
.hero-showcase { animation: fadeUp 0.8s var(--ease) 0.24s both; }

.page-hero h1 { animation: fadeUp 0.8s var(--ease) both; }
.page-hero p { animation: fadeUp 0.8s var(--ease) 0.1s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-top h1, .hero-top .lead, .hero-actions, .hero-showcase, .page-hero h1, .page-hero p { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 12px 24px -10px rgba(252, 164, 124, 0.6);
}

.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(249, 215, 121, 0.65); }

.btn-outline {
  background: transparent;
  border-color: rgba(9, 124, 135, 0.25);
  color: var(--navy);
}

.btn-outline:hover { border-color: var(--navy); background: rgba(9, 124, 135, 0.04); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255,255,255,0.7); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links a {
  color: var(--navy-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover { color: var(--navy); }

.nav-links a.active { color: var(--navy); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s var(--ease);
}

/* ---------- Tag (micro-label) ---------- */

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 14px;
}

.tag-light { color: var(--gold-light); }
.tag-center { display: block; text-align: center; }

.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }

/* ---------- Hero ---------- */

.hero { background: var(--navy-dark); }

.hero-panel {
  background: var(--navy-dark);
  border-radius: 0 0 40px 40px;
  padding: 52px 0 48px;
  color: var(--white);
  position: relative;
}

.hero-panel .container { padding: 0 52px; }

.hero-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 36px;
}

.hero-top h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  margin: 0;
}

.hero-top h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-top .lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin: 0;
  padding-top: 10px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; padding-bottom: 40px; }

.hero-showcase-wrap { position: relative; }

.hero-showcase {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  background:
    radial-gradient(circle at 18% 24%, rgba(249, 215, 121, 0.5), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(252, 164, 124, 0.55), transparent 46%),
    radial-gradient(circle at 60% 85%, rgba(35, 206, 217, 0.55), transparent 50%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.hero-showcase svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 44px -14px rgba(6, 58, 64, 0.4);
  color: var(--text);
  z-index: 2;
}

.float-card-progress {
  top: 26px;
  left: 26px;
  width: 210px;
  padding: 18px 20px;
}

.float-card-progress .tag { margin-bottom: 8px; font-size: 0.66rem; }
.float-card-progress strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--navy); }
.float-card-progress .bar { height: 6px; border-radius: 999px; background: var(--border); margin-top: 10px; overflow: hidden; }
.float-card-progress .bar span { display: block; height: 100%; width: 80%; background: var(--gold); border-radius: 999px; }

.float-card-testimonial {
  bottom: -32px;
  right: 30px;
  width: 320px;
  padding: 24px 26px;
}

.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); stroke: none; }

.float-card-testimonial p.quote { font-size: 0.92rem; color: var(--text); margin-bottom: 16px; }
.float-card-testimonial .t-person { margin-top: 0; }

@media (max-width: 960px) {
  .hero-top { grid-template-columns: 1fr; gap: 20px; }
  .hero-top .lead { padding-top: 0; }
  .hero-showcase { height: 300px; }
  .float-card-testimonial { position: static; width: 100%; margin-top: 56px; }
  .float-card-progress { top: 20px; left: 20px; }
}

@media (max-width: 640px) {
  .hero-panel { padding: 36px 0 40px; border-radius: 0 0 24px 24px; }
  .hero-panel .container { padding: 0 24px; }
  .float-card-progress { display: none; }
}

/* ---------- Clients strip ---------- */

.clients-strip { padding: 44px 0 12px; }

.clients-strip .tag-line {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 22px;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 48px;
}

.wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  opacity: 0.82;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.wordmark:hover { opacity: 1; transform: translateY(-2px); }

.wordmark-servicenow { color: #05a34a; font-family: var(--serif); }
.wordmark-uber { color: #0a0a0a; letter-spacing: 0.04em; }
.wordmark-sap { color: #0654a3; letter-spacing: 0.02em; }
.wordmark-workday { color: #f7941d; font-style: italic; }
.wordmark-paypal { color: #0f2f63; font-family: var(--serif); font-style: italic; }

.wordmark-google b {
  font-family: var(--serif);
  font-weight: 700;
  font-style: normal;
}
.wordmark-google b:nth-child(1) { color: #4285f4; }
.wordmark-google b:nth-child(2) { color: #ea4335; }
.wordmark-google b:nth-child(3) { color: #fbbc05; }
.wordmark-google b:nth-child(4) { color: #4285f4; }
.wordmark-google b:nth-child(5) { color: #34a853; }
.wordmark-google b:nth-child(6) { color: #ea4335; }

/* ---------- Stat split ---------- */

.split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-stats h2 { margin-bottom: 14px; }

.stat-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
}

.stat-card strong { display: block; font-family: var(--serif); font-size: 2.3rem; color: var(--navy); }
.stat-note { font-size: 0.8rem; color: var(--muted); margin-top: 18px; }

@media (max-width: 960px) {
  .split-stats { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .stat-card-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 20px 18px; }
  .stat-card strong { font-size: 1.8rem; }
}

/* ---------- Feature cards ---------- */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.feature-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-badge svg { width: 34px; height: 34px; stroke: var(--navy-dark); }

.feature-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; }

.feature-card .card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-ink);
}

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

/* ---------- Plan cards ---------- */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: scale(1.035);
  box-shadow: 0 30px 60px -20px rgba(6, 58, 64, 0.5);
}

.plan-card.featured h3, .plan-card.featured .tag { color: var(--white); }
.plan-card.featured p { color: rgba(255, 255, 255, 0.72); }

.plan-highlight {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 4px 0 20px;
}

.plan-card.featured .plan-highlight { color: var(--gold-light); }

.plan-card .btn { margin-bottom: 22px; }

.plan-features { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; }
.plan-features li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--gold-ink); margin-top: 2px; }
.plan-card.featured .plan-features li { border-color: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.85); }
.plan-card.featured .plan-features li svg { stroke: var(--gold-light); }

.plan-card .see-more {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-ink);
}
.plan-card.featured .see-more { color: var(--gold-light); }

@media (max-width: 960px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; order: -1; }
}

.page-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
}

.page-hero .tag { text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ---------- Disclaimer note ---------- */

.disclaimer-note {
  background: rgba(252, 164, 124, 0.16);
  border: 1px solid rgba(252, 164, 124, 0.45);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--navy);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.disclaimer-note svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--gold-ink); margin-top: 2px; }
.disclaimer-note p { margin: 0; color: var(--text); }
.disclaimer-note strong { color: var(--navy); }

/* ---------- Service / value / team index rows ---------- */

.index-list, .value-list, .contact-info-list { border-top: 1px solid var(--border); }

.index-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 6px;
  border-bottom: 1px solid var(--border);
  border-radius: 10px;
  transition: background-color 0.25s var(--ease);
}

.index-row:hover, .index-row:focus-visible { background: rgba(9, 124, 135, 0.035); }

.row-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.row-icon svg { width: 26px; height: 26px; stroke: var(--navy-dark); }

.index-row h3 { font-size: 1.2rem; margin-bottom: 6px; }
.index-row p { margin: 0; font-size: 0.95rem; max-width: 560px; }

.row-arrow { width: 22px; height: 22px; stroke: var(--gold-ink); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.index-row:hover .row-arrow, .index-row:focus-visible .row-arrow { transform: translateX(6px); }

@media (max-width: 640px) {
  .index-row { grid-template-columns: 44px 1fr; row-gap: 10px; gap: 18px; padding: 24px 4px; }
  .row-icon { width: 44px; height: 44px; }
  .row-icon svg { width: 20px; height: 20px; }
  .row-arrow { display: none; }
}

/* ---------- Testimonials ---------- */

.testimonials { background: var(--cream); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.t-quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.t-card p.quote { color: var(--text); font-size: 0.98rem; }

.t-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }

.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark); font-family: var(--serif); font-weight: 700;
}

.t-person strong { display: block; font-size: 0.92rem; color: var(--navy); }
.t-person span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Process / timeline ---------- */

.process { background: var(--white); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  padding-top: 54px;
}

.timeline-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  background: var(--gold);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.timeline-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.9rem; }

@media (max-width: 960px) {
  .timeline::before { display: none; }
}

/* ---------- CTA strip (full-width, footer-adjacent) ---------- */

.cta-strip {
  background: var(--navy-dark);
  padding: 64px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}

.pill-mark {
  width: 22px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: inline-block;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0;
  max-width: 560px;
}

.cta-strip .btn { flex-shrink: 0; }

@media (max-width: 720px) {
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip .btn { width: 100%; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  margin-top: 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-weight: 700;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a { transition: color 0.2s var(--ease); }
.footer-grid a:hover { color: var(--gold-light); }

.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }

.footer-legal {
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  max-width: 900px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { opacity: 0.8; transition: opacity 0.2s var(--ease), color 0.2s var(--ease); }
.footer-bottom a:hover { opacity: 1; color: var(--gold-light); }

.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Service detail sections ---------- */

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.service-detail:first-of-type { border-top: none; }

.service-detail .row-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.service-detail .row-icon svg { width: 30px; height: 30px; }

.service-tag {
  display: inline-block;
  background: rgba(252, 164, 124, 0.18);
  color: var(--gold-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li:last-child { border-bottom: none; }
.check-list svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gold-ink); margin-top: 2px; }

/* ---------- FAQ ---------- */

.faq { background: var(--white); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
  margin-bottom: 14px;
  background: var(--cream);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-ink);
  font-weight: 400;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { padding-bottom: 18px; margin: 0; font-size: 0.94rem; }

/* ---------- Values grid (about) ---------- */

.value-row {
  display: flex;
  gap: 18px;
  padding: 30px 28px;
  border-bottom: 1px solid var(--border);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.value-row:nth-child(odd) { border-right: 1px solid var(--border); }

.value-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--navy-dark); }
.value-row h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-row p { margin: 0; font-size: 0.92rem; }

/* ---------- Team columns (about) ---------- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.team-col { padding-top: 20px; border-top: 1px solid var(--border); }
.team-col h3 { font-size: 1.05rem; margin-bottom: 8px; }
.team-col p { font-size: 0.92rem; margin: 0; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pull-quote {
  background: rgba(252, 164, 124, 0.16);
  border-radius: 16px;
  padding: 38px 34px;
}

.pull-quote .quote-glyph {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold-ink);
  display: block;
  margin-bottom: 6px;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
}

.history-panel {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 56px;
}

.history-panel h2 { color: var(--white); }
.history-panel p { color: rgba(255,255,255,0.72); }

.history-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.history-grid strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold-light); margin-bottom: 6px; }
.history-grid span { font-size: 0.88rem; }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
}

.contact-info-row .row-icon { flex-shrink: 0; width: 44px; height: 44px; }
.contact-info-row .row-icon svg { width: 20px; height: 20px; }

.contact-info-row h4 { margin-bottom: 4px; font-size: 0.98rem; color: var(--navy); }
.contact-info-row p { margin: 0; font-size: 0.92rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.94rem;
  background: var(--cream);
  color: var(--text);
  caret-color: var(--navy);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }

.map-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  background: repeating-linear-gradient(135deg, #eee3cf 0 2px, #f6efe1 2px 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--serif);
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .about-story, .contact-grid, .team-grid { grid-template-columns: 1fr; }
  .history-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: 1fr; }
  .value-row:nth-child(odd) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .history-panel { padding: 34px 24px; }
  .history-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--navy-soft);
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn { margin-top: 10px; }
