:root {
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --paper: #f7f3ec;
  --paper-2: #efe8dc;
  --gold: #c4a36a;
  --gold-2: #d6bc8a;
  --line: rgba(196, 163, 106, 0.35);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 236, 0.88);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.logo { height: 46px; width: auto; }
.brand { display: flex; align-items: center; gap: 12px; font-family: Georgia, serif; letter-spacing: 2.5px; font-size: 15px; }
.brand .mark { height: 42px; width: 42px; }
.logo-circle { height: 58px; width: auto; }
.light-logo { height: 86px; }
.brand.light { color: #f4efe6; }
.hero-mark { position: relative !important; width: 220px; height: auto; inset: auto !important; margin-bottom: 16px; object-fit: contain !important; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.nav-links { display: flex; gap: 28px; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; }
.nav-links a { opacity: 0.75; }
.nav-links a:hover { opacity: 1; color: #8d6d32; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1a1a1a;
  padding: 12px 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn:hover { background: #b28d4e; }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #1a1a1a; }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: end start;
  color: var(--paper);
  overflow: hidden;
}
.hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.25) 0%, rgba(10,10,10,.72) 100%);
}
.hero-copy { position: relative; z-index: 2; padding: 0 0 80px; max-width: 720px; }
.eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 500;
}
.hero p { margin: 18px 0 28px; max-width: 520px; color: #efe6d6; }

.section { padding: 92px 0; }
.section h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
}
.lead { margin-top: 14px; color: var(--ink-soft); max-width: 620px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.stat {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.stat b { display: block; font-size: 28px; font-family: Georgia, serif; color: #8d6d32; }
.stat span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #666; }
.about-photo { height: 520px; object-fit: cover; width: 100%; box-shadow: var(--shadow); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { height: 230px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card h3 { font-family: Georgia, serif; font-size: 24px; margin-bottom: 6px; }
.meta { color: #8d6d32; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }

.services { background: #111; color: var(--paper); }
.services .lead { color: #cfc6b6; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.svc {
  border: 1px solid rgba(196,163,106,.28);
  padding: 24px 20px;
  min-height: 180px;
}
.svc h3 { font-family: Georgia, serif; margin: 10px 0 8px; }
.num { color: var(--gold); letter-spacing: 2px; font-size: 12px; }

.cta {
  background:
    linear-gradient(180deg, rgba(12,12,12,.55), rgba(12,12,12,.75)),
    url("assets/living-gold.jpg") center/cover no-repeat;
  color: var(--paper);
  text-align: center;
}
.cta p { margin: 16px auto 26px; max-width: 560px; color: #efe6d6; }

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
form input, form textarea, form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 12px;
  font: inherit;
}
form textarea { grid-column: 1 / -1; min-height: 120px; resize: vertical; }
form button { grid-column: 1 / -1; width: fit-content; }

footer {
  background: #0e0e0e;
  color: #d8d0c2;
  padding: 40px 0 28px;
}
.foot {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.fine { opacity: .6; font-size: 13px; margin-top: 18px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .about-grid, .cards, .svc-grid, form { grid-template-columns: 1fr; }
  .about-photo { height: 320px; }
  .hero { min-height: 78vh; }
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.filmstrip img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .filmstrip { grid-template-columns: repeat(2, 1fr); }
}
