:root {
  --bg: #f4ede4;
  --bg-strong: #f8f3ec;
  --surface: rgba(255, 251, 246, 0.84);
  --surface-strong: #fffaf2;
  --text: #101010;
  --muted: #5f544c;
  --line: rgba(16, 16, 16, 0.1);
  --accent: #d6651f;
  --accent-dark: #b24c12;
  --shadow: 0 24px 60px rgba(16, 16, 16, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 101, 31, 0.14), transparent 34%),
    radial-gradient(circle at 85% 16%, rgba(16, 16, 16, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 50%, #efe4d6 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.site-shell::before {
  top: -120px;
  right: -120px;
  background: rgba(214, 101, 31, 0.22);
}

.site-shell::after {
  left: -160px;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.45);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(244, 237, 228, 0.76);
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.nav-wrap,
.footer-wrap,
.highlight-grid,
.difference-grid,
.cta-wrap {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  width: clamp(148px, 18vw, 190px);
  display: inline-flex;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 10px 16px rgba(16, 16, 16, 0.06));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 70px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.service-card,
.process-step,
.difference-list article,
.contact-card,
.cta-copy,
.section-heading {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  letter-spacing: -0.06em;
}

.hero-text,
.difference-copy p,
.cta-copy p,
.service-card p:last-child,
.process-step p,
.difference-list p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.07rem;
}

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

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 16px 34px rgba(178, 76, 18, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(178, 76, 18, 0.34);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(16, 16, 16, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.82);
}

.button-full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(16, 16, 16, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-card,
.service-card,
.process-step,
.difference-list article,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 246, 235, 0.72)),
    var(--surface);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(214, 101, 31, 0.14);
}

.logo-stage {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(214, 101, 31, 0.16), transparent 38%),
    linear-gradient(180deg, #fffdf9 0%, #f6ede4 100%);
  border: 1px solid rgba(16, 16, 16, 0.06);
}

.logo-stage img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(16, 16, 16, 0.08));
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.signal-grid article {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 16, 16, 0.07);
}

.signal-grid span,
.card-index,
.process-step span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.signal-grid h2 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.signal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.highlight-band {
  padding: 14px 0 6px;
}

.highlight-grid {
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.highlight-grid p {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.difference-copy h2,
.cta-copy h2 {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.process-step,
.difference-list article {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.service-card h3,
.process-step h3,
.difference-list h3 {
  font-size: 1.42rem;
  margin-bottom: 12px;
}

.service-card p,
.process-step p,
.difference-list p {
  margin: 0;
}

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

.process-step {
  position: relative;
  min-height: 230px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(214, 101, 31, 0.12);
}

.difference-grid {
  gap: 26px;
  align-items: start;
}

.difference-copy,
.difference-list {
  flex: 1;
}

.difference-copy p:last-child {
  max-width: 56ch;
  margin-top: 20px;
}

.difference-list {
  display: grid;
  gap: 18px;
}

.cta {
  padding-bottom: 110px;
}

.cta-wrap {
  gap: 28px;
  align-items: stretch;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(214, 101, 31, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(246, 235, 223, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.cta-copy,
.contact-card {
  flex: 1;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.contact-meta a,
.contact-meta span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(16, 16, 16, 0.08);
  font-weight: 700;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
}

.contact-card label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(178, 76, 18, 0.62);
  box-shadow: 0 0 0 4px rgba(214, 101, 31, 0.12);
  background: #fff;
}

.contact-card textarea {
  resize: vertical;
  min-height: 138px;
}

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

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #1b6b39;
}

.form-status[data-state="error"] {
  color: #9d2d19;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-wrap {
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .nav-wrap,
  .highlight-grid,
  .difference-grid,
  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    padding: 14px 0;
  }

  .site-nav {
    font-size: 0.92rem;
  }

  .highlight-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-card,
  .service-card,
  .process-step,
  .difference-list article,
  .contact-card,
  .cta-wrap {
    border-radius: 24px;
  }

  .hero-points li,
  .contact-meta a,
  .contact-meta span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
