:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --ink: #1c1812;
  --ink-soft: #4a4133;
  --muted: #8a8278;
  --line: #e6d4a3;
  --line-soft: #ece6da;
  --gold: #b08840;
  --gold-deep: #836229;
  --gold-light: #c9a45a;
  --dark: #1c1812;
  --dark-soft: #2a241a;
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 0.8rem;
}
.eyebrow.light { color: var(--gold-deep); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  color: var(--ink);
}
.brand-logo {
  width: 320px;
  max-height: 110px;
  height: auto;
  object-fit: contain;
  display: block;
}
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--gold-deep); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--gold-deep); color: #fff !important; }

/* Hero */
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 149, 76, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 820px; }
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 1.5rem 0 2rem;
  max-width: 680px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.section-dark h2 { color: var(--ink); }
.section-dark p { color: var(--ink-soft); }

.section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.section-head h2,
.about-grid h2,
.contact-grid h2 {
  position: relative;
  padding-bottom: 0.6rem;
}
.section-head h2::after,
.about-grid h2::after,
.contact-grid h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
}
.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.75rem 1.6rem;
  border-radius: 6px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(138, 111, 54, 0.4);
}
.service-card h3 { color: var(--gold-deep); }
.service-card p { font-size: 0.97rem; margin: 0; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background:
    repeating-linear-gradient(45deg, var(--bg-alt) 0 12px, #e6dabc 12px 24px);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(138, 111, 54, 0.5);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item img[src=""],
.gallery-item img:not([src]) { display: none; }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, rgba(28, 24, 18, 0) 0%, rgba(28, 24, 18, 0.78) 100%);
  pointer-events: none;
}

/* Projects */
.projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.projects-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}
.project-meta {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 24px -18px rgba(138, 111, 44, 0.4);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 4px;
}
.contact-list a, .contact-list span:not(.contact-label) {
  color: var(--ink);
  font-size: 1.05rem;
}
.contact-list a:hover { color: var(--gold-deep); }

/* Footer */
.site-footer {
  background: #fff;
  color: var(--muted);
  padding: 1.5rem 0;
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-inner p { margin: 0; color: var(--muted); }
.footer-tag { font-style: italic; color: var(--gold-deep); }

/* Responsive */
@media (max-width: 760px) {
  .nav { gap: 1rem; }
  .nav a:not(.nav-cta) { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .projects-list li { flex-direction: column; gap: 0.25rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.25rem; }
}
