/* ================================================================
   HI WAY 101 — Editorial cinema chauffeur site
   Palette: charcoal ink, warm cream, antique brass
   Type: Fraunces (display) + Instrument Sans (body)
   ================================================================ */

:root {
  /* Ink / Paper */
  --ink:      #0a0a0c;
  --ink-2:    #17171a;
  --ink-3:    #232328;
  --paper:    #f2ede3;
  --paper-2:  #e8e0cd;
  --paper-3:  #d7ccb1;

  /* Metal */
  --brass:    #b08b4a;
  --brass-hi: #d4a865;
  --brass-lo: #7a5e2d;

  /* Accents */
  --rust:     #7a3d1f;
  --muted:    #6b6b70;
  --muted-light: #a8a196;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, Cambria, serif;
  --sans:  "Instrument Sans", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --maxw:   1280px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;

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

/* ================================================================
   RESET-ISH
   ================================================================ */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input,textarea,select { font: inherit; color: inherit; }
::selection { background: var(--brass); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ================================================================
   MASTHEAD
   ================================================================ */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--ink) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(176,139,74,.18);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.masthead__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.wordmark__badge {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--brass);
  color: var(--brass-hi);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: 50%;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 13;
}
.wordmark__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .005em;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 19;
}

.nav ul {
  display: flex; gap: 26px;
  list-style: none; margin: 0; padding: 0;
  justify-content: center;
}
.nav a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
  position: relative;
  padding: 6px 0;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { opacity: 1; color: var(--brass-hi); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border: 1px solid rgba(176,139,74,.4);
  border-radius: 3px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--brass-hi);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  padding: 20px var(--gutter) 28px;
  border-top: 1px solid rgba(176,139,74,.18);
  background: var(--ink);
}
.mobile-nav ul { list-style: none; margin: 0 0 18px; padding: 0; }
.mobile-nav li { border-bottom: 1px solid rgba(176,139,74,.12); }
.mobile-nav a {
  display: block; padding: 16px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 22;
  color: var(--paper);
}
.mobile-nav a:hover { color: var(--brass-hi); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--brass {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  font-weight: 600;
}
.btn--brass:hover {
  background: var(--brass-hi);
  border-color: var(--brass-hi);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -10px rgba(212,168,101,.6);
}
.btn--cream {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  font-weight: 600;
}
.btn--cream:hover {
  background: var(--brass-hi);
  border-color: var(--brass-hi);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(242,237,227,.3);
}
.btn--ghost:hover {
  color: var(--brass-hi);
  border-color: var(--brass-hi);
  transform: translateY(-1px);
}
.btn--lg { padding: 16px 26px; font-size: 13px; }
.btn--full { display: flex; justify-content: center; width: 100%; }

.btn__lede {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .75;
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 10;
}
.btn__line { font-weight: 600; letter-spacing: .06em; }
.masthead__cta {
  padding: 9px 16px;
  gap: 8px;
  font-size: 12px;
}
.masthead__cta .btn__line { font-size: 13px; }
.masthead__cta .btn__lede {
  padding-right: 8px;
  border-right: 1px solid rgba(10,10,12,.35);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 24px var(--gutter) 40px;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(176,139,74,.22), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(122,61,31,.25), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #141418 70%, #0a0a0c 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 .4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__rule {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(176,139,74,.25);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass-hi);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__rule span:nth-child(2) {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--muted-light);
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 15;
}

.hero__layout {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding-top: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.dot {
  width: 8px; height: 8px;
  background: var(--brass-hi);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,168,101,.15);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(212,168,101,.15); }
  50%     { box-shadow: 0 0 0 10px rgba(212,168,101,0); }
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9.5vw, 140px);
  line-height: .92;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: var(--paper);
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.hero__headline .line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: rise .9s var(--ease-out) forwards;
}
.hero__headline .line:nth-child(1) { animation-delay: .15s; }
.hero__headline .line:nth-child(2) { animation-delay: .3s; }
.hero__headline .line:nth-child(3) { animation-delay: .45s; }
.hero__headline .line:nth-child(4) { animation-delay: .6s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero__headline .line--italic {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  padding-left: .8em;
  color: var(--paper-2);
}
.hero__headline .line--brass {
  color: var(--brass-hi);
  padding-left: 1.2em;
}

.hero__sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: color-mix(in oklab, var(--paper) 75%, transparent);
  margin: 0 0 36px;
  opacity: 0; animation: rise .9s var(--ease-out) .75s forwards;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px;
  opacity: 0; animation: rise .9s var(--ease-out) .85s forwards;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 4px 28px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(176,139,74,.2);
  max-width: 500px;
  opacity: 0; animation: rise .9s var(--ease-out) .95s forwards;
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta dt {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 20;
  color: var(--paper);
}

/* Hero car plate */
.hero__plate {
  position: relative;
  margin: 0;
  padding: 34px 28px 20px;
  border: 1px solid rgba(176,139,74,.35);
  border-radius: 6px;
  background:
    radial-gradient(400px 200px at 70% 30%, rgba(212,168,101,.08), transparent 70%),
    linear-gradient(180deg, rgba(23,23,26,.6), rgba(10,10,12,.8));
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(242,237,227,.05);
  opacity: 0; animation: rise 1.1s var(--ease-out) .5s forwards;
}
.hero__plate::before, .hero__plate::after {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--brass);
}
.hero__plate::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.hero__plate::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.hero__car {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  filter: contrast(1.04) saturate(.9);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.85), inset 0 0 0 1px rgba(176,139,74,.25);
}

