:root {
  --paper: #f6f6f3;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #6f6f6a;
  --line: #e3e3dd;
  --line-strong: #c9c9c1;
  --accent: #c23b2e;
  --accent-dark: #a32f24;
  --accent-soft: #f5e5e1;
  --dark: #161616;
  --dark-soft: #212120;
  --header-h: 72px;
  --container: 1120px;
  --radius: 6px;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-sans: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

ul,
dl,
dd,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.btn-lg {
  height: 52px;
  padding: 0 26px;
  font-size: 16px;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.icon-btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.icon-btn-lg {
  width: 52px;
  height: 52px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 246, 243, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
}

.brand-name {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

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

.site-nav a.active {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero::after {
  content: "HR";
  position: absolute;
  right: -30px;
  bottom: -120px;
  font-family: var(--font-serif);
  font-size: 420px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86vh;
  padding: 140px 0 90px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.hero-name {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 700;
  line-height: 1.12;
}

.hero-headline {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-intro {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.stat + .stat {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.stat dt {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.stat dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 120px 0;
}

.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-head {
  margin-bottom: 56px;
}

.section-head h2 {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
}

.section-head p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.section-head-spaced {
  margin-top: 80px;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 72px;
  align-items: start;
}

.lead {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.7;
}

.highlight-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.highlight-list .icon {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  color: var(--accent);
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 12px;
}

.contact-list dd {
  font-size: 14px;
  font-weight: 500;
  word-break: break-all;
}

.contact-list a:hover {
  color: var(--accent);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 72px;
}

.skill-group {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.skill-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.skill-group h3 .icon {
  color: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: transparent;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

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

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.project-card[hidden] {
  display: none;
}

.project-visual {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 7%, var(--paper));
}

.project-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-cover {
  color: var(--ink);
}

.case-index {
  position: absolute;
  right: 16px;
  bottom: -14px;
  font-family: var(--font-serif);
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 16%, transparent);
}

.case-category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.case-year {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
}

.case-rule {
  position: absolute;
  top: 82px;
  left: 20px;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.case-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 74%;
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.case-cover .d-funnel {
  position: absolute;
  right: 24px;
  bottom: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 132px;
  height: 118px;
  justify-content: flex-end;
}

.case-cover .d-funnel i {
  display: block;
  height: 12px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--accent) 34%, #fff);
}

.case-cover .d-funnel i:first-child {
  background: var(--accent);
}

.case-cover .d-brand {
  position: absolute;
  right: 24px;
  bottom: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  gap: 8px;
  width: 132px;
  height: 118px;
}

.case-cover .d-brand i {
  display: block;
  border-radius: 2px 2px 0 0;
  background: color-mix(in srgb, var(--accent) 30%, #fff);
}

.case-cover .d-brand i:nth-child(1) {
  height: 38%;
}

.case-cover .d-brand i:nth-child(2) {
  height: 62%;
}

.case-cover .d-brand i:nth-child(3) {
  height: 50%;
}

.case-cover .d-brand i:nth-child(4) {
  height: 84%;
  background: var(--accent);
}

.case-cover .d-campus {
  position: absolute;
  right: 24px;
  bottom: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 132px;
}

.case-cover .d-campus i {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 30%, #fff);
}

.case-cover .d-campus i:nth-child(4n + 1) {
  background: var(--accent);
}

.case-cover .d-chart {
  position: absolute;
  right: 24px;
  bottom: 66px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 138px;
  height: 120px;
}

.case-cover .d-chart i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: color-mix(in srgb, var(--accent) 32%, #fff);
}

.case-cover .d-chart i:nth-child(3n) {
  background: var(--accent);
}

.case-cover .d-journey {
  position: absolute;
  right: 24px;
  bottom: 112px;
  display: flex;
  width: 140px;
  height: 24px;
}

.case-cover .d-journey i {
  position: relative;
  flex: 1;
  height: 2px;
  margin-top: 11px;
  background: color-mix(in srgb, var(--accent) 40%, #fff);
}

.case-cover .d-journey i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.case-cover .d-journey i:first-child::before,
.case-cover .d-journey i:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  transform: translate(-50%, -50%);
}

.case-cover .d-grid {
  position: absolute;
  right: 26px;
  bottom: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 112px;
}

.case-cover .d-grid i {
  display: block;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, #fff);
  border-radius: 3px;
}

.case-cover .d-grid i.active {
  border-color: var(--accent);
  background: var(--accent);
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
}

.project-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.project-summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.project-points {
  display: grid;
  gap: 8px;
}

.project-points li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}

.project-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.project-links a:hover {
  text-decoration: underline;
}

.timeline {
  display: grid;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 52px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 0;
  left: 27px;
  width: 1px;
  background: var(--line-strong);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
}

.timeline-content {
  padding-top: 6px;
}

.timeline-period {
  font-family: var(--font-mono);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 500;
}

.timeline-content h3 {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
}

.timeline-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.timeline-content ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.timeline-content li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.timeline-content li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
}

.contact-band::after {
  content: "CONTACT";
  position: absolute;
  right: -20px;
  bottom: -90px;
  font-family: var(--font-serif);
  font-size: 300px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contact-band .eyebrow {
  color: #e8796d;
}

.contact-band .eyebrow::before {
  background: #e8796d;
}

.contact-band h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-lead {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.contact-band .btn-primary {
  background: #fff;
  color: var(--dark);
}

.contact-band .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-band .icon-btn-lg {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.contact-band .icon-btn-lg:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(194, 59, 46, 0.35);
  outline-offset: 2px;
}

@media (max-width: 1000px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-name {
    font-size: 68px;
  }

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

  .stat:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .hero-inner {
    min-height: auto;
    padding: 120px 0 76px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skills-grid {
    gap: 40px 48px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    transform: none;
  }

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

  .site-nav a {
    padding: 12px 14px;
    color: var(--muted);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.active {
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: var(--radius);
  }

  .hero::after {
    font-size: 260px;
    right: -10px;
    bottom: -70px;
  }

  .contact-list div {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-band {
    padding: 96px 0;
  }

  .contact-band h2 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero-name {
    font-size: 46px;
  }

  .hero-headline {
    font-size: 21px;
  }

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

  .section-head h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 23px;
  }

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

  .stat:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    flex: 1 1 100%;
  }

  .project-visual {
    height: 230px;
  }

  .brand-name {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
