/* =====================================================
   holzbauhenkelmann.de — Stylesheet
   Farbpalette aus dem Logo-Banner
   ===================================================== */

:root {
  /* Farben aus dem Logo */
  --bronze: #9c7a3c;
  --bronze-dark: #7a5e2d;
  --bronze-soft: #c9a86a;
  --bronze-light: #e6dec7;
  --ink: #1f1a14;
  --ink-soft: #4a4138;
  --ink-mute: #7a6f63;
  --paper: #fbf8f2;
  --paper-2: #f3ecdb;
  --paper-3: #e8dfc7;
  --white: #ffffff;
  --line: rgba(31,26,20,0.12);
  --line-strong: rgba(31,26,20,0.25);

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-accent: "Cormorant Garamond", "Georgia", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--bronze);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { content: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--ink);
  text-transform: uppercase;
}
h1 { font-size: clamp(48px, 8vw, 124px); font-weight: 800; }
h2 { font-size: clamp(36px, 5.5vw, 78px); font-weight: 700; }
h3 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 700; }
h4 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 700; }

.lead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink-soft);
  margin: 0 0 24px;
  text-wrap: pretty;
  font-weight: 400;
}

p { margin: 0 0 14px; text-wrap: pretty; }

.serif-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--bronze-light); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}
.btn-primary:hover { background: var(--bronze-dark); border-color: var(--bronze-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-on-dark {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.45);
}
.btn-on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Logo / monogram ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  line-height: 1;
}
.logo .mono {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}
.logo-text .tag {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bronze-dark);
}

/* ---------- Navigation ---------- */
.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--container);
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 16px 12px 22px;
  background: rgba(251,248,242,0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 40px -20px rgba(31,26,20,0.4);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(251,248,242,0.96);
  box-shadow: 0 12px 40px -18px rgba(31,26,20,0.35);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 2px;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a.active { color: var(--bronze); }
.nav-links a.active::after { transform: scaleX(1); }
.nav .btn { padding: 10px 18px; font-size: 14px; }
.nav-toggle { display: none; }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 60;
  display: none;
  flex-direction: column;
  padding: 90px var(--gutter) 40px;
  gap: 8px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .btn-primary { display: none; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: var(--bronze);
    border-radius: 999px;
    border: none;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 18px; height: 2px;
    background: var(--paper);
    position: relative;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: ""; position: absolute; left: 0;
    width: 18px; height: 2px; background: var(--paper);
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu .close {
    position: absolute; top: 24px; right: 24px;
    background: var(--bronze);
    color: var(--paper);
    border: none;
    width: 44px; height: 44px;
    border-radius: 999px;
    font-size: 22px;
    cursor: pointer;
  }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 10vw, 140px);
}
.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(31,26,20,0.30) 0%, rgba(31,26,20,0.05) 25%, rgba(31,26,20,0.55) 75%, rgba(31,26,20,0.85) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(156,122,60,0.15), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero .eyebrow { color: var(--bronze-soft); }
.hero .eyebrow::before { background: var(--bronze-soft); }
.hero h1 {
  color: var(--paper);
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero h1 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--bronze-soft);
  letter-spacing: -0.01em;
  display: block;
}
.hero .lead {
  color: rgba(251,248,242,0.85);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  font-family: inherit;
}
.hero-play-icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.hero-play:hover .hero-play-icon {
  transform: scale(1.08);
  background: var(--bronze-soft);
}

.hero-meta {
  position: absolute;
  bottom: 28px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.55);
  pointer-events: none;
}
.hero-meta .right { text-align: right; }
.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-scroll-cue::after {
  content: "";
  width: 1px; height: 28px;
  background: rgba(251,248,242,0.4);
  margin-left: 4px;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust {
  background: var(--paper);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0 8px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
}
.trust-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-num { font-size: 28px; }
}

/* =====================================================
   SERVICES — alternating
   ===================================================== */
