:root {
  --black: #09090a;
  --charcoal: #141416;
  --silver: #aeb0b4;
  --silver-light: #e2e3e5;
  --header-silver: #c5c6c9;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #a8b8e8;
  --accent-deep: #6879aa;
  --accent-soft: #d9e1f6;
  --accent-wash: rgba(168, 184, 232, 0.12);
  --teal: #4f968e;
  --teal-deep: #326f69;
  --teal-soft: #b7d5d1;
  --amber: #c58d4d;
  --amber-deep: #8f602c;
  --amber-soft: #e3c49d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.service-destination-page {
  min-height: 100vh;
  background: var(--header-silver);
}

body.project-page {
  min-height: 100vh;
  background: var(--black);
}

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

.image-frame {
  --image-outline: var(--silver-light);
  outline: 2px solid var(--image-outline);
  outline-offset: 0;
}

.image-frame--on-dark {
  --image-outline: var(--header-silver);
}

.image-frame--on-silver,
.image-frame--on-light {
  --image-outline: var(--black);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(125px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 18px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(9, 9, 10, 0.28);
  background: var(--header-silver);
}

.brand {
  position: relative;
  justify-self: start;
  width: 116px;
  height: 82px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;
}

.brand::before {
  content: none;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.site-nav {
  display: flex;
  gap: clamp(22px, 3vw, 44px);
}

.site-nav a {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 7px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
}

.header-phone {
  display: grid;
  gap: 5px;
  color: var(--black);
  text-align: right;
}

.header-phone span {
  color: #5e6065;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.site-nav__mobile-contact {
  display: none;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(60px, 10vw, 170px);
  overflow: hidden;
  padding: 170px clamp(24px, 8vw, 130px) 90px;
  background:
    linear-gradient(110deg, var(--black) 0%, #0e0e10 56%, #171719 100%);
}

.hero__glow {
  position: absolute;
  top: 7%;
  right: -12%;
  width: 56vw;
  height: 56vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 198, 202, 0.16), transparent 68%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 7.6vw, 8.1rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 span {
  color: var(--silver);
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 36px;
  color: #c6c7ca;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.button {
  width: fit-content;
  min-width: 224px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--silver);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--silver-light);
  color: var(--black);
  transform: translateY(-2px);
}

.hero__showcase {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(44vw, 650px);
  min-width: 520px;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 198, 201, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 198, 201, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 28%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, black 28%, transparent 78%);
  opacity: 0.72;
}

