/* =====================================================================
   BERWIN — single page site
   Aesthetic: editorial / engineering. Warm dark, brand-forward, geometric.
   ===================================================================== */

:root {
  /* Surfaces */
  --bg:          #0e0c0a;
  --bg-2:        #15120f;
  --bg-3:        #1c1814;
  --bg-card:     #181410;
  --border:      #2a231d;
  --border-2:    #3a3128;

  /* Text */
  --text:        #f5efe6;
  --text-soft:   #d4cbbd;
  --text-muted:  #8a8175;
  --text-dim:    #5a5247;

  /* Brand */
  --orange:      #f7931e;
  --orange-2:    #fbb03b;
  --red:         #c1272d;
  --red-2:       #e0353c;

  /* Type */
  --display:     "Big Shoulders Display", "Arial Narrow", system-ui, sans-serif;
  --body:        "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono:        "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* Spacing */
  --pad-x:       clamp(20px, 5vw, 80px);
  --section-y:   clamp(80px, 12vw, 160px);
  --max-w:       1320px;

  /* Motion */
  --ease:        cubic-bezier(.2,.7,.2,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);
}

/* ========== Reset / base ========== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

button { font: inherit; }

::selection {
  background: var(--orange);
  color: var(--bg);
}

/* ========== Atmosphere: grain + grid overlays ========== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255,235,200,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,235,200,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0;
  mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 75%);
}

/* ========== Layout primitives ========== */
.section {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 80px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 28px;
  position: relative;
}

.section__head::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background: var(--orange);
}

.section__index {
  color: var(--orange);
  font-weight: 500;
}

.section__kicker {
  color: var(--text);
}

.display {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  line-height: .9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}

.display em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(95deg, var(--orange-2) 0%, var(--orange) 50%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Slight optical correction for italic clipping in Safari */
  padding-right: .08em;
}

.muted { color: var(--text-muted); }

/* ========== Site nav ========== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad-x);
  background: linear-gradient(to bottom, rgba(14,12,10,.92) 0%, rgba(14,12,10,.65) 70%, transparent 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(14,12,10,.86);
  border-bottom: 1px solid var(--border);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform .4s var(--ease-out);
}

.brand-mark:hover .brand-mark__icon {
  transform: rotate(-6deg) scale(1.06);
}

.brand-mark__text {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
}

.nav-links a {
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--orange); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 10px 16px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text);
  transition: all .25s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange);
  color: var(--bg);
  border-color: var(--orange);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .site-nav { grid-template-columns: auto 1fr auto; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 110px var(--pad-x) 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__chrome {
  position: absolute;
  inset: 90px var(--pad-x) 30px;
  pointer-events: none;
  border: 1px solid var(--border);
}

.hero__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(to right, var(--orange) 2px, transparent 2px) top left / 100% 2px no-repeat,
    linear-gradient(to bottom, var(--orange) 2px, transparent 2px) top left / 2px 100% no-repeat;
}
.hero__corner--tl { top: -1px; left: -1px; }
.hero__corner--tr { top: -1px; right: -1px; transform: rotate(90deg); }
.hero__corner--bl { bottom: -1px; left: -1px; transform: rotate(-90deg); }
.hero__corner--br { bottom: -1px; right: -1px; transform: rotate(180deg); }

.hero__inner {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: clamp(14px, 2.2vw, 28px);
  text-align: center;
  position: relative;
  z-index: 3;
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp .8s var(--ease-out) both;
  animation-delay: .1s;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(40,30,20,.4);
  color: var(--text-soft);
}

.status-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6dd068;
  box-shadow: 0 0 10px #6dd068;
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

.hero__est {
  letter-spacing: .15em;
  color: var(--text-dim);
}

.hero__brand {
  display: flex;
  justify-content: center;
  margin: clamp(0px, 1vw, 12px) 0 0;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: .2s;
}

.hero__logo {
  width: clamp(160px, 18vw, 230px);
  height: auto;
  color: var(--text);
  filter: drop-shadow(0 24px 40px rgba(247,147,30,.12));
  transition: transform .8s var(--ease-out);
}

.hero__logo:hover { transform: translateY(-4px); }

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 6.5vw, 78px);
  line-height: .92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s var(--ease-out) both;
}
.hero__title .line--1 { animation-delay: .35s; }
.hero__title .line--2 {
  animation-delay: .50s;
  font-weight: 500;
  font-style: italic;
  color: var(--text-soft);
}
.hero__title .line--3 {
  animation-delay: .65s;
  background: linear-gradient(95deg, var(--orange-2) 0%, var(--orange) 40%, var(--red) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .04em;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: .85s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: 1s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
}

.btn svg { transition: transform .3s var(--ease); }

.btn--primary {
  background: var(--orange);
  color: var(--bg);
  border-color: var(--orange);
  box-shadow: 0 12px 30px -10px rgba(247,147,30,.55);
}

.btn--primary:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(247,147,30,.7);
}

.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}

.btn--ghost:hover {
  background: var(--bg-3);
  border-color: var(--text-muted);
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 4vw, 48px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: fadeUp 1s var(--ease-out) both, bob 2.6s var(--ease) 2.5s infinite;
}

.hero__scroll svg { animation: bob 2.6s var(--ease) infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== Marquee ========== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scrollX 60s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

.marquee__sep {
  color: var(--orange);
  font-size: 0.7em;
  font-weight: 500;
}

.marquee__item:nth-child(8n+3) { color: var(--orange-2); }
.marquee__item:nth-child(8n+5) { color: var(--text-muted); }

@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* ========== About section ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-grid__title .display {
  font-size: clamp(36px, 5vw, 64px);
  line-height: .95;
}

.about-grid__body {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
}

.about-grid__body p { margin: 0 0 16px; }
.about-grid__body p:last-child { margin-bottom: 0; }

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 40px;
  border: 1px solid var(--border);
}

.stat {
  background: var(--bg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stat:nth-child(1) .stat__value,
.stat:nth-child(3) .stat__value { color: var(--orange); }

.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Services ========== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.services--four {
  grid-template-columns: repeat(2, 1fr);
}

.service {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background .3s var(--ease);
}

.service:hover {
  background: var(--bg-2);
}

.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .5s var(--ease);
}

.service:hover::before { width: 100%; }

/* Featured IT card — subtle gradient + persistent accent line */
.service--it {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.service--it::before {
  width: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
}

.service__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.service__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .1em;
}

