:root {
  --charcoal: #211d1a;
  --charcoal-soft: #34302c;
  --cream: #faf6f0;
  --cream-dim: #f0e9df;
  --gold: #b3874b;
  --gold-dark: #96703c;
  --text-muted: #6f665c;
  --max-width: 1140px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(33, 29, 26, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 12px;
}

.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-title.center { text-align: center; margin-bottom: 44px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--cream);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(33, 29, 26, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover { color: var(--gold-dark); }

.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 55%, #4a3f33 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(179, 135, 75, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(179, 135, 75, 0.12), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero .eyebrow { color: #d9b98a; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
}

.hero h1 .emoji {
  font-size: 0.82em;
  vertical-align: -0.06em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #e7ddce;
  max-width: 500px;
  margin-bottom: 24px;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.specialties .pill {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f0e9df;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--charcoal); }

/* Gallery */
.gallery { padding: 96px 0; }

.gallery-grid {
  columns: 4 240px;
  column-gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease;
  display: block;
}

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

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.gallery-empty a { color: var(--gold-dark); font-weight: 600; }

/* About */
.about { background: var(--cream-dim); padding: 96px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-text p { color: var(--charcoal-soft); max-width: 46ch; }

.about-callout {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-dark) !important;
  margin: 4px 0 20px !important;
}

.about-image {
  min-height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold) 0%, var(--charcoal) 120%);
  box-shadow: var(--shadow);
}

/* Contact */
.contact { padding: 96px 0; }

.contact-inner { max-width: 560px; margin: 0 auto; text-align: left; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 20px;
}

.contact-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.contact-list a:hover { color: var(--gold-dark); }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  margin-top: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 2px 8px rgba(33, 29, 26, 0.18);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-icon:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-icon.facebook { background: #1877f2; }
.social-icon.tiktok { background: #010101; }

.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #cfc6ba;
  padding: 28px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social { display: flex; align-items: center; gap: 20px; }
.footer-social a:hover { color: #fff; }

.footer-social .social-icon {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image { min-height: 220px; order: -1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.85rem;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(33,29,26,0.08);
    display: none;
  }

  .nav.open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; }
  .nav a.nav-cta {
    width: auto;
    padding: 10px 20px;
    margin-top: 8px;
  }
}