.hero__visual {
  position: relative;
  z-index: 1;
  width: min(74%, 480px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #111114;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: var(--silver);
}

.hero__visual::before {
  top: -8px;
  left: 28px;
  width: 48px;
  height: 1px;
}

.hero__visual::after {
  right: -8px;
  bottom: 28px;
  width: 1px;
  height: 48px;
}

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

.hero__signals {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.hero__signal {
  position: absolute;
  min-height: 42px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--header-silver);
  background: rgba(9, 9, 10, 0.94);
  color: var(--silver-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero__signal::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  background: var(--header-silver);
}

.hero__signal--responsive {
  top: 18%;
  left: 0;
}

.hero__signal--responsive::after,
.hero__signal--modern::after {
  left: 100%;
}

.hero__signal--business {
  top: 42%;
  right: -2%;
  max-width: 184px;
}

.hero__signal--business::after {
  right: 100%;
}

.hero__signal--modern {
  bottom: 13%;
  left: 6%;
}

.services-section {
  min-height: 720px;
  display: grid;
  align-content: center;
  gap: clamp(44px, 5vw, 68px);
  padding: 110px clamp(24px, 8vw, 130px);
  background: var(--header-silver);
  color: var(--black);
}

.services-section .eyebrow {
  color: #65676c;
}

.services-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.services-section__heading h2 {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 24px;
}

.service-card__number {
  position: absolute;
  z-index: 0;
  top: -92px;
  right: 12px;
  color: rgba(9, 9, 10, 0.07);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 750;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.service-choice {
  position: relative;
  z-index: 1;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 30px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.service-choice:hover,
.service-choice:focus-visible {
  background: #242426;
  transform: translateY(-3px);
}

.service-choice:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.service-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: #44464b;
  font-size: 1rem;
  line-height: 1.75;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -4px 0 0;
  padding: 0;
  list-style: none;
}

.service-features li {
  padding: 9px 12px;
  border: 1px solid rgba(9, 9, 10, 0.28);
  color: #33353a;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-hosting-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(28px, 4vw, 44px);
  background: var(--black);
  color: var(--white);
}

.home-hosting-plan__copy {
  max-width: 700px;
}

.home-hosting-plan__action {
  display: grid;
  gap: 24px;
  justify-items: stretch;
}

.home-hosting-plan .eyebrow {
  margin-bottom: 10px;
  color: #85878c;
  font-size: 0.59rem;
}

.home-hosting-plan h3 {
  margin: 0 0 13px;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.home-hosting-plan__copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #aeb0b5;
  font-size: 0.86rem;
  line-height: 1.65;
}

.home-hosting-plan__price {
  min-width: 235px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 4px 10px;
  padding-left: clamp(26px, 4vw, 54px);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hosting-plan__price strong {
  grid-row: 1 / 3;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.home-hosting-plan__price span,
.home-hosting-plan__price small {
  color: #9b9da2;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-hosting-plan__price small {
  max-width: 155px;
}

.home-hosting-plan__action .button {
  justify-content: space-between;
  min-width: 235px;
  padding: 15px 18px;
  font-size: 0.59rem;
}

.home-hosting-plan__terms {
  max-width: 235px;
  margin: -8px 0 0;
  color: #77797e;
  font-size: 0.58rem;
  line-height: 1.55;
}

.website-ownership-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(26px, 4vw, 42px) 0;
  border-top: 1px solid rgba(9, 9, 10, 0.3);
  border-bottom: 1px solid rgba(9, 9, 10, 0.3);
}

.website-ownership-note .eyebrow {
  margin-bottom: 9px;
}

.website-ownership-note h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.website-ownership-note > p {
  margin: 0;
  color: #44464b;
  font-size: 0.9rem;
  line-height: 1.75;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(9, 9, 10, 0.3);
}

.featured-project__image {
  display: block;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 24px 60px rgba(9, 9, 10, 0.2);
}

.featured-project__image img {
  width: 100%;
  display: block;
  transition: transform 350ms ease;
}

.featured-project__image:hover img,
.featured-project__image:focus-visible img {
  transform: scale(1.02);
}

.featured-project__content .eyebrow {
  margin-bottom: 18px;
}

.featured-project__content h3 {
  margin: 0 0 22px;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.featured-project__content > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #44464b;
  line-height: 1.75;
}

.featured-project__content .project-credit {
  width: fit-content;
  margin: -4px 0 22px;
  padding: 9px 12px;
  border: 1px solid rgba(9, 9, 10, 0.35);
  color: #292b2f;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(9, 9, 10, 0.3);
  border-bottom: 1px solid rgba(9, 9, 10, 0.3);
}

.process-strip p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 25px 22px;
  color: #292b2f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-strip p + p {
  border-left: 1px solid rgba(9, 9, 10, 0.3);
}

.process-strip span {
  color: #66686d;
}

.project-proof {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) auto minmax(220px, 0.9fr);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 30px 0 0;
  border-top: 1px solid rgba(9, 9, 10, 0.3);
}

.project-proof__title .eyebrow {
  margin-bottom: 10px;
}

.project-proof__title h3 {
  margin: 0 0 13px;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-proof__credit {
  margin: 0;
  color: #55575c;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-proof__images {
  display: flex;
  gap: 12px;
}

.project-proof__images figure {
  margin: 0;
}

.project-proof__images img {
  width: 200px;
  height: 112px;
  display: block;
  border: 2px solid rgba(9, 9, 10, 0.48);
  object-fit: cover;
  object-position: top;
}

.project-proof__images figcaption {
  margin-top: 7px;
  color: #5c5e63;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-proof__description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #3f4146;
  font-size: 0.95rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.project-proof__link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black);
  color: var(--black);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-self-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -24px;
  padding: 28px 32px;
  border: 1px solid rgba(9, 9, 10, 0.34);
  background: var(--black);
  color: var(--white);
}

.project-self-credit .eyebrow {
  margin-bottom: 8px;
  color: #85878c;
  font-size: 0.58rem;
}

.project-self-credit h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  letter-spacing: -0.04em;
}

.project-self-credit > p {
  max-width: 520px;
  margin: 0;
  color: #b8babf;
  font-size: 0.83rem;
  line-height: 1.65;
}

.project-self-credit strong {
  color: var(--white);
}

.back-link {
  position: absolute;
  z-index: 10;
  top: 30px;
  left: clamp(24px, 5vw, 76px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--silver);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: var(--silver-light);
  color: var(--black);
}

.back-link--dark {
  border-color: var(--black);
  color: var(--black);
}

.back-link--dark:hover,
.back-link--dark:focus-visible {
  background: var(--black);
  color: var(--white);
}

.redesign-page .back-link {
  background: rgba(9, 9, 10, 0.9);
}

.redesign-page .back-link:hover,
.redesign-page .back-link:focus-visible {
  background: var(--silver-light);
}

.project-detail {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding: 130px clamp(24px, 8vw, 130px) 90px;
}

.project-detail__intro {
  max-width: 560px;
}

.project-detail__intro h1 {
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.project-detail__intro > p:not(.eyebrow) {
  color: #c6c7ca;
  line-height: 1.75;
}

.project-detail__features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.project-detail__features li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--silver-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-detail__visual {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.project-detail__visual img {
  width: 100%;
  display: block;
}

.case-study {
  display: grid;
  gap: clamp(80px, 10vw, 150px);
  padding: 150px clamp(24px, 7vw, 110px) 110px;
}

.case-study__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
}

.case-study__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.case-study__intro h1 {
  margin-bottom: 0;
  font-size: clamp(4rem, 7.3vw, 8rem);
}

.case-study__summary {
  padding-bottom: 10px;
}

.case-study__summary > p:first-child {
  color: #c6c7ca;
  line-height: 1.75;
}

.case-study__credit {
  width: fit-content;
  margin: 28px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--silver-light);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison {
  display: grid;
  gap: 34px;
}

.comparison__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.comparison__heading .eyebrow {
  margin-bottom: 4px;
}

.comparison__heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.comparison__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.comparison-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: #111113;
}

.comparison-card--after {
  border-color: var(--header-silver);
}

.comparison-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #8e9095;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card figcaption span {
  color: var(--white);
}

