:root {
  --bg: #12110f;
  --surface: #211e1a;
  --surface-muted: #1b1916;
  --ink: #f5efe7;
  --muted: #c8baaa;
  --line: rgba(197, 132, 91, 0.28);
  --accent: #b77a52;
  --accent-dark: #d2a07c;
  --accent-soft: rgba(183, 122, 82, 0.14);
  --header-bg: rgba(18, 17, 15, 0.96);
  --header-border: rgba(197, 132, 91, 0.28);
  --header-ink: #f5efe7;
  --header-muted: #c8baaa;
  --button-primary-bg: #f4eadf;
  --button-primary-text: #17191c;
  --button-primary-hover: #fff7ec;
  --button-primary-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  --button-secondary-bg: transparent;
  --contact-bg: #17191c;
  --contact-text: #f5efe7;
  --contact-button-bg: #f4eadf;
  --contact-button-text: #17191c;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  --font-body: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12110f;
    --surface: #211e1a;
    --surface-muted: #1b1916;
    --ink: #f5efe7;
    --muted: #c8baaa;
    --line: rgba(197, 132, 91, 0.28);
    --accent: #b77a52;
    --accent-dark: #d2a07c;
    --accent-soft: rgba(183, 122, 82, 0.14);
    --header-bg: rgba(18, 17, 15, 0.96);
    --header-border: rgba(197, 132, 91, 0.28);
    --header-ink: #f5efe7;
    --header-muted: #c8baaa;
    --button-primary-bg: #f4eadf;
    --button-primary-text: #17191c;
    --button-primary-hover: #fff7ec;
    --button-primary-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    --button-secondary-bg: transparent;
    --contact-bg: #17191c;
    --contact-text: #f5efe7;
    --contact-button-bg: #f4eadf;
    --contact-button-text: #17191c;
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

body,
button,
input,
textarea,
select,
summary,
details,
.button,
a.button,
.button.primary,
.button.secondary,
.nav-links,
.nav-links a,
.header-email,
.brand-wordmark,
.eyebrow,
.panel-label,
.service-kicker,
.price,
.pricing-list,
.pricing-list .service-card {
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

button,
input,
textarea,
select,
summary,
.button,
a.button {
  font-size: inherit;
  line-height: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--header-border);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  min-width: 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--header-ink);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--accent);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 900;
}

.header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 28px);
}

.nav-links {
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 30px);
  color: var(--header-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.header-email:hover {
  color: var(--accent);
}

.header-email {
  max-width: 100%;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero,
.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: clamp(38px, 6vw, 68px) 0 clamp(42px, 6vw, 76px);
  position: relative;
}

.hero::before {
  position: absolute;
  inset: clamp(16px, 3vw, 30px) auto auto 0;
  width: min(420px, 48vw);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
  opacity: 0.55;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.62fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: end;
}

.hero-content {
  max-width: 740px;
}

.eyebrow,
.panel-label,
.service-kicker {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 6px;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 4.55rem);
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.72rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy,
.section-heading > p:not(.eyebrow),
.text-stack p,
.card p,
.service-card p,
.cost-note p,
.step p,
.contact p {
  color: var(--muted);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: 1.13rem;
}

.pilot-line {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid rgba(182, 120, 81, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--surface-muted);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.button.primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  box-shadow: var(--button-primary-shadow);
}

.button.primary:hover {
  background: var(--button-primary-hover);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--button-secondary-bg);
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 36px);
  border-top: 1px solid var(--line);
}

.text-stack p:last-child,
.card p:last-child,
.service-card p:last-child,
.step p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

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

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

