@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/bricolage-grotesque-regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/bricolage-grotesque-bold.ttf") format("truetype");
}

:root {
  --ink: #121214;
  --ink-soft: #252529;
  --ink-hover: #34343a;
  --paper: #f4f1ed;
  --paper-bright: #f7f3ef;
  --paper-deep: #e7e2dc;
  --paper-soft: #e5dfd8;
  --muted: #b9b3b2;
  --text-on-dark: #d5cfcc;
  --text-on-dark-strong: #d8d3d0;
  --rose: #d44e7a;
  --rose-hover: #e3638d;
  --rose-dark: #b72f5d;
  --rose-ink: #2d050e;
  --error: #7d1639;
  --header: rgba(18, 18, 20, 0.92);
  --overlay: rgba(18, 18, 20, 0.76);
  --shadow: rgba(18, 18, 20, 0.34);
  --shadow-soft: rgba(18, 18, 20, 0.22);
  --shadow-medium: rgba(18, 18, 20, 0.28);
  --line-dark: rgba(244, 241, 237, 0.18);
  --line-light: rgba(18, 18, 20, 0.16);
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Bricolage Grotesque", "Avenir Next", Avenir, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--rose);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

picture {
  display: block;
  height: 100%;
}

.skip-link {
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  left: 16px;
  min-height: 44px;
  padding: 12px 16px;
  position: fixed;
  top: 10px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 100;
}

.skip-link:focus {
  outline-color: var(--rose);
  transform: translateY(0);
}

main:focus {
  outline: none;
}

.site-header {
  align-items: center;
  background: var(--header);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 76px;
  left: 0;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
  width: max-content;
}

.brand span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--muted);
  font-size: 0.67rem;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  align-items: center;
  color: var(--text-on-dark-strong);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 44px;
}

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

.site-header > .button {
  justify-self: end;
}

.button {
  align-items: center;
  background: var(--rose);
  border: 2px solid var(--rose);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
  width: max-content;
}

.button:hover {
  background: var(--rose-hover);
  border-color: var(--rose-hover);
}

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

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

.contact a:focus-visible,
.contact button:focus-visible,
.contact input:focus-visible,
.contact textarea:focus-visible,
.featured a:focus-visible {
  outline-color: var(--paper);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--ink-hover);
  border-color: var(--ink-hover);
}

.text-link {
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  min-height: 44px;
  padding: 0 0 5px;
  position: relative;
  width: max-content;
}

