/* ===== Design tokens ===== */
:root {
  --burgundy: oklch(32% .12 20);
  --gold: oklch(72% .11 78);
  --walnut: oklch(36% .05 45);
  --charcoal: oklch(18% 0 0);
  --ivory: oklch(97% .01 90);
  --beige: oklch(93% .02 85);
  --cream: oklch(98% .005 90);
  --bronze: oklch(55% .07 60);
  --stone: oklch(72% .01 90);
  --copper: oklch(58% .13 45);
  --graphite: oklch(48% 0 0);

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;

  --container-w: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 8rem 0;
}

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

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

.ivory {
  color: var(--ivory) !important;
}

.ivory-70 {
  color: color-mix(in oklab, var(--ivory) 70%, transparent);
}

.ivory-75 {
  color: color-mix(in oklab, var(--ivory) 75%, transparent);
}

.italic {
  font-style: italic;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.eyebrow-ivory {
  color: color-mix(in oklab, var(--ivory) 85%, transparent);
  margin-bottom: 1rem;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: var(--charcoal);
}

.serif-accent {
  font-style: italic;
}

.lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--graphite);
  max-width: 34rem;
  margin: 0 0 1.25rem;
}

.lead-small {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--graphite);
  max-width: 24rem;
}

.body-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--graphite);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
}

.tag-list li {
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border: 1px solid color-mix(in oklab, var(--charcoal) 15%, transparent);
  border-radius: 2px;
  color: var(--graphite);
}

.rule-line {
  width: 5rem;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem 0;
}

.gold-rule {
  height: 1px;
  width: 4rem;
  background: var(--gold);
  display: inline-block;
}

.gold-line {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.mono-num {
  font-family: monospace;
  font-size: .75rem;
  letter-spacing: .1em;
  opacity: .7;
  color: var(--ivory);
}

/* ===== Buttons ===== */
.btn-gold,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
  font-weight: 500;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid color-mix(in oklab, var(--ivory) 40%, transparent);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-small {
  padding: .6rem 1.25rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
  border: none;
}

/* ===== Reveal animation ===== */
.reveal-up,
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .32, 1), transform .8s cubic-bezier(.16, 1, .32, 1);
}

.reveal-fade {
  transform: none;
}

.reveal-up.in-view,
.reveal-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  transition: opacity .6s ease, visibility .6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 4.5rem;
  width: auto;
  margin-bottom: 3rem;
  filter: brightness(0) invert(1);
}

.loader-pct {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  color: var(--ivory);
  font-family: var(--font-display);
}

.loader-pct span:first-child {
  font-size: 4rem;
  font-variant-numeric: tabular-nums;
}

.loader-pct-sign {
  font-size: 1.5rem;
  opacity: .6;
}

.loader-bar {
  margin-top: 2rem;
  width: 14rem;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

.loader-tag {
  margin-top: 1.5rem;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ivory) 60%, transparent);
}

/* ===== Custom cursor ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background-color .25s ease, opacity .25s ease;
  opacity: 0;
}

.cursor-dot.is-active {
  opacity: 1;
}

.cursor-dot.is-hover {
  width: 44px;
  height: 44px;
  background: color-mix(in oklab, var(--gold) 25%, transparent);
}

@media (max-width: 900px),
(hover: none) {
  .cursor-dot {
    display: none;
  }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  padding: 1.5rem 0;
  background: transparent;
  transition: background-color .5s ease, padding .5s ease, box-shadow .5s ease;
}

.site-header.is-scrolled {
  background: var(--cream);
  backdrop-filter: blur(10px);
  padding: .9rem 0;
  box-shadow: 0 1px 12px color-mix(in oklab, var(--charcoal) 10%, transparent);
}

.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
  transition: filter .5s ease, height .5s ease;
}

.site-header.is-scrolled .logo-img {
  filter: none;
  height: 2.1rem;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  position: relative;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color .3s ease;
}

.site-header.is-scrolled .nav-link {
  color: var(--charcoal);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: background .3s ease;
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--charcoal);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: var(--cream);
  transition: max-height .4s ease, padding .4s ease;
}

.mobile-nav.is-open {
  max-height: 20rem;
  padding: 1.5rem 24px 2rem;
}

.mobile-nav .nav-link {
  color: var(--charcoal);
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .65) 45%, rgba(0, 0, 0, .85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ivory);
  font-size: clamp(3rem, 8vw, 8.5rem);
  line-height: 1;
  margin: 0;
  max-width: 60rem;
}

.hero-line {
  display: block;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-copy {
  margin-top: 2rem;
  max-width: 34rem;
  font-size: .95rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--ivory) 85%, transparent);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ivory) 75%, transparent);
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

/* ===== About ===== */
.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  gap: 4rem;
}

