:root {
  --ink: #f4f5f7;
  --paper: #05070a;
  --surface: #0c1016;
  --surface-2: #121821;
  --surface-deep: #080b10;
  --soft: #202833;
  --line: #303b49;
  --muted: #aab5c4;
  --blue: #2864ff;
  --blue-light: #91b2ff;
  --nav-hover: #202c44;
  --shadow: #0008;
  --max: 1240px;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --ink: #10151d;
  --paper: #f3f5f8;
  --surface: #ffffff;
  --surface-2: #e8edf4;
  --surface-deep: #edf1f6;
  --soft: #dbe1ea;
  --line: #c4ceda;
  --muted: #536173;
  --blue: #2458dc;
  --blue-light: #214cae;
  --nav-hover: #e4eaf5;
  --shadow: #18223524;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .28s ease, color .28s ease;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 5px; }
::selection { background: var(--blue); color: #fff; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.wrap { width: min(var(--max), calc(100% - 80px)); margin-inline: auto; }
.kicker {
  margin: 0;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 14px 22px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background .16s, border-color .16s, transform .16s;
}
.button:hover { background: #2056df; border-color: #2056df; transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.light { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button.light:hover { background: #fff; border-color: #fff; }
.text-link { font-size: 15px; font-weight: 700; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--line); }
.text-link:hover { color: var(--blue-light); text-decoration-color: currentColor; }
.hero-actions, .section-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.hero-actions > .text-link, .section-actions > .text-link { display: inline-flex; align-items: center; min-height: 44px; }

/* Navigation stays compact; the mobile menu scrolls independently of the page. */
.skip-link { position: fixed; top: 12px; left: 16px; transform: translateY(-160%); z-index: 100; background: var(--ink); color: var(--paper); padding: 12px 18px; font-weight: 750; }
.skip-link:focus { transform: none; }
.site-nav { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--soft); background: var(--paper); transition: background-color .28s ease, border-color .28s ease; }
.nav-inner { width: min(var(--max), calc(100% - 80px)); min-height: 76px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; font-size: 18px; font-weight: 750; letter-spacing: -.025em; white-space: nowrap; }
.brand-logo { width: 36px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.brand-name { display: inline-flex; gap: 5px; align-items: baseline; }
.brand-name i { font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.nav-links a { display: inline-flex; align-items: center; min-height: 44px; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--ink); border-color: var(--ink); }
.nav-links a[aria-current="page"], .services-nav summary.current { color: var(--blue-light); border-bottom-color: var(--blue-light); }
.services-nav { position: relative; }
.services-nav summary { display: flex; min-height: 44px; align-items: center; gap: 9px; cursor: pointer; list-style: none; border-bottom: 1px solid transparent; }
.services-nav summary::-webkit-details-marker { display: none; }
.services-nav summary::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -4px; }
.services-nav[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.services-menu { position: absolute; top: calc(100% + 12px); left: -20px; width: 220px; padding: 10px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 5px; box-shadow: 0 12px 24px #0004; }
.services-menu a { display: flex; }
.menu-toggle { display: none; align-items: center; justify-content: center; gap: 10px; min-width: 86px; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--ink); cursor: pointer; font-size: 14px; font-weight: 700; }
.menu-toggle::after { content: ""; width: 12px; height: 7px; border-block: 1.5px solid currentColor; }
.menu-toggle[aria-expanded="true"] { border-color: var(--blue-light); }
.menu-toggle[aria-expanded="true"]::after { height: 0; border-bottom: 0; }
.theme-toggle { display: inline-flex; min-height: 40px; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; background: var(--surface); color: var(--ink); cursor: pointer; font-size: 13px; font-weight: 700; transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.theme-toggle:hover { border-color: var(--blue-light); transform: translateY(-1px); }
.theme-toggle-icon { position: relative; width: 15px; height: 15px; border: 1.7px solid currentColor; border-radius: 50%; }
.theme-toggle-icon::after { content: ""; position: absolute; inset: -4px; border: 1px dashed currentColor; border-radius: 50%; opacity: .7; transition: transform .3s ease, opacity .3s ease; }
[data-theme="light"] .theme-toggle-icon::after { transform: rotate(45deg) scale(.82); opacity: 0; }
[data-theme="light"] .brand-logo, [data-theme="light"] .footer-brand img { padding: 2px; border-radius: 5px; background: #080b10; }

/* Type-led hero and a clear, contained price summary. */
.hero { padding: 88px 0 66px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 68px; align-items: end; }
.hero h1 { max-width: 880px; margin: 20px 0 26px; font-size: clamp(54px, 7vw, 98px); line-height: 1.025; letter-spacing: -.052em; font-weight: 800; }
.hero-intro { max-width: 620px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.8vw, 21px); line-height: 1.6; }
.hero-proof { margin: 18px 0 0; color: var(--muted); font-size: 15px; }
.hero-proof strong { color: var(--ink); }
.price-lockup { padding: 30px 26px 27px; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 5px; background: var(--surface); }
.price-lockup .amount { display: block; font-size: clamp(82px, 8.5vw, 124px); line-height: 1; letter-spacing: -.07em; font-weight: 800; }
.price-lockup .price-label { display: flex; justify-content: space-between; gap: 20px; margin-top: 16px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.price-lockup p { max-width: 340px; margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--soft); color: var(--muted); font-size: 15px; }
.price-lockup > .kicker { margin: 0; padding: 0; border: 0; color: var(--blue-light); font-size: 12px; }
.hero-mobile-offer { display: none; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; margin: 0 0 26px; }
.breadcrumb a { display: inline-flex; align-items: center; min-height: 44px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span[aria-current] { color: var(--ink); }
.service-hero { padding-top: 24px; }
.service-hero h1 { font-size: clamp(54px, 6.5vw, 90px); max-width: 850px; }
.service-hero .hero-grid { gap: 56px; }
.service-hero .hero-proof { max-width: 580px; }
.pricing-hero h1 { font-size: clamp(66px, 8vw, 112px); }
.pricing-hero .hero-intro { max-width: 660px; }
.pricing-summary { margin-top: 30px; color: var(--muted); }
.pricing-summary strong { color: var(--ink); }
.page-hero-wide h1 { max-width: 950px; }
.page-hero-wide .hero-intro { max-width: 740px; }
.page-hero-wide { padding-bottom: 60px; }

.package { border-block: 1px solid var(--soft); background: var(--surface); }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.package-item { padding: 24px 28px 25px 0; }
.package-item + .package-item { border-left: 1px solid var(--soft); padding-left: 28px; }
.package-item strong { display: block; margin-bottom: 4px; font-size: 16px; letter-spacing: -.02em; }
.package-item span { color: var(--muted); font-size: 14px; }

/* Wide editorial rows become comfortable, numbered cards on phones. */
.section { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 46px; }
.section-head > .kicker { padding-top: 9px; }
.section-head h2 { margin: 0; font-size: clamp(40px, 4.5vw, 64px); line-height: 1.07; letter-spacing: -.043em; }
.section-head > div > p { max-width: 610px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.industries { border-bottom: 1px solid var(--soft); }
.industry-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.industry-link { --service-accent: var(--blue); position: relative; display: grid; grid-template-columns: 1fr auto; align-content: start; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); transition: background-color .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease; }
.industry-link::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--service-accent); transform: scaleY(0); transform-origin: bottom; transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.industry-link:hover { border-color: color-mix(in srgb, var(--service-accent) 66%, var(--line)); background: var(--surface-2); transform: translateY(-4px); box-shadow: 0 18px 42px var(--shadow); }
.industry-link:hover::after { transform: scaleY(1); }
.industry-link--restaurant { --service-accent: #e59342; }
.industry-link--barbershop { --service-accent: #4384ff; }
.industry-link--salon { --service-accent: #d985b1; }
.industry-link--contractor { --service-accent: #cda76a; }
.industry-image { grid-column: 1 / -1; height: 238px; overflow: hidden; background: var(--surface-deep); }
.industry-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .3s ease; }
.industry-link:hover .industry-image img { transform: scale(1.045); }
.industry-index, .feature-row .number { color: var(--blue-light); font-size: 13px; font-weight: 750; }
.industry-link .industry-index { padding: 21px 0 0 24px; color: var(--service-accent); }
.industry-link h3 { grid-column: 1 / -1; margin: 8px 24px 0; font-size: clamp(25px, 2.5vw, 34px); line-height: 1.16; letter-spacing: -.03em; }
.industry-link p { grid-column: 1 / -1; margin: 12px 24px 25px; color: var(--muted); }
.link-arrow { grid-column: 2; grid-row: 2; padding: 15px 22px 0 0; font-size: 27px; color: var(--service-accent); transition: transform .24s ease; }
.industry-link:hover .link-arrow { transform: translate(3px, -3px); }
.feature-intro { max-width: 680px; }
.service-ledger { border-top: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: 70px 1fr 1.3fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.feature-row h3 { margin: 0; font-size: 26px; line-height: 1.22; letter-spacing: -.03em; }
.feature-row p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.plain-note { color: var(--muted); font-size: 15px; margin: 24px 0 0; max-width: 730px; }

.ownership-section { background: var(--surface-deep); border-block: 1px solid var(--soft); }
.ownership-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.ownership-lead h2 { max-width: 650px; margin: 16px 0 22px; font-size: clamp(40px, 4.8vw, 68px); line-height: 1.06; letter-spacing: -.043em; }
.ownership-lead h3 { margin: 0 0 16px; font-size: clamp(28px, 3vw, 40px); line-height: 1.12; letter-spacing: -.035em; }
.ownership-lead p { max-width: 620px; margin: 0 0 22px; color: var(--muted); font-size: 17px; }
.ownership-points { margin: 0; border-top: 1px solid var(--line); }
.ownership-points > div { display: grid; grid-template-columns: minmax(150px, .8fr) 1.2fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.ownership-points dt { font-weight: 750; letter-spacing: -.015em; }
.ownership-points dd { margin: 0; color: var(--muted); }
.ownership-grid--pricing { grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
.comparison-wrap:focus-visible { outline-offset: 4px; }
.comparison-table { width: 100%; min-width: 660px; border-collapse: collapse; background: var(--surface); text-align: left; }
.comparison-table th, .comparison-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table thead th { color: var(--ink); background: var(--surface-2); font-size: 13px; letter-spacing: .04em; }
.comparison-table tbody th { width: 24%; color: var(--ink); font-size: 14px; }
.comparison-table td { color: var(--muted); font-size: 14px; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }

/* Original concept imagery remains uncropped. */
.work { background: var(--surface); }
.work-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.project { min-width: 0; margin: 0; }
.work-grid > .project:nth-child(2) { margin-top: 100px; }
.project-media { position: relative; overflow: hidden; background: var(--surface-deep); border: 1px solid var(--line); border-radius: 6px; padding: 8px; }
.project-media img { width: 100%; height: auto; object-fit: contain; transition: transform .35s; }
.project-media a { display: block; }
.project-media a:focus-visible { outline-offset: -4px; }
.project-media a:hover img { transform: scale(1.012); }
.project-badge { position: absolute; left: 8px; top: 8px; background: var(--blue); color: #fff; padding: 7px 10px; font-size: 11px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.project figcaption { display: flex; justify-content: space-between; align-items: start; gap: 24px; padding-top: 16px; }
.project-title { font-size: 21px; font-weight: 750; letter-spacing: -.02em; }
.project-title a:hover { color: var(--blue-light); }
.project-detail { max-width: 210px; color: var(--muted); font-size: 14px; text-align: right; }
.concept-note { margin: 40px 0 0; padding-left: calc(33.333% + 16px); color: var(--muted); font-size: 16px; }
.concept-note strong { color: var(--ink); }
.single-work { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: center; }
.single-work h2 { font-size: clamp(38px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -.04em; margin: 16px 0 22px; }
.single-work p { color: var(--muted); font-size: 17px; }
.single-work .project-detail { font-size: 13px; }
.single-work .project-title { font-size: 20px; }
.portfolio-work { padding-top: 0; background: var(--paper); }

.offer-ledger { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--surface); }
.offer-rail { padding: 32px; border-right: 1px solid var(--line); background: var(--surface-deep); }
.offer-rail .rail-price { display: block; color: var(--blue-light); font-size: clamp(76px, 8vw, 112px); font-weight: 800; line-height: 1; letter-spacing: -.07em; }
.offer-rail strong { display: block; margin: 20px 0 8px; font-size: 18px; }
.offer-rail p { max-width: 280px; margin: 0; color: var(--muted); font-size: 16px; }
.deliverable-list { counter-reset: deliverable; }
.deliverable { counter-increment: deliverable; display: grid; grid-template-columns: 32px minmax(170px, .7fr) 1fr; gap: 18px; align-items: start; padding: 28px; }
.deliverable + .deliverable { border-top: 1px solid var(--line); }
.deliverable::before { content: "0" counter(deliverable); color: var(--blue-light); font-size: 13px; font-weight: 750; }
.deliverable h3 { margin: 0; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.deliverable p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 430px; }
.editorial-panel { display: grid; grid-template-columns: 1fr 1.4fr; border-block: 1px solid var(--line); }
.editorial-label { padding: 36px 40px 36px 0; }
.editorial-label h3 { font-size: clamp(30px, 3vw, 42px); letter-spacing: -.035em; line-height: 1.12; margin: 0 0 18px; }
.editorial-label p { color: var(--muted); max-width: 340px; }
.editorial-body { padding: 36px 0 36px 44px; border-left: 1px solid var(--line); }
.editorial-body h3 { font-size: 23px; margin: 0 0 12px; letter-spacing: -.025em; }
.editorial-body p { color: var(--muted); font-size: 16px; margin: 0 0 26px; }
.editorial-body p:last-child { margin-bottom: 0; }
.checklist { padding: 0; margin: 0; list-style: none; }
.checklist li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.checklist li:first-child { padding-top: 0; }
.checklist li:last-child { border-bottom: 0; }
.checklist strong { color: var(--ink); }
.questions { border-top: 1px solid var(--line); }
.question { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.question h3 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
.question p { margin: 0; color: var(--muted); font-size: 16px; }
.question a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.process { background: var(--surface-2); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 30px 38px 0 0; }
.step + .step { border-left: 1px solid var(--line); padding-left: 38px; }
.step-num { display: block; margin-bottom: 44px; color: var(--blue-light); font-size: 12px; font-weight: 750; letter-spacing: .1em; }
.step h3 { margin: 0 0 10px; font-size: 26px; line-height: 1.2; letter-spacing: -.03em; }
.step p { margin: 0; color: var(--muted); font-size: 16px; max-width: 330px; }
.pricing { background: var(--blue); color: #fff; padding: 90px 0; }
.pricing-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.pricing .amount { display: block; font-size: clamp(116px, 19vw, 260px); font-weight: 800; line-height: .9; letter-spacing: -.075em; }
.pricing .total { display: block; margin-top: 25px; font-size: 14px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.pricing-copy h2 { margin: 0 0 18px; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.pricing-copy p { max-width: 480px; margin: 0 0 28px; color: #f0f4ff; font-size: 16px; }
.pricing-copy .pricing-note { margin: 20px 0 0; font-size: 14px; line-height: 1.6; }
.pricing .section-actions { margin-top: 0; }
.pricing .text-link { text-decoration-color: #c1d2ff; }
.pricing .text-link:hover { color: #fff; text-decoration-color: #fff; }
.pricing a:focus-visible { outline-color: #fff; }
.reviews { padding: 64px 0; background: var(--surface); border-block: 1px solid var(--line); }
.reviews-inner { display: grid; grid-template-columns: minmax(0, .72fr) minmax(340px, 1.28fr); gap: 56px; align-items: center; }
.reviews h2 { margin: 14px 0 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.1; letter-spacing: -.04em; }
.trustpilot-panel { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-deep); }
.reviews .trustpilot-widget { width: 100%; min-height: 52px; overflow: hidden; }
.trustpilot-invite { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.trustpilot-review-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 8px; color: var(--ink); font-size: 14px; font-weight: 750; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 5px; }
.trustpilot-review-link:hover { color: var(--blue-light); text-decoration-color: currentColor; }
.contact { padding: 100px 0; background: var(--surface-deep); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.contact h2 { max-width: 800px; margin: 16px 0 0; font-size: clamp(48px, 6vw, 84px); line-height: 1.04; letter-spacing: -.045em; }
.contact-actions { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 14px; }
.contact-intro { color: var(--muted); max-width: 460px; margin: 0 0 8px; font-size: 16px; }
.support-line { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.support-line a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.support-line a:hover { color: var(--blue-light); }
.email-link { display: inline-flex; align-items: center; min-height: 44px; max-width: 100%; font-size: clamp(18px, 2vw, 24px); font-weight: 750; letter-spacing: -.025em; border-bottom: 1px solid var(--ink); overflow-wrap: anywhere; }
.email-link:hover { color: var(--blue-light); border-color: var(--blue-light); }
.copy-email { display: none; min-height: 46px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); padding: 8px 16px; color: var(--ink); font-weight: 650; cursor: pointer; }
.js .copy-email { display: inline-block; }
.copy-email:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.copy-status { min-height: 24px; margin: 0; color: var(--muted); font-size: 14px; }

footer { border-top: 1px solid var(--soft); padding: 48px 0 24px; color: var(--muted); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.footer-brand { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; color: var(--ink); font-weight: 750; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; }
.footer-description { max-width: 290px; font-size: 16px; margin: 10px 0; }
.footer-email { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-support { display: block; width: fit-content; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
.footer-support:hover { color: var(--ink); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 26px; align-content: start; }
.footer-links a { display: flex; align-items: center; min-height: 44px; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-links [aria-current] { color: var(--blue-light); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--soft); display: flex; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; }
.reveal { opacity: 1; transform: none; }
.reveal.is-pending { opacity: 0; transform: translateY(18px); transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }
.industry-link:nth-child(2), .feature-row:nth-child(2) { --reveal-delay: 55ms; }
.industry-link:nth-child(3), .feature-row:nth-child(3) { --reveal-delay: 100ms; }
.industry-link:nth-child(4), .feature-row:nth-child(4) { --reveal-delay: 145ms; }

.hero-grid > div { animation: hero-rise .62s cubic-bezier(.2,.8,.2,1) both; }
.price-lockup, .service-hero-art { animation: hero-rise .68s .1s cubic-bezier(.2,.8,.2,1) both; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.service-hero-art { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: 0 22px 55px var(--shadow); }
.service-hero-art::after { content: ""; position: absolute; inset: 0; border: 1px solid #ffffff16; border-radius: inherit; pointer-events: none; }
.service-hero-art img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.service-hero-art figcaption { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 16px 18px; background: var(--surface); color: var(--muted); font-size: 13px; }
.service-hero-art strong { color: var(--ink); font-size: 14px; }

.package, .industry-link, .price-lockup, .service-hero-art, .offer-ledger, .project-media, .reviews, .contact, footer { transition-property: background-color, border-color, color; transition-duration: .28s; transition-timing-function: ease; }

@media (min-width: 901px) and (max-width: 1150px) {
  .hero-grid { gap: 36px; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); }
  .hero h1 { font-size: 7vw; }
  .service-hero .hero-grid { gap: 32px; }
  .service-hero h1 { font-size: 6.7vw; }
  .price-lockup { padding: 26px 20px; }
  .price-lockup .amount { font-size: 9.2vw; }
  .deliverable { grid-template-columns: 26px 1fr; gap: 12px; }
  .deliverable p { grid-column: 2; }
  .ownership-grid, .ownership-grid--pricing { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero { padding-top: 60px; }
  .hero-grid, .pricing-grid, .contact-grid, .single-work, .offer-ledger { grid-template-columns: 1fr; }
  .hero-grid, .service-hero .hero-grid { display: block; }
  .hero h1 { max-width: 720px; font-size: clamp(54px, 8.2vw, 76px); }
  .price-lockup { display: none; }
  .hero-mobile-offer { display: flex; align-items: center; gap: 22px; max-width: 620px; border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: 5px; background: var(--surface); margin-top: 28px; padding: 18px 22px; }
  .hero-mobile-offer strong { color: var(--ink); font-size: 58px; line-height: 1; letter-spacing: -.06em; }
  .hero-mobile-offer span { padding-left: 22px; border-left: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head > .kicker { padding-top: 0; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .work-grid > .project:nth-child(2) { margin-top: 0; }
  .concept-note { padding-left: 0; }
  .pricing-grid { gap: 44px; }
  .pricing-copy { max-width: 610px; }
  .offer-rail { border-right: 0; border-bottom: 1px solid var(--line); }
  .offer-rail .rail-price { font-size: 92px; }
  .offer-rail p { max-width: 500px; }
  .single-work { gap: 32px; }
  .single-work > div { max-width: 650px; }
  .feature-row { grid-template-columns: 42px 1fr 1.2fr; gap: 22px; }
  .footer-top { grid-template-columns: .8fr 1.2fr; gap: 35px; }
  .contact-grid { gap: 36px; }
  .service-hero { padding-top: 22px; }
  .service-hero-art { margin-top: 34px; max-width: 720px; }
  .pricing-hero h1 { font-size: clamp(66px, 10vw, 90px); }
  .reviews-inner { grid-template-columns: 1fr; gap: 28px; }
  .ownership-grid, .ownership-grid--pricing { grid-template-columns: 1fr; gap: 40px; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .package-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--soft); padding-left: 0; }
  .package-item:nth-child(4) { border-top: 1px solid var(--soft); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 84px; }
  .nav-inner { min-height: 68px; flex-wrap: wrap; position: relative; padding-block: 10px; }
  .js .menu-toggle { display: inline-flex; }
  .nav-links { width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 0 8px; }
  .nav-links > a { padding: 10px 12px; }
  .services-nav summary { padding: 10px 12px; justify-content: space-between; }
  .services-menu { position: static; width: 100%; box-shadow: none; margin-top: 4px; padding: 5px 12px; }
  .services-menu a { padding: 10px 0; }
  .js .nav-links { position: absolute; top: calc(100% + 8px); left: 0; max-height: calc(100vh - 92px); max-height: calc(100dvh - 92px); overflow-y: auto; overscroll-behavior: contain; padding: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 16px 28px var(--shadow); }
  .js .services-nav summary { display: none; }
  .js .services-menu { margin: 0 0 6px; padding: 0 0 10px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .js .services-menu::before { content: "Websites for"; display: block; padding: 4px 12px 8px; font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
  .js .services-menu a { padding: 10px 12px; }
  .js .nav-links a { border-radius: 3px; border: 0; }
  .js .nav-links a:hover, .js .nav-links a[aria-current="page"] { background: var(--nav-hover); }
  .theme-toggle { width: 100%; justify-content: flex-start; margin-top: 8px; border-radius: 4px; padding: 10px 12px; }
  html:not(.js) .site-nav { position: static; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 84px; }
  .wrap, .nav-inner { width: calc(100% - 40px); }
  .nav-inner { min-height: 68px; flex-wrap: wrap; gap: 0; position: relative; padding-block: 10px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand-logo { width: 32px; height: 32px; }
  .js .menu-toggle { display: inline-flex; }
  .nav-links { width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 0 8px; }
  .nav-links > a { padding: 10px 12px; }
  .services-nav summary { padding: 10px 12px; justify-content: space-between; }
  .services-menu { position: static; width: 100%; box-shadow: none; margin-top: 4px; padding: 5px 12px; }
  .services-menu a { padding: 10px 0; }
  .js .nav-links { position: absolute; top: calc(100% + 8px); left: 0; max-height: calc(100vh - 92px); max-height: calc(100dvh - 92px); overflow-y: auto; overscroll-behavior: contain; padding: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 16px 28px #0005; }
  .js .services-nav summary { display: none; }
  .js .services-menu { margin: 0 0 6px; padding: 0 0 10px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .js .services-menu::before { content: "Websites for"; display: block; padding: 4px 12px 8px; font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
  .js .services-menu a { padding: 10px 12px; }
  .js .nav-links a { border-radius: 3px; border: 0; }
  .js .nav-links a:hover, .js .nav-links a[aria-current="page"] { background: var(--nav-hover); }
  .theme-toggle { width: 100%; justify-content: flex-start; margin-top: 8px; border-radius: 4px; padding: 10px 12px; }
  html:not(.js) .site-nav { position: static; }

  .hero { padding: 40px 0 36px; }
  .hero h1, .service-hero h1, .page-hero-wide h1 { font-size: clamp(40px, 10.8vw, 64px); margin: 14px 0 22px; line-height: 1.065; letter-spacing: -.04em; }
  .hero-intro { font-size: 16px; line-height: 1.65; }
  .hero-mobile-offer { margin-top: 24px; padding: 15px 18px; gap: 20px; }
  .hero-mobile-offer strong { font-size: 48px; }
  .hero-mobile-offer span { padding-left: 20px; }
  .hero-actions { margin-top: 20px; gap: 10px 22px; }
  .hero-actions > .button { width: 100%; }
  .hero-proof, .service-hero .hero-proof { margin-top: 12px; font-size: 13px; line-height: 1.6; }
  .service-hero { padding-top: 12px; }
  .breadcrumb { margin-bottom: 18px; font-size: 11px; }
  .hero .kicker { font-size: 11px; }
  .pricing-hero h1 { font-size: clamp(54px, 14vw, 80px); }
  .page-hero-wide { padding-bottom: 38px; }

  .package-grid { grid-template-columns: 1fr; padding-block: 5px; }
  .package-item { display: grid; grid-template-columns: minmax(112px, .85fr) 1.15fr; align-items: start; gap: 18px; padding: 15px 0; }
  .package-item + .package-item { border-left: 0; border-top: 1px solid var(--soft); padding-left: 0; }
  .package-item:nth-child(4) { padding-left: 0; }
  .package-item strong { margin: 0; font-size: 13px; line-height: 1.55; }
  .package-item span { font-size: 13px; line-height: 1.55; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 28px; gap: 14px; }
  .section-head h2 { font-size: clamp(32px, 8.5vw, 44px); line-height: 1.1; letter-spacing: -.035em; }
  .section-head > div > p { margin-top: 16px; font-size: 16px; }
  .ownership-grid { gap: 32px; }
  .ownership-lead h2 { font-size: clamp(32px, 8.5vw, 44px); line-height: 1.1; letter-spacing: -.035em; }
  .ownership-lead h3 { font-size: 28px; }
  .ownership-lead p { font-size: 15px; }
  .ownership-points > div { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .ownership-points dd { font-size: 14px; }
  .comparison-wrap { margin-inline: -4px; }
  .comparison-table { min-width: 0; }
  .comparison-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .comparison-table tbody, .comparison-table tr, .comparison-table th, .comparison-table td { display: block; width: 100%; }
  .comparison-table tbody tr { padding: 18px; border-bottom: 1px solid var(--line); }
  .comparison-table tbody tr:last-child { border-bottom: 0; }
  .comparison-table tbody th { padding: 0 0 12px; border: 0; font-size: 16px; }
  .comparison-table tbody td { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; padding: 9px 0; border: 0; font-size: 13px; }
  .comparison-table tbody td::before { color: var(--blue-light); font-weight: 750; }
  .comparison-table tbody td:nth-child(2)::before { content: "S Web Design"; }
  .comparison-table tbody td:nth-child(3)::before { content: "Hosted builders"; }
  .kicker { font-size: 11px; }
  .industry-list, .service-ledger { display: grid; gap: 12px; border: 0; }
  .industry-list { grid-template-columns: 1fr; }
  .industry-link { grid-template-columns: 1fr auto; gap: 0; padding: 0; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
  .industry-link:hover { border-color: var(--blue-light); background: var(--surface-2); }
  .industry-image { height: 188px; }
  .industry-link .industry-index { padding: 17px 0 0 18px; }
  .industry-link h3 { grid-column: 1 / -1; margin: 7px 18px 0; font-size: 24px; }
  .industry-link p { grid-column: 1 / -1; margin: 9px 18px 20px; font-size: 14px; line-height: 1.6; }
  .industry-link .link-arrow { grid-column: 2; grid-row: 2; align-self: start; padding: 11px 17px 0 0; font-size: 23px; }
  .feature-row { grid-template-columns: 30px minmax(0, 1fr); gap: 10px 12px; padding: 22px 18px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
  .feature-row .number { padding-top: 4px; }
  .feature-row h3 { font-size: 22px; }
  .feature-row p { grid-column: 1 / -1; margin-top: 3px; font-size: 15px; line-height: 1.7; }
  .work .feature-row { background: var(--paper); }
  .project-media { padding: 5px; }
  .project figcaption { display: block; padding-top: 12px; }
  .project-detail { max-width: none; display: block; text-align: left; margin-top: 3px; font-size: 13px; }
  .project-title { font-size: 20px; }
  .project-badge { left: 5px; top: 5px; font-size: 9px; padding: 5px 7px; }
  .work-grid { gap: 32px; }
  .concept-note { margin-top: 28px; font-size: 14px; }
  .single-work h2 { font-size: 34px; }
  .single-work p { font-size: 16px; }
  .portfolio-work { padding-top: 0; }

  .offer-rail { padding: 24px; }
  .offer-rail .rail-price { font-size: 76px; }
  .offer-rail strong { margin-top: 14px; font-size: 17px; }
  .offer-rail p { font-size: 15px; }
  .deliverable { grid-template-columns: 24px minmax(0, 1fr); gap: 10px 12px; padding: 22px 20px; }
  .deliverable h3 { grid-column: 2; font-size: 20px; }
  .deliverable p { grid-column: 2; font-size: 14px; }
  .editorial-panel { grid-template-columns: 1fr; }
  .editorial-label { padding: 24px 0 18px; }
  .editorial-label h3 { font-size: 28px; }
  .editorial-body { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line); }
  .editorial-body h3 { font-size: 21px; }
  .editorial-body p { font-size: 15px; }
  .question { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .question h3 { font-size: 21px; }
  .question p { font-size: 15px; line-height: 1.7; }
  .steps { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 60px minmax(0, 1fr); gap: 10px 18px; padding: 24px 0; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .step:last-child { padding-bottom: 0; }
  .step-num { margin: 0; padding-top: 5px; font-size: 10px; }
  .step h3 { margin: 0; font-size: 23px; }
  .step p { grid-column: 2; font-size: 15px; }
  .pricing { padding: 54px 0; }
  .pricing .amount { font-size: clamp(106px, 32vw, 156px); }
  .pricing .total { margin-top: 18px; font-size: 12px; }
  .pricing-grid { gap: 32px; }
  .pricing-copy h2 { font-size: 34px; }
  .pricing-copy .pricing-note { font-size: 13px; }
  .section-actions { gap: 12px 20px; margin-top: 24px; }
  .section-actions > .button { width: 100%; }
  .reviews { padding: 48px 0; }
  .reviews h2 { font-size: 32px; }
  .contact { padding: 60px 0 48px; }
  .contact h2 { font-size: clamp(38px, 10vw, 56px); line-height: 1.08; letter-spacing: -.04em; }
  .contact-grid { gap: 28px; }
  .contact-intro { font-size: 15px; }
  .email-link { font-size: 23px; }
  .copy-email { font-size: 14px; }
  footer { padding-top: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { gap: 3px 20px; font-size: 13px; }
  .footer-bottom { display: block; margin-top: 26px; font-size: 12px; }
  .footer-bottom p + p { margin-top: 6px; }
  .service-hero-art { margin-top: 26px; }
  .service-hero-art figcaption { padding: 13px 15px; font-size: 12px; }
}

@media (max-width: 360px) {
  .wrap, .nav-inner { width: calc(100% - 36px); }
  .hero h1, .service-hero h1, .page-hero-wide h1 { font-size: 37px; }
  .pricing-hero h1 { font-size: 52px; }
  .button { padding-inline: 16px; font-size: 14px; }
  .package-item { grid-template-columns: 105px minmax(0, 1fr); gap: 12px; }
  .industry-image { height: 168px; }
  .industry-link .industry-index { padding-left: 15px; }
  .industry-link h3 { margin-inline: 15px; }
  .industry-link p { margin-inline: 15px; }
  .industry-link .link-arrow { padding-right: 14px; }
  .industry-link h3 { font-size: 21px; }
  .email-link { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal.is-pending { opacity: 1; transform: none; }
}
