:root {
  --purple: #8550a8;
  --purple-dark: #5d2f7a;
  --ink: #111015;
  --muted: #69606f;
  --line: #e8e1ee;
  --paper: #ffffff;
  --soft: #f7f4fa;
  --accent: #c8f14a;
  --cyan: #58d6df;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans Armenian", "Inter", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(17, 16, 21, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(17, 16, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  padding: 7px 10px;
  background: var(--purple);
}

.brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #37313e;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--purple);
}

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(420px, 54%);
  min-height: calc(86vh - 77px);
  border-bottom: 1px solid var(--line);
}

.hero > * {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 74px) clamp(22px, 5.2vw, 64px);
}

.hero-copy h1 {
  max-width: min(100%, 650px);
  margin: 0;
  font-family: "Inter", "Noto Sans Armenian", sans-serif;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: min(100%, 560px);
  margin: 30px 0 0;
  color: #3f3648;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 16, 21, 0.16);
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.hero-panel {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: var(--purple);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.34;
}

.panel-grid {
  position: absolute;
  inset: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  opacity: 0.18;
}

.panel-grid span {
  border: 1px solid #fff;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(48%, 540px);
  transform: translateY(-6px);
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-metrics {
  position: absolute;
  right: 36px;
  bottom: 32px;
  left: 36px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-band {
  display: flex;
  justify-content: center;
  padding: 34px 22px;
  background: var(--ink);
  color: #fff;
}

.intro-band p {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(19px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: normal;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) 22px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.section-heading h2,
.approach h2,
.contact-section h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 0.96;
}

.section-heading p,
.approach-copy p,
.contact-section p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 310px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-card:nth-child(even) {
  background: var(--soft);
}

.service-index {
  display: block;
  color: var(--purple);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-card h3,
.process-list h3 {
  margin: 74px 0 16px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.16;
}

.service-card p,
.process-list p {
  margin: 0;
  color: #5d5564;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--purple);
  font-family: "Inter", "Noto Sans Armenian", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.personal-brand-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.personal-brand-feature > *,
.brand-hero > * {
  min-width: 0;
}

.personal-brand-feature-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 0.96;
}

.personal-brand-feature-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.consultant-panel {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.consultant-photo,
.brand-consultant-photo {
  margin: 0;
  overflow: hidden;
  background: #ddd9dc;
  border-radius: var(--radius);
}

.consultant-photo {
  aspect-ratio: 4 / 5;
}

.consultant-photo img,
.brand-consultant-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.consultant-info {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.consultant-info strong,
.brand-consultant-card strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.consultant-info span,
.brand-consultant-card span {
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.consultant-info p {
  margin: 8px 0 0;
  color: #5d5564;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.approach {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
}

.approach-copy {
  align-self: start;
  position: sticky;
  top: 116px;
}

.approach-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 0.7fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list span {
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.results {
  padding-bottom: clamp(64px, 8vw, 96px);
}

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

.result-strip article {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  padding: 24px;
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius);
}

.result-strip article:nth-child(2) {
  background: var(--ink);
}

.result-strip article:nth-child(3) {
  color: var(--ink);
  background: var(--accent);
}

.result-strip strong {
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
}

.result-strip span {
  max-width: 260px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.contact-section p {
  margin-top: 22px;
}

.contact-section h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.4vw, 64px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #403747;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8cde1;
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(135, 81, 170, 0.22);
  border-color: var(--purple);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: #fff;
  background: var(--purple);
}

.brand-footer .brand-logo-img {
  width: 100%;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.web-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(86vh - 77px);
  border-bottom: 1px solid var(--line);
}

.web-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 92px) clamp(22px, 5.2vw, 64px);
}

.web-hero-copy h1 {
  max-width: min(100%, 560px);
  margin: 0;
  font-size: clamp(46px, 4.6vw, 66px);
  font-weight: 900;
  line-height: 0.92;
}

.web-hero-copy h1 span {
  display: block;
}

.web-hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #443b4c;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.55;
}

.web-hero-board {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: clamp(30px, 5vw, 70px);
  background: var(--purple);
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 78px 78px;
}

.browser-frame {
  width: min(100%, 720px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  box-shadow: 22px 22px 0 rgba(17, 16, 21, 0.22);
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 12px;
  height: 12px;
  background: var(--purple);
}

.browser-body {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.mock-nav,
.mock-title,
.mock-copy,
.mock-grid span {
  display: block;
  background: var(--ink);
}

.mock-nav {
  width: 45%;
  height: 12px;
}

.mock-title {
  width: 78%;
  height: 86px;
}

.mock-copy {
  width: 62%;
  height: 52px;
  opacity: 0.55;
}

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

.mock-grid span {
  height: 120px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.web-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.web-strip article {
  min-height: 210px;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.web-strip article:nth-child(2) {
  background: var(--ink);
  color: #fff;
}

.web-strip article:nth-child(3) {
  background: var(--accent);
}

.web-strip strong {
  display: block;
  max-width: 360px;
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.95;
}

.web-strip span {
  display: block;
  max-width: 360px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-grid article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-grid span,
.web-steps span {
  color: var(--purple);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.deliverable-grid h3 {
  margin: 62px 0 14px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.16;
}

.deliverable-grid p {
  margin: 0;
  color: #5d5564;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.portfolio-section {
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-section .section-heading,
.portfolio-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.portfolio-card {
  display: grid;
  min-height: 430px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portfolio-purple {
  color: #fff;
  background: var(--purple);
}

.portfolio-dark {
  color: #fff;
  background: var(--ink);
}

.portfolio-lime {
  background: var(--accent);
}

.portfolio-preview {
  display: grid;
  gap: 10px;
  align-content: start;
  height: 160px;
  padding: 18px;
  border: 1px solid currentColor;
  opacity: 0.8;
}

.portfolio-preview span {
  display: block;
  height: 18px;
  background: currentColor;
}

.portfolio-preview span:nth-child(1) {
  width: 34%;
}

.portfolio-preview span:nth-child(2) {
  width: 76%;
  height: 42px;
}

.portfolio-preview span:nth-child(3) {
  width: 52%;
}

.portfolio-card h3 {
  margin: 28px 0 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.portfolio-card p {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.portfolio-card small {
  align-self: end;
  margin-top: 28px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.web-process {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
}

.web-process h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.96;
}

.web-process p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.web-steps {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.web-steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.web-steps strong {
  font-size: 24px;
  font-weight: 900;
}

.web-contact {
  border-top: 0;
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(86vh - 77px);
  padding: clamp(54px, 7vw, 92px) clamp(22px, 5.2vw, 64px);
  border-bottom: 1px solid var(--line);
}

.brand-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 900;
  line-height: 1.02;
}

.brand-hero-copy h1 span {
  display: block;
}

.brand-hero-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: #443b4c;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.55;
}

.brand-consultant {
  display: grid;
  gap: 16px;
  align-content: center;
  align-self: stretch;
  grid-auto-rows: max-content;
  min-height: 560px;
}

.brand-consultant-photo {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.brand-consultant-photo img {
  object-position: center 23%;
}

.brand-consultant-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 20px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-fit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.brand-fit article {
  min-height: 210px;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.brand-fit article:nth-child(2) {
  color: #fff;
  background: var(--ink);
}

.brand-fit article:nth-child(3) {
  background: var(--accent);
}

.brand-fit strong {
  display: block;
  max-width: 360px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.brand-fit span {
  display: block;
  max-width: 380px;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.brand-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(74px, 9vw, 118px) clamp(22px, 5vw, 64px);
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.brand-trust h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 0.98;
}

.brand-trust p {
  margin: 0;
  color: #4d4454;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.65;
}

.brand-process {
  border-top: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .approach,
  .contact-section,
  .web-hero,
  .web-process,
  .personal-brand-feature,
  .brand-hero,
  .brand-trust {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 460px;
  }

  .service-grid,
  .result-strip,
  .deliverable-grid,
  .portfolio-grid,
  .brand-fit {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brand-fit {
    grid-template-columns: 1fr;
  }

  .web-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .web-hero {
    min-height: auto;
  }

  .web-hero-board {
    min-height: 460px;
  }

  .brand-hero {
    min-height: auto;
  }

  .brand-consultant {
    align-self: auto;
    min-height: auto;
  }

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

  .approach-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo-img {
    width: 100%;
  }

  .brand-logo-shell {
    width: 142px;
    padding: 5px 8px;
  }

  .header-action {
    min-height: 36px;
    padding-inline: 14px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-copy {
    padding: 48px 18px 40px;
    width: 100vw;
    max-width: 100vw;
  }

  .hero-copy h1 {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    font-size: 54px;
    overflow-wrap: normal;
  }

  .hero-copy p {
    width: min(320px, calc(100vw - 36px));
    max-width: min(320px, calc(100vw - 36px));
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-panel {
    width: 100vw;
    min-height: 360px;
  }

  .hero-logo {
    width: min(72%, 280px);
  }

  .hero-metrics {
    right: 18px;
    left: 18px;
    font-size: 10px;
  }

  .intro-band p {
    width: min(330px, calc(100vw - 48px));
    max-width: min(330px, calc(100vw - 48px));
    font-size: 18px;
    line-height: 1.45;
  }

  .service-grid,
  .result-strip,
  .deliverable-grid,
  .portfolio-grid,
  .brand-fit {
    grid-template-columns: 1fr;
  }

  .personal-brand-feature {
    padding-inline: 18px;
  }

  .personal-brand-feature-copy h2,
  .brand-hero-copy h1 {
    max-width: calc(100vw - 36px);
    font-size: 30px;
    line-height: 1.08;
  }

  .personal-brand-feature-copy p,
  .brand-hero-copy p {
    max-width: min(330px, calc(100vw - 36px));
    font-size: 17px;
  }

  .consultant-panel {
    grid-template-columns: 1fr;
  }

  .consultant-photo {
    max-height: 420px;
  }

  .brand-hero {
    padding: 48px 36px 40px 18px;
  }

  .brand-hero .hero-actions {
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
  }

  .brand-hero,
  .brand-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .brand-hero-copy,
  .brand-consultant,
  .brand-consultant-photo,
  .brand-consultant-card {
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
    min-width: 0;
  }

  .brand-consultant-photo {
    max-height: 520px;
  }

  .brand-consultant-card strong,
  .brand-consultant-card span,
  .consultant-info strong,
  .consultant-info span {
    overflow-wrap: anywhere;
  }

  .brand-consultant-card span {
    font-size: 13px;
  }

  .brand-hero .hero-actions,
  .brand-hero-copy,
  .brand-consultant,
  .brand-consultant-photo,
  .brand-consultant-card {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
  }

  .brand-fit article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-fit strong {
    font-size: 32px;
  }

  .brand-trust {
    padding-inline: 18px;
  }

  .web-hero-copy {
    padding: 48px 18px 40px;
  }

  .web-hero-copy h1 {
    max-width: calc(100vw - 36px);
    font-size: 40px;
    line-height: 0.98;
  }

  .web-hero-copy p {
    max-width: min(330px, calc(100vw - 36px));
    font-size: 17px;
  }

  .web-hero-board {
    min-height: 340px;
    padding: 32px 18px;
  }

  .browser-frame {
    box-shadow: 12px 12px 0 rgba(17, 16, 21, 0.22);
  }

  .mock-title {
    height: 56px;
  }

  .mock-copy {
    height: 38px;
  }

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

  .mock-grid span {
    height: 48px;
  }

  .web-strip strong {
    font-size: 38px;
  }

  .web-strip article {
    min-height: 180px;
  }

  .deliverable-grid article {
    min-height: 220px;
  }

  .deliverable-grid h3 {
    margin-top: 42px;
  }

  .portfolio-section {
    padding-inline: 18px;
  }

  .portfolio-card {
    min-height: 360px;
  }

  .portfolio-card h3 {
    font-size: 24px;
  }

  .web-process {
    padding-inline: 18px;
  }

  .web-steps article {
    grid-template-columns: 48px 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .approach {
    padding-inline: 18px;
  }

  .process-list article {
    grid-template-columns: 48px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }

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

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