/* ============================================================
   NEXAURA — Site styles
   ============================================================ */

/* Brand identity is Calibri-only — no serif webfont imported. See uploads/Nexaura_Visual_Identity.html */

:root {
  --teal:        #7DC4CF;
  --teal-deep:   #5AAFBB;
  --teal-wash:   #DFF2F7;
  --teal-wash-2: #EEF7F9;
  --ink:         #1A2E35;
  --ink-2:       #223B44;
  --ink-soft:    #3D5560;
  --ink-mute:    #7A9AA3;
  --line:        #E5E9EA;
  --line-soft:   #EEF1F2;
  --paper:       #FBFBFA;
  --white:       #FFFFFF;

  /* Identity is Calibri-only. --serif retired to Calibri; alias kept so existing rules need no churn. */
  --serif: "Calibri", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans:  "Calibri", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shell: 1280px;
  --shell-wide: 1440px;
  --gutter: clamp(24px, 4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ---------- type scale ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal-deep);
}
.eyebrow--mute { color: var(--ink-mute); }
.eyebrow--light { color: rgba(255,255,255,0.65); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display em { font-style: normal; font-weight: 300; color: var(--teal-deep); }

.h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -0.005em; }
.h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; }
.h3 { font-family: var(--sans); font-weight: 500; font-size: 19px; letter-spacing: 0.2px; color: var(--ink); }
.lede { font-family: var(--serif); font-style: normal; font-weight: 300; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; color: var(--ink-soft); }
.kicker { font-family: var(--sans); font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: var(--teal-deep); }

p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; }
p.small { font-size: 13.5px; }

.rule { height: 1px; background: var(--line); border: 0; }
.rule-soft { height: 1px; background: var(--line-soft); border: 0; }

/* ---------- layout ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.shell-wide { max-width: var(--shell-wide); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,251,250,0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--shell-wide);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .wordmark {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 15px;
  color: var(--ink);
}
.nav-brand .wordmark .bio {
  display: block; margin-top: 2px;
  font-size: 8px; letter-spacing: 3px;
  color: var(--ink-mute); font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13.5px; color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--teal); }
.nav-links a.current { color: var(--ink); }
.nav-cta {
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-weight: 500;
  transition: background 180ms ease, transform 180ms ease;
}
.nav-cta:hover { background: var(--teal-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500;
  padding: 16px 28px;
  border-radius: 999px;
  transition: all 200ms ease;
  cursor: pointer; border: 0;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--teal-deep); }
.btn-teal { background: var(--teal-deep); color: var(--white); }
.btn-teal:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-ink-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ink-ghost:hover { border-color: var(--ink); }
.btn-arrow { width: 14px; height: 14px; display: inline-block; }
.btn-arrow svg { width: 100%; height: 100%; }

/* ---------- tiny helpers ---------- */
.stack-xs > * + * { margin-top: 8px; }
.stack-sm > * + * { margin-top: 14px; }
.stack-md > * + * { margin-top: 22px; }
.stack-lg > * + * { margin-top: 36px; }
.stack-xl > * + * { margin-top: 60px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 72px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 2.5vw, 40px); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.hero-mark {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-mark svg { width: 82%; height: 82%; }
.hero-mark .ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(125, 196, 207, 0.18);
}
.hero-mark .ring-1 { inset: 0; }
.hero-mark .ring-2 { inset: 8%; border-color: rgba(125, 196, 207, 0.12); }
.hero-mark .ring-3 { inset: 16%; border-color: rgba(125, 196, 207, 0.08); }

.hero-caption {
  position: absolute; bottom: 0; left: 0;
  font-family: var(--sans); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ink-mute);
  display: flex; align-items: center; gap: 12px;
}
.hero-caption::before {
  content: ""; width: 32px; height: 1px; background: var(--teal);
}

.hero-meta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 40px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute);
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { max-width: 320px; order: -1; }
}

