:root {
  /* Backgrounds – warm light */
  --bg: #f5f0e9;        /* Main page background: warm white */
  --bg-alt: #f9f4ee;    /* Slightly different for alternating sections */
  --card: #fdfdfd;      /* Cards / panels on top */

  /* Accents */
  --accent: #f97316;    /* Warm orange – primary CTA */
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-2: #22c55e;  /* Fresh green – secondary, success, tags */

  /* Text */
  --text: #111827;      /* Main text: dark grey */
  --muted: #6b7280;     /* Secondary / muted text */

  /* Borders & shadows */
  --border: #e5e7eb;
  --max-width: 1120px;
  --radius-lg: 18px;
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #f9f4ee 0, #f5f0e9 40%, #efe5db 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3.5rem;
}

/* HEADER & NAV */

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #4f46e5, #22c55e, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #eef2ff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
  font-size: 0.95rem;
}

.logo-text strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  display: block;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff7ed;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #9a3412;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.nav-toggle.nav-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.nav-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Pill */

.pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: none;
  white-space: nowrap;
}

.pill-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316;
  margin-right: 0.45rem;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
  padding: 1.2rem 0 2.8rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.hero-main {
  max-width: 38rem;
}

/* Hero heading */
.hero h1 {
  font-size: clamp(2.6rem, 3.1vw + 1.6rem, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #111827;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-fit {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-fit li + li {
  margin-top: 0.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-meta span strong {
  color: #111827;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-primary {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #020617;
  font-weight: 600;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.35);
  text-decoration: none;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.hero-panel {
  background: radial-gradient(circle at top left, #ffffff, #f3ece4);
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-panel-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-panel-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.hero-panel-copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.chip {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.74rem;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.7);
  color: #9a3412;
}

/* KPIs */

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.kpi {
  background: var(--card);
  border-radius: 16px;
  padding: 0.8rem 0.8rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
}

.kpi-label {
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.kpi-value {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.kpi-tag {
  font-size: 0.72rem;
  color: #4b5563;
}

/* SECTIONS + TAGLINES */

.section {
  padding: 2.8rem 0 2.4rem;
  border-top: 1px solid #e5e7eb;
  scroll-margin-top: 80px;
}

.section-alt {
  background: var(--bg-alt);
  border-radius: 24px;
  border: 1px solid #f1e4d6;
  padding: 2.4rem 1.6rem 2.4rem;
  margin-top: 2.2rem;
}

.section-header h2,
.two-column h2,
.section-cta h2,
.section-faq h2,
.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1.1rem + 1.2vw, 2.05rem);
  line-height: 1.25;
  font-weight: 700;
  color: #111827;
}

.section-header p,
.section-intro {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 30rem;
}

/* Tagline with underline */

.tagline {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9a3412;

  text-decoration-line: underline;
  text-decoration-color: #f97316;
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.35em;
}

/* SERVICES */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem 1rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(249, 115, 22, 0.16),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9a3412;
  margin-bottom: 0.7rem;
}

.service-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.45rem;
}

.service-body {
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.service-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

/* PROCESS / RESULTS LAYOUT */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.9rem;
  align-items: flex-start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.list-bullet {
  margin-top: 0.23rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #9a3412;
}

/* CASE / RESULTS CARD */

.case-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.case-label {
  font-size: 0.76rem;
  color: #a16207;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.case-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.case-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.case-kpis div {
  font-size: 0.78rem;
  color: #4b5563;
}

.case-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
}

/* MID-PAGE CTA */

.section-cta {
  border-top: none;
}

.section-cta-inner {
  background: linear-gradient(135deg, #fff7ed, #f5f0e9);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.6rem 2.1rem;
  text-align: center;
}

.section-cta-inner h2 {
  margin: 0 0 0.7rem;
}

.section-cta-inner p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: #7c2d12;
}

/* FAQ */

.section-faq {
  border-top: 1px solid #e5e7eb;
}

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
}

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

.faq-item p {
  margin: 0.4rem 0 0.3rem;
  font-size: 0.86rem;
  color: #4b5563;
}

/* CONTACT */

.contact-card {
  background: linear-gradient(135deg, #fff7ed, #f5f0e9);
  border-radius: 24px;
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-lg);
  font-size: 0.86rem;
}

.contact-copy {
  margin: 0.3rem 0 0.8rem;
  font-size: 0.9rem;
  color: #7c2d12;
}

.contact-benefits {
  margin: 0 0 0.9rem;
  padding-left: 1.5rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.contact-benefits li + li {
  margin-top: 0.25rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.contact-row a {
  font-size: 0.86rem;
  color: var(--accent);
  text-decoration: none;
}

.contact-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

/* FOOTER */

footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.1rem;
  margin-top: 2.4rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

footer a {
  color: #6b7280;
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
  }

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

  .pill {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .kpi-grid,
  .case-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-alt {
    padding: 2rem 1.25rem 2rem;
  }
}

@media (max-width: 600px) {
  .kpi-grid,
  .case-kpis {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-cta-inner {
    text-align: left;
  }
}

/* ===== MOBILE VERSION (up to 768px) ===== */

@media (max-width: 768px) {

  body {
    background: #f5f0e9; /* slightly simpler background on small screens */
  }

  .page {
    padding: 1.25rem 1rem 2.4rem;
  }

  /* Header */
  .site-header {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    row-gap: 0.75rem;
  }

  .logo-text span {
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 247, 237, 0.95);
    border: 1px solid var(--border);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

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

  .pill {
    display: none; /* hide booking pill on very small screens */
  }

  /* Hero */
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
    padding: 1.4rem 0 2.2rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  .hero-panel {
    order: 0;              /* show stats card first */
    padding: 1.25rem 1.1rem 1.1rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-fit {
    font-size: 0.88rem;
  }

  .hero-meta {
    font-size: 0.82rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Sections */
  .section {
    padding: 2.1rem 0 2rem;
  }

  .section-alt {
    margin-top: 1.6rem;
    padding: 1.7rem 1.25rem 1.8rem;
    border-radius: 18px;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-kpis {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-cta-inner {
    text-align: left;
    padding: 1.7rem 1.25rem 1.8rem;
  }

  .contact-card {
    padding: 1.5rem 1.25rem 1.6rem;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

