@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/dm-sans-2.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/dm-sans-1.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/playfair-display-5.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/playfair-display-4.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/playfair-display-6.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0b111d;
  --muted: #667181;
  --line: #dedbd2;
  --paper: #f7f5ef;
  --white: #ffffff;
  --navy: #0d1b2a;
  --black: #07090d;
  --green: #0d1b2a;
  --green-dark: #07090d;
  --gold: #c8a45d;
  --gold-dark: #9d762f;
  --coral: #d9614c;
  --shadow: 0 22px 70px rgba(11, 17, 29, 0.16);
  --font-body: "DM Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-brand: "DM Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 246, 239, 0.9);
  border-bottom: 1px solid rgba(220, 226, 223, 0.85);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 8px 22px rgba(11, 17, 29, 0.2);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: var(--font-brand);
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: #2d3442;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.6);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 520px);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding: clamp(64px, 8vw, 118px) clamp(18px, 4vw, 56px) clamp(28px, 5vw, 56px);
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.88) 0%, rgba(13, 27, 42, 0.58) 42%, rgba(13, 27, 42, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 9, 13, 0.68) 0%, rgba(7, 9, 13, 0) 46%);
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.01);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.section-kicker {
  color: var(--gold-dark);
}

.insight-band .section-kicker {
  color: var(--gold-dark);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.2vw, 86px);
  font-weight: 700;
  line-height: 0.98;
}

.hero-statement {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.9vw, 48px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

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

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(116px, 1fr));
  overflow: hidden;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: 26px;
}

