:root {
  --gold: #c9a227;
  --gold-dark: #a5811f;
  --black: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #f7f5f0;
  --border: #e7e2d6;
  --white: #ffffff;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

/* Top bar */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar-item { color: #d8d4c8; transition: color 0.2s; }
.topbar-item:hover { color: var(--gold); }
.topbar-area { margin-left: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--black);
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--black);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--black) 0%, #2b2b2b 60%, var(--gold-dark) 150%);
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  color: #d8d4c8;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-block { width: 100%; text-align: center; border: none; cursor: pointer; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--light-gray); }
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.section-lead { color: var(--gray); max-width: 560px; margin: 0 auto 50px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.portfolio-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}
.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  gap: 8px;
}
.portfolio-placeholder span { font-size: 2.4rem; opacity: 0.4; }
.portfolio-placeholder p { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }
.img-missing .portfolio-placeholder { display: flex; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info p { color: var(--gray); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-detail a { font-weight: 500; }
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #d8d4c8;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .logo { color: var(--white); }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .topbar-area { margin-left: 0; }
}