.service {
  padding: clamp(80px, 9vw, 120px) 0;
  position: relative;
}
.service + .service { border-top: 1px solid var(--line); }
.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.service.reverse .service-grid { grid-template-columns: 1fr 1.15fr; }
.service.reverse .service-image { order: 2; }
.service-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.service-image:hover img { transform: scale(1.04); }
.service-image .number {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--paper);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.service-content .lead { margin-bottom: 24px; }
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.service-bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}
.service-bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  background: var(--bronze);
  border-radius: 999px;
  transform: translateY(-2px);
}
@media (max-width: 880px) {
  .service-grid,
  .service.reverse .service-grid { grid-template-columns: 1fr; }
  .service.reverse .service-image { order: 0; }
  .service-bullets { grid-template-columns: 1fr; }
}

/* =====================================================
   QUOTE / ABOUT
   ===================================================== */
.quote-section {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-accent);
  font-size: 120px;
  color: var(--bronze);
  line-height: 0.7;
  margin-bottom: 12px;
  user-select: none;
}
.quote-body {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin: 0 auto 32px;
  color: var(--paper);
  text-wrap: balance;
}
.quote-attrib {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--bronze-soft);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quote-attrib::before,
.quote-attrib::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bronze);
}
.quote-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,106,0.2);
}
.quote-stat .n {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: var(--bronze-soft);
  line-height: 1;
  margin-bottom: 6px;
}
.quote-stat .l {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
  opacity: 0.7;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-head h2 { margin-bottom: 0; }
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.masonry {
  columns: 3;
  column-gap: 18px;
}
@media (max-width: 880px) { .masonry { columns: 2; } }
@media (max-width: 520px) { .masonry { columns: 1; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
  cursor: zoom-in;
  transition: transform .3s ease;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .8s ease, filter .3s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 18px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s ease;
}
.masonry-item:hover .caption { opacity: 1; }

/* =====================================================
   TESTIMONIAL
   ===================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.testimonial-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper-3);
}
.testimonial-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.testimonial-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--bronze);
  margin-bottom: 18px;
  font-size: 18px;
}
.testimonial-body {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 400;
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.testimonial-author strong {
  color: var(--ink);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.testimonial-dots {
  margin-top: 28px;
  display: flex;
  gap: 6px;
}
.testimonial-dots span {
  width: 28px;
  height: 2px;
  background: var(--line-strong);
  border-radius: 2px;
}
.testimonial-dots span.active { background: var(--bronze); }

@media (max-width: 780px) {
  .testimonial-grid { grid-template-columns: 1fr; text-align: center; }
  .testimonial-photo { width: 180px; margin: 0 auto; }
  .testimonial-stars { justify-content: center; }
}

/* =====================================================
   JOBS / CAREER
   ===================================================== */
.jobs-section {
  background: var(--bronze);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.jobs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.12), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.15), transparent 50%);
  pointer-events: none;
}
.jobs-section .container { position: relative; z-index: 1; }
.jobs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-end;
  margin-bottom: 56px;
}
.jobs-head h2 { color: var(--paper); margin: 0; }
.jobs-head .eyebrow { color: rgba(255,255,255,0.7); }
.jobs-head .eyebrow::before { background: rgba(255,255,255,0.5); }
.jobs-head .lead { color: rgba(255,255,255,0.85); margin: 0; }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.job-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 28px 26px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 24px -12px rgba(31,26,20,0.4);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(31,26,20,0.4);
}
.job-stamp {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--ink);
  color: var(--bronze-soft);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.job-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.job-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-3);
  color: var(--ink-soft);
}
.job-card h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  text-transform: none;
  margin: 4px 0 0;
  letter-spacing: -0.005em;
}
.job-summary {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.job-toggle {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--bronze);
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.job-toggle::after {
  content: "→";
  transition: transform .2s ease;
}
.job-toggle:hover::after { transform: translateX(4px); }

/* job modal */
.job-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31,26,20,0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s ease;
}
.job-modal-backdrop.open { display: flex; opacity: 1; }
.job-modal {
  background: var(--paper);
  color: var(--ink);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 40px clamp(28px, 5vw, 56px);
  position: relative;
  transform: translateY(20px);
  transition: transform .3s ease;
}
.job-modal-backdrop.open .job-modal { transform: translateY(0); }
.job-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--paper-2);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  transition: background .2s ease;
}
.job-modal-close:hover { background: var(--paper-3); }
.job-modal h3 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 8px; text-transform: none; }
.job-modal .job-tags { margin-bottom: 22px; }
.job-modal h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  margin: 32px 0 12px;
}
.job-modal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.job-modal ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.job-modal ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 10px; height: 1.5px;
  background: var(--bronze);
}
.job-modal-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: var(--ink);
  color: var(--bronze-light);
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: flex-start;
}
.contact-grid .eyebrow { color: var(--bronze-soft); }
.contact-grid .eyebrow::before { background: var(--bronze-soft); }
.contact-grid h2 { color: var(--paper); margin-bottom: 22px; }
.contact-grid .lead { color: rgba(251,248,242,0.78); margin-bottom: 36px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  color: rgba(251,248,242,0.85);
}
.contact-info .row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-info .row:first-child { border-top: none; padding-top: 0; }
.contact-info .row .ico {
  width: 22px; height: 22px;
  color: var(--bronze-soft);
  flex: 0 0 auto;
  margin-top: 2px;
}
.contact-info .row .label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 4px;
}
.contact-info .row a { color: var(--paper); }
.contact-info .row a:hover { color: var(--bronze-soft); }

