/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f6efe4;
  --surface: rgba(255, 250, 244, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: #efe5d6;
  --text: #193b3a;
  --muted: #645b52;
  --line: rgba(25, 59, 58, 0.24);
  --primary: #1f6f68;
  --primary-deep: #154f4a;
  --accent: #d9a441;
  --accent-soft: #fff1d2;
  --shadow: 0 18px 45px rgba(52, 39, 24, 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --site-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.10), transparent 26%),
    linear-gradient(180deg, #fbf6ef 0%, #f1e5d4 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.7;
}

body.home-page {
  background:
    linear-gradient(rgba(246, 239, 228, 0.82), rgba(241, 229, 212, 0.88)),
    url("maybe.png") center center / cover no-repeat fixed;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 6px 18px;
  background: rgba(248, 241, 232, 0.90);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid rgba(31, 111, 104, 0.30);
  overflow: visible;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 230px;
  margin-left: -10px;
  flex-shrink: 0;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin-left: auto;
  padding-left: 560px;
}

.navbar nav {
  position: relative;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  min-width: 52px;
  padding: 0 18px;
  border: 2px solid rgba(31, 111, 104, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

nav a:hover,
nav a.active {
  background: rgba(31, 111, 104, 0.10);
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.hero,
.page-hero {
  padding: 24px 0 36px;
}

.hero .hero-single {
  padding: 28px 36px;
}

.hero .container {
  width: min(var(--site-width), calc(100% - 16px));
}

.problem-section {
  padding: 56px 0 78px;
  background:
    linear-gradient(rgba(248, 241, 232, 0.62), rgba(248, 241, 232, 0.76)),
    url("Background.jpg") center/cover no-repeat;
}

.hero-grid,
.page-hero-card,
.questions-grid,
.services-grid,
.values-grid,
.story-grid,
.trust-grid,
.contact-grid,
.info-grid,
.steps-grid,
.mini-grid,
.hero-points,
.metrics,
.form-row {
  display: grid;
  gap: 22px;
}

.hero-grid,
.page-hero-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.questions-grid,
.services-grid,
.values-grid,
.story-grid,
.trust-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid,
.steps-grid,
.hero-points,
.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid,
.form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.hero-panel,
.page-hero-card,
.story-card,
.service-card,
.info-card,
.contact-panel,
.contact-card,
.trust-card,
.highlight-card,
.value-card,
.step-card,
.cta-band,
.question-card {
  background: var(--surface);
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.page-hero-card,
.contact-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.story-card,
.service-card,
.value-card,
.trust-card,
.step-card,
.highlight-card,
.contact-card,
.info-card,
.question-card,
.report-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7b4f0f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero-card h1,
.section-heading h2,
.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  max-width: 11ch;
  margin-bottom: 20px;
}

.page-hero-card h1,
.section-heading h2,
.cta-band h2 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  margin-bottom: 14px;
}

.lead,
.section-heading p,
.hero-copy p,
.page-hero-card p,
.service-card p,
.story-card p,
.value-card p,
.trust-card p,
.step-card p,
.question-card p,
.contact-card p,
.contact-panel p,
.info-card p,
.highlight-card p {
  color: var(--muted);
}

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

.btn,
.btn-secondary,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn,
button {
  background: linear-gradient(135deg, var(--primary), #2f8a80);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(31, 111, 104, 0.24);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--primary-deep);
  border: 2px solid rgba(31, 111, 104, 0.24);
}

.btn:hover,
.btn-secondary:hover,
button:hover {
  transform: translateY(-2px);
}

.hero-point,
.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 2px solid rgba(31, 111, 104, 0.24);
}

.hero-point strong,
.metric strong {
  display: block;
  margin-bottom: 6px;
}

.insight-card,
.page-hero-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #163c36 0%, #102d29 100%);
  color: #eefbf8;
}

.insight-card p,
.page-hero-panel p {
  color: rgba(238, 251, 248, 0.82);
}

.page-hero-panel strong {
  display: block;
  margin-bottom: 8px;
}

.metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.metric strong {
  font-size: 1.35rem;
}

.section {
  padding: 20px 0 84px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading ul {
  margin-top: 10px;
  padding-left: 22px;
  color: var(--muted);
}

.section-heading li {
  margin-bottom: 8px;
}

.section-heading.centered-list {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered-list ul {
  display: inline-block;
  text-align: left;
}

.familiar-heading {
  margin: 42px auto 0;
  text-align: center;
}

.problem-section .familiar-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #173a35;
}

.problem-section .familiar-heading p {
  max-width: 820px;
  margin: 0 auto;
}

.questions-grid {
  align-items: stretch;
}

.question-item h3 {
  margin-bottom: 14px;
  padding-top: 14px;
  position: relative;
  font-size: 1.15rem;
  text-align: center;
}

.question-item h3::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(243, 182, 92, 0.22);
}

.question-card {
  text-align: center;
  background: rgba(255, 252, 247, 0.95);
  box-shadow: 0 14px 34px rgba(59, 45, 27, 0.08);
}

.service-card ul,
.contact-card ul,
.info-card ul {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li,
.contact-card li,
.info-card li {
  margin-bottom: 8px;
}

.services-grid .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  margin-inline: auto;
}

.highlight-band {
  padding-bottom: 84px;
}

/* 404 page */
.not-found-card {
  text-align: center;
  padding: 80px 40px;
  max-width: 520px;
  margin: 0 auto;
}

.not-found-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.not-found-card h1 {
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.not-found-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* Hero single card */
.hero-single {
  max-width: 100%;
}

.hero-single-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-single-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* Location badge */
.location-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* Founder card */
.founder-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}

.founder-info h2 {
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin: 8px 0 4px;
}

.founder-title {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.founder-info p {
  max-width: 640px;
  margin-bottom: 14px;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  background: #0a66c2;
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-linkedin:hover {
  background: #004182;
}

/* Case studies */
.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.case-card h3 {
  font-size: 1.1rem;
  color: var(--primary-deep);
  margin-bottom: 20px;
}

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

.case-label {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 6px;
}

.case-block p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight-card {
  background: linear-gradient(135deg, rgba(17, 124, 111, 0.10), rgba(243, 182, 92, 0.12));
}

.highlight-card strong {
  color: var(--primary-deep);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 84px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.report-card {
  background: rgba(255, 255, 255, 0.96);
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
}

.report-panel,
.dashboard-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
}

.report-panel-spaced {
  margin-top: 24px;
}

.panel-intro {
  margin: 10px 0 18px;
  color: var(--muted);
}

.report-frame {
  width: 100%;
  height: 860px;
  border: 0;
  border-radius: 18px;
  background: #dfeef7;
}

.dashboard-embed {
  min-height: 760px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbfd 0%, #edf6fb 100%);
  border: 2px solid rgba(25, 59, 58, 0.20);
}

.source-note {
  margin-top: 18px;
  color: var(--muted);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(31, 111, 104, 0.24);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(31, 111, 104, 0.18);
  border-color: var(--primary);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-note,
.status-message,
footer {
  color: var(--muted);
}

.contact-note,
.status-message {
  margin-top: 12px;
}

footer {
  padding: 20px 16px 34px;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 12px 18px;
  }

  .logo-container {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: min(100%, 560px);
    height: 200px;
    margin-left: -8px;
  }

  nav ul,
  .hero-grid,
  .page-hero-card,
  .questions-grid,
  .services-grid,
  .values-grid,
  .story-grid,
  .trust-grid,
  .contact-grid,
  .info-grid,
  .steps-grid,
  .hero-points,
  .metrics,
  .mini-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  nav ul {
    margin-left: 0;
    padding-left: 0;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--site-width), calc(100% - 20px));
  }

  .navbar {
    padding: 12px 12px 16px;
    background: #213242;
    border-bottom: 4px solid #d9c39a;
  }

  .logo-container {
    width: min(100%, 240px);
    height: 96px;
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 3;
    width: 96px;
    min-width: 96px;
    height: 96px;
    min-height: 96px;
    padding: 0;
    border: 2px solid rgba(217, 195, 154, 0.45);
    border-radius: 18px;
    background: #3d3d3d;
    color: #ecd8a7;
    box-shadow: inset 0 0 0 2px rgba(112, 90, 50, 0.4);
  }

  .menu-toggle::before {
    content: "\2630";
    font-size: 2.2rem;
    line-height: 1;
  }

  .menu-toggle span {
    display: none;
  }

  nav ul {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(280px, calc(100vw - 24px));
    display: none;
    margin-top: 0;
    margin-left: 0;
    padding: 12px;
    padding-left: 12px;
    border: 3px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: 0 18px 40px rgba(22, 29, 37, 0.28);
    z-index: 2;
  }

  nav ul.menu-open {
    display: grid;
    gap: 8px;
  }

  nav li {
    width: 100%;
  }

  nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .contact-panel,
  .story-card,
  .service-card,
  .value-card,
  .trust-card,
  .step-card,
  .highlight-card,
  .contact-card,
  .info-card,
  .question-card,
  .report-card,
  .case-card,
  .testimonial-card,
  .founder-card,
  .cta-band {
    padding: 22px;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-info p {
    margin-inline: auto;
  }

  .case-body {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .report-frame {
    height: 70vh;
  }

  .dashboard-embed {
    min-height: 620px;
  }
}