.hero__plate-label {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(176,139,74,.3);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero__plate-label .plate {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--brass-hi);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 14;
}

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-light);
  opacity: 0; animation: rise .9s var(--ease-out) 1.2s forwards;
}
.hero__scroll span:last-child { animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee {
  padding: 22px 0;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee__group {
  display: flex; flex-shrink: 0;
  padding-right: 0;
}
.marquee__group span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 30;
  padding: 0 38px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 14px;
  white-space: nowrap;
}
.marquee__group em {
  color: var(--brass);
  font-style: normal;
  font-size: .8em;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ================================================================
   SECTION HEADS
   ================================================================ */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 60px;
}
.section-head__no {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass-hi);
  display: flex; align-items: center; gap: 14px;
}
.section-head__no::after {
  content: "";
  flex: 1;
  max-width: 260px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.section-head__no--dark { color: var(--brass-lo); }
.section-head__no--dark::after { background: linear-gradient(90deg, var(--brass-lo), transparent); }

.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  color: var(--paper);
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 144;
}
.section-head__title span { display: block; }
.section-head__title .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-hi);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  padding-left: .6em;
}
.section-head__lede {
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  margin: 0;
}
.section-head--light .section-head__title { color: var(--ink); }
.section-head--light .section-head__title .italic { color: var(--rust); }

.italic {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  padding: 120px 0 100px;
  background: var(--ink);
  position: relative;
}
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(176,139,74,.2);
  border: 1px solid rgba(176,139,74,.2);
}
.service {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--ink);
  grid-column: span 2;
  transition: background .35s var(--ease);
  display: flex; flex-direction: column; gap: 18px;
}
.service--feature {
  grid-column: span 6;
  padding: 48px 40px;
  background:
    linear-gradient(135deg, rgba(176,139,74,.08) 0%, rgba(23,23,26,.9) 55%),
    var(--ink-2);
  border-bottom: 1px solid rgba(176,139,74,.2);
}
.service--feature .service__name { font-size: clamp(42px, 5vw, 68px); }
.service--feature .service__body { max-width: 60ch; font-size: 17px; }

.service__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--brass);
  margin: 0;
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 13;
}
.service__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  margin: 0;
  letter-spacing: -.01em;
  color: var(--paper);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 30;
}
.service__body {
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  margin: 0;
  flex: 1;
}
.service__link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-hi);
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), gap .25s var(--ease), letter-spacing .25s var(--ease);
  display: inline-flex; gap: 10px;
}
.service__link:hover { border-bottom-color: var(--brass-hi); gap: 14px; }
.service:hover { background: var(--ink-2); }
.service--feature:hover {
  background:
    linear-gradient(135deg, rgba(176,139,74,.12) 0%, rgba(23,23,26,.9) 55%),
    var(--ink-2);
}