.comparison-card--after figcaption span {
  color: var(--silver-light);
}

.comparison-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: top;
}

.new-website-page {
  overflow: hidden;
}

.new-service-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding: 145px clamp(24px, 7vw, 110px) 90px;
  background: linear-gradient(115deg, var(--black), #121214);
}

.new-service-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.new-service-hero h1 {
  font-size: clamp(4rem, 7vw, 7.8rem);
}

.new-service-hero__lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #c6c7ca;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.75;
}

.delivery-timeframe {
  width: min(100%, 570px);
  display: grid;
  gap: 6px;
  margin: 18px 0 26px;
  padding: 18px 22px;
  border-left: 4px solid var(--white);
  background: var(--header-silver);
  color: var(--black);
}

.delivery-timeframe span,
.delivery-timeframe small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.delivery-timeframe span {
  color: #67696e;
}

.delivery-timeframe strong {
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.delivery-timeframe small {
  color: #66686d;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.new-service-hero__visual {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.new-service-hero__visual img,
.build-feature__visual img {
  width: 100%;
  display: block;
}

.service-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(60px, 10vw, 150px);
  padding: 120px clamp(24px, 8vw, 130px);
  background: var(--header-silver);
  color: var(--black);
}

.service-story .eyebrow,
.investment-section .eyebrow {
  color: #5d5f64;
}

.service-story h2,
.build-feature h2,
.investment-section h2,
.service-promise h2,
.case-study-proof__heading h2,
.new-service-cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.service-story__copy p {
  margin-bottom: 24px;
  color: #3f4146;
  font-size: 1.02rem;
  line-height: 1.82;
}

.service-story__copy p:last-child {
  margin-bottom: 0;
}

.quality-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  border-top: 1px solid rgba(9, 9, 10, 0.32);
  border-bottom: 1px solid rgba(9, 9, 10, 0.32);
}