.hero-panel span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ticker {
  display: flex;
  padding: 14px clamp(18px, 4vw, 56px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.ticker-track {
  display: flex;
  min-width: max-content;
  gap: 34px;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-track span {
  position: relative;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker {
    overflow-x: auto;
  }

  .ticker-track {
    animation: none;
  }
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.intro,
.section-head,
.insight-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.7vw, 58px);
  font-weight: 700;
  line-height: 1.12;
}

.intro-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.credentials span,
.filter {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: #2d3442;
  font-size: 13px;
  font-weight: 700;
}

.value-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.value-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.value-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.value-card p {
  font-size: 14px;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 28px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 40px;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.content-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-toolbar {
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 210px) minmax(150px, 210px) auto;
}

.control-field {
  display: grid;
  gap: 8px;
}

.control-field span {
  color: #2d3442;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.control-field input,
.control-field select {
  min-height: 46px;
  background: var(--white);
}

.result-count {
  min-width: 96px;
  margin: 0;
  padding: 13px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(200, 164, 93, 0.16);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

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

.article-card,
.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11, 17, 29, 0.08);
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card {
  display: grid;
  min-height: 410px;
}

.card-image,
.project-image {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.card-image-link,
.project-image-link {
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.card-image-link:hover .card-image,
.project-image-link:hover .project-image,
.article-card:hover .card-image,
.project-card:hover .project-image {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.article-card:hover,
.project-card:hover {
  border-color: rgba(200, 164, 93, 0.46);
  box-shadow: 0 18px 44px rgba(11, 17, 29, 0.13);
  transform: translateY(-2px);
}

.article-card:focus-visible,
.project-card:focus-visible,
.load-more:focus-visible {
  outline: 3px solid rgba(200, 164, 93, 0.34);
  outline-offset: 3px;
}

.article-body,
.project-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.article-meta,
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tag {
  color: var(--green);
}

.article-card h3,
.project-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.article-card p,
.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-link,
.text-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.load-more {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.load-more:hover {
  color: var(--white);
  background: var(--green);
}

.load-more[hidden] {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  min-height: 180px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px dashed rgba(200, 164, 93, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.empty-state strong {
  color: var(--ink);
  font-size: 20px;
}

.empty-state span {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.projects-section {
  background: #f1f2f4;
}

.project-card {
  display: grid;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.project-stats span {
  padding: 10px;
  background: #f5f2e9;
  border-radius: 8px;
  color: #273142;
  font-size: 13px;
  font-weight: 700;
}

.insight-band {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 239, 0.96)),
    linear-gradient(90deg, rgba(200, 164, 93, 0.14), rgba(13, 27, 42, 0.04));
  border-top: 1px solid rgba(200, 164, 93, 0.22);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  color: var(--ink);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 17, 29, 0.07);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(rgba(248, 246, 239, 0.9), rgba(248, 246, 239, 0.95)),
    url("assets/images/contact-consulting.webp") center/cover;
}

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

.contact-methods a {
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #2d3442;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 164, 93, 0.26);
  border-color: var(--green);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
}

.site-footer span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.detail-hero {
  display: grid;
  min-height: 620px;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(36px, 7vw, 80px);
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.88), rgba(13, 27, 42, 0.42)),
    var(--detail-image, url("assets/images/hero-luxury-home.webp")) center/cover;
  color: var(--white);
}

.detail-hero-content {
  align-self: end;
  max-width: 860px;
}

.detail-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.03;
}

.detail-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.detail-copy {
  display: grid;
  gap: 34px;
}

.detail-block h2,
.detail-sidebar h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.detail-block p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.detail-points li,
.detail-sidebar {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-points strong,
.detail-points span {
  display: block;
}

.detail-points span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.detail-sidebar .project-stats {
  grid-template-columns: 1fr;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.article-hero {
  display: grid;
  min-height: 620px;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(36px, 7vw, 80px);
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.9), rgba(13, 27, 42, 0.5), rgba(13, 27, 42, 0.22)),
    var(--article-image, url("assets/images/article-market-binh-duong.webp")) center/cover;
  color: var(--white);
}

.article-hero-content {
  align-self: end;
  max-width: 920px;
}

.article-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 700;
  line-height: 1.03;
}

.article-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 390px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.article-prose {
  display: grid;
  gap: 30px;
}

.article-lede {
  margin: 0;
  color: #2d3442;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.75;
}

.article-section {
  display: grid;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.article-section p,
.article-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-sidebar h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.thank-you-section {
  min-height: calc(100svh - 81px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.98), rgba(248, 246, 239, 0.84)),
    url("assets/images/contact-consulting.webp") center/cover;
}

.thank-you-section > div {
  max-width: 820px;
}

.thank-you-section h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.04;
}

.thank-you-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

@media (max-height: 760px) and (min-width: 981px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 72px);
  }

  .hero-statement {
    margin-top: 14px;
    font-size: clamp(26px, 3vw, 42px);
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-panel div {
    padding: 14px;
  }

  .hero-panel strong {
    font-size: 22px;
  }
}

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

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 71px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .hero-panel {
    justify-self: stretch;
    grid-template-columns: repeat(3, 1fr);
  }

  .intro,
  .section-head,
  .insight-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .content-toolbar,
  .project-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .content-toolbar .control-field:first-child,
  .result-count {
    grid-column: 1 / -1;
  }

  .result-count {
    text-align: left;
  }

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

  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    align-items: start;
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero-statement {
    margin-top: 14px;
    font-size: clamp(23px, 6.2vw, 28px);
    line-height: 1.16;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

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

  .hero-panel div {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel strong {
    font-size: 24px;
  }

  .hero-panel span {
    font-size: 13px;
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

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

  .content-toolbar,
  .project-toolbar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .control-field.compact,
  .content-toolbar .control-field:first-child,
  .result-count {
    grid-column: auto;
  }

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

  .article-hero {
    min-height: 560px;
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .article-hero h1,
  .detail-hero h1 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.08;
  }

  .article-hero p,
  .detail-hero p {
    font-size: 16px;
    line-height: 1.58;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-statement {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .hero-panel div {
    padding: 12px 14px;
  }

  .hero-panel strong {
    font-size: 22px;
  }

  .hero-panel span {
    font-size: 12px;
  }
}