/* ---------- MARQUEE (context strip) ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex; align-items: center; gap: 64px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--serif); font-style: normal; font-weight: 300;
  font-size: 22px; color: var(--ink-soft);
}
.marquee .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--teal);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- THREE PATHS / SERVICES ---------- */
.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}
.service {
  position: relative;
  padding: 48px 40px 56px;
  border-right: 1px solid var(--line);
  transition: background 240ms ease;
  background: var(--white);
}
.service:last-child { border-right: 0; }
.service:hover { background: var(--teal-wash-2); }
.service .num {
  font-family: var(--serif); font-style: normal; font-weight: 300;
  font-size: 42px; color: var(--teal-deep); line-height: 1;
}
.service h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; color: var(--ink); line-height: 1.15;
  margin: 28px 0 18px;
  letter-spacing: -0.005em;
}
.service p { font-size: 15px; color: var(--ink-soft); }
.service .deliverable {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.service .deliverable .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600; flex-shrink: 0; padding-top: 2px;
}
.service .deliverable .text {
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.6;
}
.service .arrow {
  position: absolute; top: 48px; right: 40px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms ease;
}
.service:hover .arrow { background: var(--ink); border-color: var(--ink); }
.service:hover .arrow svg path { stroke: var(--white); }

@media (max-width: 900px) {
  .services-row { grid-template-columns: 1fr; }
  .service { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- DARK SECTION ---------- */
.dark {
  background: var(--ink);
  color: var(--white);
  position: relative; overflow: hidden;
}
.dark h1, .dark h2, .dark h3, .dark .h1, .dark .h2, .dark .display { color: var(--white); }
.dark p { color: rgba(255,255,255,0.7); }
.dark .rule { background: rgba(255,255,255,0.08); }

.dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(125,196,207,0.08), transparent 55%);
  pointer-events: none;
}

/* Moments list */
.moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.moment {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.moment .idx {
  font-family: var(--serif); font-style: normal; font-weight: 300;
  font-size: 36px; color: var(--teal); line-height: 1;
}
.moment h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--white); margin-bottom: 10px;
  line-height: 1.2;
}
.moment p { color: rgba(255,255,255,0.65); font-size: 14.5px; }
.moment:nth-child(odd) { padding-right: 48px; }
.moment:nth-child(even) { padding-left: 48px; border-left: 1px solid rgba(255,255,255,0.08); }

@media (max-width: 900px) {
  .moments { grid-template-columns: 1fr; }
  .moment:nth-child(odd), .moment:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
}

/* ---------- DIFFERENTIATORS ---------- */
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.diff {
  padding: 44px 0;
  padding-right: 48px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
}
.diff:nth-child(even) { padding-left: 48px; padding-right: 0; border-left: 1px solid var(--line); }
.diff .num {
  font-family: var(--serif); font-weight: 300;
  font-size: 38px; color: var(--teal-deep);
  line-height: 1;
}
.diff h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; color: var(--ink); margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.diff p { font-size: 14.5px; }
@media (max-width: 900px) {
  .diff-row { grid-template-columns: 1fr; }
  .diff, .diff:nth-child(even) { padding: 32px 0; border-left: 0; }
}

/* ---------- BIG STATEMENT ---------- */
.statement {
  padding: clamp(96px, 12vw, 180px) 0;
  background: var(--teal-wash);
  position: relative; overflow: hidden;
}
.statement::before, .statement::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125,196,207,0.45);
  pointer-events: none;
}
.statement::before { width: 520px; height: 520px; top: -180px; right: -160px; }
.statement::after  { width: 320px; height: 320px; bottom: -120px; left: -80px; border-color: rgba(125,196,207,0.3); }

.statement-inner { position: relative; z-index: 1; max-width: 920px; }
.statement .display { color: var(--ink); }

/* ---------- FOUNDER ---------- */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.founder .portrait {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, var(--teal-wash) 0 8px, var(--teal-wash-2) 8px 16px);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px;
}
.founder .portrait-label {
  font-family: "SFMono-Regular", Menlo, monospace;
  font-size: 10px; color: var(--ink-mute); letter-spacing: 1px;
  background: var(--white); padding: 8px 12px;
  border: 1px solid var(--line);
}
.founder .portrait .corner {
  position: absolute; top: 0; left: 0;
  width: 64px; height: 64px;
  border-top: 1px solid var(--teal-deep);
  border-left: 1px solid var(--teal-deep);
}
.founder .portrait .corner-br {
  top: auto; left: auto; bottom: 0; right: 0;
  border-top: 0; border-left: 0;
  border-bottom: 1px solid var(--teal-deep);
  border-right: 1px solid var(--teal-deep);
}
.founder blockquote {
  font-family: var(--serif); font-style: normal; font-weight: 300;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.35;
  color: var(--ink);
  border: 0; padding: 0; margin: 0 0 32px;
}
.founder blockquote::before { content: "“"; color: var(--teal-deep); font-size: 1.5em; line-height: 0; vertical-align: -0.3em; }
.founder blockquote::after  { content: "”"; color: var(--teal-deep); font-size: 1.5em; line-height: 0; vertical-align: -0.3em; }

