:root {
  --forest: #1f2b23;
  --forest-light: #2c3b30;
  --gold: #b08d4f;
  --gold-dark: #8f7038;
  --cream: #f7f4ee;
  --tan: #e8e0d0;
  --gray: #6b6459;
  --radius: 3px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--forest);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--gold); font-weight: 400; font-size: 17px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #d8d4c8;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--gold);
  padding: 9px 18px;
  border-radius: var(--radius);
  color: var(--forest) !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--gold-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.eyebrow-dark { color: var(--gold-dark); }

.hero h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  margin: 0 0 20px;
  line-height: 1.12;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 34px;
  font-size: 17px;
  color: #d8d4c8;
  font-family: 'Inter', sans-serif;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Work gallery */
.work { padding: 90px 0; background: var(--cream); }
.work h2 { font-size: 32px; text-align: center; margin-bottom: 40px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.work-grid figure.span-2 {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.work-grid figure:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-grid figure.span-2 { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* Services */
.services { padding: 90px 0; background: #fff; }
.services h2 { font-size: 32px; text-align: center; margin-bottom: 44px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.service-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

/* About */
.about {
  padding: 90px 0;
  background: var(--forest);
  color: #fff;
  text-align: center;
}

.about-inner { max-width: 680px; margin: 0 auto; }
.about h2 { font-size: 32px; margin-bottom: 18px; }
.about p { color: #d8d4c8; font-size: 16px; font-family: 'Inter', sans-serif; margin-bottom: 20px; }
.about .btn-primary { margin-top: 10px; }

/* Contact */
.contact { padding: 90px 0; background: var(--cream); text-align: center; }
.contact h2 { font-size: 32px; margin-bottom: 12px; }
.contact p { color: var(--gray); margin-bottom: 34px; font-size: 16px; font-family: 'Inter', sans-serif; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
  background: var(--forest);
  color: #b8b3a5;
  padding: 26px 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  text-decoration: none;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px;
    gap: 18px;
    display: none;
    border-bottom: 3px solid var(--gold);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}
