@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — ArchDaily 2026 Evolution
   Focus: Minimalist, Modular, Image-Centric
═══════════════════════════════════════════════════════════ */
:root {
  --ink:        #000000;
  --ink-mid:    #333333;
  --ink-soft:   #666666;
  --paper:      #FFFFFF;
  --paper-alt:  #F8F8F8;
  --paper-warm: #F4F1EA;
  --white:      #FFFFFF;
  --blue:       #0044CC; /* Modern Architectural Blue */
  --blue-dark:  #0033AA;
  --blue-glow:  rgba(0, 68, 204, 0.08);
  
  --border:      #E5E5E5;
  --border-mid:  #D1D1D1;
  --border-dark: rgba(0,0,0,0.1);

  --f-head: 'Playfair Display', serif;
  --f-body: 'Inter', sans-serif;

  --r-sm: 0px;
  --r-md: 1px; /* Sharper corners for ArchDaily feel */
  --r-lg: 2px;

  --sh-sm: 0 1px 3px rgba(0,0,0,0.05);
  --sh-md: 0 10px 30px rgba(0,0,0,0.08);
  --sh-lg: 0 20px 50px rgba(0,0,0,0.12);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.2s;
  --t-slow:      0.4s;

  --wrap:  1440px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-family: var(--f-body); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
p  { color: var(--ink-mid); line-height: 1.8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: currentColor;
}

/* ── Layout ──────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 4vw;
}
.section { padding: 6rem 0; }
.section--dark  { background: var(--ink); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--alt   { background: var(--paper-alt); }
.section--white { background: var(--white); }

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

/* ── HEADER (ArchDaily Style) ─────────────────────────────────── */
.header {
  position: relative;
  background: var(--white);
  z-index: 500;
}

/* Common separator */
.header__sep {
  width: 1px;
  height: 12px;
  background: var(--border-mid);
  margin: 0 1.25rem;
  opacity: 0.5;
}

/* Row 1: Utility & Brand */
.header__top {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.header__top .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header__top-left, .header__top-right {
  display: flex;
  align-items: center;
}
.header__top-right { justify-content: flex-end; }

.header__top-left a, .header__top-right a, .header__sub {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color var(--t);
  white-space: nowrap;
}
.header__top-left a:hover, .header__top-right a:hover { color: var(--blue); }

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  transition: opacity var(--t);
}
.header__logo:hover { opacity: 0.8; }
.header__logo-icon {
  width: 44px; height: 54px;
  border: 3.5px solid var(--blue);
  position: relative;
  transition: transform var(--t) var(--ease);
}
.header__logo:hover .header__logo-icon { transform: scale(1.02); }
.header__logo-icon::after {
  content: '';
  position: absolute;
  top: 18px; left: -10px;
  width: 28px; height: 28px;
  border: 3.5px solid var(--blue);
  background: var(--white);
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.header__logo-text span:first-child {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.header__logo-text span:last-child {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--blue);
}

/* Row 2: Navigation */
.header__nav {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.header__nav-list li a {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--t);
}
.header__nav-list li a:hover { color: var(--blue); }

/* Row 3: Search */
.header__search {
  padding: 1.25rem 0;
  background: var(--paper-alt);
}
.search-bar {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.search-bar__icon { font-size: 1.1rem; color: var(--ink-soft); opacity: 0.6; }
.search-bar input {
  border: none;
  width: 100%;
  font-family: var(--f-body);
  font-size: 0.95rem;
  outline: none;
  background: transparent;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--t);
  border-radius: 2px;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn--blue { background: var(--blue); color: #FFFFFF !important; }
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.72rem; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: 1rem;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all var(--t);
}

@media (max-width: 1024px) {
  .header__top-left, .header__top-right a:not(.btn), .header__top-right .header__sep:not(:last-of-type) { display: none; }
  .header__top .wrap { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .header__nav { display: none; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.btn--lg { padding: 0.8rem 1.75rem; font-size: 0.875rem; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.s-header { margin-bottom: 2.5rem; }
.s-header--center { text-align: center; }
.s-header--center p { max-width: 520px; margin: 0.75rem auto 0; }
.s-header p { margin-top: 0.75rem; max-width: 520px; }

.s-header--split {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.card__visual {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.card:hover .card__visual img { transform: scale(1.04); }

.card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.card__placeholder--cafe   { background: linear-gradient(135deg,#2d1b1b,#6b2f1a); }
.card__placeholder--bank   { background: linear-gradient(135deg,#0d1b4b,#0a2463); }
.card__placeholder--office { background: linear-gradient(135deg,#1a2a1a,#2d4a2d); }
.card__placeholder--health { background: linear-gradient(135deg,#1a2a4a,#1e3a5f); }
.card__placeholder--retail { background: linear-gradient(135deg,#3a1a2d,#5c1e4a); }
.card__placeholder--villa  { background: linear-gradient(135deg,#2a1a0d,#4a2d14); }
.card__placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size: 24px 24px;
}
.card__placeholder-icon { font-size: 2.25rem; position: relative; z-index: 1; }
.card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card__cat {
  font-family: var(--f-head); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.4rem;
}
.card__title { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 0.55rem; }
.card__excerpt { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.7; flex: 1; margin-bottom: 1rem; }

/* ── PILLAR ─────────────────────────────────────────────────── */
.pillar {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--border);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.pillar__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-sm); background: var(--paper-alt);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background var(--t);
}
.pillar:hover .pillar__icon { background: rgba(26,82,255,0.1); }
.pillar__title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.pillar__desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* ── SPLIT ───────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__visual { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.split__visual-inner {
  aspect-ratio: 4/3; background: var(--ink);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.split__visual-inner::before {
  content: ''; position: absolute; width: 240px; height: 240px;
  border: 1px solid rgba(26,82,255,0.25); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.split__visual-inner::after {
  content: ''; position: absolute; width: 140px; height: 140px;
  border: 1px solid rgba(26,82,255,0.15); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.split__visual-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 32px 32px;
}
.split__visual-icon { font-size: 3.5rem; position: relative; z-index: 1; }
.split__stat {
  position: absolute; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border-radius: var(--r-sm); padding: 0.65rem 0.875rem; z-index: 2;
}
.split__stat--tl { top: 1rem; left: 1rem; }
.split__stat--br { bottom: 1rem; right: 1rem; }
.split__stat-n { font-family: var(--f-head); font-size: 1.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.split__stat-l { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ── FEAT (dark section grid) ────────────────────────────────── */
.feat {
  padding: 1.75rem; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03);
  transition: border-color var(--t), background var(--t);
}
.feat:hover { border-color: rgba(26,82,255,0.4); background: rgba(26,82,255,0.06); }
.feat__icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(26,82,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1rem;
}
.feat__title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.feat__desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0; }

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); background: var(--white);
}
.stats-band__item {
  padding: 2rem; text-align: center;
  border-right: 1px solid var(--border); position: relative;
}
.stats-band__item:last-child { border-right: none; }
.stats-band__item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px; background: var(--blue); border-radius: 0 0 3px 3px;
}
.stats-band__n { font-family: var(--f-head); font-size: 2.5rem; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.stats-band__l { font-size: 0.75rem; color: var(--ink-soft); margin-top: 0.35rem; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--ink); padding: 4.5rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size: 48px 48px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.45); max-width: 460px; margin: 0 auto 2rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #0C0C0C; padding: 4rem 0 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 2rem;
}
.footer__logo {
  font-family: var(--f-head); font-weight: 900; font-size: 1rem;
  letter-spacing: -0.03em; color: var(--white);
  display: flex; align-items: center; gap: 3px; margin-bottom: 1rem;
}
.footer__about { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer__h {
  font-family: var(--f-head); font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.82rem; color: rgba(255,255,255,0.38); transition: color var(--t); }
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.18);
}
.footer__bottom a { color: rgba(26,82,255,0.75); }
.footer__bottom a:hover { color: var(--blue); }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 3.5rem) 2rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);
  background-size: 60px 60px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin: 0.6rem 0 1rem; }
.page-hero__sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 540px; }

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2.5rem; }
.filter {
  font-family: var(--f-head); font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 0.875rem; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--ink-soft);
  background: var(--white); transition: all var(--t); cursor: pointer;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── CALLOUT ─────────────────────────────────────────────────── */
.callout {
  padding: 1.1rem 1.375rem;
  background: rgba(26,82,255,0.04);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.75rem 0;
}
.callout p { color: var(--ink); margin: 0; font-size: 0.93rem; }

/* ── PHASES ──────────────────────────────────────────────────── */
.phases { margin: 1.5rem 0; }
.phase {
  display: flex; gap: 1.25rem;
  padding: 1.375rem 0; border-bottom: 1px solid var(--border);
}
.phase:last-child { border-bottom: none; }
.phase__num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 0.72rem; font-weight: 800;
}
.phase__title { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.2rem; }
.phase__desc { font-size: 0.84rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* ── PROJECT META ─────────────────────────────────────────────── */
.proj-meta {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1.5rem;
}
.proj-meta__k {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 4px;
}
.proj-meta__v { font-family: var(--f-head); font-size: 0.88rem; font-weight: 700; color: var(--white); }

/* ── FORM ─────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink-mid); margin-bottom: 0.35rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 0.88rem; background: var(--white);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ── CHIP TAGS ───────────────────────────────────────────────── */
.chip {
  display: inline-flex; padding: 0.18rem 0.6rem; border-radius: 100px;
  font-size: 0.68rem; font-weight: 600; background: var(--paper-alt); color: var(--ink-soft);
}
.chip--blue { background: rgba(26,82,255,0.08); color: var(--blue); }
.chip--green { background: rgba(22,163,74,0.08); color: #16a34a; }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }

/* ── MOBILE ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band__item:nth-child(2) { border-right: none; }
  .stats-band__item:nth-child(3) { border-top: 1px solid var(--border); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 1.1rem; }
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--nav-h) 0 0;
    background: var(--white); padding: 1.5rem;
    gap: 0.25rem; z-index: 199; align-items: flex-start;
    border-top: 1px solid var(--border);
  }
  .nav__links.open a { font-size: 1.05rem; padding: 0.7rem 0.875rem; width: 100%; }
  .nav__burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .s-header--split { flex-direction: column; align-items: flex-start; }
}
