:root {
  --bg: #150d0a;
  --bg-alt: #1e1310;
  --panel: #241713;
  --gold-1: #b8860b;
  --gold-2: #f5d67a;
  --gold-3: #d4af37;
  --text: #f2ece2;
  --text-dim: #b8ada0;
  --border: #3a2a22;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

img { max-width: 100%; display: block; }

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

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 13, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.brand-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 10px;
}

nav.main-nav {
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.5px;
}

nav.main-nav a.active,
nav.main-nav a:hover {
  color: var(--gold-3);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 90px 24px 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at top, var(--bg-alt) 0%, var(--bg) 70%);
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 60px);
  margin: 0 0 10px;
}

.hero .subtitle {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 28px;
}

.hero p.lead {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--text-dim);
  font-size: 17px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--gold-3);
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1a1208;
}

.btn-primary:hover {
  filter: brightness(1.1);
  color: #1a1208;
}

.btn-outline {
  color: var(--gold-3);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-2);
}

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

/* Sections */
section {
  padding: 70px 24px;
}

section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold-3);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0;
}

.section-head p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 14px auto 0;
}

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--gold-1);
  transform: translateY(-3px);
}

.card .icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 10px;
  font-size: 21px;
  color: var(--gold-2);
}

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

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-dim);
  font-size: 14px;
}

.card ul li { margin-bottom: 6px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  border: 1px dashed var(--border);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.gallery-item.photo {
  border-style: solid;
  padding: 0;
}

.gallery-item.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list .label {
  color: var(--text-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-list .value {
  font-size: 17px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form.contact-form label {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 6px;
  display: block;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-3);
}

form.contact-form textarea { resize: vertical; min-height: 120px; }

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

footer.site-footer a { color: var(--text-dim); }
footer.site-footer a:hover { color: var(--gold-3); }

/* Responsive */
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    gap: 16px;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .gallery-grid { grid-template-columns: 1fr; }
}