.quality-points p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  margin: 0;
  padding: 28px 24px;
  color: #484a4f;
  font-size: 0.86rem;
  line-height: 1.5;
}

.quality-points p + p {
  border-left: 1px solid rgba(9, 9, 10, 0.32);
}

.quality-points span {
  grid-row: 1 / 3;
  color: #707278;
  font-size: 0.65rem;
  font-weight: 700;
}

.quality-points strong {
  color: var(--black);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-feature {
  display: grid;
  grid-template-columns: minmax(460px, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(60px, 9vw, 135px);
  padding: 120px clamp(24px, 7vw, 110px);
  background: var(--charcoal);
}

.build-feature__visual {
  margin: 0;
  overflow: hidden;
}

.build-feature__copy p:last-child {
  margin-top: 28px;
  color: #b9bbc0;
  line-height: 1.8;
}

.investment-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  padding: 110px clamp(24px, 8vw, 130px);
  background: var(--silver-light);
  color: var(--black);
}

.investment-section > div:first-child > p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: #4d4f54;
  line-height: 1.78;
}

.price-placeholder {
  display: grid;
  padding: 32px;
  border: 1px solid var(--black);
  background: var(--header-silver);
}

.price-placeholder span,
.price-placeholder small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-placeholder strong {
  margin: 22px 0;
  font-size: clamp(4rem, 7vw, 7.8rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.price-placeholder small {
  color: #5c5e63;
}

.service-promise {
  padding: 130px clamp(24px, 9vw, 150px);
  background: var(--black);
  text-align: center;
}

.service-promise h2 {
  margin-inline: auto;
  max-width: 1200px;
}

.service-promise h2 span {
  color: var(--silver);
}

.service-promise > p:last-child {
  max-width: 720px;
  margin: 34px auto 0;
  color: #b9bbc0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.case-study-proof {
  display: grid;
  gap: clamp(70px, 9vw, 130px);
  padding: 120px clamp(24px, 7vw, 110px);
  background: #0d0d0f;
}

.case-study-proof__heading {
  max-width: 920px;
}

.case-study-proof__heading > p:last-child {
  max-width: 670px;
  margin: 30px 0 0;
  color: #b9bbc0;
  line-height: 1.8;
}

.new-service-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: 100px clamp(24px, 8vw, 130px);
  background: var(--charcoal);
}

.new-service-cta .button {
  flex: 0 0 auto;
}

.new-website-page--compact {
  scroll-snap-type: y proximity;
}

.new-website-page--compact > section {
  scroll-snap-align: start;
}

.new-website-page--compact .new-service-hero {
  gap: clamp(44px, 7vw, 100px);
  padding-top: 95px;
  padding-bottom: 45px;
}

.redesign-service-hero .new-service-hero__visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.compact-service-summary {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: 45px clamp(24px, 7vw, 110px);
  background: var(--header-silver);
  color: var(--black);
}

.compact-service-summary__visuals {
  display: grid;
  gap: 22px;
}

.compact-service-summary__image {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 65px rgba(9, 9, 10, 0.23);
}

.compact-service-summary__image img {
  width: 100%;
  display: block;
}

.compact-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
  padding: 20px 22px;
  border: 1px solid rgba(9, 9, 10, 0.48);
}

.compact-price span,
.compact-price small {
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.compact-price strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.compact-price small {
  color: #62646a;
}

.compact-price--starting strong {
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  white-space: nowrap;
}

.compact-price--starting small {
  max-width: 230px;
  line-height: 1.45;
}

.redesign-price-includes {
  padding: 22px;
  border: 1px solid rgba(9, 9, 10, 0.38);
  background: rgba(255, 255, 255, 0.16);
}

.redesign-price-includes > p {
  margin: 0 0 15px;
  color: #393b40;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.redesign-price-includes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.redesign-price-includes li {
  position: relative;
  padding-left: 20px;
  color: #4b4d52;
  font-size: 0.76rem;
  line-height: 1.5;
}

.redesign-price-includes li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--black);
}

