/* ==========================================================================
   Seaway Aerial Shots — Editorial Aviation aesthetic
   Dark, cinematic, magazine-style. Near-black + warm copper accent.
   ========================================================================== */

:root {
  /* Color system — 70/20/10 */
  --ink:        #0a0a0c;     /* near-black, primary surface (70%) */
  --ink-2:      #111114;     /* raised surface */
  --ink-3:      #1a1a20;     /* card surface */
  --paper:      #f5f1ea;     /* warm off-white, primary text (20%) */
  --paper-2:    #c9c3b8;     /* secondary text */
  --paper-3:    #8a857c;     /* tertiary text / borders */
  --copper:     #c87f4a;     /* accent — aviation-instrument warm (10%) */
  --copper-2:   #d9956a;     /* accent hover */
  --copper-dim: #6e4628;     /* accent dim */
  --rule:       rgba(245, 241, 234, 0.08);
  --rule-2:     rgba(245, 241, 234, 0.16);

  /* Type */
  --display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --body:    "Instrument Sans", "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --gutter:  clamp(20px, 4vw, 64px);
  --col:     1200px;
  --col-w:   880px;

  /* Motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--copper); }

button, input, select, textarea { font: inherit; color: inherit; }

/* Typography ============================================================== */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.display-xl {
  font-size: clamp(48px, 9vw, 144px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.display-lg {
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.display-md {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.display-sm {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--paper-2);
  font-weight: 400;
  max-width: 60ch;
}

.italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
}

/* Background depth ======================================================= */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
}

/* Layout helpers ========================================================== */

.container {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: var(--col-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section {
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
}

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

/* Header / Nav ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s var(--ease-2), backdrop-filter 0.3s var(--ease-2);
  mix-blend-mode: difference;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  mix-blend-mode: normal;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.brand .mark {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.brand .mark::before,
.brand .mark::after {
  content: "";
  position: absolute;
  background: var(--copper);
}
.brand .mark::before {
  /* horizontal axis */
  inset: 50% 0 50% 0;
  height: 1.5px;
  transform: translateY(-50%) rotate(0deg);
}
.brand .mark::after {
  /* propeller - thin diagonal */
  inset: 0;
  background: linear-gradient(90deg, transparent 49%, var(--copper) 49%, var(--copper) 51%, transparent 51%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  color: var(--paper-2);
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s var(--ease-2);
}
.nav a:hover { color: var(--paper); }
.nav a.active { color: var(--copper); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--copper);
}

.nav-cta {
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid var(--paper);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease-2);
}
.nav-cta:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--ink);
}

@media (max-width: 720px) {
  .nav ul { display: none; }
}

/* Hero ==================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -10% -5% -5% -5%;
  z-index: -2;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  filter: saturate(1.05) contrast(1.05);
  animation: heroKenBurns 30s var(--ease) infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.15) translate(0, 0); }
  to   { transform: scale(1.25) translate(-2%, -1%); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.7) 0%,
    rgba(10, 10, 12, 0.2) 35%,
    rgba(10, 10, 12, 0.5) 70%,
    rgba(10, 10, 12, 0.95) 100%
  );
}

.hero-inner {
  padding: 120px var(--gutter) clamp(40px, 8vh, 80px);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.1s forwards;
}
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper);
  display: inline-block;
  box-shadow: 0 0 12px var(--copper);
}

.hero h1 {
  color: var(--paper);
  margin: 0 0 32px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroReveal 1.2s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) > span { animation-delay: 0.25s; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.4s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.55s; }
.hero h1 .accent {
  color: var(--copper);
  font-style: italic;
}

@keyframes heroReveal {
  to { transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-top: 48px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat .num {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  color: var(--paper);
  font-weight: 300;
}
.stat .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons ================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-2);
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-2);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--copper);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--copper-2);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(200, 127, 74, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--rule-2);
}
.btn-ghost:hover {
  border-color: var(--paper);
  color: var(--paper);
}

/* Marquee strip ========================================================== */

.marquee {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.marquee-track .sep {
  color: var(--copper);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Service grid (asymmetric editorial) =================================== */

.services {
  position: relative;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .services-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: all 0.3s var(--ease-2);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--copper-dim) 200%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-2);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--rule-2);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 0.4; }

.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.service-card h3 {
  font-size: 28px;
  line-height: 1.15;
  color: var(--paper);
  font-weight: 300;
}
.service-card p {
  color: var(--paper-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.service-card .more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--ease-2);
}
.service-card:hover .more { color: var(--copper); }

