:root {
  --charcoal: #171d16;
  --panel: #212a1f;
  --cream: #f5f3ee;
  --amber: #d97e1a;
  --amber-dark: #b3670f;
  --olive: #4c5a3f;
  --gray: #5c6358;
  --radius: 4px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, .logo {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}

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

a { color: inherit; }

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

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

.logo {
  font-size: 24px;
  color: var(--cream);
  text-decoration: none;
}
.logo span { color: var(--amber); }

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

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: none;
}

.nav-links a:hover { color: var(--amber); }

.btn-nav {
  background: var(--amber);
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--charcoal) !important;
}
.btn-nav:hover { background: var(--amber-dark); color: var(--cream) !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: var(--cream);
  display: block;
}

/* Hero */
.hero {
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 110px 0 84px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 20px;
  line-height: 1.15;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: #d9dbd4;
  font-family: 'Source Sans 3', sans-serif;
}

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

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--amber);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--amber-dark); color: var(--cream); }

.btn-outline {
  border: 1px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--charcoal); }

/* Services */
.services { padding: 80px 0; }
.services h2 { font-size: 32px; text-align: center; margin-bottom: 40px; }

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

.service-card {
  background: #fff;
  border: 1px solid #ded9cc;
  border-top: 3px solid var(--olive);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}

.service-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 8px;
}

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

.service-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
}

/* Gallery */
.gallery {
  padding: 70px 0;
  background: var(--panel);
  color: var(--cream);
}

.gallery h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* About */
.about {
  padding: 70px 0;
}

.about-text { max-width: 640px; margin: 0 auto; text-align: center; }
.about-text h2 { font-size: 30px; margin-bottom: 18px; }
.about-text p { color: var(--gray); font-size: 16px; font-family: 'Source Sans 3', sans-serif; }

/* Contact */
.contact {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.contact h2 { font-size: 32px; margin-bottom: 12px; }
.contact > .container > p { color: var(--gray); font-size: 16px; margin-bottom: 36px; font-family: 'Source Sans 3', sans-serif; }

.contact-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-details h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--olive);
}

.contact-details a {
  text-decoration: none;
  color: var(--amber-dark);
  font-weight: 700;
  font-size: 20px;
  font-family: 'Source Sans 3', sans-serif;
}

.contact-details address {
  font-style: normal;
  font-size: 16px;
  font-family: 'Source Sans 3', sans-serif;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #b7bdb1;
  padding: 26px 0;
  font-size: 14px;
}

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

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

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