:root {
  --bg: #070708;
  --bg-2: #0e0e11;
  --bg-3: #151518;
  --bg-4: #1c1c21;
  --line: rgba(243, 239, 230, 0.1);
  --line-strong: rgba(196, 164, 106, 0.45);
  --gold: #c4a46a;
  --gold-2: #e8cf98;
  --gold-dim: rgba(196, 164, 106, 0.12);
  --text: #f3efe6;
  --muted: #9a958c;
  --danger: #c97a62;
  --ok: #8fb38a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --nav-h: 84px;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 200;
}

.skip:focus {
  left: 8px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.container-wide {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.92), rgba(7, 7, 8, 0.55) 70%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, height 0.25s;
}

.site-header.scrolled {
  background: rgba(7, 7, 8, 0.94);
  border-bottom-color: var(--line);
  height: 72px;
}

.nav-wrap {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  flex: none;
}

.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word strong {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.22em;
  font-size: 22px;
}

.logo-word span {
  font-size: 9px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold-2) !important;
  padding: 10px 16px;
  letter-spacing: 0.14em !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: #111 !important;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: rgba(196, 164, 106, 0.08);
  padding: 0;
  cursor: pointer;
  flex: none;
  margin-left: auto;
  z-index: 90;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-2);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.35) 0%, rgba(7, 7, 8, 0.15) 35%, rgba(7, 7, 8, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.55), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
  width: 100%;
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
}

.hero p.lede {
  max-width: 560px;
  color: #d8d2c6;
  font-size: 18px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: #14110c;
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-ghost {
  border-color: rgba(243, 239, 230, 0.28);
  background: rgba(7, 7, 8, 0.45);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn-line {
  border-color: var(--gold);
  color: var(--gold-2);
  background: transparent;
}

.btn-line:hover {
  background: var(--gold);
  color: #111;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.hero-meta span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Sections */
section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head h2,
.page-title h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 0;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 12px;
}

.section-head p,
.page-title p {
  color: var(--muted);
  max-width: 460px;
  margin: 0;
}

.page-hero {
  padding: 160px 0 48px;
  background:
    radial-gradient(800px 280px at 80% 0%, rgba(196, 164, 106, 0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card .body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin: 0;
  font-weight: 500;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-card ul {
  margin: 8px 0 16px;
  padding: 0 0 0 18px;
  color: #cfc9bd;
}

.service-card .from {
  margin-top: auto;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.split h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 500;
}

.split p {
  color: #c8c2b6;
}

.split ul {
  color: #cfc9bd;
  padding-left: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #111;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.project-card.wide {
  grid-column: span 2;
  min-height: 420px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card figcaption,
.project-card .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 22px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.project-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
}

.project-card p {
  margin: 0;
  color: #d3cbb8;
  font-size: 13px;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(196, 164, 106, 0.08), transparent 40%),
    var(--bg-3);
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 8px 0 6px;
  font-weight: 500;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 54px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 18px 0 6px;
}

.price-card .amount small {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 6px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}

.price-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: #d2ccc0;
  font-size: 15px;
}

.price-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 28px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-2);
}

td {
  color: #d8d2c6;
}

tr:last-child td {
  border-bottom: 0;
}

/* Policy */
.policy {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 56px;
}

.policy-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-nav a {
  color: var(--muted);
  font-size: 14px;
  padding-left: 12px;
  border-left: 2px solid transparent;
}

.policy-nav a:hover,
.policy-nav a.active {
  color: var(--text);
  border-left-color: var(--gold);
}

.policy article {
  border-bottom: 1px solid var(--line);
  padding: 0 0 36px;
  margin: 0 0 36px;
}

.policy h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 500;
}

.policy p,
.policy li {
  color: #c9c3b7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-card,
form.quote {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px;
}

.contact-card h3,
form.quote h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 0 0 18px;
  font-weight: 500;
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-row span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-row a:hover {
  color: var(--gold-2);
}

.map {
  margin-top: 16px;
  border: 1px solid var(--line);
  min-height: 220px;
  background: #111;
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.55) contrast(1.05) brightness(1.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: #0b0b0d;
  border: 1px solid var(--line);
  padding: 12px 12px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-success {
  display: none;
  border: 1px solid var(--ok);
  color: var(--ok);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.form-success.show {
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: #050506;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer h4 {
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--text);
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6f6b64;
  font-size: 13px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 28px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox .lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.lightbox figcaption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ddd;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  border-top: 1px solid var(--gold);
  padding-top: 20px;
}

.step b {
  display: block;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
}

.quote p {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.quote span {
  color: var(--muted);
  font-size: 13px;
}

.band {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 8px;
  font-weight: 500;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

/* Mobile */
@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    position: fixed;
    top: 18px;
    right: 16px;
    display: grid !important;
  }

  .nav-links {
    position: fixed;
    inset: 72px 16px auto;
    background: #0c0c0f;
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    justify-content: center;
  }

  .service-grid,
  .price-grid,
  .quotes,
  .process,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card.wide {
    grid-column: span 2;
  }

  .split,
  .policy,
  .contact-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .policy-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .container,
  .container-wide {
    width: calc(100% - 32px);
  }

  h1,
  .h1 {
    font-size: 48px;
  }

  .hero p.lede {
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta,
  .service-grid,
  .price-grid,
  .quotes,
  .process,
  .project-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.wide {
    grid-column: span 1;
    min-height: 280px;
  }

  .legal {
    flex-direction: column;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}