/* Asymmetric grid placement */
.service-card.span-7 { grid-column: span 7; }
.service-card.span-5 { grid-column: span 5; }
.service-card.span-6 { grid-column: span 6; }
.service-card.span-4 { grid-column: span 4; }
.service-card.span-8 { grid-column: span 8; }
.service-card.span-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .service-card.span-7,
  .service-card.span-5,
  .service-card.span-6,
  .service-card.span-4,
  .service-card.span-8,
  .service-card.span-12 {
    grid-column: span 12;
  }
}

/* Editorial split (image + text) ========================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-2);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split:hover .split-image img { transform: scale(1.04); }

.split-image .tag-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.split-text h2 { margin-bottom: 24px; }
.split-text p { color: var(--paper-2); margin: 0 0 20px; font-size: 17px; }
.split-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.split-text ul li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--paper-2);
  font-size: 15px;
}
.split-text ul li::before {
  content: "→";
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Portfolio gallery ====================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item.wide { aspect-ratio: 16 / 9; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease-2);
  filter: saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.1); }

.gallery-item .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 12, 0.85) 100%);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: end;
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.4s var(--ease-2);
}
.gallery-item:hover .label { transform: translateY(0); opacity: 1; }
.gallery-item .label h4 {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.gallery-item .label .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.gallery-item.col-7 { grid-column: span 7; }
.gallery-item.col-5 { grid-column: span 5; }
.gallery-item.col-6 { grid-column: span 6; }
.gallery-item.col-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .gallery-item.col-7,
  .gallery-item.col-5,
  .gallery-item.col-6,
  .gallery-item.col-12 {
    grid-column: span 12;
  }
}

/* Process steps ========================================================= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--rule-2);
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
}

.step {
  padding: 0 24px;
  position: relative;
}
.step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--rule-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--copper);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 400;
}
.step p {
  color: var(--paper-2);
  font-size: 15px;
  margin: 0;
}

/* Pricing ================================================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
  padding: 48px 32px;
  background: var(--ink-2);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background 0.3s var(--ease-2);
}
.price-card:last-child { border-right: 0; }
.price-card.featured {
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
}
.price-card.featured::before {
  content: "Most requested";
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}
.price-card:hover { background: var(--ink-3); }

.price-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin: 0;
}
.price-card .price {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--paper);
}
.price-card .price small {
  font-size: 14px;
  color: var(--paper-3);
  margin-left: 4px;
}
.price-card .desc {
  color: var(--paper-2);
  font-size: 15px;
  margin: 0;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-card ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 14px;
  color: var(--paper-2);
}
.price-card ul li::before {
  content: "✓";
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ accordion ========================================================== */

.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 24px;
  color: var(--copper);
  transition: transform 0.3s var(--ease-2);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 28px;
  color: var(--paper-2);
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.65;
}

/* CTA block (dark, with copper) ======================================== */

.cta-block {
  background: var(--copper);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
}
.cta-block .container { position: relative; z-index: 2; }
.cta-block h2 {
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 16ch;
}
.cta-block p {
  color: var(--ink);
  opacity: 0.85;
  font-size: 18px;
  max-width: 56ch;
  margin: 0 0 32px;
}
.cta-block .btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.cta-block .btn-primary:hover {
  background: var(--ink-3);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
}
.cta-block .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.cta-block .btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Forms ================================================================== */

form.contact-form {
  display: grid;
  gap: 24px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  padding: 12px 0;
  color: var(--paper);
  font-size: 17px;
  border-radius: 0;
  transition: border-color 0.2s var(--ease-2);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--copper);
}
.field textarea { min-height: 120px; resize: vertical; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--paper-2);
  font-size: 14px;
}
.form-status[data-state="success"] { color: #8fd6a3; }
.form-status[data-state="error"] { color: #ffb2a3; }
.form-status[data-state="pending"] { color: var(--copper-2); }

/* Footer ================================================================= */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 80px 0 40px;
  background: var(--ink);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--paper-2); font-size: 15px; }
.footer-col a:hover { color: var(--copper); }
.footer-col .big-mark {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 16px;
  max-width: 12ch;
}
.footer-col .tagline { color: var(--paper-2); font-size: 15px; max-width: 36ch; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--paper-3);
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* Note / info box ====================================================== */

.note {
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--copper);
  padding: 24px 28px;
  border-radius: 2px;
  color: var(--paper-2);
  font-size: 15px;
  line-height: 1.6;
}
.note strong { color: var(--paper); }

/* Reveal on scroll ==================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }
  .hero-bg img { animation: none; }
  .marquee-track { animation: none; }
}

/* Selection ============================================================= */

::selection {
  background: var(--copper);
  color: var(--ink);
}
