@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --peach: #F5896E;
  --peach-light: #FBC2A8;
  --peach-soft: #FDE4D5;
  --sienna: #B5482D;
  --sienna-deep: #8C3320;
  --cream: #F8EDD9;
  --cream-deep: #EFE0C0;
  --brown: #3B2A1F;
  --brown-mid: #5C4233;
  --text: #2A1F18;
  --text-light: #6E5A4D;
  --border: #E5D6BC;
  --white: #FFFBF3;
  --shadow: 0 1px 3px rgba(59,42,31,0.08), 0 4px 14px rgba(181,72,45,0.08);
  --shadow-lg: 0 6px 24px rgba(181,72,45,0.16), 0 14px 44px rgba(59,42,31,0.10);
  --radius: 4px;
  --radius-lg: 12px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--brown); letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; letter-spacing: -0.005em; }
p { color: var(--text-light); }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--brown);
  color: var(--cream);
  font-size: 0.84rem;
  letter-spacing: 0.4px;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-tagline { display: flex; align-items: center; gap: 0.6rem; opacity: 0.94; font-weight: 500; }
.topbar-tagline svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--peach); }
.topbar-meta { display: flex; gap: 1.6rem; align-items: center; font-size: 0.8rem; opacity: 0.85; }

/* ---- NAV ---- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(59,42,31,0.04);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--peach), var(--sienna));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(181,72,45,0.28);
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(248,237,217,0.32);
  border-radius: 5px;
  pointer-events: none;
}
.logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: var(--brown); letter-spacing: -0.01em; }
.logo-text span { color: var(--sienna); font-style: italic; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--brown-mid);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--sienna); }
.nav-cta {
  background: var(--brown);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--sienna); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach-soft) 60%, var(--peach-light) 100%);
  padding: 5.5rem 1.5rem 7rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,137,110,0.4), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--brown);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before { content: '★'; color: var(--peach); }
.hero h1 { margin-bottom: 1.4rem; color: var(--brown); }
.hero h1 em { font-style: italic; color: var(--sienna); font-weight: 600; }
.hero-lede {
  font-size: 1.18rem;
  color: var(--brown-mid);
  margin-bottom: 2.2rem;
  max-width: 560px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--sienna);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(181,72,45,0.32);
}
.btn-primary:hover { background: var(--sienna-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-secondary:hover { background: var(--brown); color: var(--cream); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  list-style: none;
  font-size: 0.95rem;
  color: var(--brown-mid);
  font-weight: 600;
}
.hero-points li { display: flex; align-items: center; gap: 0.55rem; }
.hero-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--peach);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(245,137,110,0.22);
}

/* hero visual: stacked promise tiles */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.promise-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.promise-tile:nth-child(1) { transform: translateX(-10px); }
.promise-tile:nth-child(2) { transform: translateX(20px); }
.promise-tile:nth-child(3) { transform: translateX(-5px); }
.promise-tile .pt-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--peach-soft), var(--peach-light));
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna-deep);
}
.promise-tile .pt-icon svg { width: 22px; height: 22px; }
.promise-tile h4 { font-family: 'Source Sans 3', sans-serif; font-size: 0.98rem; font-weight: 700; color: var(--brown); margin-bottom: 0.2rem; }
.promise-tile p { font-size: 0.86rem; color: var(--text-light); line-height: 1.5; }

/* ---- SECTIONS ---- */
section { padding: 5rem 1.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--sienna);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head h2 em { font-style: italic; color: var(--sienna); font-weight: 700; }
.section-head p { font-size: 1.05rem; line-height: 1.7; }

/* ---- TRUST STRIP ---- */
.trust {
  background: var(--brown);
  padding: 2.6rem 1.5rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--peach), var(--sienna), var(--peach));
}
.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-item .lbl {
  font-size: 0.86rem;
  color: var(--cream);
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* ---- INDUSTRIES ---- */
.industries-bg { background: var(--cream); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-card {
  background: var(--white);
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--peach);
  transition: all 0.25s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-left-color: var(--sienna);
}
.industry-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--peach-soft);
  border-radius: var(--radius);
  color: var(--sienna);
  margin-bottom: 1rem;
}
.industry-card .icon svg { width: 22px; height: 22px; }
.industry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--brown); }
.industry-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.55; }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2.2rem 1.8rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--peach), var(--sienna));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.why-card .icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--peach);
  margin-bottom: 1.2rem;
}
.why-card .icon-pill svg { width: 24px; height: 24px; }
.why-card h3 { margin-bottom: 0.7rem; font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--brown); }
.why-card p { font-size: 0.95rem; line-height: 1.65; }

