:root {
  --ink: #141414;
  --ink-soft: #37322f;
  --paper: #fff8ef;
  --paper-strong: #ffffff;
  --muted: #746a62;
  --line: rgba(20, 20, 20, 0.13);
  --coral: #f15a3b;
  --teal: #147d82;
  --amber: #f5b84b;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  color: #fff;
  background: rgba(20, 20, 20, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.quick-stats,
.section-heading,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--amber);
  border-radius: 7px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  gap: 8px;
  font-size: 0.92rem;
}

.nav-links a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.hero {
  position: relative;
  min-height: 86vh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 42px;
  color: #fff;
  background: #111;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.63) 42%, rgba(8, 8, 8, 0.16) 76%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.65), transparent 45%);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker,
.package-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-panel h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(2.35rem, 5.8vw, 4.8rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 18px 40px rgba(241, 90, 59, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

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

.quick-stats {
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
}

.quick-stats div {
  flex: 1 1 190px;
  min-width: 150px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 42px rgba(20, 20, 20, 0.1);
}

.quick-stats dt {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.quick-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.section h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  background: var(--ink);
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
}

.feature-band article {
  min-height: 260px;
  padding: 38px;
  color: #fff;
  background: #1c1b1a;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  margin-bottom: 32px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 7px;
  font-weight: 900;
}

.feature-band h3,
.package-card h3,
.process-list h3,
.ideas-grid h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.feature-band p,
.package-summary,
.process-list p,
.ideas-grid p,
.section-heading p,
.contact-panel p {
  color: var(--muted);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  max-width: 350px;
  margin: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.package-card.highlighted {
  color: #fff;
  background: var(--teal);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.package-card.highlighted .package-label,
.package-card.highlighted .package-summary,
.package-card.highlighted li {
  color: rgba(255, 255, 255, 0.78);
}

.package-card h3 {
  font-size: 1.7rem;
}

.package-summary {
  min-height: 74px;
  margin: 12px 0 22px;
}

.package-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  color: var(--coral);
  font-weight: 900;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-list article {
  padding: 26px 0 0;
  border-top: 3px solid var(--ink);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  margin-bottom: 20px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-weight: 900;
}

.ideas-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  padding-top: 0;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ideas-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.contact-section {
  padding: 24px 16px 72px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 48px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.form-button {
  width: 100%;
  border: 0;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 150px;
  }

  .intro-grid,
  .feature-band,
  .package-grid,
  .process-list,
  .ideas-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-band {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-summary {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .hero {
    min-height: 86vh;
    padding: 150px 16px 38px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.52)),
      linear-gradient(0deg, rgba(8, 8, 8, 0.73), transparent 54%);
  }

  .quick-stats div {
    flex: 1 1 120px;
    min-width: 0;
  }

  .section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .feature-band article,
  .package-card,
  .ideas-grid article,
  .contact-panel {
    padding: 24px;
  }

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

  .contact-section {
    padding-inline: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
