:root {
  --black: #0a0a0a;
  --card: #141414;
  --gold: #c9a227;
  --gold-bright: #e0b830;
  --cream: #f0ede4;
  --brass: #3d3220;
  --muted: #8a8578;
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  color: var(--cream);
  line-height: 0.95;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--brass);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.brand {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--brass);
}
.page-hero .hero-tag {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(38px, 6vw, 58px);
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--muted);
  max-width: 480px;
  font-size: 17px;
}

/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: min(50vw, 460px);
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 10%, rgba(10,10,10,0.15) 65%, rgba(10,10,10,0.05) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 40px 24px 56px;
  margin: 0 auto;
  width: 100%;
  animation: fadeUp 0.8s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(42px, 8vw, 74px);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--cream);
  opacity: 0.85;
  max-width: 460px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}
.btn-secondary {
  border: 1px solid var(--muted);
  color: var(--cream);
  padding: 15px 26px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
}

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--card); }
.section-head {
  max-width: 520px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--brass);
  border-radius: 8px;
  overflow: hidden;
}
.service-card .card-text {
  padding: 20px 22px;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--gold-bright);
}
.service-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- TEASER GRID (home) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.teaser-card {
  background: var(--card);
  border: 1px solid var(--brass);
  border-radius: 6px;
  padding: 26px;
}
.teaser-card h3 {
  font-size: 21px;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.teaser-card p {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 780px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ---------- PHOTO STRIP ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
}
.photo-strip-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) {
  .photo-strip-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--brass);
}
.about-photo img { width: 100%; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}
.about-stats .stat {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.about-stats .stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.about-body p {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 16px;
}
.about-body p:first-child {
  font-size: 19px;
}
@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA / CONTACT ---------- */
.cta {
  padding: 90px 0;
  border-top: 1px solid var(--brass);
}
.cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 560px;
  margin-bottom: 20px;
}
.cta p {
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 32px;
  font-size: 16px;
}
.contact-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contact-item .label {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-item .value {
  font-size: 18px;
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--brass);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

::selection { background: var(--gold); color: var(--black); }