/* ---- PROCESS ---- */
.process-bg {
  background: linear-gradient(180deg, var(--white), var(--cream-deep));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step {
  background: var(--white);
  padding: 2rem 1.8rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.process-step .step-num {
  position: absolute;
  top: -22px;
  left: 1.8rem;
  background: var(--sienna);
  color: var(--cream);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  border: 4px solid var(--cream);
  box-shadow: 0 6px 16px rgba(181,72,45,0.28);
}
.process-step h3 { margin: 1.2rem 0 0.5rem; font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--brown); }

/* ---- LOCATIONS ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.location-pill {
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--brown);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.2s;
}
.location-pill::before {
  content: '◆';
  color: var(--peach);
  font-size: 0.7rem;
}
.location-pill:hover { background: var(--peach-soft); border-color: var(--peach); }

/* ---- FAQ ---- */
.faq-bg { background: var(--cream); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.3rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--sienna);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.5rem 1.4rem; color: var(--text-light); line-height: 1.7; }

/* ---- FINAL CTA ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,137,110,0.32), transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); position: relative; }
.cta-banner h2 em { color: var(--peach); font-style: italic; }
.cta-banner p { color: rgba(248,237,217,0.92); margin: 1.1rem auto 2.2rem; max-width: 600px; position: relative; font-size: 1.05rem; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: var(--cream); color: var(--sienna-deep); }
.cta-banner .btn-primary:hover { background: var(--white); color: var(--brown); }

/* ---- FOOTER ---- */
.footer {
  background: var(--brown);
  color: rgba(248,237,217,0.78);
  padding: 4rem 1.5rem 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(248,237,217,0.14);
}
.footer-col h4 { font-family: 'Source Sans 3', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--peach); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(248,237,217,0.78); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--peach); }
.footer-brand p { margin-top: 0.9rem; max-width: 320px; line-height: 1.6; color: rgba(248,237,217,0.7); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(248,237,217,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- INNER PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 60%, var(--sienna) 130%);
  color: var(--cream);
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,137,110,0.24), transparent 70%);
  pointer-events: none;
}
.page-header h1 { color: var(--cream); position: relative; margin-bottom: 1rem; }
.page-header h1 em { font-style: italic; color: var(--peach); }
.page-header p { color: rgba(248,237,217,0.88); max-width: 660px; margin: 0 auto; position: relative; font-size: 1.12rem; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: rgba(248,237,217,0.7);
  margin-top: 1.6rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.crumbs a { color: var(--peach); text-decoration: none; }

/* ---- ABOUT/SERVICES PROSE ---- */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { font-size: 1rem; margin-bottom: 1.1rem; line-height: 1.75; color: var(--text-light); }
.prose h2 { margin: 2.5rem 0 1rem; font-family: 'Playfair Display', Georgia, serif; }
.prose h3 { margin: 1.8rem 0 0.7rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; color: var(--brown); }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.1rem; color: var(--text-light); }
.prose ul li { margin-bottom: 0.4rem; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .ci {
  width: 42px;
  height: 42px;
  background: var(--peach-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna);
  flex-shrink: 0;
}
.contact-row .ci svg { width: 20px; height: 20px; }
.contact-row .lbl { font-size: 0.74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 0.2rem; font-weight: 700; }
.contact-row .val { color: var(--brown); font-weight: 600; }
.form-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  min-height: 560px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { margin-top: 1rem; }
  .promise-tile:nth-child(1), .promise-tile:nth-child(2), .promise-tile:nth-child(3) { transform: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-inner { height: 64px; }
  .topbar-inner { justify-content: center; gap: 0.4rem; }
  .topbar-meta { display: none; }
  .hero { padding: 4rem 1.5rem 5rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 1.5rem; }
}