/* ================================================================
   PULL QUOTE
   ================================================================ */
.pullquote {
  padding: 120px var(--gutter);
  background: var(--ink);
  border-top: 1px solid rgba(176,139,74,.15);
  border-bottom: 1px solid rgba(176,139,74,.15);
}
.pullquote blockquote {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.pullquote p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 24px;
  color: var(--paper);
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 72;
  text-wrap: balance;
}
.pullquote em {
  font-style: italic;
  color: var(--brass-hi);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 72;
}
.pullquote__mark {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 1.2em;
  margin-right: .1em;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.pullquote footer {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding-top: 18px;
  border-top: 1px solid rgba(176,139,74,.2);
  display: inline-block;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: 120px 0 100px;
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.about::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.2 0 0 0 .1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .5; pointer-events: none;
}
.about > * { position: relative; }

.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.about__body p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  margin: 0 0 20px;
  color: var(--ink);
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 24;
  text-wrap: pretty;
}
.about__body p:last-child { color: var(--ink-3); }

.about__pillars {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 4px;
  border-top: 1px solid rgba(10,10,12,.15);
}
.about__pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,12,.15);
  transition: background .25s var(--ease);
}
.about__pillars li:hover { background: rgba(176,139,74,.08); }
.pillar__glyph {
  color: var(--brass);
  font-size: 12px;
  padding-top: 4px;
}
.about__pillars h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -.01em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 22;
}
.about__pillars p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* ================================================================
   SERVICE AREA
   ================================================================ */
.area {
  padding: 120px 0 120px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.area::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 20% 20%, rgba(176,139,74,.12), transparent 60%);
  pointer-events: none;
}
.area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.area__text { position: relative; z-index: 1; }
.area__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 14px 0 24px;
  color: var(--paper);
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 80;
}
.area__title .italic { color: var(--brass-hi); }
.area__lede {
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  margin: 0 0 32px;
  max-width: 52ch;
}
.area__cities {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  max-width: 480px;
}
.area__cities li {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-2);
  padding: 6px 12px;
  border: 1px solid rgba(176,139,74,.25);
  border-radius: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.area__cities li:hover {
  color: var(--brass-hi);
  border-color: var(--brass);
  background: rgba(176,139,74,.08);
}
.area__map {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(176,139,74,.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.8);
  filter: grayscale(.3) contrast(1.05);
}
.area__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.area__map::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,12,.5));
  pointer-events: none; z-index: 1;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 120px var(--gutter) 120px;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  max-width: calc(var(--maxw) + 40px);
  margin: 0 auto;
}
.contact__card {
  background: var(--paper);
  padding: 8px 0;
}
.contact__head { margin-bottom: 40px; max-width: 56ch; }
.contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 14px 0 22px;
  color: var(--ink);
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 84;
}
.contact__title span { display: block; }
.contact__title .italic { color: var(--rust); padding-left: .6em; }
.contact__lede { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.contact__lede a { color: var(--rust); border-bottom: 1px solid currentColor; }

/* Form */
.form { display: grid; gap: 18px; }
.form__hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10,10,12,.3);
  padding: 10px 2px 10px;
  font-size: 17px;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 17;
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
  border-radius: 0;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%237a5e2d' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-light); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--brass);
  background: rgba(176,139,74,.06);
}
.field input:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 96px; font-family: var(--sans); font-size: 16px; }

.form__submit {
  margin-top: 12px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(10,10,12,.15);
}
.form__reassure {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.form__success {
  padding: 40px 30px;
  border: 1px solid var(--brass);
  background: rgba(176,139,74,.06);
  text-align: center;
}
.form__success-glyph {
  font-size: 34px;
  color: var(--brass);
  margin: 0 0 10px;
}
.form__success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 10px;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 34;
}
.form__success p { margin: 0; color: var(--muted); }
.form__success a { color: var(--rust); border-bottom: 1px solid currentColor; }

