:root {
  --bg: #0e1727;
  --bg-soft: #121f2d;
  --bg-muted: #f3f1ed;
  --panel: rgba(16, 23, 36, 0.82);
  --surface: #ffffff;
  --surface-soft: #f5f3ef;
  --text: #101828;
  --text-soft: #475467;
  --muted: #98a2b3;
  --primary: #b78a46;
  --primary-strong: #8f692b;
  --secondary: #1f4d73;
  --secondary-soft: #5a7ba1;
  --highlight: #d9c9a3;
  --border: rgba(16, 24, 40, 0.09);
  --shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(183, 138, 70, 0.18), transparent 22%),
    radial-gradient(circle at right top, rgba(31, 77, 115, 0.2), transparent 20%),
    linear-gradient(180deg, #f1efe9 0%, #f8f8f6 100%);
  color: var(--text);
  line-height: 1.7;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.2rem;
}

.brand {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand span {
  color: var(--primary-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

main {
  padding: 2rem 0 4rem;
}

section {
  padding: 2rem 0;
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 2rem;
  min-height: 430px;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.portfolio-hero-copy h1 {
  max-width: 760px;
  margin: 1rem 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.portfolio-hero-copy p {
  max-width: 62ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.portfolio-signal {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(18, 42, 64, 0.98), rgba(14, 23, 39, 0.98)),
    var(--bg);
  box-shadow: var(--shadow);
}

.signal-label {
  color: var(--highlight);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.portfolio-signal strong {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.portfolio-signal small {
  color: rgba(255, 255, 255, 0.68);
}

.signal-line {
  height: 2px;
  margin-top: 0.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.signal-line span {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--primary);
}

.hero {
  padding-top: 2.5rem;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.4rem, 2vw, 2.4rem);
}

.premium-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 242, 238, 0.9));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(183, 138, 70, 0.12);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 6px rgba(183, 138, 70, 0.14);
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  color: var(--primary-strong);
}

.hero-copy p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.5rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 20px 35px rgba(143, 105, 43, 0.22);
}

.btn-secondary {
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--border);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  list-style: none;
  padding: 0;
}

.quick-stats li {
  padding: 1rem 0.8rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.quick-stats strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-strong);
}

.quick-stats span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(17, 27, 43, 0.96), rgba(20, 38, 58, 0.96));
  border-radius: calc(var(--radius) + 4px);
  color: #fff;
}

.photo-frame {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar {
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.22);
}