/* Form */
form.contact-form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.field-wrap { position: relative; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  font-size: 16px;
  color: var(--paper);
  font-family: inherit;
  transition: border-color .2s ease;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a86a' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
}
.contact-form option { background: var(--ink); color: var(--paper); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bronze-soft);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(251,248,242,0.4); }

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(251,248,242,0.7);
  line-height: 1.45;
}
.checkbox-row input[type="checkbox"] {
  appearance: none;
  width: 20px; height: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  margin-top: 2px;
  position: relative;
  transition: all .2s ease;
}
.checkbox-row input[type="checkbox"]:checked {
  background: var(--bronze);
  border-color: var(--bronze);
}
.checkbox-row input[type="checkbox"]:checked::after {
  content: "✓";
  color: var(--paper);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.checkbox-row a { color: var(--bronze-soft); text-decoration: underline; }

.form-submit {
  margin-top: 8px;
  justify-self: flex-start;
}

.form-success {
  background: rgba(156,122,60,0.15);
  border: 1px solid var(--bronze);
  padding: 24px;
  border-radius: var(--radius);
  color: var(--paper);
  display: none;
}
.form-success.show { display: block; }

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

/* =====================================================
   MAP STRIP
   ===================================================== */
.map-strip {
  height: 360px;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.map-strip iframe,
.map-strip-placeholder {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-strip-placeholder {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(31,26,20,0.06) 50%, transparent 50.5%) 0 0/80px 100% repeat-x,
    linear-gradient(0deg, transparent 49.5%, rgba(31,26,20,0.06) 50%, transparent 50.5%) 0 0/100% 60px repeat-y,
    var(--paper-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-card {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  background: var(--paper);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -20px rgba(31,26,20,0.35);
  max-width: 320px;
  z-index: 2;
}
.map-card h4 {
  text-transform: none;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--bronze-dark);
}
.map-card p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.map-card .hours {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.map-pin .dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--bronze);
  border: 3px solid var(--paper);
  box-shadow: 0 6px 14px rgba(31,26,20,0.4);
}
.map-pin .pulse {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--bronze);
  opacity: 0.6;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  color: var(--bronze-light);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--bronze-soft); }
.footer-brand .logo-text .tag { color: var(--bronze-light); opacity: 0.7; }
.footer-brand p {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(251,248,242,0.55);
  max-width: 36ch;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin: 0 0 18px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(251,248,242,0.7);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--bronze-soft); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(251,248,242,0.4);
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(251,248,242,0.55); }
.footer-legal a:hover { color: var(--bronze-soft); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =====================================================
   Light-box for gallery
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,12,8,0.92);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--paper);
  width: 44px; height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
