:root {
  --black: #141414;
  --ink: #1e1e1e;
  --gray: #55524c;
  --line: #e8e4dc;
  --paper: #ffffff;
  --paper-warm: #faf8f4;
  --gold: #b4913f;
  --gold-light: #d3b36e;
  --gold-dark: #96762e;
  --radius: 10px;
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-gold {
  background: linear-gradient(160deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #17130a;
  box-shadow: 0 2px 10px rgba(180, 145, 63, 0.35);
}
.btn-gold:hover { box-shadow: 0 4px 16px rgba(180, 145, 63, 0.5); }
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #000; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 88px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 58px; width: auto; display: block; }
.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.site-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--gold-dark); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(15, 14, 12, 0.82), rgba(15, 14, 12, 0.66) 55%, rgba(15, 14, 12, 0.88)),
    url("images/work/hero-firepit.webp") center 62% / cover no-repeat,
    var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 108px 24px 96px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hero h1 .gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 26px auto 34px;
  max-width: 560px;
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges {
  list-style: none;
  display: flex;
  gap: 10px 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.hero-badges li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 9px;
  vertical-align: 1px;
}
.lic-num { color: rgba(255, 255, 255, 0.45); margin-left: 6px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-intro {
  max-width: 640px;
  color: var(--gray);
  font-size: 1.06rem;
  margin-bottom: 48px;
}
.section-dark {
  background: linear-gradient(180deg, #191919, var(--black));
  color: #fff;
}
.section-dark .section-kicker { color: var(--gold-light); }
.section-dark .section-intro { color: rgba(255, 255, 255, 0.75); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
  border-color: var(--gold-light);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #17130a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.9rem; color: var(--gray); }
.service-card-wide {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.service-card-wide .service-icon { flex-shrink: 0; margin-bottom: 0; }
.service-card-wide p { max-width: 720px; }

/* ---------- Before / After ---------- */
.ba-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-bottom: 72px;
}
.ba-pair { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: center; }
.ba-pair figcaption h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.ba-pair figcaption p { font-size: 0.94rem; color: rgba(255, 255, 255, 0.72); }
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ba-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.ba-shot img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(14, 14, 14, 0.78);
  color: rgba(255, 255, 255, 0.85);
}
.ba-tag-after {
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #17130a;
}
.ba-tag-progress {
  background: rgba(14, 14, 14, 0.78);
  color: var(--gold-light);
  border: 1px solid rgba(211, 179, 110, 0.55);
}
.ba-images-3 { grid-template-columns: 1fr 1fr 1fr; }
.ba-portrait .ba-shot { aspect-ratio: 3 / 4; }

/* ---------- Gallery ---------- */
.gallery-heading {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-top: 8px;
}
.jobs-intro {
  margin: -10px 0 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.jobs-grid .job-item { aspect-ratio: 3 / 4; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius);
  box-shadow: 16px 16px 0 -2px var(--paper-warm), 16px 16px 0 0 var(--gold-light);
}
.about-lede {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.about-text > p { margin-bottom: 16px; color: var(--gray); }
.about-text > p.about-lede { color: var(--gold-dark); }
.about-points {
  list-style: none;
  margin: 24px 0 30px;
  border-top: 1px solid var(--line);
}
.about-points li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.about-points strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-container { max-width: 780px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-warm);
  margin-bottom: 12px;
  transition: border-color 0.15s ease;
}
.faq-item[open] { border-color: var(--gold-light); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item > p {
  padding: 0 22px 20px;
  color: var(--gray);
  font-size: 0.97rem;
}
.faq-item a { color: var(--gold-dark); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-section { text-align: center; }
.contact-section .section-intro { margin-left: auto; margin-right: auto; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(180, 145, 63, 0.1);
}
.contact-card svg { color: var(--gold-light); }
.contact-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contact-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ---------- Lightbox ---------- */
.ba-shot img, .gallery-item img, .about-photo img { cursor: zoom-in; }
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.975);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  text-align: center;
  max-width: 700px;
}
.lightbox img { cursor: default; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox-close:hover { color: #fff; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  z-index: 2;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lightbox-nav:hover {
  background: rgba(180, 145, 63, 0.4);
  border-color: var(--gold-light);
}
.lightbox-nav:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

.lightbox-counter {
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .lightbox { padding: 20px 12px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.7rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox img { max-width: 96vw; max-height: 74vh; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-pair { grid-template-columns: 1fr; gap: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; }
  .contact-cards { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-images-3 { grid-template-columns: 1fr; }
  .service-card-wide { flex-direction: column; }
  .hero-inner { padding: 72px 24px 64px; }
  .header-cta { padding: 10px 14px; font-size: 0.85rem; }
  .header-inner { height: 72px; gap: 12px; }
  .brand-logo { height: 44px; }
  .footer-inner { justify-content: center; text-align: center; }
}
