/* ---------- Tokens ---------- */
:root {
  --cream: #f7f3ec;
  --cream-2: #efe8db;
  --ink: #2b2620;
  --ink-soft: #5a5248;
  --wood: #6b4a30;
  --wood-dark: #45301f;
  --sage: #7c8c6b;
  --sage-dark: #5f6e50;
  --gold: #b58a4a;
  --line: rgba(43,38,32,0.12);
  --radius: 4px;
  --shadow: 0 20px 50px -20px rgba(40,30,15,0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.6em;
  color: var(--wood-dark);
}
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { line-height: 1.7; color: var(--ink-soft); }
.muted { font-size: 0.92rem; color: #9c8f7c; font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--sage-dark);
  margin: 0 0 0.8em;
  font-weight: 500;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead { max-width: 560px; }
.section-lead.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { background: #9d7439; border-color: #9d7439; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-block { width: 100%; text-align: center; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--wood-dark);
  color: #e8ddcb;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}
.topbar-sep { opacity: 0.5; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--wood-dark);
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--sage);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--sage-dark); }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,22,14,0.55) 0%, rgba(30,22,14,0.35) 45%, rgba(30,22,14,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 720px;
}
.hero-content .eyebrow {
  color: #e3d9c4;
  text-align: center;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(3.2rem, 9vw, 6rem);
  margin-bottom: 0.15em;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #f1ead9;
  margin: 0 auto 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,0.7);
  position: relative;
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.intro-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Services ---------- */
.services { background: var(--cream-2); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card p { font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery .container { margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 6px;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,15,8,0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(20,15,8,0.12); }

/* ---------- Contact ---------- */
.contact { background: var(--wood-dark); color: #f1ead9; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: #d8c9a8; }
.contact .section-lead { color: #d8cbb4; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}
.contact-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-value a { color: #f1ead9; border-bottom: 1px solid rgba(241,234,217,0.35); }
.contact-value a:hover { border-color: var(--gold); color: var(--gold); }
.map-embed {
  margin-top: 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  filter: grayscale(0.25) contrast(1.05);
}
.map-embed iframe { display: block; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.map-link:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b5a688;
}
.contact-value { font-size: 1.05rem; }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cabfa5;
}
.form-row input, .form-row textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  font-size: 0.78rem;
  color: #c9a86a;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #201811;
  color: #a8967a;
  padding: 3rem 0 2rem;
  text-align: center;
}
.brand-footer {
  font-size: 1.4rem;
  color: #f1ead9;
}
.footer-inner p { color: #a8967a; margin: 0.3em 0; }
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.2rem 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-social a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; opacity: 0.7; margin-top: 1.5rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,10,5,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 500;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 340px; }
  .nav-links a {
    width: 100%;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--line);
  }
  .nav-cta { border-radius: 0; text-align: center; }

  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image { order: -1; }
  .stats { flex-wrap: wrap; gap: 1.5rem 2.5rem; }

  .cards { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .topbar-inner { flex-direction: column; gap: 0.2rem; padding: 0.6rem 1.5rem; }
  .topbar-sep { display: none; }
}
