:root {
  --ink: #1a201d;
  --ink-soft: #4f5a54;
  --paper: #f6f1e8;
  --paper-deep: #e9dfcf;
  --cream: #fffdf8;
  --red: #a63f31;
  --red-dark: #813024;
  --gold: #ae8a57;
  --line: rgba(26, 32, 29, 0.16);
  --shadow: 0 18px 55px rgba(20, 29, 25, 0.16);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.7;
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 0.35s ease;
}

.scrolled .brand img,
.menu-open .brand img {
  filter: none;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.18em;
}

.brand small {
  font-size: 8px;
  letter-spacing: 0.25em;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  letter-spacing: 0.08em;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-contact {
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 100px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  height: 100vh;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 26, 25, 0.78) 0%, rgba(17, 26, 25, 0.52) 37%, rgba(17, 26, 25, 0.06) 72%),
    linear-gradient(180deg, rgba(15, 20, 19, 0.26), rgba(15, 20, 19, 0.08) 64%, rgba(15, 20, 19, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 88vw);
  margin-left: 9vw;
  padding-top: 35px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(64px, 7vw, 106px);
  letter-spacing: 0.04em;
  line-height: 1.13;
}

h1 em,
.contact h2 em {
  color: #f4e7d0;
  font-style: normal;
}

.hero-lead {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
}

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

.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  letter-spacing: 0.35em;
  transform: translateX(-50%);
}

.hero-scroll i {
  width: 1px;
  height: 46px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), transparent);
}

.proof-bar {
  display: grid;
  padding: 0 8vw;
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-bar p {
  min-height: 94px;
  margin: 0;
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.proof-bar p:first-child {
  border-left: 1px solid var(--line);
}

.proof-bar small,
.proof-bar strong {
  display: block;
}

.proof-bar small {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.proof-bar strong {
  color: #3d4944;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.section {
  padding: 112px 8vw;
}

.paper-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(166, 63, 49, 0.055), transparent 23%),
    radial-gradient(circle at 90% 80%, rgba(174, 138, 87, 0.11), transparent 28%),
    var(--paper);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 4vw, 62px);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.section-heading > p:last-child,
.heading-row > p {
  color: var(--ink-soft);
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.heading-row > p {
  margin-bottom: 10px;
  font-size: 14px;
  text-align: right;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 7vw;
}

.intro-lead {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.45;
}

.intro-lead span {
  color: var(--red);
}

.intro-copy {
  padding-top: 8px;
  color: var(--ink-soft);
  font-size: 16px;
}

.intro-copy p + p {
  margin-top: 22px;
}

.services {
  background: #fffdf9;
}

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

.service-card {
  min-height: 300px;
  padding: 34px 28px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.35s ease;
}

.service-card:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-6px);
}

.service-card b {
  color: var(--red);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.service-card h3 {
  margin: 42px 0 14px;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.05em;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card span {
  display: block;
  margin-top: 25px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.05em;
}

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

.cases .section-heading > div .eyebrow,
.cases .section-heading > div h2 {
  color: #fff;
}

.cases .heading-row > p {
  color: rgba(255, 255, 255, 0.62);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.case-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background: #27302d;
}

.case-feature {
  grid-row: span 2;
  grid-column: span 7;
}

.case-card:nth-child(2) {
  grid-column: span 5;
}

.case-card:nth-child(3),
.case-card:nth-child(4),
.case-card:nth-child(5) {
  grid-column: span 5;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-card:hover img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(transparent 28%, rgba(14, 19, 18, 0.86));
}

.case-overlay small {
  color: #e0b16f;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.case-overlay h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.06em;
}

.case-overlay p {
  max-width: 590px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.case-overlay button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.case-overlay button::after {
  content: " →";
}

.client-list {
  display: flex;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  flex-wrap: wrap;
}

.client-list span {
  display: grid;
  min-height: 86px;
  flex: 1 1 260px;
  place-items: center;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #3e4943;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-align: center;
}

.about {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
  gap: 8vw;
  background: #fffdf9;
}

.about-media {
  position: relative;
  max-width: 540px;
}

.about-media::before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(166, 63, 49, 0.35);
  content: "";
}

.about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.84);
}

.about-stamp {
  position: absolute;
  right: -34px;
  bottom: 30px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: center;
}

.about-role {
  color: var(--red);
  letter-spacing: 0.12em;
}

.about-intro {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 2;
}

.credential-list {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.credential-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #43504a;
  font-size: 14px;
}

.credential-list li::before {
  margin-right: 12px;
  color: var(--red);
  content: "·";
}

.article-mark {
  color: var(--red);
  font-family: var(--serif);
  letter-spacing: 0.32em;
}

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

.article-card,
.article-topic {
  min-height: 230px;
  padding: 31px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
  transition: 0.3s ease;
}

.article-feature {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  grid-row: span 2;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(24, 32, 29, 0.07), rgba(24, 32, 29, 0.94)),
    url("../images/cases/reading-salon.webp") center / cover;
}

.article-feature .article-mark,
.article-feature h3,
.article-feature span {
  color: #fff;
}

.article-feature h3 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.article-feature p:not(.article-mark) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.7);
}