.profile-meta {
  width: 100%;
  display: grid;
  gap: 0.75rem;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.meta-item span {
  color: rgba(255, 255, 255, 0.7);
}

.meta-item strong {
  font-weight: 700;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-header .kicker {
  display: inline-block;
  color: var(--primary-strong);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-header h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: rgba(183, 138, 70, 0.09);
  color: var(--primary-strong);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(183, 138, 70, 0.2);
}

.stack {
  display: grid;
  gap: 1rem;
}

.skill-item {
  display: grid;
  gap: 0.5rem;
}

.skill-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-weight: 700;
}

.skill-head span:last-child {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.skill-bar {
  width: 100%;
  height: 0.76rem;
  background: #e8e3df;
  border-radius: 999px;
  overflow: hidden;
}

.skill-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.timeline {
  position: relative;
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.3rem;
  bottom: 0.25rem;
  width: 2px;
  background: rgba(16, 24, 40, 0.12);
}

.timeline-item {
  position: relative;
  padding: 0 0 1.2rem 1.2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.29rem;
  top: 0.32rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 5px rgba(183, 138, 70, 0.14);
}

.timeline-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.timeline-item p {
  margin: 0;
  color: var(--text-soft);
}

.document-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 2rem;
  min-height: 330px;
  padding-top: 4rem;
  padding-bottom: 2.8rem;
}

.document-hero h1 {
  max-width: 720px;
  margin: 1rem 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.document-hero p {
  max-width: 66ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.document-mark {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.7rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(145deg, rgba(18, 42, 64, 0.98), rgba(14, 23, 39, 0.98));
  box-shadow: var(--shadow);
}

.document-mark strong {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.document-mark small {
  color: rgba(255, 255, 255, 0.68);
}

.letter-sheet {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.letter-sheet p {
  margin: 0 0 1.1rem;
  color: var(--text-soft);
}

.letter-sheet .letter-greeting,
.letter-sheet .letter-signoff {
  color: var(--text);
  font-weight: 700;
}

.certificate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.certificate-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.certificate-table th,
.certificate-table td {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border);
}

.certificate-table th {
  color: #fff;
  background: var(--bg);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certificate-table td {
  color: var(--text-soft);
}

.certificate-table tbody tr:last-child td {
  border-bottom: 0;
}

.certificate-table tbody tr:hover {
  background: rgba(183, 138, 70, 0.08);
}

.certificate-table td:first-child,
.certificate-table td:nth-child(2) {
  color: var(--text);
  font-weight: 700;
}

.certificate-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.portfolio-intro h3 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow: hidden;
  padding: 0 1.4rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(183, 138, 70, 0.35);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.18);
}

.project-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin: 0 -1.4rem 0;
  overflow: hidden;
  background: #15283a;
}

.project-visual::after {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dashboard-visual::after { content: "POWER BI / PREVIEW"; }
.flow-visual { background: #1f4d73; }
.flow-visual::after { content: "AUTOMATION / PREVIEW"; }
.data-visual { background: #253c45; }
.data-visual::after { content: "DATA / PREVIEW"; }
.strategy-visual { background: #41382e; }
.strategy-visual::after { content: "STRATEGY / PREVIEW"; }
.executive-visual { background: #182338; }
.executive-visual::after { content: "EXECUTIVE / PREVIEW"; }
.case-visual { background: #31453e; }
.case-visual::after { content: "CASE / PREVIEW"; }

.visual-topline {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 35%;
  height: 0.45rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.76);
}

.metric-row {
  position: absolute;
  top: 3.2rem;
  left: 1.4rem;
  right: 1.4rem;
  display: flex;
  gap: 0.55rem;
}

.metric-row span {
  width: 28%;
  height: 1.35rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 4rem;
  margin-top: 3.5rem;
}

.chart-bars i {
  width: 0.8rem;
  height: 48%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--highlight), var(--primary));
}

.chart-bars i:nth-child(2) { height: 68%; }
.chart-bars i:nth-child(3) { height: 55%; }
.chart-bars i:nth-child(4) { height: 82%; }
.chart-bars i:nth-child(5) { height: 64%; }
.chart-bars i:nth-child(6) { height: 92%; }

.flow-node {
  width: 2.8rem;
  height: 2.8rem;
  border: 2px solid var(--highlight);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.flow-connector {
  width: 2.4rem;
  height: 2px;
  background: var(--highlight);
}

.data-column {
  width: 1.45rem;
  height: 45%;
  border-radius: 5px 5px 0 0;
  background: var(--highlight);
}

.data-column:nth-child(2) { height: 72%; background: #fff; }
.data-column:nth-child(3) { height: 56%; }
.data-column:nth-child(4) { height: 88%; background: #fff; }
.data-column:nth-child(5) { height: 67%; }

.strategy-ring {
  width: 6rem;
  height: 6rem;
  border: 12px solid rgba(255, 255, 255, 0.2);
  border-right-color: var(--highlight);
  border-bottom-color: var(--primary);
  border-radius: 50%;
}

.strategy-line {
  position: absolute;
  width: 5.2rem;
  height: 2px;
  background: var(--highlight);
  transform: rotate(-28deg) translate(1.7rem, -1.1rem);
}

.strategy-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--primary);
  transform: translate(1.8rem, -1.2rem);
}

.executive-title {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 42%;
  height: 0.5rem;
  border-radius: 99px;
  background: var(--highlight);
}

.executive-card {
  width: 5rem;
  height: 4.2rem;
  margin: 1.2rem 0.35rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.executive-card:last-child {
  height: 5.7rem;
  background: rgba(183, 138, 70, 0.58);
}

.case-visual span {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0.3rem;
  border-radius: 50%;
  background: var(--highlight);
}

.case-visual span:nth-child(even) {
  background: var(--primary);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 800;
}

.project-link span {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.project-link:hover span,
.project-link:focus-visible span {
  transform: translateX(3px);
}

.project-tag {
  width: max-content;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 77, 115, 0.08);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.project-card p {
  margin: 0;
  color: var(--text-soft);
}

.project-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.35rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-list strong {
  display: block;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-list a,
.contact-list span {
  color: var(--text);
  font-weight: 700;
}

.contact-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(183, 138, 70, 0.12), rgba(31, 77, 115, 0.1));
  border: 1px solid var(--border);
}

.contact-badge-inner {
  text-align: center;
}

.contact-badge h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
}

.contact-badge p {
  margin: 0;
  color: var(--text-soft);
}

footer {
  padding: 1.2rem 0 2.4rem;
  color: var(--text-soft);
  text-align: center;
  font-size: 0.92rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

@media (max-width: 900px) {
  .hero-card,
  .grid-2,
  .contact-wrap,
  .project-grid,
  .portfolio-hero,
  .document-hero {
    grid-template-columns: 1fr;
  }

  .profile-lockup {
    order: -1;
  }
}

@media (max-width: 740px) {
  .nav {
    position: relative;
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

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

  .portfolio-intro {
    grid-template-columns: 1fr;
  }

  .portfolio-hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .document-hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    line-height: 1.14;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
