:root {
  --bg: #fbf8f1;
  --fg: #2b1f12;
  --muted: #6b5b48;
  --primary: #3a2a1a;   /* deep bark brown */
  --accent: #c9963f;    /* savanna gold */
  --gold: #d4a55a;
  --cream: #f7ecd6;
  --border: #e2d6c1;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 30;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--cream); }
.brand-logo {
  width: 48px; height: 48px;
  border-radius: 6px;
  object-fit: cover;
  outline: 1px solid rgba(255,255,255,0.2);
}
.brand-logo.small { width: 32px; height: 32px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.nav-links { display: none; gap: 2rem; font-size: 0.875rem; color: rgba(247,236,214,0.9); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--cream); border-radius: 2px; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-links.open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(58,42,26,0.95);
  padding: 1.5rem;
  gap: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-outline {
  border-color: rgba(247,236,214,0.4);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
}
.btn-outline:hover { background: var(--cream); color: var(--primary); }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--gold); }
.btn-ghost { border-color: rgba(247,236,214,0.5); color: var(--cream); }
.btn-ghost:hover { background: rgba(247,236,214,0.1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58,42,26,0.6),
    rgba(58,42,26,0.2) 50%,
    rgba(58,42,26,0.8)
  );
}
.hero-content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--cream);
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
}
.hero-title .italic { font-style: italic; display: block; }
.accent { color: var(--accent); }
.hero-sub {
  margin-top: 2rem;
  max-width: 36rem;
  color: rgba(247,236,214,0.85);
  font-size: 1.125rem;
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(247,236,214,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) { .section { padding: 8rem 1.5rem; } }

.section-dark {
  max-width: none;
  background: var(--primary);
  color: var(--cream);
}
.section-dark .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section-dark .grid-3 { max-width: 1100px; margin: 4rem auto 0; padding: 0 1.5rem; }

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.eyebrow-light { color: var(--accent); }
.eyebrow.small { letter-spacing: 0.2em; }

.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
}
.section-title.light { color: var(--cream); }

.prose {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}
.prose + .prose { margin-top: 1rem; }
.center { text-align: center; }
.center-text { margin-left: auto; margin-right: auto; max-width: 36rem; }
.narrow { max-width: 42rem; }

/* About */
.grid-2 {
  display: grid; gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
.about-image-wrap { position: relative; }
.about-image {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.about-frame {
  display: none;
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  width: 8rem; height: 8rem;
  border: 1px solid var(--accent);
}
@media (min-width: 768px) { .about-frame { display: block; } }

/* Experience */
.grid-3 {
  display: grid; gap: 2.5rem;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.exp-card { border-top: 1px solid rgba(201,150,63,0.4); padding-top: 1.5rem; }
.exp-card h3 {
  font-size: 1.5rem;
  color: var(--cream);
}
.exp-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(247,236,214,0.75);
}

/* Gallery */
.gallery-section { max-width: 1300px; }
.gallery-head { margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
}
.gallery-grid .g-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 3/4;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .gallery-grid .g-large { aspect-ratio: auto; height: 100%; }
}

/* Quote band */
.quote-band {
  position: relative;
  height: 60vh; min-height: 420px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
}
.quote-overlay { position: absolute; inset: 0; background: rgba(58,42,26,0.6); }
.quote-band blockquote {
  position: relative; z-index: 10;
  max-width: 48rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  color: var(--cream);
  line-height: 1.3;
}

/* Contact */
.contact { max-width: 900px; }
.contact-grid {
  margin-top: 3.5rem;
  display: grid; gap: 2rem;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-grid p:last-child { margin-top: 0.5rem; color: var(--fg); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--primary);
  color: rgba(247,236,214,0.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
.footer-inner p { font-size: 0.75rem; }
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; }
}
