/* ==========================================================================
   Michael D. Verdeschi — Executive Website
   Design System
   ========================================================================== */

:root {
  /* Palette — Institutional */
  --ink-900: #0B1F3A;     /* Primary navy */
  --ink-800: #122A4A;
  --ink-700: #1C3558;
  --ink-500: #4A5A74;
  --ink-400: #6B7A90;
  --ink-300: #96A1B2;
  --ink-200: #C9D0DB;
  --ink-100: #E5E8EE;
  --paper:   #FAF8F3;     /* Warm ivory */
  --paper-2: #F3EFE6;
  --white:   #FFFFFF;
  --gold:    #9C7A3A;     /* Muted editorial gold */
  --gold-dk: #7E6129;
  --rule:    #D9D2C3;
  --shadow:  rgba(11, 31, 58, 0.08);

  /* Typography */
  --serif: "Cormorant Garamond", "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Scale — restrained */
  --fs-xs:  0.75rem;    /* 12 */
  --fs-sm:  0.8125rem;  /* 13 */
  --fs-base:0.9375rem;  /* 15 */
  --fs-md:  1.0625rem;  /* 17 */
  --fs-lg:  1.25rem;    /* 20 */
  --fs-xl:  1.625rem;   /* 26 */
  --fs-2xl: 2.125rem;   /* 34 */
  --fs-3xl: 2.75rem;    /* 44 */
  --fs-4xl: 3.25rem;    /* 52 */

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  /* Layout */
  --container: 1240px;
  --gutter: 28px;
  --nav-h: 76px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }

/* ==========================================================================
   Typography
   ========================================================================== */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 2.6vw, 2.375rem); line-height: 1.18; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); line-height: 1.3; }
h4 { font-size: 1.0625rem; line-height: 1.4; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-700); }

p { margin: 0 0 var(--sp-4); color: var(--ink-700); max-width: 68ch; }
.lead { font-size: var(--fs-md); line-height: 1.7; color: var(--ink-700); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--ink-300);
  margin: var(--sp-6) 0;
}

/* ==========================================================================
   Layout — 12 column grid
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--gutter);
  row-gap: var(--sp-6);
}
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

.section { padding: var(--sp-9) 0; }
.section--sm { padding: var(--sp-8) 0; }
.section--lg { padding: var(--sp-10) 0; }
.section--dark { background: var(--ink-900); color: var(--paper); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--paper); }
.section--dark p,
.section--dark .lead { color: #D6D9E0; }
.section--paper { background: var(--paper-2); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
}
.nav__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  font-family: var(--serif);
  font-size: 1.1875rem;
  letter-spacing: 0.01em;
  color: var(--ink-900);
  white-space: nowrap;
}
.nav__brand small {
  font-family: var(--sans);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  padding: var(--sp-2) 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink-900); }
.nav__links a.active { color: var(--ink-900); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink-900);
  color: var(--ink-900);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover { background: var(--ink-900); color: var(--paper); }

.nav__toggle {
  display: none;
  width: 28px; height: 24px;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 0; right: 0;
  height: 1.5px; background: var(--ink-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { top: 11px; }
.nav__toggle span:nth-child(3) { top: 18px; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: var(--sp-10) 0 var(--sp-9);
  border-bottom: 1px solid var(--rule);
}
.hero__title {
  font-size: clamp(2.5rem, 4.6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-5);
}
.hero__lead {
  font-size: var(--fs-md);
  color: var(--ink-700);
  max-width: 54ch;
  margin-bottom: var(--sp-6);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--rule);
  margin-top: var(--sp-6);
}
.hero__meta-item { min-width: 140px; }
.hero__meta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--sp-1);
}
.hero__meta-value {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink-900);
}

.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-100);
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.02);
}
.portrait--contain {
  background: var(--paper-2);
}
.portrait--contain img {
  object-fit: contain;
  object-position: center;
}
.portrait__caption {
  margin-top: var(--sp-3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ==========================================================================
   Cards / Modules
   ========================================================================== */
.pillar {
  border-top: 1px solid var(--ink-900);
  padding-top: var(--sp-5);
}
.pillar__num {
  font-family: var(--serif);
  font-size: 0.9375rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-3);
}
.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}
.pillar p {
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: var(--sp-6);
}
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--ink-500); font-size: 0.9375rem; margin-bottom: 0; }

.stat {
  border-left: 1px solid var(--rule);
  padding-left: var(--sp-5);
}
.stat__value {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.625rem);
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--rule);
}
.timeline__year {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--gold);
}
.timeline__role {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink-900);
  margin-bottom: var(--sp-2);
}
.timeline__desc {
  font-size: 0.9375rem;
  color: var(--ink-500);
  margin: 0;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  color: var(--ink-900);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-6);
  margin: 0 0 var(--sp-5);
}
.quote__attr {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ==========================================================================
   Insights
   ========================================================================== */
.insight {
  border-top: 1px solid var(--ink-900);
  padding-top: var(--sp-5);
  display: block;
  color: inherit;
  transition: transform 0.3s ease;
}
.insight:hover { transform: translateY(-2px); }
.insight__meta {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--sp-3);
  display: flex; gap: var(--sp-4);
}
.insight__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--ink-900);
  line-height: 1.28;
  margin-bottom: var(--sp-3);
}
.insight__excerpt {
  font-size: 0.9375rem;
  color: var(--ink-500);
  margin-bottom: var(--sp-4);
}
.insight__read {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
.gallery figure {
  margin: 0;
  grid-column: span 6;
}
.gallery figure:nth-child(3) { grid-column: span 12; }
.gallery__frame {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__frame--wide { aspect-ratio: 16 / 9; }
.gallery__frame--tall { aspect-ratio: 3 / 4; }
.gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.gallery__frame--cover img {
  object-fit: cover;
  object-position: center 20%;
}
.gallery figcaption {
  margin-top: var(--sp-3);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ==========================================================================
   Forms — Contact
   ========================================================================== */
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.form .field--full { grid-column: 1 / -1; }
.form label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--sp-2);
  font-weight: 600;
}
.form input,
.form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--ink-200);
  background: transparent;
  font-size: var(--fs-base);
  color: var(--ink-900);
  outline: none;
  transition: border-color 0.2s ease;
}
.form input:focus,
.form textarea:focus { border-color: var(--ink-900); }
.form textarea { resize: vertical; min-height: 120px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--ink-900);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--ink-800); }
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-900);
}
.btn--ghost:hover { background: var(--ink-900); color: var(--paper); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink-900);
  color: #D6D9E0;
  padding: var(--sp-8) 0 var(--sp-6);
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__col { grid-column: span 3; }
.footer__col--brand { grid-column: span 4; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: var(--sp-4);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--paper);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.footer__tag {
  font-size: 0.8125rem;
  color: #A2AAB9;
  max-width: 28ch;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: var(--sp-2); font-size: 0.8125rem; }
