/* =========================================================
   Isar Construction UG – Stylesheet
   Color: Navy #0F2A4A · Gold #C9A961
   ========================================================= */

:root {
  --navy: #0F2A4A;
  --navy-dark: #0A1F38;
  --navy-light: #1B3A5F;
  --gold: #C9A961;
  --gold-dark: #A68A4B;
  --cream: #F8F6F1;
  --beige: #E8E2D4;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --gray: #6B6B6B;
  --gray-light: #B5B5B5;
  --border: #E5E1D6;

  --shadow-sm: 0 1px 2px rgba(15, 42, 74, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 42, 74, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 42, 74, 0.12);

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.logo-mark {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-mark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-brand .logo-mark { height: 56px; }
.logo small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--gold-dark); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,246,241,0.3);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn .arrow { font-size: 16px; transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s var(--ease);
}

@media (max-width: 960px) {
  .nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 20px 32px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav.open a:last-child { border-bottom: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 92px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .num .plus { color: var(--gold); }
.hero-stat .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual .placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,42,74,0.85) 0%, rgba(27,58,95,0.65) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201,169,97,0.08) 20px, rgba(201,169,97,0.08) 40px);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.hero-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.hero-tag .type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 4px;
}
.hero-tag .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.hero-tag .meta {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}
.hero-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
}
.hero-badge .pct {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.hero-badge .txt {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 60px;
    min-height: auto;
  }
  .hero-visual { aspect-ratio: 4/3; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 28px; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--navy-light);
  border-bottom: 1px solid var(--navy-light);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Section ---------- */
.section {
  padding: 120px 0;
}
.section-tight { padding: 80px 0; }

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 700px;
  margin-bottom: 24px;
}
.section-title .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 56px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-head .section-sub { margin-bottom: 0; }

/* ---------- Project grid ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.project-card:hover { transform: translateY(-4px); }
.project-card.span-8 { grid-column: span 8; aspect-ratio: 16/10; }
.project-card.span-6 { grid-column: span 6; aspect-ratio: 4/3; }
.project-card.span-4 { grid-column: span 4; }
.project-card.span-12 { grid-column: span 12; aspect-ratio: 21/9; }

.project-card .img {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,42,74,0.2) 0%, rgba(15,42,74,0.85) 100%),
    linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  transition: transform 0.6s var(--ease);
}
.project-card:nth-child(2) .img {
  background:
    linear-gradient(180deg, rgba(15,42,74,0.2) 0%, rgba(15,42,74,0.85) 100%),
    linear-gradient(135deg, #2A4870 0%, var(--navy) 100%);
}
.project-card:nth-child(3) .img {
  background:
    linear-gradient(180deg, rgba(15,42,74,0.2) 0%, rgba(15,42,74,0.85) 100%),
    linear-gradient(135deg, #1B3A5F 0%, #0A1F38 100%);
}
.project-card:hover .img { transform: scale(1.05); }

.project-card .info {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--cream);
  z-index: 2;
}
.project-card .type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  margin-bottom: 16px;
}
.project-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.project-card .meta {
  font-size: 13px;
  color: rgba(248,246,241,0.7);
}

@media (max-width: 960px) {
  .project-card.span-8, .project-card.span-6, .project-card.span-4, .project-card.span-12 {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-card p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.service-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.service-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.service-card .more::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}
.service-card:hover .more::after { transform: translateX(4px); }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--navy);
  color: var(--cream);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--navy-light);
}
.stat-item:last-child { border-right: none; }
.stat-item .big {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-item .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.7);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--navy-light); }
  .stat-item:last-child { border-bottom: none; }
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  position: relative;
}
.step .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.step .step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.step h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.step p {
  color: var(--ink-soft);
  font-size: 15px;
}
@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Advantages ---------- */
.adv-section {
  background: var(--white);
}
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.adv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.adv-item .check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
}
.adv-item div h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.adv-item div p {
  font-size: 13px;
  color: var(--gray);
}
@media (max-width: 960px) {
  .adv-grid { grid-template-columns: 1fr; gap: 48px; }
  .adv-list { grid-template-columns: 1fr; }
}

/* ---------- CTA ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,169,97,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,169,97,0.06) 0%, transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner .section-label { color: var(--gold); justify-content: center; }
.cta-banner .section-label::before { background: var(--gold); }
.cta-banner h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
}
.cta-banner h2 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.cta-banner p {
  font-size: 18px;
  color: rgba(248,246,241,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(248,246,241,0.8);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.footer-contact a:hover { color: var(--gold); }
.footer h5 {
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(248,246,241,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(248,246,241,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { justify-content: flex-start; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 800px;
  margin-bottom: 24px;
}
.page-hero h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.page-hero .lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
}
.crumbs {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--gold-dark); }
.crumbs .sep { margin: 0 10px; color: var(--gold); }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.two-col .side h3 {
  font-size: 28px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}
.two-col .body p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.7;
}
.two-col .body h3 {
  font-size: 24px;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Job cards ---------- */
.jobs-grid {
  display: grid;
  gap: 16px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.25s var(--ease);
}
.job-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.job-card .info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.job-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gray);
}
.job-card .meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-card .meta span::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
}
@media (max-width: 600px) {
  .job-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: 20px;
  max-width: 640px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
}
.form textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
}
.form-check input { width: 18px; height: 18px; margin-top: 2px; }
.form-check a { color: var(--gold-dark); text-decoration: underline; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Contact info card ---------- */
.contact-card {
  background: var(--navy);
  color: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-card h3 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-card .info-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--navy-light);
}
.contact-card .info-row:last-child { border-bottom: none; }
.contact-card .info-row .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.6);
  margin-bottom: 4px;
}
.contact-card .info-row .val {
  font-size: 16px;
  color: var(--cream);
}
.contact-card .info-row a:hover { color: var(--gold); }

/* ---------- Legal text ---------- */
.legal-content h2 {
  font-size: 24px;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}
.legal-content p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.legal-content ul {
  margin-bottom: 14px;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 15px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }

/* ---------- Image placeholder note ---------- */
.img-note {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(248,246,241,0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted { color: var(--gray); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