/* ===== Stats Banner ===== */
.stats-banner {
  background: #080808;
  padding: 7rem 0;
  border-bottom: 1px solid color-mix(in oklab, var(--gold) 15%, transparent);
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  margin-top: 1rem;
  font-size: clamp(8px, 1.2vw, 11px);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.picture-stack {
  position: relative;
  width: 100%;
  height: clamp(20rem, 30vw, 30rem);
  margin-top: 2rem;
}

.stack-img {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 24px color-mix(in oklab, var(--charcoal) 15%, transparent);
  will-change: transform;
}

.stack-img:nth-child(1) {
  z-index: 4;
}

.stack-img:nth-child(2) {
  z-index: 3;
}

.stack-img:nth-child(3) {
  z-index: 2;
}

.stack-img:nth-child(4) {
  z-index: 1;
}

/* ===== Solutions (horizontal scroller) ===== */
.solutions-section {
  background: var(--cream);
  overflow: hidden;
}

.solutions-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.scroller-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 6vw 1rem;
  width: max-content;
  will-change: transform;
}

.solution-card {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 80vw;
  height: 60vh;
  min-height: 22rem;
  scroll-snap-align: start;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.solution-card:hover img {
  transform: scale(1.05);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--charcoal) 55%, transparent) 0%, transparent 30%, transparent 45%, color-mix(in oklab, var(--charcoal) 92%, transparent) 100%);
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  gap: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--ivory);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.card-sub {
  margin-top: .75rem;
  max-width: 18rem;
  font-size: .85rem;
  color: color-mix(in oklab, var(--ivory) 75%, transparent);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.card-top {
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

@media (min-width: 700px) {
  .solution-card {
    width: 45vw;
  }
}

@media (min-width: 1100px) {
  .solution-card {
    width: 34vw;
  }
}

/* ===== Journey ===== */
.journey-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.journey-head {
  text-align: left;
  margin-bottom: 4rem;
}

.journey-layout {
  display: grid;
  gap: 4rem;
}

.journey-image {
  position: relative;
  height: 26rem;
  overflow: hidden;
  align-self: start;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in oklab, var(--charcoal) 65%, transparent));
}

.journey-image-caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-track-bg {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in oklab, var(--ivory) 15%, transparent);
  transform: translateX(-50%);
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-step {
  position: relative;
  width: 50%;
}

.timeline-step:nth-child(odd) {
  align-self: flex-start;
  padding-right: 3rem;
  text-align: right;
}

.timeline-step:nth-child(odd) .step-copy {
  margin: 0 0 0 auto;
}

.timeline-step:nth-child(even) {
  align-self: flex-end;
  padding-left: 3rem;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: .35rem;
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--charcoal), 0 0 10px 2px color-mix(in oklab, var(--gold) 40%, transparent);
}

.timeline-step:nth-child(odd) .timeline-dot {
  right: -.325rem;
}

.timeline-step:nth-child(even) .timeline-dot {
  left: -.325rem;
}