.contact__aside {
  position: sticky; top: 100px;
}
.coord {
  margin: 0;
  padding: 40px 32px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--brass);
  border-radius: 3px;
  display: grid; gap: 22px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(10,10,12,.4);
}
.coord::before, .coord::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--brass);
}
.coord::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; transform: translate(-6px,-6px); }
.coord::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; transform: translate(6px,6px); }
.coord > div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(176,139,74,.3);
}
.coord > div:last-child { border-bottom: 0; padding-bottom: 0; }
.coord dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-hi);
}
.coord dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--paper);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 17;
}
.coord dd a { color: var(--paper); border-bottom: 1px solid rgba(212,168,101,.5); transition: color .2s var(--ease); }
.coord dd a:hover { color: var(--brass-hi); }

/* ================================================================
   COLOPHON / FOOTER
   ================================================================ */
.colophon {
  background: var(--ink);
  color: var(--muted-light);
  padding: 60px var(--gutter) 100px;
  border-top: 1px solid rgba(176,139,74,.2);
}
.colophon__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 60px;
  align-items: center;
}
.colophon__brand {
  display: flex; align-items: center; gap: 16px;
}
.colophon__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 2px;
  color: var(--paper);
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 20;
}
.colophon__fine {
  margin: 0;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
}
.colophon__nav {
  justify-self: end;
  display: flex; flex-wrap: wrap; gap: 4px 26px;
}
.colophon__nav a {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.colophon__nav a:hover { color: var(--brass-hi); border-bottom-color: var(--brass); }
.colophon__copy {
  grid-column: 1 / -1;
  padding-top: 30px;
  margin: 0;
  border-top: 1px solid rgba(176,139,74,.15);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================================
   STICKY CALL (mobile)
   ================================================================ */
.sticky-call {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 40;
  display: none;
  align-items: center; justify-content: center; gap: 12px;
  padding: 16px 20px;
  background: var(--brass);
  color: var(--ink);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 20px 40px -12px rgba(10,10,12,.6);
  overflow: hidden;
}
.sticky-call__ring {
  width: 10px; height: 10px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(10,10,12,.4);
  animation: ring 1.8s var(--ease) infinite;
}
@keyframes ring {
  0%   { box-shadow: 0 0 0 0 rgba(10,10,12,.4); }
  70%  { box-shadow: 0 0 0 10px rgba(10,10,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,10,12,0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__plate { max-width: 560px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .service { grid-column: span 2; }
  .service--feature { grid-column: span 4; }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .area { grid-template-columns: 1fr; }
  .area__map { aspect-ratio: 16 / 10; }
  .contact { grid-template-columns: 1fr; }
  .contact__aside { position: static; }
  .colophon__inner { grid-template-columns: 1fr; }
  .colophon__nav { justify-self: start; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .masthead__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .masthead__cta { display: none; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav[aria-hidden="false"] { display: block; }

  .hero { padding-top: 40px; min-height: unset; }
  .hero__rule { font-size: 9px; flex-wrap: wrap; gap: 6px; }
  .hero__rule span:nth-child(2) { order: 3; width: 100%; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .hero__meta { grid-template-columns: 1fr; gap: 12px; }
  .hero__meta > div { flex-direction: row; gap: 12px; align-items: baseline; }

  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service, .service--feature { grid-column: span 1; padding: 32px 24px; }
  .service--feature { padding: 40px 24px; }

  .pullquote { padding: 80px var(--gutter); }
  .about { padding: 80px 0; }
  .area { padding: 80px var(--gutter); }
  .contact { padding: 80px var(--gutter) 140px; }
  .form__row { grid-template-columns: 1fr; }
  .coord > div { grid-template-columns: 1fr; gap: 6px; }

  .sticky-call { display: flex; }
  .colophon { padding-bottom: 120px; }
}

@media (max-width: 480px) {
  .hero__plate { padding: 22px 18px 14px; }
  .hero__plate-label { flex-direction: column; gap: 6px; align-items: flex-start; }
  .wordmark__name { font-size: 17px; }
  .wordmark__badge { width: 38px; height: 38px; font-size: 14px; }
}