.text-link::after {
  background: var(--rose);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: 1.08fr 0.92fr;
  margin: 0 auto;
  min-height: calc(100dvh - 76px);
  padding: clamp(52px, 7vw, 92px) 0;
  width: var(--content);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(3.3rem, 6.3vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin-bottom: 28px;
}

h1 em {
  color: var(--rose);
  display: block;
  font-style: normal;
}

.hero-lede {
  color: var(--text-on-dark);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.hero-visual {
  margin: 0;
  transform: rotate(1.6deg);
}

.image-frame {
  aspect-ratio: 3 / 4;
  border: 2px solid var(--paper);
  box-shadow: 16px 16px 0 var(--rose);
  overflow: hidden;
  position: relative;
}

.hero-visual figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 18px 0 0 18px;
  max-width: 300px;
  transform: rotate(-1.6deg);
}

.section {
  padding: clamp(88px, 10vw, 150px) max(20px, calc((100vw - 1180px) / 2));
}

.problem {
  background: var(--paper);
  color: var(--ink);
}

.section-intro {
  max-width: 890px;
}

.problem-intro {
  max-width: none;
}

.section-intro h2,
.solution h2,
.process h2,
.pricing h2,
.about h2,
.faq h2,
.contact h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section-intro > p,
.section-lede,
.pricing-intro > p,
.faq-heading > p {
  font-size: 1.14rem;
  line-height: 1.6;
  max-width: 670px;
}

.problem-intro > p {
  max-width: none;
}

.solution {
  align-items: center;
  display: grid;
  gap: clamp(50px, 9vw, 120px);
  grid-template-columns: 0.85fr 1.15fr;
}

.solution-photo {
  aspect-ratio: 4 / 5;
  border: 2px solid var(--paper);
  box-shadow: -16px 16px 0 var(--rose);
  overflow: hidden;
  position: relative;
}

.solution-copy {
  max-width: 620px;
}

.section-lede {
  color: var(--text-on-dark);
  margin-bottom: 0;
}

.solution-statement {
  border-top: 1px solid var(--line-dark);
  font-size: clamp(2.35rem, 3.2vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 48px 0 30px;
  padding-top: 32px;
}

.solution-statement strong {
  color: var(--rose);
}

.solution-statement span {
  white-space: nowrap;
}

.process {
  background: var(--paper-deep);
  color: var(--ink);
}

.process h2 {
  max-width: 780px;
}

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

.process-list article {
  border-left: 1px solid var(--line-light);
  min-height: 270px;
  padding: 0 clamp(24px, 4vw, 44px);
}

.process-list article:first-child {
  border-left: 0;
  padding-left: 0;
}

.process-list span {
  color: var(--rose-dark);
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 80px;
}

.process-list p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.client-proof {
  align-items: center;
  background: var(--rose);
  color: var(--ink);
  display: grid;
  gap: clamp(52px, 9vw, 130px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.client-proof-stat {
  border: 2px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  padding: clamp(34px, 5vw, 64px);
}

.client-proof-stat strong {
  font-size: clamp(5.5rem, 11vw, 10rem);
  letter-spacing: -0.04em;
  line-height: 0.75;
}

.client-proof-stat span {
  border-top: 2px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 45px;
  padding-top: 18px;
  text-transform: uppercase;
}

.client-proof-copy {
  max-width: 680px;
}

.client-proof .eyebrow {
  color: var(--rose-ink);
}

.client-proof h2 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 22px 0 34px;
}

.client-proof-copy > p:not(.eyebrow) {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
  margin: 0;
}

.client-proof-copy small {
  display: block;
  font-size: 0.76rem;
  line-height: 1.5;
  margin-top: 32px;
}

.showcase {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.showcase-heading {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.showcase-heading h2 {
  font-size: clamp(3rem, 6vw, 6.25rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
  max-width: 880px;
}

.showcase-heading > p {
  align-self: end;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
  max-width: 430px;
}

.concept-list {
  display: grid;
  gap: clamp(100px, 13vw, 170px);
  margin-top: clamp(90px, 12vw, 145px);
}

.concept {
  --concept-accent: #9d493c;
  --concept-bg: #dce3d4;
  --concept-button-text: #ffffff;
  --concept-desktop-bg: #f8f5ef;
  --concept-hero-text: var(--concept-ink);
  --concept-ink: #283229;
  --concept-phone-bg: #f8f5ef;
  --mockup-chrome: #ece9e3;
  --mockup-frame: #111111;
  --mockup-line: rgba(18, 18, 20, 0.2);
  --mockup-muted: #5d5a56;
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 92px);
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
}

.concept:nth-child(even) {
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
}

.concept:nth-child(even) .concept-copy {
  grid-column: 2;
  grid-row: 1;
}

.concept:nth-child(even) .concept-stage {
  grid-column: 1;
  grid-row: 1;
}

.concept-copy {
  max-width: 390px;
}

.concept-label {
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.concept-copy h3 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 28px;
}

.concept-copy > p:not(.concept-label) {
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
}

.concept-copy > span {
  border-top: 1px solid var(--line-light);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 34px;
  padding-top: 18px;
}

.concept-stage {
  aspect-ratio: 16 / 10;
  background: var(--concept-bg);
  box-shadow: 18px 18px 0 var(--concept-accent);
  margin: 0 18px 18px 0;
  min-width: 0;
  padding: clamp(28px, 4.5vw, 62px);
  position: relative;
}

.browser-mockup {
  background: var(--concept-desktop-bg);
  border: 2px solid var(--concept-ink);
  box-shadow: 0 18px 34px var(--shadow-soft);
  height: 100%;
  overflow: hidden;
  width: 92%;
}

.browser-bar {
  align-items: center;
  background: var(--mockup-chrome);
  border-bottom: 1px solid var(--mockup-line);
  display: flex;
  gap: 5px;
  height: 30px;
  padding: 0 11px;
}

.browser-bar i {
  background: var(--concept-accent);
  border-radius: 50%;
  display: block;
  height: 6px;
  opacity: 0.8;
  width: 6px;
}

.browser-bar span {
  color: var(--mockup-muted);
  font-size: clamp(0.38rem, 0.7vw, 0.58rem);
  margin-left: 7px;
}

.concept-site {
  background: var(--concept-desktop-bg);
  color: var(--concept-ink);
  height: calc(100% - 30px);
  overflow: hidden;
}

.concept-site-nav {
  align-items: center;
  display: flex;
  height: 16%;
  justify-content: space-between;
  padding: 0 clamp(13px, 2.1vw, 26px);
}

.concept-site-nav strong {
  font-size: clamp(0.55rem, 1vw, 0.9rem);
  letter-spacing: 0.13em;
}

.concept-site-nav span {
  font-size: clamp(0.38rem, 0.7vw, 0.62rem);
}

.concept-site-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: 84%;
}

.concept-site-hero > img {
  min-height: 0;
}

.concept-site-hero > div {
  align-items: flex-start;
  background: var(--concept-bg);
  color: var(--concept-hero-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 2.3vw, 32px);
}

.concept-site-hero small {
  font-size: clamp(0.4rem, 0.7vw, 0.63rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.concept-site-hero b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.4vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.concept-site-hero span,
.phone-site > span {
  background: var(--concept-accent);
  color: var(--concept-button-text);
  display: inline-flex;
  font-size: clamp(0.4rem, 0.72vw, 0.64rem);
  font-weight: 700;
  margin-top: clamp(12px, 2vw, 24px);
  padding: clamp(6px, 0.8vw, 9px) clamp(8px, 1.2vw, 15px);
}

.phone-mockup {
  background: var(--mockup-frame);
  border: 2px solid var(--mockup-frame);
  border-radius: 18px;
  bottom: clamp(8px, 1.5vw, 20px);
  box-shadow: 0 18px 34px var(--shadow-medium);
  height: 74%;
  overflow: hidden;
  padding: 6px;
  position: absolute;
  right: clamp(10px, 2vw, 28px);
  width: 25%;
}

.phone-speaker {
  background: var(--mockup-frame);
  border-radius: 0 0 8px 8px;
  height: 9px;
  left: 50%;
  position: absolute;
  top: 4px;
  transform: translateX(-50%);
  width: 34%;
  z-index: 2;
}

.phone-site {
  align-items: flex-start;
  background: var(--concept-phone-bg);
  border-radius: 12px;
  color: var(--concept-ink);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: clamp(10px, 1.3vw, 16px);
}

.phone-site > strong {
  font-size: clamp(0.4rem, 0.72vw, 0.65rem);
  letter-spacing: 0.1em;
  margin: 3px 0 10px;
}

.phone-site > img {
  height: 39%;
  margin: 0 calc(clamp(10px, 1.3vw, 16px) * -1) 13px;
  width: calc(100% + clamp(20px, 2.6vw, 32px));
}

.phone-site > b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 1.45vw, 1.35rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.phone-site > span {
  margin-top: auto;
}

.concept-elec {
  --concept-accent: #f3c930;
  --concept-bg: #142844;
  --concept-button-text: #10223a;
  --concept-desktop-bg: #f4c932;
  --concept-hero-text: #ffffff;
  --concept-ink: #10223a;
}

.concept-elec .concept-site-hero b,
.concept-elec .phone-site > b {
  font-family: "Bricolage Grotesque", "Avenir Next", Avenir, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.concept-pivoine {
  --concept-accent: #d05258;
  --concept-bg: #f0b0a0;
  --concept-desktop-bg: #fff8eb;
  --concept-ink: #591c27;
  --concept-phone-bg: #fff8eb;
}

.pricing {
  background: var(--ink-soft);
}

.pricing-intro {
  max-width: none;
}

.pricing-intro > p {
  color: var(--text-on-dark);
  max-width: none;
}

.pricing-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: 0.88fr 1.12fr;
  margin-top: 72px;
}

.price-card {
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: clamp(30px, 5vw, 58px);
}

.price-card.featured {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--ink);
  transform: translateY(-24px);
}

.price-name {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.featured .price-name {
  color: var(--rose-ink);
}

.price {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0;
}

.price span {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.price-card .price-extra {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 16px 0 0;
  max-width: 340px;
}

.price-card.featured .price-extra {
  color: var(--rose-ink);
}

.price-card > p {
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 530px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 22px 0 40px;
  padding: 0;
}

.price-card li {
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  background: var(--rose);
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: 0.45em;
  transform: rotate(45deg);
  width: 9px;
}

.featured li::before {
  background: var(--ink);
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 12px 0 0;
  text-align: center;
}

.extras {
  background: var(--paper-deep);
  color: var(--ink);
}

.extras-heading {
  max-width: 860px;
}

.extras-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.extras-heading > p {
  font-size: 1.14rem;
  line-height: 1.6;
  max-width: 650px;
}

.extras-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 72px 0 48px;
}

.extras-list article {
  border-top: 1px solid var(--line-light);
  min-height: 280px;
  padding: 34px clamp(26px, 4vw, 50px) 34px 0;
}

.extras-list article:nth-child(even) {
  border-left: 1px solid var(--line-light);
  padding-left: clamp(26px, 4vw, 50px);
}

.extras-list h3 {
  color: var(--rose-dark);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.extras-list p {
  line-height: 1.6;
  max-width: 480px;
}

.extras-list span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 36px;
}

.about {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(50px, 10vw, 130px);
  grid-template-columns: 1.1fr 0.9fr;
}

.about-copy {
  max-width: 650px;
}

.about h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
}

.about-copy > p {
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-copy .text-link {
  margin-top: 18px;
}

.about-photo {
  aspect-ratio: 4 / 5;
  box-shadow: 16px 16px 0 var(--rose);
  overflow: hidden;
  position: relative;
}

.faq {
  background: var(--paper-deep);
  color: var(--ink);
}

.faq-heading {
  margin-bottom: 58px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
  margin-left: auto;
  max-width: 900px;
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 700;
  list-style: none;
  padding: 28px 58px 28px 0;
  position: relative;
  transition: color 180ms ease;
}

.faq-list summary:hover {
  color: var(--rose-dark);
}

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

.faq-list summary::after {
  color: var(--rose-dark);
  content: "+";
  font-size: 2rem;
  position: absolute;
  right: 8px;
  top: 19px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  line-height: 1.65;
  max-width: 760px;
  padding: 0 58px 26px 0;
}

.contact {
  background: var(--rose);
  color: var(--ink);
  display: grid;
  gap: clamp(48px, 9vw, 120px);
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-copy p {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 520px;
}

.contact-copy > a {
  align-items: center;
  border-bottom: 2px solid var(--ink);
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
}

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

.form-required-note {
  color: var(--rose-ink);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: -6px;
}

.selected-offer {
  border: 2px solid var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
  padding: 14px 16px;
}

.selected-offer strong {
  display: block;
  font-size: 1.18rem;
  margin-top: 3px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  min-height: 52px;
  padding: 13px 15px;
  width: 100%;
}

.field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--paper-bright) inset;
  -webkit-text-fill-color: var(--ink);
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field small {
  color: var(--rose-ink);
  font-size: 0.78rem;
}

.contact-form .button {
  margin-top: 4px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  color: var(--error);
  font-weight: 700;
  padding: 14px 16px;
}

.form-error a {
  text-decoration: underline;
}

.form-success {
  align-self: start;
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  min-height: 260px;
  padding: clamp(30px, 5vw, 58px);
}

.form-success:focus {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
}

.form-success strong {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
}

.form-success p {
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 25px 0;
  max-width: 470px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
}

.footer-main {
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: clamp(44px, 7vw, 92px);
  grid-template-columns: minmax(250px, 1.1fr) minmax(150px, 0.55fr) minmax(300px, 1fr);
  padding: 76px 0 68px;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-identity > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links > p,
.footer-kicker {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-links a {
  align-items: center;
  color: var(--text-on-dark-strong);
  display: inline-flex;
  font-size: 0.88rem;
  min-height: 44px;
  width: max-content;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-privacy a:hover,
.footer-privacy a:focus-visible {
  color: var(--rose);
}

.footer-privacy {
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(32px, 4vw, 56px);
}

.footer-privacy > strong {
  display: block;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 380px;
}

.footer-privacy > p:not(.footer-kicker) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 20px 0 22px;
  max-width: 390px;
}

.footer-cookie-button {
  background: var(--rose);
  border: 2px solid var(--rose);
  color: var(--ink);
  cursor: pointer;
  display: block;
  font-weight: 700;
  min-height: 48px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-cookie-button:hover {
  background: var(--rose-hover);
  border-color: var(--rose-hover);
}

.footer-cookie-button:active {
  transform: translateY(1px);
}

.footer-privacy > a {
  color: var(--text-on-dark-strong);
  display: inline-flex;
  font-size: 0.78rem;
  margin-top: 16px;
  min-height: 44px;
  text-decoration: underline;
  text-decoration-color: var(--line-dark);
  text-underline-offset: 4px;
}

.footer-bottom {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  min-height: 82px;
}

.footer-bottom p {
  margin: 0;
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  align-items: center;
  background: var(--ink-soft);
  bottom: 18px;
  box-shadow: 0 20px 52px -18px var(--shadow);
  color: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 18px;
  margin: 0 auto;
  max-width: 920px;
  padding: 24px;
  position: fixed;
  right: 18px;
  z-index: 100;
}

.cookie-banner h2 {
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.cookie-banner p {
  color: var(--text-on-dark);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 66ch;
}

.cookie-banner p a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

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

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

.cookie-button-primary {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--ink);
}

.cookie-button-primary:hover {
  background: var(--rose-hover);
  border-color: var(--rose-hover);
}

.cookie-modal {
  align-items: center;
  background: var(--overlay);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 200;
}

.cookie-sheet {
  background: var(--paper);
  color: var(--ink);
  max-height: min(760px, calc(100dvh - 40px));
  max-width: 620px;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  width: 100%;
}

.cookie-sheet > h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 16px;
  padding-right: 48px;
}

.cookie-intro {
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 60ch;
}

.cookie-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.8rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
}

.cookie-close:hover {
  background: var(--paper-deep);
}

.cookie-option {
  align-items: flex-start;
  border-top: 1px solid var(--line-light);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 0;
}

.cookie-option:last-of-type {
  border-bottom: 1px solid var(--line-light);
}

.cookie-option h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.cookie-option p {
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 46ch;
}

.cookie-option span {
  color: var(--rose-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 7px;
}

.cookie-toggle {
  appearance: none;
  cursor: pointer;
  flex: 0 0 44px;
  height: 44px;
  margin: -3px 0 0;
  position: relative;
  width: 44px;
}

.cookie-toggle::before {
  background: var(--paper-soft);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  content: "";
  height: 24px;
  left: 1px;
  position: absolute;
  top: 10px;
  width: 42px;
}

.cookie-toggle::after {
  background: var(--ink);
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 5px;
  position: absolute;
  top: 13px;
  transition: transform 180ms ease;
  width: 18px;
}

.cookie-toggle:checked::before {
  background: var(--rose);
  border-color: var(--rose);
}

.cookie-toggle:checked::after {
  transform: translateX(16px);
}

.cookie-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.cookie-modal-actions {
  justify-content: flex-end;
  margin-top: 24px;
}

.cookie-button-light {
  border-color: var(--line-light);
  color: var(--ink);
}

.cookie-button-light:hover {
  background: var(--paper-deep);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual {
    animation: reveal 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-visual {
    animation-delay: 120ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-visual {
    animation-name: visual-reveal;
  }

  @keyframes visual-reveal {
    from {
      opacity: 0;
      transform: rotate(1.6deg) translateY(22px);
    }
    to {
      opacity: 1;
      transform: rotate(1.6deg) translateY(0);
    }
  }
}

@media (min-width: 1100px) {
  .pricing-intro h2 {
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    gap: 46px;
    grid-template-columns: 1fr 0.8fr;
  }

  h1 {
    font-size: clamp(3.1rem, 7vw, 5rem);
  }

  .process-list {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .process-list article,
  .process-list article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    display: grid;
    gap: 25px;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 0;
    padding: 28px 0 0;
  }

  .process-list span {
    margin-bottom: 0;
  }

  .client-proof {
    gap: 60px;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  }

  .client-proof-stat {
    min-height: 330px;
    padding: 34px;
  }

  .concept {
    gap: 42px;
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  }

  .concept:nth-child(even) {
    grid-template-columns: minmax(0, 0.66fr) minmax(190px, 0.34fr);
  }

  .concept-stage {
    padding: 32px;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .footer-main {
    gap: 52px;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.65fr);
  }

  .footer-privacy {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    grid-column: 1 / -1;
    padding: 42px 0 0;
  }
}

@media (max-width: 767px) {
  :root {
    --content: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .brand span {
    font-size: 0.84rem;
  }

  .site-header .button {
    font-size: 0.75rem;
    min-height: 44px;
    padding: 0 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 58px 0 78px;
  }

  h1 {
    font-size: clamp(3rem, 13.5vw, 4.25rem);
  }

  .hero-visual {
    max-width: 520px;
    width: calc(100% - 14px);
  }

  .section {
    padding: 82px 16px;
  }

  .section-intro h2,
  .solution h2,
  .process h2,
  .showcase h2,
  .pricing h2,
  .extras h2,
  .about h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .showcase-heading {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .client-proof {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .client-proof-stat {
    min-height: 280px;
  }

  .client-proof-stat strong {
    font-size: clamp(5.8rem, 29vw, 8rem);
  }

  .client-proof h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .showcase-heading h2 {
    line-height: 0.94;
  }

  .concept-list {
    gap: 94px;
    margin-top: 76px;
  }

  .concept,
  .concept:nth-child(even) {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .concept:nth-child(even) .concept-copy,
  .concept:nth-child(even) .concept-stage {
    grid-column: 1;
    grid-row: auto;
  }

  .concept-copy {
    max-width: none;
  }

  .concept-label {
    margin-bottom: 18px;
  }

  .concept-copy h3 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    margin-bottom: 20px;
  }

  .concept-copy > span {
    margin-top: 24px;
  }

  .concept-stage {
    aspect-ratio: 1 / 1;
    box-shadow: 11px 11px 0 var(--concept-accent);
    margin: 0 11px 11px 0;
    padding: 22px 18px;
  }

  .browser-mockup {
    height: 78%;
    width: 100%;
  }

  .browser-bar {
    height: 23px;
    padding: 0 8px;
  }

  .concept-site {
    height: calc(100% - 23px);
  }

  .concept-site-nav span {
    display: none;
  }

  .concept-site-hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .phone-mockup {
    bottom: 13px;
    height: 65%;
    right: 17px;
    width: 31%;
  }

  .phone-site {
    padding: 10px;
  }

  .phone-site > img {
    margin: 0 -10px 9px;
    width: calc(100% + 20px);
  }

  .solution,
  .pricing-grid,
  .extras-list,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .solution {
    gap: 72px;
  }

  .solution-photo {
    max-width: calc(100% - 16px);
  }

  .solution-statement {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
  }

  .about h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
  }

  .process-list article,
  .process-list article:first-child {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    gap: 18px;
  }

  .extras-list {
    margin-top: 52px;
  }

  .extras-list article,
  .extras-list article:nth-child(even) {
    border-left: 0;
    min-height: 0;
    padding: 30px 0;
  }

  .price-card,
  .price-card.featured {
    min-height: 0;
    transform: none;
  }

  .about {
    gap: 70px;
  }

  .about-photo {
    max-width: calc(100% - 16px);
  }

  .faq-list summary {
    padding-right: 42px;
  }

  .contact {
    gap: 58px;
  }

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

  .footer-main {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 58px 0 48px;
  }

  .footer-identity,
  .footer-links,
  .footer-privacy {
    border-bottom: 1px solid var(--line-dark);
    padding: 34px 0;
  }

  .footer-identity {
    padding-top: 0;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > p {
    grid-column: 1 / -1;
  }

  .footer-privacy {
    border-left: 0;
    border-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height: 110px;
  }

  .cookie-banner {
    align-items: stretch;
    bottom: 10px;
    gap: 18px;
    grid-template-columns: 1fr;
    left: 10px;
    padding: 20px;
    right: 10px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .cookie-button-primary {
    grid-column: 1 / -1;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-sheet {
    padding: 28px 20px;
  }
}

@media (max-width: 380px) {
  .cookie-banner {
    gap: 14px;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 16px;
  }

  .cookie-banner h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }

  .cookie-banner p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-button {
    font-size: 0.82rem;
    min-height: 44px;
    padding: 8px 10px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--ink);
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
