/* ========================================
   JETTHROW SERVICES — SHARED STYLES
   ======================================== */

:root {
  --navy: #0f1729;
  --navy-soft: #16213a;
  --orange: #f2691a;
  --orange-dark: #d6570f;
  --off-white: #f7f7f5;
  --white: #ffffff;
  --ink: #10182b;
  --gray: #5b6472;
  --gray-light: #9aa1ac;
  --line: #dfe1e6;
  --line-dark: #2a3247;
  --font-display: "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

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

/* ---------- Eyebrow / numbered labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- Headings ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--navy);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange);
  top: 10px;
  left: 10px;
}

.logo-img {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.logo-text .sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gray);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.main-nav a.active::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 26px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-soft); }

.btn-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.btn-link:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- Hero (index) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, #2a3550 0%, #7a5a3a 45%, #d9863a 75%, #f0b060 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(10,14,26,0.9) 0%, rgba(10,14,26,0.62) 38%, rgba(10,14,26,0.28) 70%, rgba(10,14,26,0.42) 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 780px) {
  /* Hero video now shows on mobile too */
}
.crane-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 64px;
  width: 100%;
}
.hero .eyebrow { color: var(--orange); margin-bottom: 22px; letter-spacing: 0.2em; }
.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6.4vw, 84px);
  max-width: 900px;
  margin-bottom: 28px;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Section spacing ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 64px 0; }
.section-border-top { border-top: 1px solid var(--line); }
.section-dark { background: var(--navy); color: var(--white); }

@media (max-width: 780px) {
  .section { padding: 64px 0; }
}