.footer a { color: #C7CCD5; transition: color 0.2s ease; }
.footer a:hover { color: var(--paper); }

.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer__social a:hover { border-color: var(--paper); background: rgba(255,255,255,0.04); }
.footer__social svg { width: 15px; height: 15px; fill: currentColor; }

.footer__bottom {
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: 0.75rem;
  color: #8A92A3;
  letter-spacing: 0.03em;
}
.footer__credit a { color: #C7CCD5; }
.footer__credit a:hover { color: var(--paper); }

/* ==========================================================================
   Password Gate
   ========================================================================== */
.gate {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.gate__art {
  background: var(--ink-900);
  color: var(--paper);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--sp-8) var(--sp-8);
  overflow: hidden;
}
.gate__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(156,122,58,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(28,53,88,0.5), transparent 50%);
}
.gate__crest {
  position: relative;
  font-family: var(--serif);
  font-size: 0.875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.gate__crest::after {
  content: "";
  display: block;
  width: 60px; height: 1px;
  background: var(--gold);
  margin-top: var(--sp-4);
}
.gate__name {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: var(--sp-5);
}
.gate__role {
  position: relative;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C7CCD5;
  max-width: 40ch;
}
.gate__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-8) var(--sp-8);
  max-width: 520px;
}
.gate__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.gate__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  color: var(--ink-900);
  margin-bottom: var(--sp-4);
}
.gate__desc {
  color: var(--ink-500);
  font-size: 0.9375rem;
  margin-bottom: var(--sp-7);
  max-width: 44ch;
}
.gate__field {
  position: relative;
  margin-bottom: var(--sp-5);
}
.gate__field label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--sp-2);
  font-weight: 600;
}
.gate__input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink-300);
  background: transparent;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  outline: none;
  color: var(--ink-900);
  transition: border-color 0.2s ease;
}
.gate__input:focus { border-color: var(--ink-900); }
.gate__error {
  min-height: 20px;
  font-size: 0.8125rem;
  color: #B94b4b;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gate__error.show { opacity: 1; }
.gate__submit {
  padding: 16px 28px;
  background: var(--ink-900);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.gate__submit:hover { background: var(--ink-800); }
.gate__foot {
  margin-top: var(--sp-8);
  font-size: 0.75rem;
  color: var(--ink-400);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.u-center { text-align: center; }
.u-max-prose { max-width: 60ch; }
.u-mt-0 { margin-top: 0; }
.u-mb-0 { margin-bottom: 0; }
.u-mt-6 { margin-top: var(--sp-6); }
.u-mb-6 { margin-bottom: var(--sp-6); }
.u-flex { display: flex; }
.u-gap-4 { gap: var(--sp-4); }
.u-wrap { flex-wrap: wrap; }

.divider-heavy {
  border: 0;
  border-top: 1px solid var(--ink-900);
  margin: 0;
}

/* Fade-in (respects reduced motion) */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer__col { grid-column: span 6; }
  .footer__col--brand { grid-column: span 12; }
  .gate { grid-template-columns: 1fr; }
  .gate__art { padding: var(--sp-7) var(--sp-6); min-height: 280px; }
  .gate__form { padding: var(--sp-7) var(--sp-6); }
}

@media (max-width: 860px) {
  :root { --gutter: 20px; --nav-h: 64px; }
  .nav__links,
  .nav__cta { display: none; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: var(--sp-6) var(--gutter);
    gap: var(--sp-5);
  }
  .nav.open .nav__cta {
    display: inline-block;
    margin-left: var(--gutter);
    margin-bottom: var(--sp-5);
  }
  .nav__toggle { display: block; }

  .col-1,.col-2,.col-3,.col-4,.col-5,.col-6,
  .col-7,.col-8,.col-9,.col-10,.col-11 { grid-column: 1 / -1; }

  .section { padding: var(--sp-8) 0; }
  .section--lg { padding: var(--sp-9) 0; }

  .gallery figure { grid-column: 1 / -1; }
  .form { grid-template-columns: 1fr; }

  .timeline li { grid-template-columns: 1fr; gap: var(--sp-2); }

  .hero__meta-item { flex: 1 1 45%; }
}

@media (max-width: 560px) {
  h1, .hero__title { font-size: 2rem; }
  .quote { padding-left: var(--sp-4); font-size: 1.25rem; }
  .gate__art { display: none; }
  .gate { grid-template-columns: 1fr; min-height: 100vh; }
  .gate__form { padding: var(--sp-7) var(--gutter); min-height: 100vh; justify-content: center; }
}