.hosting-care-plan {
  margin-top: 28px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--black);
  color: var(--white);
}

.hosting-care-plan__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
}

.hosting-care-plan .eyebrow {
  margin-bottom: 8px;
  color: #8d8f94;
  font-size: 0.58rem;
}

.hosting-care-plan h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
}

.hosting-care-plan__heading > strong {
  flex: 0 0 auto;
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.hosting-care-plan__heading > strong span {
  display: block;
  margin-top: 7px;
  color: #8d8f94;
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.hosting-care-plan > p {
  margin: 0 0 13px;
  color: #c0c2c6;
  font-size: 0.84rem;
  line-height: 1.65;
}

.hosting-care-plan > small {
  display: block;
  color: #73757a;
  font-size: 0.62rem;
  line-height: 1.55;
}

.hosting-care-plan__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hosting-care-plan__link:hover,
.hosting-care-plan__link:focus-visible {
  border-bottom-color: var(--white);
}

.service-ownership-note {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(9, 9, 10, 0.22);
  background: rgba(255, 255, 255, 0.3);
}

.service-ownership-note .eyebrow {
  margin-bottom: 8px;
  color: #65676c;
  font-size: 0.58rem;
}

.service-ownership-note h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.service-ownership-note > p:last-child {
  margin: 0;
  color: #4a4c50;
  font-size: 0.78rem;
  line-height: 1.65;
}

.compact-service-summary__content > .eyebrow {
  color: #5d5f64;
}

.compact-service-summary__content > h2 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4.1vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.compact-service-summary__content > p:not(.eyebrow) {
  margin-bottom: 10px;
  color: #3e4045;
  font-size: 0.9rem;
  line-height: 1.58;
}

.compact-quality-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid rgba(9, 9, 10, 0.3);
  border-bottom: 1px solid rgba(9, 9, 10, 0.3);
}

.compact-quality-points p {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 12px 11px;
}

.compact-quality-points p + p {
  border-left: 1px solid rgba(9, 9, 10, 0.3);
}

.compact-quality-points span {
  color: #696b70;
  font-size: 0.58rem;
  font-weight: 700;
}

.compact-quality-points strong {
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compact-service-promise {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 19px;
}

.compact-service-promise .eyebrow {
  margin-bottom: 10px;
  color: #5d5f64;
}

.compact-service-promise h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.compact-service-promise .button {
  min-width: 205px;
  flex: 0 0 auto;
  border-color: var(--black);
}

.about-section {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(24px, 8vw, 130px);
  background: linear-gradient(118deg, var(--black), #151517);
}

.about-section__visual {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.about-section__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-section__visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 14px;
  background: #111113;
  color: #999ba0;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-section__visual figcaption a {
  color: var(--silver-light);
}

.about-section h2 {
  margin: 0 0 34px;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.about-section h2 span {
  color: var(--silver);
}

.about-section__story {
  width: 100%;
  max-width: 900px;
}

.about-section__story > .eyebrow {
  margin-bottom: 18px;
}

.about-section__story > p {
  color: #bfc1c5;
  font-size: 0.98rem;
  line-height: 1.78;
}

.about-section__story .about-section__lead {
  color: var(--white);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.about-section__details {
  display: grid;
  grid-template-columns: 0.55fr 0.85fr 1.6fr;
  margin: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.about-section__details p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px 14px;
  color: #999ba0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-section__details p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.about-section__details span {
  color: var(--white);
  font-size: 0.7rem;
}

.about-section__story .about-section__closing {
  margin-bottom: 0;
  color: var(--silver-light);
  font-weight: 650;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  padding: 110px clamp(24px, 8vw, 130px);
  border-top: 1px solid rgba(9, 9, 10, 0.25);
  background: var(--header-silver);
  color: var(--black);
}

.booking-section__intro {
  max-width: 520px;
}

.booking-section__intro .eyebrow {
  color: #55575b;
}

.booking-section__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6vw, 6.5rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.booking-section__intro > h2 + p {
  max-width: 430px;
  color: #45474b;
  font-size: 1rem;
  line-height: 1.75;
}

.booking-payment-note {
  max-width: 430px;
  margin-top: 38px;
  padding: 22px 0;
  border-top: 1px solid rgba(9, 9, 10, 0.3);
  border-bottom: 1px solid rgba(9, 9, 10, 0.3);
}

.booking-payment-note > span {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-payment-note p {
  margin: 0;
  color: #45474b;
  font-size: 0.86rem;
  line-height: 1.7;
}

.booking-form {
  padding: clamp(28px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(9, 9, 10, 0.2);
}

.booking-form__required-note {
  margin: 0 0 24px;
  color: #7f8186;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px 24px;
}

.booking-field {
  display: grid;
  gap: 10px;
}

.booking-field--wide {
  grid-column: auto;
}

.booking-field > span,
.booking-service-choice legend {
  color: var(--silver);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-field > span small {
  color: #74767b;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
}

.booking-field__note {
  display: block;
  color: #74767b;
  font-size: 0.62rem;
  line-height: 1.55;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  padding: 15px 16px;
  background: #111113;
  color: var(--white);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease;
}

.booking-field input {
  min-height: 54px;
}

.booking-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #74767b;
}

.booking-field input::placeholder {
  font-size: 0.78rem;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--silver-light);
  background: #171719;
}

.booking-service-choice {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
}

.booking-service-choice legend {
  margin-bottom: 14px;
}

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

.booking-service-choice__options label {
  position: relative;
  cursor: pointer;
}

.booking-service-choice__options .booking-option--wide {
  grid-column: 1 / -1;
}

.booking-hosting-choice[hidden] {
  display: none;
}

.booking-service-choice__options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.booking-service-choice__options label > span {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #111113;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.booking-service-choice__options strong {
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.booking-service-choice__options small {
  color: #8e9095;
  font-size: 0.72rem;
  line-height: 1.5;
}

.booking-service-choice__options input:checked + span {
  border-color: var(--silver-light);
  background: var(--silver-light);
  color: var(--black);
}

.booking-service-choice__options input:checked + span small {
  color: #4d4f53;
}

.booking-service-choice__options input:focus-visible + span {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.booking-follow-up {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.booking-follow-up [hidden] {
  display: none;
}

.booking-follow-up .booking-field:not([hidden]) {
  animation: booking-field-reveal 240ms ease both;
}

@keyframes booking-field-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.booking-form__submit .button {
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
}

.booking-form__submit > p {
  max-width: 270px;
  margin: 0;
  color: #818388;
  font-size: 0.68rem;
  line-height: 1.55;
}

.button--light {
  flex: 0 0 auto;
  background: var(--silver-light);
  color: var(--black);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 30px clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: #67696e;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.7;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer div {
  display: grid;
  gap: 3px;
}

.footer__copyright {
  max-width: 620px;
  color: #55575c;
  text-align: right;
}

/* Approved palette: white, silver, black, pale blue, turquoise and gold */

::selection {
  background: var(--accent);
  color: var(--black);
}

.site-nav a::after {
  background: var(--accent-deep);
}

.image-frame--on-dark {
  --image-outline: var(--accent-soft);
}

.hero {
  background:
    radial-gradient(circle at 88% 30%, rgba(168, 184, 232, 0.12), transparent 30%),
    linear-gradient(110deg, var(--black) 0%, #111113 56%, var(--charcoal) 100%);
}

.hero__glow {
  background:
    radial-gradient(circle at 68% 62%, rgba(79, 150, 142, 0.12), transparent 24%),
    radial-gradient(circle at 45% 45%, rgba(168, 184, 232, 0.12), transparent 36%),
    radial-gradient(circle, rgba(168, 184, 232, 0.2), transparent 68%);
}

.hero .eyebrow,
.about-section .eyebrow,
.new-service-hero .eyebrow {
  color: var(--accent-soft);
}

.hero h1 span,
.about-section h2 span,
.new-service-hero h1 span {
  color: #b7bfdf;
}

.hero__visual::before,
.hero__visual::after,
.hero__signal::after {
  background: var(--accent-soft);
}

.hero__signal {
  border-color: rgba(168, 184, 232, 0.68);
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}

.services-section,
.booking-section,
.compact-service-summary {
  background:
    radial-gradient(circle at 8% 10%, var(--accent-wash), transparent 24%),
    radial-gradient(circle at 94% 80%, rgba(168, 184, 232, 0.07), transparent 22%),
    var(--header-silver);
}

.services-section .eyebrow,
.booking-section__intro .eyebrow,
.compact-service-summary__content > .eyebrow,
.compact-service-promise .eyebrow,
.service-ownership-note .eyebrow,
.website-ownership-note .eyebrow {
  color: var(--accent-deep);
}

.service-card__number {
  color: rgba(104, 121, 170, 0.14);
}

.service-choice {
  box-shadow: inset 3px 0 0 var(--accent);
}

.service-card:nth-child(2) .service-choice {
  box-shadow: inset 3px 0 0 var(--teal);
}

.service-choice:hover,
.service-choice:focus-visible {
  background: linear-gradient(105deg, var(--charcoal), #242426);
}

.service-features li:first-child {
  border-color: rgba(104, 121, 170, 0.38);
  background: rgba(168, 184, 232, 0.12);
  color: var(--black);
}

.service-card:nth-child(2) .service-features li:first-child {
  border-color: rgba(50, 111, 105, 0.4);
  background: rgba(79, 150, 142, 0.06);
  color: #294e4a;
}

.home-hosting-plan,
.project-self-credit,
.hosting-care-plan,
.booking-form {
  border-top: 3px solid var(--accent);
}

.home-hosting-plan,
.hosting-care-plan {
  border-top-color: var(--amber);
  background:
    radial-gradient(circle at 92% 12%, rgba(197, 141, 77, 0.11), transparent 24%),
    var(--black);
}

.project-self-credit {
  border-top-color: var(--teal);
}

.home-hosting-plan__price strong,
.hosting-care-plan__heading > strong {
  color: var(--amber-soft);
}

.home-hosting-plan__action .button--light,
.booking-form__submit .button--light {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}

.website-ownership-note {
  border-top-color: rgba(50, 111, 105, 0.5);
}

.website-ownership-note .eyebrow,
.project-proof__title .eyebrow {
  color: var(--teal-deep);
}

.new-service-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(168, 184, 232, 0.14), transparent 28%),
    linear-gradient(115deg, var(--black), var(--charcoal));
}

.delivery-timeframe {
  border-left-color: var(--amber);
  box-shadow: 0 16px 44px rgba(9, 9, 10, 0.24);
}

.delivery-timeframe strong {
  color: var(--amber-deep);
}

.compact-price {
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.13);
}

.compact-quality-points span {
  color: var(--accent-deep);
}

.redesign-price-includes li::before {
  background: var(--teal-deep);
}

.service-ownership-note {
  border-left: 4px solid var(--teal);
}

.redesign-page .new-service-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(79, 150, 142, 0.16), transparent 28%),
    linear-gradient(115deg, var(--black), var(--charcoal));
}

.redesign-page .compact-price {
  border-left-color: var(--teal);
}

.redesign-page .compact-quality-points span,
.redesign-page .compact-service-summary__content > .eyebrow {
  color: var(--teal-deep);
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(168, 184, 232, 0.15), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(79, 150, 142, 0.1), transparent 24%),
    linear-gradient(118deg, var(--black), var(--charcoal));
}

.about-section__story {
  position: relative;
  z-index: 1;
}

.about-section__details span {
  color: var(--teal-soft);
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 2px rgba(168, 184, 232, 0.28);
}

.booking-field input.is-invalid,
.booking-field input.is-invalid:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(197, 141, 77, 0.22);
}

.booking-service-choice__options input:checked + span {
  border-color: var(--accent);
  background: #dfe3f3;
}

.booking-service-choice__options input:focus-visible + span {
  outline-color: var(--accent-soft);
}

footer {
  border-top-color: rgba(168, 184, 232, 0.42);
}

@media (max-width: 800px) {
  .site-header {
    min-height: 94px;
    grid-template-columns: 1fr auto;
    padding-block: 12px;
  }

  .brand {
    width: 96px;
    height: 68px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 10px;
  }

  .header-actions {
    display: none;
  }

  .menu-button__label {
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .menu-button__icon {
    width: 26px;
    display: grid;
    gap: 6px;
  }

  .menu-button__icon i {
    height: 1px;
    display: block;
    background: var(--black);
    transition: transform 180ms ease;
  }

  .site-nav {
    position: absolute;
    top: 94px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 1px solid rgba(9, 9, 10, 0.28);
    background: rgba(197, 198, 201, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(9, 9, 10, 0.18);
  }

  .site-nav__mobile-contact {
    display: grid;
    gap: 12px;
    padding-top: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 72px;
    padding-top: 154px;
  }

  .hero__showcase {
    width: min(86vw, 430px);
    min-width: 0;
    min-height: 540px;
  }

  .hero__visual {
    width: min(80vw, 360px);
  }

  .hero__showcase::before {
    background-size: 26px 26px;
  }

  .hero__signal {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.52rem;
  }

  .hero__signal::after {
    width: 22px;
  }

  .hero__signal--responsive {
    top: 6%;
    left: 1%;
  }

  .hero__signal--business {
    top: 44%;
    right: 0;
    max-width: 145px;
  }

  .hero__signal--modern {
    bottom: 4%;
    left: 2%;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-section__intro {
    max-width: 650px;
  }

  .about-section {
    min-height: auto;
  }

  .about-section__story {
    max-width: 680px;
  }

  .services-section {
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-hosting-plan {
    grid-template-columns: 1fr;
  }

  .home-hosting-plan__price {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .website-ownership-note {
    grid-template-columns: 1fr;
  }

  .featured-project,
  .project-detail,
  .case-study__intro,
  .new-service-hero,
  .service-story,
  .build-feature,
  .investment-section {
    grid-template-columns: 1fr;
  }

  .new-service-hero {
    min-height: auto;
  }

  .quality-points {
    grid-template-columns: 1fr;
  }

  .quality-points p + p {
    border-top: 1px solid rgba(9, 9, 10, 0.32);
    border-left: 0;
  }

  .new-service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .compact-service-promise {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-project__content {
    max-width: 620px;
  }

  .project-proof {
    grid-template-columns: 1fr auto;
  }

  .project-proof__details {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .project-self-credit {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .project-detail {
    padding-top: 130px;
  }

  .case-study__intro .eyebrow {
    grid-column: auto;
    margin-bottom: -18px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .hero {
    padding-bottom: 72px;
  }

  .services-section,
  .about-section,
  .booking-section {
    padding-block: 72px;
  }

  .booking-form__fields,
  .booking-service-choice__options {
    grid-template-columns: 1fr;
  }

  .booking-field--wide {
    grid-column: auto;
  }

  .booking-form__submit {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }

  .footer__copyright {
    max-width: 680px;
    text-align: left;
  }

  .about-section__details {
    grid-template-columns: 1fr;
  }

  .about-section__details p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .service-choice {
    min-height: 96px;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip p + p {
    border-top: 1px solid rgba(9, 9, 10, 0.3);
    border-left: 0;
  }

  .featured-project {
    gap: 34px;
  }

  .project-proof {
    grid-template-columns: 1fr;
  }

  .project-proof__details {
    grid-column: auto;
  }

  .project-proof__images img {
    width: 172px;
    height: 96px;
  }

  .back-link {
    top: 20px;
  }

  .case-study {
    gap: 72px;
    padding-top: 120px;
    padding-bottom: 72px;
  }

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

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

  footer {
    flex-direction: column;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