.step-label {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: .5rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 .5rem;
  color: var(--ivory);
}

.step-copy {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 26rem;
  color: color-mix(in oklab, var(--ivory) 70%, transparent);
  margin: 0;
}

@media (max-width: 860px) {

  .timeline-track-bg,
  .timeline-line {
    left: 1rem;
    transform: none;
  }

  .timeline-step {
    width: 100%;
  }

  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even) {
    align-self: flex-start;
    padding-left: 3.5rem;
    padding-right: 0;
    text-align: left;
  }

  .timeline-step:nth-child(odd) .step-copy {
    margin: 0;
  }

  .timeline-step:nth-child(odd) .timeline-dot,
  .timeline-step:nth-child(even) .timeline-dot {
    left: 1rem;
    right: auto;
    transform: translateX(-50%);
  }
}

/* ===== Standard ===== */
.standard-section {
  background: var(--cream);
}

.standard-grid {
  display: grid;
  gap: 3rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
  border-left: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
  padding-left: 1.25rem;
  transition: padding-left .3s ease;
}

.pillar:hover {
  padding-left: 1.75rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 .5rem;
}

.pillar-copy {
  font-size: .8rem;
  line-height: 1.7;
  color: var(--graphite);
  margin: 0;
}

@media (min-width: 860px) {
  .standard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* ===== Gallery ===== */
.gallery-section {
  background: var(--cream);
}

.gallery-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 16rem;
}

.gallery-item.big {
  grid-column: span 2;
  height: 22rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  background: linear-gradient(180deg, transparent 50%, color-mix(in oklab, var(--charcoal) 85%, transparent));
}

.gallery-item:hover .gallery-gradient {
  opacity: 1;
}

.gallery-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all .5s ease;
  color: var(--ivory);
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
  opacity: 1;
}

.gallery-label .gold-text {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

@media (min-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 15.5rem;
  }

  .gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }

  .gallery-item {
    height: auto;
  }
}

/* ===== Philosophy (marquee) ===== */
.philosophy-section {
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}

.philosophy-section .container {
  margin-bottom: 4rem;
}

.marquee-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.quote-card {
  min-width: 22rem;
  max-width: 28rem;
  padding: 2rem;
  background: color-mix(in oklab, var(--ivory) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--ivory) 12%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 4px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  white-space: normal;
}

.quote-source {
  margin-top: 1.5rem;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== Connect ===== */
.connect-section {
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}

.connect-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}

.connect-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, color-mix(in oklab, var(--charcoal) 85%, transparent) 100%);
}

.connect-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.glass-panel {
  background: color-mix(in oklab, var(--ivory) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--ivory) 12%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 4px;
}

.connect-form {
  padding: 2rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.field {
  display: block;
  margin-bottom: 1.5rem;
}

.field span {
  display: block;
  margin-bottom: .5rem;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in oklab, var(--ivory) 30%, transparent);
  padding: .75rem 0;
  color: var(--ivory);
  outline: none;
  transition: border-color .3s ease;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--gold);
  min-height: 1.2em;
}

@media (min-width: 900px) {
  .connect-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-copy {
  max-width: 20rem;
  font-size: .8rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--ivory) 60%, transparent);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .9rem;
}

.footer-list a {
  transition: color .3s ease;
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-list.plain li {
  opacity: .8;
}

.footer-note {
  font-size: .75rem;
  opacity: .7;
  max-width: 16rem;
  margin: 0 0 1rem;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid color-mix(in oklab, var(--ivory) 30%, transparent);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: .6rem 0;
  color: var(--ivory);
  outline: none;
}

.newsletter-form input::placeholder {
  opacity: .4;
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.1rem;
  padding: 0 .5rem;
  transition: color .3s ease;
}

.newsletter-form button:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklab, var(--ivory) 15%, transparent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ivory) 55%, transparent);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }

  .footer-bottom {
    flex-direction: row;
  }
}