:root {
  --teal: #2fc2c0;
  --teal-deep: #20aaa8;
  --gold: #ffc92d;
  --gold-soft: #ffe48f;
  --ink: #4e5054;
  --ink-soft: #6b6d73;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --line: rgba(78, 80, 84, 0.12);
  --shadow: 0 24px 60px rgba(31, 59, 59, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0%, #fffaf0 35%, #f7fffd 100%);
  position: relative;
  overflow-x: hidden;
}

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

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

.page-glow {
  position: fixed;
  inset: auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
  z-index: -1;
}

.page-glow-one {
  top: -140px;
  left: -120px;
  background: rgba(47, 194, 192, 0.24);
}

.page-glow-two {
  top: 180px;
  right: -140px;
  background: rgba(255, 201, 45, 0.18);
}

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

.section {
  padding: 92px 0;
}

.section-tight {
  padding-top: 48px;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 18px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(34, 62, 62, 0.08);
}

.brand-logo,
.footer-logo {
  width: 210px;
  height: 78px;
  object-fit: cover;
  object-position: center 34%;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 700;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--teal-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(47, 194, 192, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(47, 194, 192, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
}

.button-small {
  padding: 12px 18px;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  line-height: 1;
}

.button-secondary .button-icon {
  background: rgba(47, 194, 192, 0.12);
  color: var(--teal-deep);
}

.hero {
  padding-top: 82px;
  padding-bottom: 56px;
}

.hero-layout,
.story-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.cta-panel h2,
.contact-copy h2,
.hero-card h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
  color: var(--teal);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.story-copy p,
.contact-copy p,
.hero-card p,
.service-card p,
.feature-card p,
.process-card p,
.cta-panel p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 18px;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-actions,
.hero-points,
.footer-links,
.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points span {
  padding: 12px 16px;
  background: rgba(255, 201, 45, 0.16);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
}

.hero-card,
.trust-row,
.service-card,
.story-panel,
.feature-card,
.process-card,
.cta-panel,
.quote-form,
.faq-list details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  align-self: start;
}

.quote-form-compact {
  padding: 0;
  margin-top: 22px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.quote-form-compact .button {
  margin-top: 8px;
}

.mission-layout {
  align-items: stretch;
  gap: 50px;
}

.mission-card {
  background:
    radial-gradient(circle at top right, rgba(255, 201, 45, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.88);
}

.mission-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 20px 8px 20px 4px;
}

.mission-copy h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
}

.mission-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 60%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 201, 45, 0.16);
}

.hero-card-top {
  position: relative;
}

.card-label {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 900;
}

.mini-values {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
  margin-top: -18px;
  position: relative;
  z-index: 2;
}

.trust-row article,
.feature-card,
.process-card {
  display: grid;
  gap: 8px;
}

.trust-row strong,
.service-card h3,
.story-panel h3,
.feature-card h3,
.process-card h3,
.faq-list summary,
.cta-panel h2,
.contact-copy h2 {
  font-family: "Poppins", sans-serif;
}

.accent-line {
  margin: -8px 0 24px;
  font-family: "Pacifico", cursive;
  font-size: 1.35rem;
  color: var(--teal-deep);
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.03;
  margin-bottom: 14px;
}

.services-grid,
.feature-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.services-grid,
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.service-card,
.feature-card,
.process-card {
  padding: 30px;
  border-radius: 26px;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(47, 194, 192, 0.08), rgba(255, 255, 255, 0.92) 52%);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 194, 192, 0.14), rgba(255, 201, 45, 0.16));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal-deep);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3,
.feature-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}

.story-copy {
  display: grid;
  gap: 20px;
}

.story-copy p {
  margin: 0;
}

.story-panel {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 45, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.88);
}

.story-logo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 18px;
  border-radius: 22px;
}

.story-panel-copy {
  max-width: 36ch;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 201, 45, 0.1), rgba(255, 255, 255, 0.92));
}

.process-card span {
  color: var(--teal-deep);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 22px;
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(47, 194, 192, 0.12), rgba(255, 201, 45, 0.12)),
    rgba(255, 255, 255, 0.9);
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.contact-layout {
  align-items: start;
}

.contact-notes {
  margin-top: 24px;
}

.contact-notes p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 194, 192, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 10px;
  padding: 32px;
  border-radius: 30px;
}

.quote-form label {
  margin-top: 6px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(78, 80, 84, 0.14);
  border-radius: 16px;
  background: var(--paper-strong);
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
  min-height: 112px;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-footer {
  padding: 26px 0 48px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-links {
  justify-content: flex-end;
  font-weight: 700;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .story-layout,
  .contact-layout,
  .faq-layout,
  .services-grid,
  .feature-grid,
  .process-grid,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    border-radius: 28px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .topbar,
  .hero-layout,
  .story-layout,
  .contact-layout,
  .faq-layout,
  .services-grid,
  .feature-grid,
  .process-grid,
  .trust-row,
  .cta-panel,
  .footer-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    border-radius: 24px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand-logo,
  .footer-logo {
    width: 190px;
    height: 70px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .trust-row {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .hero-card,
  .service-card,
  .story-panel,
  .feature-card,
  .process-card,
  .cta-panel,
  .quote-form,
  .faq-list details,
  .trust-row {
    padding: 22px;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
