/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:         #0C0704;
  --bg-2:       #130C07;
  --bg-3:       #1C1109;
  --bg-card:    #201408;
  --oak:        #3D2210;
  --oak-light:  #5C3520;
  --gold:       #C49A38;
  --gold-light: #D9B45A;
  --gold-muted: #8A6A28;
  --text:       #E8D5BC;
  --text-muted: #9A7A58;
  --text-dim:   #5C4530;
  --border:     rgba(196, 154, 56, 0.15);
  --border-h:   rgba(196, 154, 56, 0.35);
  --radius:     4px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --trans:      0.3s ease;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 100px 0; }

/* ─── NAV ────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--trans), padding var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(12, 7, 4, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
}
.logo-mark {
  color: var(--gold);
  font-size: 1.1rem;
}
.logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.logo-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--border-h);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(92, 53, 32, 0.25) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(196, 154, 56, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, rgba(12,7,4,0.3) 0%, rgba(12,7,4,0.7) 100%);
  z-index: 1;
}
.leopard-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-2);
  background-image:
    radial-gradient(ellipse 18px 12px at 15% 20%, rgba(92,53,32,0.25) 55%, transparent 56%),
    radial-gradient(ellipse 8px 14px at 17% 17%, rgba(61,34,16,0.3) 55%, transparent 56%),
    radial-gradient(ellipse 12px 8px at 12% 23%, rgba(61,34,16,0.3) 55%, transparent 56%),
    radial-gradient(ellipse 20px 14px at 75% 55%, rgba(92,53,32,0.2) 55%, transparent 56%),
    radial-gradient(ellipse 9px 15px at 77% 51%, rgba(61,34,16,0.25) 55%, transparent 56%),
    radial-gradient(ellipse 14px 9px at 73% 58%, rgba(61,34,16,0.25) 55%, transparent 56%),
    radial-gradient(ellipse 16px 11px at 45% 80%, rgba(92,53,32,0.18) 55%, transparent 56%),
    radial-gradient(ellipse 10px 16px at 47% 76%, rgba(61,34,16,0.22) 55%, transparent 56%),
    radial-gradient(ellipse 22px 15px at 88% 15%, rgba(92,53,32,0.2) 55%, transparent 56%),
    radial-gradient(ellipse 14px 10px at 30% 45%, rgba(92,53,32,0.15) 55%, transparent 56%),
    radial-gradient(ellipse 18px 12px at 60% 30%, rgba(92,53,32,0.12) 55%, transparent 56%);
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border-h);
  transition: border-color var(--trans), color var(--trans);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── STRIP ──────────────────────────────────────────────────── */
.strip {
  background: var(--oak);
  border-top: 1px solid rgba(196, 154, 56, 0.2);
  border-bottom: 1px solid rgba(196, 154, 56, 0.2);
  padding: 0.9rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.strip-dot {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2, .about-content h2, .contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.section-header h2 em, .about-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.section-sub {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background var(--trans);
  position: relative;
}
.service-card:hover { background: var(--bg-3); }
.service-card.featured {
  background: var(--oak);
}
.service-card.featured:hover { background: var(--oak-light); }
.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-list {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-list li {
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}
.services-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about { background: var(--bg); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image { position: relative; }
.about-img-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leopard-spot {
  position: absolute;
  border-radius: 50%;
  background: rgba(92, 53, 32, 0.3);
}
.s1 { width: 120px; height: 80px; top: 15%; left: 20%; transform: rotate(-15deg); }
.s2 { width: 90px; height: 60px; top: 50%; right: 15%; transform: rotate(20deg); }
.s3 { width: 70px; height: 50px; bottom: 20%; left: 35%; transform: rotate(-5deg); }
.about-img-label {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-content .eyebrow { text-align: left; }
.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery { background: var(--bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  background: var(--bg-3);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: filter var(--trans);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,7,4,0.7) 0%, transparent 60%);
  z-index: 1;
  transition: opacity var(--trans);
}
.gallery-item:hover::before { opacity: 0.5; }
.gi-1 { background: linear-gradient(135deg, #2C1A0E 0%, #1C1109 100%); }
.gi-2 { background: linear-gradient(135deg, #1C1109 0%, #3D2210 100%); }
.gi-3 { background: linear-gradient(135deg, #3D2210 0%, #2C1A0E 100%); }
.gi-4 { background: linear-gradient(135deg, #2C1A0E 0%, #0C0704 100%); }
.gi-5 { grid-column: span 2; background: linear-gradient(135deg, #1C1109 0%, #3D2210 50%, #2C1A0E 100%); }
.gi-6 { background: linear-gradient(135deg, #3D2210 0%, #1C1109 100%); }
.gallery-item span {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.gallery-note strong { color: var(--gold); }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--trans);
}
.testimonial:hover { border-color: var(--border-h); }
.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold-muted);
  font-style: normal;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { background: var(--bg-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .eyebrow { text-align: left; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.3rem;
}
.contact-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  color: var(--text);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6A28' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-primary.full-width { width: 100%; text-align: center; cursor: pointer; font-family: var(--font-sans); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196, 154, 56, 0.15);
  border: 1px solid var(--gold-muted);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
}
.footer-brand p { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.1em; }
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.service-card:nth-child(2).reveal { transition-delay: 0.1s; }
.service-card:nth-child(3).reveal { transition-delay: 0.2s; }
.service-card:nth-child(4).reveal { transition-delay: 0.3s; }
.testimonial:nth-child(2).reveal { transition-delay: 0.1s; }
.testimonial:nth-child(3).reveal { transition-delay: 0.2s; }
.gallery-item:nth-child(2).reveal { transition-delay: 0.08s; }
.gallery-item:nth-child(3).reveal { transition-delay: 0.16s; }
.gallery-item:nth-child(4).reveal { transition-delay: 0.24s; }
.gallery-item:nth-child(5).reveal { transition-delay: 0.32s; }
.gallery-item:nth-child(6).reveal { transition-delay: 0.40s; }
.stat:nth-child(2).reveal { transition-delay: 0.1s; }
.stat:nth-child(3).reveal { transition-delay: 0.2s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 380px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .gi-5 { grid-column: span 1; }
}
@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 7, 4, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 160px; }
  .gi-5 { grid-column: span 1; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
}