/* ---------- Section header (eyebrow + title + intro split) ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}
.section-head h2 { font-size: clamp(32px, 4vw, 44px); max-width: 460px; }
.section-head .intro {
  max-width: 420px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 6px;
}
@media (max-width: 860px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---------- Capabilities grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-left: none;
}
.cap-card {
  padding: 40px 36px;
  border-left: 1px solid var(--line);
}
.cap-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 28px;
  display: block;
}
.cap-card h3 { font-size: 22px; margin-bottom: 16px; }
.cap-card p { color: var(--gray); font-size: 15px; line-height: 1.65; margin: 0; }

@media (max-width: 860px) {
  .cap-grid { grid-template-columns: 1fr; border-left: 1px solid var(--line); }
  .cap-card { border-left: none; border-top: 1px solid var(--line); }
  .cap-card:first-child { border-top: none; }
}

/* ---------- Split section (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img, .split .ph-image { width: 100%; height: 460px; object-fit: cover; }
.split .eyebrow { margin-bottom: 20px; }
.split h2 { font-size: clamp(30px, 3.6vw, 40px); margin-bottom: 22px; }
.split p { color: var(--gray); font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.split .btn-link { margin-top: 18px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split img, .split .ph-image { height: 320px; }
}

/* Placeholder image block */
.ph-image {
  background: repeating-linear-gradient(135deg, #e4e6ea, #e4e6ea 12px, #ecedf0 12px, #ecedf0 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}
.ph-image.dark {
  background: repeating-linear-gradient(135deg, #1b2338, #1b2338 12px, #212a42 12px, #212a42 24px);
  color: rgba(255,255,255,0.35);
}

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-left: none;
}
.stat {
  padding: 42px 36px;
  border-left: 1px solid var(--line-dark);
}
.stat .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stats-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .stats-bar { grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line-dark); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review-card {
  background: var(--off-white);
  padding: 32px;
}
.review-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.review-quote { font-size: 15.5px; line-height: 1.7; color: var(--ink); margin: 0 0 22px; }
.review-author { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--gray); text-transform: uppercase; }
.reviews-source-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  margin-top: 20px;
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta-band h2 { font-size: clamp(32px, 4.4vw, 48px); }
@media (max-width: 780px) {
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo-text .name,
.footer-brand .logo-text .sub { color: var(--white); }
.footer-brand p {
  margin: 22px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.footer-col .col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 12px;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.gallery-hero { padding: 72px 0 40px; }
.gallery-hero h1 { font-size: clamp(38px, 5.4vw, 60px); margin: 18px 0 26px; }
.gallery-hero p {
  max-width: 620px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Instagram strip */
.insta-strip { padding: 36px 0 44px; border-top: 1px solid var(--line); }
.insta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.insta-head .eyebrow { color: var(--gray); }
.insta-head a { font-family: var(--font-mono); font-size: 12px; color: var(--orange); letter-spacing: 0.06em; }
.insta-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.insta-tile {
  aspect-ratio: 1;
  background: repeating-linear-gradient(135deg, #e4e6ea, #e4e6ea 10px, #ecedf0 10px, #ecedf0 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  padding: 8px;
  position: relative;
}
.insta-tile .ig-icon { font-size: 18px; opacity: 0.5; }
@media (max-width: 780px) {
  .insta-row { grid-template-columns: repeat(3, 1fr); }
  .insta-row .insta-tile:nth-child(n+4) { display: none; }
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 10px;
  padding: 30px 0 0;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Project rows */
.projects { padding: 60px 0 0; }
.project-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.project-row:first-child { border-top: none; padding-top: 0; }
.project-row.reverse { grid-template-columns: 0.85fr 1.15fr; }
.project-row.reverse .project-media { order: 2; }
.project-row.reverse .project-info { order: 1; }

.project-media {
  position: relative;
  overflow: hidden;
}
.project-media .ph-image { height: 520px; }
.slider-track { position: relative; height: 520px; overflow: hidden; }
.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.slider-slide.active { opacity: 1; pointer-events: auto; }
.slider-slide .ph-image { height: 100%; }
.slider-slide img,
.slider-slide .media-thumb-wrap {
  width: 100%;
  height: 100%;
}
.slider-slide img { object-fit: cover; display: block; }
.media-thumb-wrap { position: relative; }
.media-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(15,23,41,0.6);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(15,23,41,0.55);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
  transition: background 0.15s ease;
}
.slider-arrow:hover { background: var(--orange); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.slider-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  transition: background 0.15s ease;
}
.slider-dots span.active { background: var(--orange); }

.project-info .frame { font-family: var(--font-mono); font-size: 12px; color: var(--gray-light); margin-bottom: 14px; }
.project-info .tag { font-family: var(--font-mono); font-size: 12px; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.project-title {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  transition: color 0.15s ease;
}
.project-title:hover { color: var(--orange); }
.project-title .open-hint {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  font-weight: 400;
  margin-top: 10px;
}
.project-location { font-family: var(--font-mono); font-size: 12.5px; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; margin: 14px 0 20px; }
.project-desc { color: var(--gray); font-size: 15px; line-height: 1.75; margin: 0; }

@media (max-width: 900px) {
  .project-row, .project-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }
  .project-row.reverse .project-media,
  .project-row.reverse .project-info { order: initial; }
  .slider-track, .project-media .ph-image { height: 340px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.96);
  z-index: 1000;
  display: none;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  color: var(--white);
}
.lightbox-top .lb-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 18px; }
.lightbox-top .lb-meta { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.06em; }
.lb-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  padding: 6px 10px;
}
.lb-close:hover { color: var(--orange); }

.lightbox-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px 24px;
  min-height: 0;
}
.lightbox-stage .ph-image { width: 100%; height: 100%; max-height: 62vh; }
.lightbox-stage .lb-media {
  max-width: 100%;
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-arrow:hover { background: var(--orange); border-color: var(--orange); }
.lb-arrow.prev { left: 24px; }
.lb-arrow.next { right: 24px; }

.lightbox-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 32px 28px;
}
.lb-thumb {
  flex: 0 0 auto;
  width: 90px;
  height: 64px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.lb-thumb.active { opacity: 1; border-color: var(--orange); }
.lb-thumb .ph-image { height: 100%; font-size: 9px; }
.lb-thumb img,
.lb-thumb .media-thumb-wrap { width: 100%; height: 100%; }
.lb-thumb img { object-fit: cover; display: block; }
.lb-thumb .media-play-icon { width: 26px; height: 26px; font-size: 10px; padding-left: 2px; }

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero { padding: 72px 0 40px; }
.contact-hero h1 { font-size: clamp(38px, 5.4vw, 60px); margin: 18px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  padding: 60px 0 100px;
  border-top: 1px solid var(--line);
}

.hq-block h3 { font-size: 26px; margin-bottom: 28px; }
.hq-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.hq-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 16px;
  padding-top: 2px;
}
.hq-icon svg { width: 18px; height: 18px; }
.hq-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.hq-value { font-size: 15px; line-height: 1.6; color: var(--ink); }

.map-block {
  margin-top: 36px;
  height: 260px;
  border: 1px solid var(--line);
  overflow: hidden;
  filter: grayscale(0.15) contrast(1.05);
}
.map-block iframe { display: block; }

/* Form */
.form-field { margin-bottom: 30px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.form-field label .req { color: var(--orange); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-size: 15.5px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; background: none; cursor: pointer; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: "\25BC";
  position: absolute;
  right: 4px;
  top: 12px;
  font-size: 10px;
  color: var(--orange);
  pointer-events: none;
}
.form-top-rule { border-top: 1px solid var(--line); margin-bottom: 30px; }
.form-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-light);
  margin-top: -18px;
  margin-bottom: 30px;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  margin-top: 18px;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { color: #2f8f4e; }
.form-status.error { color: #d6570f; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}