.article-feature span {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.article-topic b {
  color: var(--red);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.article-topic p {
  margin: 47px 0 4px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.article-topic h3 {
  max-width: 300px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.article-topic:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-5px);
}

.contact {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 27, 25, 0.96), rgba(18, 27, 25, 0.84)),
    url("../images/cases/bootcamp-group.webp") center / cover;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 7vw;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
}

.contact-inner {
  max-width: 830px;
}

.contact .eyebrow {
  color: #dcb984;
}

.contact h2 {
  margin-bottom: 17px;
  font-size: clamp(46px, 5.3vw, 74px);
}

.contact-inner > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-quick-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-quick-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-placeholder {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.qr-placeholder {
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.qr-placeholder b {
  color: #e0b16f;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-placeholder small {
  color: #dcb984;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.contact-placeholder h3 {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 25px;
}

.contact-placeholder p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.message-form {
  padding: 29px 30px 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.form-kicker {
  margin-bottom: 5px;
  color: #dcb984;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.message-form h3 {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: 0.08em;
}

.form-intro {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

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

.form-grid label {
  display: grid;
  gap: 5px;
}

.form-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
}

.form-grid select option {
  color: var(--ink);
}

.form-grid textarea {
  min-height: 106px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #dcb984;
}

.form-grid ::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-submit {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 15px;
  margin-top: 17px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: 0.25s ease;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.6;
}

.form-consent input {
  margin-top: 3px;
  accent-color: var(--red);
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-submit i {
  font-style: normal;
}

.form-status {
  min-height: 22px;
  margin: 11px 0 0;
  color: #f0ce9b;
  font-size: 12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 6vw;
  color: rgba(255, 255, 255, 0.56);
  background: #111715;
  font-size: 11px;
}

.site-article {
  width: min(860px, 100%);
  margin: 40px auto 0;
}

.site-article h1 {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
}

.site-article-cover {
  margin: 0 0 34px;
}

.site-article-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.site-article-content {
  color: #35413c;
  font-size: 17px;
  line-height: 2;
}

.site-article-content img {
  height: auto;
}

footer p {
  margin: 0;
}

footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.2em;
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-records > * + *::before {
  margin-right: 9px;
  color: rgba(255, 255, 255, 0.34);
  content: "·";
}

.case-modal {
  width: min(920px, 92vw);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.case-modal::backdrop {
  background: rgba(10, 15, 14, 0.76);
}

.case-modal img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
}

.modal-copy {
  padding: 30px 34px 36px;
}

.modal-copy h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.modal-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 23, 21, 0.72);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: 0.25s ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    display: none;
    width: 100%;
    align-items: stretch;
    padding: 18px 6vw 25px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
  }

  .menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 6px 0;
  }

  .nav-contact {
    margin-top: 5px;
    text-align: center;
  }

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

  .case-grid {
    grid-auto-rows: 230px;
  }

  .case-feature,
  .case-card:nth-child(n) {
    grid-column: span 6;
  }

  .case-feature {
    grid-row: span 2;
  }

  .about {
    gap: 6vw;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 0 5vw;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand strong {
    font-size: 15px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(14, 20, 19, 0.14), rgba(14, 20, 19, 0.2) 32%, rgba(14, 20, 19, 0.83) 84%);
  }

  .hero-content {
    width: 90vw;
    margin: auto 5vw 82px;
    padding-top: 0;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lead {
    margin-bottom: 24px;
    max-width: 96%;
    font-size: 13px;
  }

  .button {
    min-height: 43px;
    padding: 0 17px;
    font-size: 12px;
  }

  .hero-scroll {
    display: none;
  }

  .proof-bar {
    display: block;
    padding: 0 5vw;
  }

  .proof-bar p,
  .proof-bar p:first-child {
    min-height: auto;
    padding: 13px 7px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 78px 5vw;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 40px;
  }

  .heading-row,
  .intro-grid,
  .about {
    display: block;
  }

  .heading-row > p {
    margin-top: 8px;
    text-align: left;
  }

  .intro-lead {
    font-size: 29px;
  }

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

  .service-card {
    min-height: auto;
    padding: 27px 23px;
  }

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

  .case-grid {
    display: block;
  }

  .case-card {
    min-height: 260px;
    margin-bottom: 12px;
  }

  .case-feature {
    min-height: 390px;
  }

  .case-overlay p {
    display: none;
  }

  .client-list span {
    min-height: 70px;
    flex-basis: 50%;
    padding: 10px;
    font-size: 14px;
  }

  .about-media {
    width: 88%;
    margin-bottom: 62px;
  }

  .about-stamp {
    right: -28px;
  }

  .about-intro {
    font-size: 16px;
  }

  .article-grid {
    display: block;
  }

  .article-card,
  .article-topic {
    min-height: 184px;
    padding: 25px 21px;
  }

  .article-feature {
    min-height: 390px;
  }

  .article-topic p {
    margin-top: 25px;
  }

  .contact h2 {
    font-size: 46px;
  }

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

  .qr-placeholder {
    width: 108px;
    height: 108px;
  }

  .message-form {
    padding: 22px 18px 23px;
  }

  .form-grid {
    display: block;
  }

  .form-grid label + label {
    margin-top: 12px;
  }

  footer {
    padding: 22px 5vw;
  }

  .modal-copy {
    padding: 23px;
  }

  .modal-copy h2 {
    font-size: 29px;
  }
}