.sig-line {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-style: normal;
  font-size: 18px; color: var(--ink);
}
.sig-line .line { width: 48px; height: 1px; background: var(--teal-deep); }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.cta-band .inner {
  padding: clamp(64px, 8vw, 120px) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-band .display { color: var(--white); }
.cta-band .display em { color: var(--teal); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  position: relative;
}
.footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 160ms ease; }
.footer li a:hover { color: var(--teal); }
.footer .sig {
  font-family: var(--serif); font-style: normal;
  font-size: 22px; color: rgba(255,255,255,0.85);
  margin-top: 20px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .footer .inner { grid-template-columns: 1fr 1fr; }
  .cta-band .inner { grid-template-columns: 1fr; }
}

/* ---------- utility badges ---------- */
.tag {
  display: inline-flex; align-items: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft); background: var(--white);
}
.tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); margin-right: 10px; }
.tag-dark { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }

/* ---------- PAGE HEADER (interior pages) ---------- */
.page-header {
  padding: clamp(72px, 8vw, 140px) 0 clamp(56px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-header .crumb {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.page-header .crumb a:hover { color: var(--ink); }
.page-header h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.page-header h1 em { font-style: normal; color: var(--teal-deep); }

/* ---------- SERVICE DETAIL ---------- */
.service-block {
  padding: clamp(64px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: baseline;
  margin-bottom: 56px;
}
.service-block-head .num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(72px, 9vw, 140px);
  color: var(--teal-deep);
  line-height: 0.85;
}
.service-block-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.service-block-head .lede { margin-top: 20px; max-width: 700px; }

.service-block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
}
.service-block-body h3 {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600;
  margin-bottom: 18px;
}
.service-block-body ul { list-style: none; }
.service-block-body li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
}
.service-block-body li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--teal-deep);
}
.service-block-body li:last-child { border-bottom: 0; }

.engagement-meta {
  grid-column: span 2;
  margin-top: 32px;
  padding: 32px;
  background: var(--teal-wash);
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.engagement-meta .item .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-deep); font-weight: 600;
  margin-bottom: 8px;
}
.engagement-meta .item .val {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; color: var(--ink); line-height: 1.2;
}
.engagement-meta .item .val small { display: block; font-family: var(--sans); font-size: 12px; color: var(--ink-mute); margin-top: 2px; font-weight: 400; }

@media (max-width: 900px) {
  .service-block-head { grid-template-columns: 1fr; gap: 16px; }
  .service-block-body { grid-template-columns: 1fr; }
  .engagement-meta { grid-template-columns: 1fr 1fr; grid-column: span 1; }
}

/* ---------- ABOUT / APPROACH ---------- */
.timeline {
  border-left: 1px solid var(--line);
  padding-left: 40px;
  margin-left: 12px;
}
.timeline .step {
  position: relative;
  padding: 28px 0 40px;
}
.timeline .step::before {
  content: ""; position: absolute;
  left: -47px; top: 36px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal-deep);
}
.timeline .step .year {
  font-family: var(--serif); font-style: normal;
  font-size: 14px; color: var(--teal-deep);
  margin-bottom: 8px;
}
.timeline .step h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--ink);
  margin-bottom: 8px;
}
.timeline .step p { max-width: 560px; }

.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}
.value:last-child { border-right: 0; }
.value .v-num {
  font-family: var(--serif); font-style: normal;
  font-size: 14px; color: var(--teal-deep);
  margin-bottom: 28px;
}
.value h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.value p { font-size: 13.5px; }
@media (max-width: 900px) {
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
}
.form {
  display: grid; gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: border-color 160ms ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--teal-deep);
}
.field textarea { min-height: 120px; font-family: var(--sans); }

.contact-aside {
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 5vw, 56px);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: ""; position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(125,196,207,0.1);
  top: -140px; right: -100px;
}
.contact-aside .inner { position: relative; z-index: 1; }
.contact-aside h3 { font-family: var(--serif); font-weight: 300; font-size: 32px; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.contact-aside .info-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-aside .info-row:last-child { border-bottom: 0; }
.contact-aside .info-row .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 4px;
}
.contact-aside .info-row .val {
  font-family: var(--serif); font-size: 18px; color: var(--white