@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("../fonts/teko-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("../fonts/teko-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("../fonts/teko-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #292929;
  --bg-deep: #222222;
  --bg-soft: #303030;
  --surface: #313131;
  --surface-hover: #363636;
  --border: #3a3a3a;
  --text: #a9a9a9;
  --text-strong: #f4f4f4;
  --muted: #8e8e8e;
  --accent: #cba982;
  --accent-soft: rgba(203, 169, 130, 0.13);
  --sidebar: 260px;
  --container: 1160px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
dl,
dd,
figure,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text-strong);
  font-family: "Teko", Impact, sans-serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.015em;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.4rem, 9vw, 8rem);
}

h2 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 5vw, 4.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

p {
  margin-bottom: 20px;
}

::selection {
  color: #1e1e1e;
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #181818;
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #181818;
  transform: translateY(0);
}

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

.sidebar {
  position: fixed;
  z-index: 1000;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  background: #232323;
  border-right: 1px solid #333333;
}

.sidebar-inner {
  display: flex;
  min-height: 100%;
  padding: 46px 34px 34px;
  flex-direction: column;
}

.brand {
  display: inline-flex;
  width: 166px;
  margin-bottom: 68px;
}

.brand img {
  width: 100%;
}

.site-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-navigation a {
  position: relative;
  padding: 10px 0 10px 24px;
  color: #a1a1a1;
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  transition: color 180ms ease, transform 180ms ease;
}

.site-navigation a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: #6c6c6c;
  transform: translateY(-50%);
  transition: width 180ms ease, background 180ms ease;
}

.site-navigation a:hover,
.site-navigation a.is-active {
  color: var(--accent);
  transform: translateX(3px);
}

.site-navigation a:hover::before,
.site-navigation a.is-active::before {
  width: 15px;
  background: var(--accent);
}

.sidebar-status {
  display: flex;
  margin: auto 0 0;
  color: #858585;
  font-size: 0.78rem;
  line-height: 1.5;
  align-items: flex-start;
  gap: 9px;
}

.sidebar-status span {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  flex: 0 0 auto;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.page-shell {
  min-height: 100vh;
  margin-left: var(--sidebar);
}

.mobile-header,
.menu-backdrop {
  display: none;
}

.section-border {
  border-bottom: 1px solid var(--border);
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 130px);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,0.018) 50%, transparent 50.15%);
  background-size: 25% 100%;
}

.section-kicker,
.eyebrow,
.project-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
}

.hero-background,
.hero-background img,
.hero-overlay,
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  z-index: -4;
}

.hero-background img {
  object-fit: cover;
  object-position: 60% center;
}

.hero-overlay {
  z-index: -3;
  background: linear-gradient(90deg, rgba(30,30,30,0.96) 0%, rgba(35,35,35,0.88) 42%, rgba(30,30,30,0.60) 100%);
}