.section-heading > p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.04rem;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.section-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.panel-label {
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.hero-panel,
.step,
.card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.pilot-note {
  border-width: 0 0 0 4px;
  border-color: var(--accent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pilot-note p:not(.panel-label),
.note-line {
  color: var(--muted);
}

.note-line {
  margin-top: 18px;
  font-weight: 800;
}

.hero-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel-button {
  width: 100%;
  margin-top: 26px;
}

.check-list li,
.risk-list p {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.risk-list p::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
  font-weight: 800;
}

.section {
  padding: clamp(38px, 6vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.compact-section {
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

.intro-section {
  border-top: 0;
  padding-top: 0;
}

.help-section {
  padding-top: clamp(32px, 5vw, 52px);
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.journey-row article {
  position: relative;
  border-top: 2px solid var(--line);
  padding-top: 16px;
}

.journey-row article::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.journey-row span,
.step span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.journey-row p,
.workflow-list p,
.pilot-layout p,
.website-points p {
  color: var(--muted);
}

.pilot-section {
  padding-top: clamp(30px, 5vw, 52px);
  padding-bottom: clamp(30px, 5vw, 52px);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 4vw, 32px) 0;
}

.pilot-list {
  display: grid;
  gap: 12px;
}

.pilot-list p {
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-weight: 800;
}

.card {
  padding: 28px;
}

.starter-card {
  min-height: 100%;
}

.website-starter {
  border-color: rgba(182, 120, 81, 0.6);
  background: var(--accent-soft);
}

.quiet-card {
  background: var(--surface-muted);
  box-shadow: none;
}

.services {
  width: 100%;
  max-width: none;
  background: var(--surface-muted);
}

.website-concepts {
  padding-top: clamp(30px, 5vw, 50px);
  padding-bottom: clamp(30px, 5vw, 50px);
}

.website-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
  border-left: 4px solid var(--accent);
  padding: clamp(8px, 2vw, 18px) 0 clamp(8px, 2vw, 18px) clamp(18px, 3vw, 28px);
}

.website-panel .section-heading {
  margin-bottom: 0;
}

.website-points {
  display: grid;
  gap: 10px;
}

.website-points article {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.website-points h3 {
  margin-bottom: 6px;
}

.website-points p {
  margin-bottom: 0;
  color: var(--muted);
}


.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.audience-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.audience-list p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
}

.audience-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(18px, 4vw, 34px);
}

.workflow-list article {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.workflow-list h3 {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.pricing-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pricing-list .service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, max-content);
  gap: 12px clamp(24px, 5vw, 56px);
  align-items: start;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(20px, 3vw, 28px) 0;
  background: transparent;
  box-shadow: none;
}

.pricing-list .service-card.featured {
  border-color: var(--line);
  box-shadow: none;
}

.pricing-list .service-card > p:not(.price),
.pricing-list .service-details {
  grid-column: 1 / -1;
  max-width: 760px;
}

.pricing-list .price {
  justify-self: end;
  max-width: 14rem;
  margin: 0;
  text-align: right;
  white-space: nowrap;
  overflow-wrap: normal;
}

.services > * {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(65, 45, 32, 0.06);
}

.service-card.featured,
.service-card.website-service {
  border-color: rgba(182, 120, 81, 0.58);
  box-shadow: 0 14px 34px rgba(143, 86, 54, 0.1);
}

.service-card.website-service {
  background: var(--accent-soft);
}

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

.service-kicker {
  margin-bottom: 6px;
}

.price {
  margin-bottom: 6px;
  color: var(--ink) !important;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
}

.service-details {
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.service-details summary::after {
  color: var(--accent-dark);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.service-details[open] summary::after {
  content: "-";
}

.service-details div {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.service-details p {
  font-size: 0.95rem;
}

.risk-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 22px;
  border-radius: 16px;
  background: var(--surface-muted);
}

.cost-note-section {
  padding-top: clamp(32px, 5vw, 52px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.cost-note {
  max-width: 1040px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface);
}

.cost-note h2 {
  max-width: 680px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.cost-note > p {
  max-width: 760px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.cost-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: var(--surface-muted);
}

.cost-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.cost-card p {
  font-size: 0.95rem;
}

.cost-note p:last-child,
.cost-card p:last-child {
  margin-bottom: 0;
}

.time-cost-section {
  padding-top: clamp(32px, 5vw, 52px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.time-cost-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.time-cost-content > div > p:not(.eyebrow),
.estimate-note,
.example-card dd {
  color: var(--muted);
}

.estimate-note {
  margin-top: 22px;
  font-size: 0.95rem;
}

.example-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(22px, 4vw, 30px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.example-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.example-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.example-card dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 800;
}

.example-card dd {
  margin: 0;
}


.example-label {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


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

.step {
  padding: 22px;
  background: var(--surface);
}

.step span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
}


.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 6vw, 72px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--contact-bg);
  color: var(--contact-text);
}

.contact > div {
  max-width: 720px;
}

.contact .eyebrow,
.contact h2,
.contact p,
.contact a {
  color: var(--contact-text);
}

.contact p {
  opacity: 0.78;
}

.contact .button.primary {
  flex: 0 0 auto;
  background: var(--contact-button-bg);
  color: var(--contact-button-text);
  box-shadow: none;
}

.contact-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.contact-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--contact-text);
}

.contact-note {
  margin-top: 16px;
  font-size: 0.94rem;
}

.contact-note a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-mark {
  display: block;
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

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

  .brand-wordmark {
    font-size: 1.12rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .nav-links {
    flex: 1 1 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    width: min(260px, 70vw);
  }

  .hero-inner,
  .split-section,
  .time-cost-content,
  .website-panel,
  .pilot-layout,
  .workflow-layout,
  .audience-layout,
  .journey-row,
  .grid.three,
  .cost-grid,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .workflow-list {
    grid-template-columns: 1fr;
  }

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

  .contact {
    display: grid;
  }

  .contact .button {
    width: 100%;
  }

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

@media (max-width: 820px) {
  .pricing-list .service-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-list .price {
    justify-self: start;
    max-width: 100%;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .hero,
  .section,
  .services > * {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    gap: 10px 14px;
    font-size: 0.86rem;
  }

  .grid.five,
  .grid.four,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .header-email {
    font-size: 0.84rem;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

  .button {
    width: 100%;
  }

  .card,
  .service-card,
  .step,
  .hero-panel,
  .website-panel {
    padding: 18px;
  }

  .pilot-note,
  .website-panel {
    padding-right: 0;
  }
}