.service__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1 1 auto;
}

.service__body {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.service__note {
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(247, 147, 30, 0.1);
  border: 1px solid var(--orange);
  color: var(--orange-2);
  border-radius: 999px;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.service__tags {
  list-style: none;
  margin: auto 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px dashed var(--border);
}

.service__tags li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  padding: 4px 9px;
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  border-radius: 4px;
}

@media (max-width: 900px) {
  .services,
  .services--four { grid-template-columns: 1fr; }
}

/* ========== Stack ========== */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.stack-col__title {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.stack-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack-col li {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding-left: 0;
}

@media (max-width: 800px) {
  .stack-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ========== Contact ========== */
.contact {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
}

.contact__intro {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-soft);
  max-width: 50ch;
  margin: 0;
  line-height: 1.4;
}

.contact__mail {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 96px);
  line-height: .95;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--text);
  background: linear-gradient(95deg, var(--text) 0%, var(--text) 100%);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  width: fit-content;
  word-break: break-all;
  transition: color .3s var(--ease);
  position: relative;
}

.contact__mail::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.contact__mail:hover {
  background: linear-gradient(95deg, var(--orange-2) 0%, var(--orange) 50%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact__mail:hover::after { transform: scaleX(1); }

.contact__mail svg {
  flex-shrink: 0;
  width: clamp(28px, 4vw, 56px);
  height: clamp(28px, 4vw, 56px);
  color: var(--orange);
  transition: transform .4s var(--ease);
}

.contact__mail:hover svg { transform: translate(6px, -6px); }

.contact__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0;
}

.contact__details > div {
  background: var(--bg);
  padding: 24px;
  margin: 0;
}

.contact__details dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.contact__details dd {
  margin: 0;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}

.contact__details a:hover { color: var(--orange); }

@media (max-width: 800px) {
  .contact__details { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: clamp(40px, 6vw, 72px) var(--pad-x);
  position: relative;
  z-index: 2;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__icon {
  width: 40px;
  height: 40px;
}

.site-footer__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__sub {
  margin: 2px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer__meta p { margin: 0; }
.site-footer__copy p { margin: 0; }
.site-footer__copy { text-align: right; }

@media (max-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer__copy { text-align: left; }
}

/* ========== Reveal-on-scroll ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

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

/* Stagger children of a revealed group */
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal--stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }

/* ========== Reduced motion ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; transform: translateX(0); }
}

/* ========== Small screens fine-tuning ========== */
@media (max-width: 600px) {
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero__est { font-size: 10px; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .brand-mark__text { font-size: 18px; }
  .brand-mark__icon { width: 28px; height: 28px; }
}

/* ========== Selection / focus visibility ========== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