.hero-pattern {
  z-index: -2;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(203,169,130,0.38) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-content {
  padding-block: 120px;
}

.eyebrow {
  margin-bottom: 8px;
  color: #d1d1d1;
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
}

.hero-role {
  min-height: 42px;
  margin-bottom: 22px;
  color: var(--text-strong);
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  line-height: 1.05;
}

.role-prefix {
  color: #d7d7d7;
}

.role-text {
  color: var(--accent);
}

.role-text.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.role-text {
  display: inline-block;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-summary {
  max-width: 760px;
  margin-bottom: 34px;
  color: #bcbcbc;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 24px;
  color: #1f1f1f;
  background: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 700;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  color: #1f1f1f;
  background: #d8b994;
  transform: translateY(-2px);
}

.button-secondary {
  color: #f0f0f0;
  background: rgba(41,41,41,0.46);
  border-color: #6d6d6d;
}

.button-secondary:hover {
  color: var(--accent);
  background: rgba(41,41,41,0.82);
  border-color: var(--accent);
}

.scroll-hint {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: inline-flex;
  color: #9f9f9f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
}

.scroll-hint span {
  color: var(--accent);
  font-size: 1.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.profile-facts {
  display: grid;
  margin: 36px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.profile-facts > div {
  padding: 18px 20px;
  background: var(--bg);
}

.profile-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: #dedede;
  font-size: 0.94rem;
}

.portrait-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-card::before {
  position: absolute;
  z-index: 2;
  inset: 18px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(203,169,130,0.46);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 10 / 13;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.portrait-card figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: #e9e9e9;
  background: rgba(31,31,31,0.9);
  border-left: 3px solid var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.timeline {
  position: relative;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 173px;
  width: 1px;
  content: "";
  background: var(--border);
}

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

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

.timeline-item::before {
  position: absolute;
  top: 8px;
  left: 168px;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg);
}

.timeline time {
  padding-top: 3px;
  color: var(--accent);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.timeline h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.timeline-company {
  margin-bottom: 10px;
  color: #dddddd;
  font-size: 0.9rem;
  font-weight: 700;
}

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

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

.project-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-card:hover {
  background: var(--surface-hover);
  border-color: rgba(203,169,130,0.48);
  transform: translateY(-4px);
}

.project-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #333333, #2d2d2d);
  border-top: 3px solid var(--accent);
}

.project-card h3 {
  max-width: 860px;
}

.project-card > p:not(.project-label) {
  max-width: 850px;
}

.feature-list {
  display: grid;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--accent);
}

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

.tag-list span {
  padding: 6px 10px;
  color: #c9c9c9;
  background: rgba(0,0,0,0.16);
  border: 1px solid #494949;
  font-size: 0.75rem;
  font-weight: 600;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.skill-card {
  position: relative;
  min-height: 250px;
  padding: clamp(30px, 4vw, 46px);
  background: var(--bg);
  transition: background 180ms ease;
}

.skill-card:hover {
  background: var(--surface);
}

.skill-number {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.skill-card h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
}

.skill-card p {
  margin-bottom: 0;
}

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

.qualification-card {
  padding: 28px 30px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
}

.qualification-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.qualification-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
}

.qualification-card > p {
  margin-bottom: 0;
}

.qualification-card dl {
  display: grid;
  margin: 22px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.qualification-card dl div {
  padding: 12px;
  background: rgba(0,0,0,0.14);
}

.qualification-card dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.qualification-card dd {
  margin: 0;
  color: var(--text-strong);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.8rem;
}

.document-note {
  margin: 30px 0 0;
  padding: 18px 20px;
  color: #a8a8a8;
  background: rgba(203,169,130,0.07);
  border: 1px solid rgba(203,169,130,0.22);
  font-size: 0.88rem;
}

.contact-section {
  padding-block: clamp(86px, 10vw, 150px);
  background: #252525;
}

.contact-card {
  display: grid;
  padding: clamp(36px, 6vw, 70px);
  background: var(--surface);
  border: 1px solid var(--border);
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-link {
  display: flex;
  min-height: 92px;
  padding: 18px 22px;
  color: var(--text-strong);
  background: #292929;
  border: 1px solid #494949;
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-link span {
  color: var(--accent);
  font-size: 1.45rem;
}

.site-footer {
  padding-block: 28px;
  color: #7f7f7f;
  background: #202020;
  border-top: 1px solid #333333;
  font-size: 0.78rem;
}

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

.footer-inner p {
  margin: 0;
}

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

@media (max-width: 1180px) {
  :root {
    --sidebar: 230px;
  }

  .sidebar-inner {
    padding-inline: 28px;
  }

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

  .timeline::before {
    left: 153px;
  }

  .timeline-item {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 50px;
  }

  .timeline-item::before {
    left: 148px;
  }
}

@media (max-width: 920px) {
  :root {
    --sidebar: 0px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 18px);
  }

  .mobile-header {
    position: fixed;
    z-index: 2100;
    inset: 0 0 auto;
    display: flex;
    height: var(--header-height);
    padding: 10px 20px;
    background: rgba(34,34,34,0.97);
    border-bottom: 1px solid #353535;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
  }

  .mobile-brand {
    display: inline-flex;
    width: 132px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #4b4b4b;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: #eeeeee;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sidebar {
    z-index: 2000;
    top: var(--header-height);
    width: min(340px, 88vw);
    transform: translateX(-102%);
    transition: transform 220ms ease;
    box-shadow: 30px 0 70px rgba(0,0,0,0.42);
  }

  body.menu-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-inner {
    padding: 36px 30px 28px;
  }

  .brand {
    display: none;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 1900;
    inset: var(--header-height) 0 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    padding: 0;
    cursor: default;
    background: rgba(0,0,0,0.62);
    border: 0;
    opacity: 0;
  }

  body.menu-open .menu-backdrop {
    display: block;
    opacity: 1;
  }

  .page-shell {
    margin-left: 0;
    padding-top: var(--header-height);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-content {
    padding-block: 90px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(30,30,30,0.97), rgba(35,35,35,0.78));
  }

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

  .portrait-card {
    max-width: 520px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding-left: 42px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline-item::before {
    left: 5px;
  }

  .timeline time {
    padding-top: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .hero-background img {
    object-position: 66% center;
  }

  .hero-overlay {
    background: rgba(29,29,29,0.84);
  }

  .hero-pattern {
    opacity: 0.22;
    mask-image: none;
  }

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

  .button {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

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

  .project-card-featured {
    grid-column: auto;
  }

  .qualification-card dl {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px 24px;
    gap: 28px;
  }

  .contact-link {
    min-height: 76px;
    padding-inline: 16px;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 390px) {
  .mobile-header {
    padding-inline: 14px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .project-card,
  .skill-card,
  .qualification-card {
    padding-inline: 22px;
  }
}

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

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

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

@media print {
  :root {
    --bg: #ffffff;
    --text: #222222;
    --text-strong: #111111;
    --border: #d7d7d7;
  }

  body {
    color: #222222;
    background: #ffffff;
    font-size: 10pt;
  }

  .sidebar,
  .mobile-header,
  .hero-background,
  .hero-overlay,
  .hero-pattern,
  .hero-actions,
  .scroll-hint,
  .site-footer {
    display: none !important;
  }

  .page-shell {
    margin: 0;
    padding: 0;
  }

  .hero {
    min-height: auto;
    padding: 20mm 0 12mm;
  }

  .hero-content {
    padding: 0;
  }

  .section {
    padding: 12mm 0;
    break-inside: avoid;
  }

  .project-card,
  .skill-card,
  .qualification-card,
  .contact-card,
  .profile-facts > div {
    color: #222222;
    background: #ffffff;
    box-shadow: none;
  }

  h1,
  h2,
  h3,
  .timeline-company,
  .contact-link {
    color: #111111;
  }

  a {
    color: #111111;
  }
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  background: radial-gradient(circle at top right, rgba(203,169,130,0.12), transparent 35%), var(--bg);
  place-items: center;
}

.error-card {
  width: min(100%, 700px);
  padding: clamp(36px, 8vw, 76px);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.error-card h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
}
