/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --primary:   #c47c2b;
  --secondary: #1e6b3e;
  --dark:      #0d1a0f;
  --text:      #1a2310;
  --muted:     #6b7280;
  --light:     #f8f9f4;
  --border:    #e5e7eb;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --trans:     all .3s ease;
}

/* ═══ Reset ══════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; }
body { font-family:'Inter',system-ui,sans-serif; color:var(--text); background:#fff; line-height:1.6; overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { color:var(--primary); text-decoration:none; transition:var(--trans); }
a:hover { color:var(--secondary); }
h1,h2,h3,h4,h5 { font-family:'Playfair Display',Georgia,serif; line-height:1.25; }
ul { list-style:none; }
button,input,select,textarea { font-family:inherit; }

/* ═══ Layout utilities ═══════════════════════════ */
.container       { max-width:1200px; margin:0 auto; padding:0 24px; }
.container--wide { max-width:1400px; margin:0 auto; padding:0 24px; }
.text-primary { color:var(--primary); }
.text-center  { text-align:center; }
.text-white   { color:#fff; }

/* ═══ Section spacing ══════════════════════════ */
.section        { padding:80px 0; }
.section--sm    { padding:50px 0; }
.section--lg    { padding:110px 0; }
.section--dark  { background:var(--dark); color:#fff; }
.section--light { background:var(--light); }
.section-label  { display:inline-block; font-family:'Inter',sans-serif; font-size:.78rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--primary); margin-bottom:12px; }
.section-title  { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:700; margin-bottom:16px; line-height:1.2; }
.section-sub    { font-size:1rem; color:var(--muted); max-width:580px; margin:0 auto 48px; line-height:1.75; }
.section-header { text-align:center; margin-bottom:56px; }

/* ═══ Buttons ════════════════════════════════════ */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; border-radius:9px; border:none; font-size:.92rem; font-weight:600; cursor:pointer; transition:var(--trans); white-space:nowrap; text-decoration:none; }
.btn:hover { text-decoration:none; transform:translateY(-2px); box-shadow:var(--shadow); }
.btn--primary       { background:var(--primary); color:#fff; }
.btn--primary:hover { background:color-mix(in srgb,var(--primary) 85%,#000); color:#fff; }
.btn--outline       { background:transparent; color:var(--primary); border:2px solid var(--primary); }
.btn--outline:hover { background:var(--primary); color:#fff; }
.btn--white         { background:#fff; color:var(--primary); }
.btn--white:hover   { background:var(--light); color:var(--primary); }
.btn--sm  { padding:9px 20px; font-size:.85rem; border-radius:8px; }
.btn--lg  { padding:16px 36px; font-size:1rem; }
.btn--full{ width:100%; justify-content:center; }

/* ═══ Cards / Badges / Forms ═══════════════════ */
.card { background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; transition:var(--trans); }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.badge { display:inline-block; padding:4px 12px; border-radius:20px; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; }
.badge--primary { background:rgba(196,124,43,.12); color:var(--primary); }
.badge--green   { background:rgba(34,197,94,.12);  color:#15803d; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:.82rem; font-weight:600; color:var(--muted); margin-bottom:6px; text-transform:uppercase; letter-spacing:.5px; }
.form-control { width:100%; padding:12px 16px; border:1.5px solid var(--border); border-radius:9px; font-size:.92rem; color:var(--text); background:#fff; transition:var(--trans); outline:none; }
.form-control:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(196,124,43,.12); }
textarea.form-control { resize:vertical; min-height:110px; }
select.form-control { appearance:none; cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }

/* ═══ Page hero / breadcrumb / divider ════════ */
.breadcrumb { display:flex; align-items:center; gap:6px; font-size:.82rem; flex-wrap:wrap; }
.breadcrumb a { color:rgba(255,255,255,.7); } .breadcrumb a:hover { color:#fff; }
.breadcrumb .sep { color:rgba(255,255,255,.4); font-size:.7rem; }
.breadcrumb .current { color:#fff; font-weight:600; }
.page-hero { background:var(--dark) center/cover no-repeat; min-height:360px; display:flex; align-items:flex-end; padding:60px 0; position:relative; }
.page-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.65)); }
.page-hero__content { position:relative; z-index:1; }
.page-hero__title { font-size:clamp(2rem,5vw,3.2rem); color:#fff; margin-bottom:12px; }
.divider      { width:60px; height:3px; background:var(--primary); margin:0 auto 24px; border-radius:2px; }
.divider--left{ margin:0 0 24px; }

/* ═══ Reveal animations ════════════════════════ */
.reveal,.reveal-left,.reveal-right { transition:opacity .7s ease,transform .7s ease; }
.js-reveal-ready .reveal       { opacity:0; transform:translateY(30px); }
.js-reveal-ready .reveal-left  { opacity:0; transform:translateX(-40px); }
.js-reveal-ready .reveal-right { opacity:0; transform:translateX(40px); }
.js-reveal-ready .reveal.visible,
.js-reveal-ready .reveal-left.visible,
.js-reveal-ready .reveal-right.visible { opacity:1; transform:none; }


/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease;
}
.navbar--transparent { background: transparent; }
.navbar--scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.05);
}

/* Apply the blur to a pseudo-element behind the navbar content */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.navbar--scrolled::before {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; height: 72px;
}

/* Logo */
.nav-brand { display:flex; align-items:center; gap:10px; margin-right:auto; text-decoration:none; flex-shrink:0; }
.nav-brand:hover { text-decoration:none; }

.nav-logo {
  height: 40px; width: auto; object-fit: contain;
  transition: filter .35s ease;
  filter: brightness(0) invert(1);
}
.navbar--scrolled .nav-logo { filter: none; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: -.3px;
  color: #fff; white-space: nowrap;
  transition: color .35s ease;
}
.navbar--scrolled .nav-logo-text { color: var(--text); }

/* Desktop links */
.nav-menu { display: flex; align-items: center; gap: 0; margin-left: auto; }

.nav-link {
  position: relative;
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: 8px;
  font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.92);
  transition: color .2s, background .2s;
  white-space: nowrap; text-decoration: none;
}
.nav-link .nav-icon { font-size: .68rem; opacity: .55; }
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 1.5px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover  { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.nav-link.active { color: #fff; font-weight: 700; }
.nav-link.active::after { transform: scaleX(1); }
.navbar--scrolled .nav-link          { color: var(--text); }
.navbar--scrolled .nav-link:hover    { color: var(--primary); background: rgba(196,124,43,.07); }
.navbar--scrolled .nav-link.active   { color: var(--primary); }
.nav-link .nav-arrow { display: none; }

.nav-cta-desktop { margin-left: 12px; }
.btn.nav-btn-cta { font-size: .8rem; padding: 10px 20px; border-radius: 8px; font-weight: 700; box-shadow: 0 4px 14px rgba(196,124,43,.3); }
.btn.nav-btn-cta:hover { box-shadow: 0 6px 22px rgba(196,124,43,.45); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-size: .95rem;
  align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0; margin-left: 12px;
}
.nav-toggle:hover { background: rgba(255,255,255,.2); }
.navbar--scrolled .nav-toggle { background: var(--light); border-color: var(--border); color: var(--text); }


/* ═══════════════════════════════════════════════
   MOBILE DRAWER — LEFT SLIDE (FIXED)
═══════════════════════════════════════════════ */

/* Dim overlay - FIXED */
.nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(5,10,5,.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media(max-width: 960px) {

  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }

  /* ── The drawer panel - FIXED positioning ── */
  .nav-menu {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(300px, 82vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0; padding: 0;
    z-index: 999;
    overflow-y: auto; overflow-x: hidden;
    box-shadow: 6px 0 48px rgba(0,0,0,.22);
    transform: translateX(-105%);
    transition: transform .42s cubic-bezier(.16,1,.3,1);
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateX(0);
    pointer-events: all;
  }

  /* FIX: body scroll lock */
  body.menu-open {
    overflow: hidden;
  }

  /* ── Drawer top header band ── */
  .drawer-head {
    display: flex !important;
    align-items: center; gap: 10px;
    min-height: 72px; padding: 0 18px;
    background: var(--dark);
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .drawer-head img  { height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
  .drawer-head span { font-family:'Playfair Display',serif; font-weight:700; color:#fff; font-size:1rem; }
  .drawer-close {
    margin-left: auto; flex-shrink: 0;
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem; transition: background .15s, color .15s;
  }
  .drawer-close:hover { background: rgba(255,255,255,.2); color: #fff; }

  /* ── Section label ── */
  .drawer-section-label {
    display: block !important;
    font-size: .58rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #b0b8c1;
    padding: 18px 20px 8px; flex-shrink: 0;
  }

  /* ── Nav links inside drawer ── */
  .nav-link {
    display: flex !important;
    align-items: center; gap: 13px;
    padding: 13px 20px;
    border-radius: 0;
    color: #2a2015; font-size: .88rem; font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,.04);
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .nav-link::after { display: none !important; }

  .nav-link .nav-icon {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    background: rgba(196,124,43,.1);
    display: flex !important; align-items: center; justify-content: center;
    color: var(--primary); font-size: .78rem; opacity: 1;
    transition: background .15s, color .15s;
  }
  .nav-link:hover               { background: rgba(196,124,43,.05); color: var(--primary); }
  .nav-link:hover .nav-icon     { background: rgba(196,124,43,.18); }
  .nav-link.active              { background: rgba(196,124,43,.08); color: var(--primary); font-weight: 700; }
  .nav-link.active .nav-icon    { background: var(--primary); color: #fff; }

  .nav-link .nav-arrow {
    display: block !important; margin-left: auto; flex-shrink: 0;
    font-size: .6rem; color: rgba(0,0,0,.18);
    transition: color .15s, transform .15s;
  }
  .nav-link:hover .nav-arrow    { color: rgba(196,124,43,.5); transform: translateX(2px); }
  .nav-link.active .nav-arrow   { color: var(--primary); opacity: .4; }

  .drawer-cta {
    display: block !important;
    padding: 16px 20px 8px; flex-shrink: 0;
  }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--primary); color: #fff;
    padding: 13px 20px; border-radius: 10px;
    font-weight: 700; font-size: .88rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(196,124,43,.32);
    transition: opacity .2s, transform .2s;
  }
  .drawer-cta a:hover { opacity: .88; transform: translateY(-1px); color: #fff; text-decoration: none; }

  .drawer-contact {
    display: flex !important;
    flex-direction: column;
    margin-top: auto; flex-shrink: 0;
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(0,0,0,.07);
    background: #faf9f6;
  }
  .drawer-contact-title {
    font-size: .58rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #adb5bd;
    margin-bottom: 13px;
  }
  .drawer-contact-item {
    display: flex; align-items: center; gap: 11px;
    margin-bottom: 11px; font-size: .81rem; color: #4a3c2a;
    line-height: 1.4;
  }
  .drawer-contact-item:last-child { margin-bottom: 0; }
  .dc-icon {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
  }
  .dc-icon.wa    { background: #25d366; color: #fff; }
  .dc-icon.email { background: var(--primary); color: #fff; }
  .dc-icon.addr  { background: rgba(196,124,43,.12); color: var(--primary); }
  .drawer-contact-item a {
    color: #4a3c2a; text-decoration: none; font-weight: 500;
    transition: color .15s; word-break: break-word;
  }
  .drawer-contact-item a:hover { color: var(--primary); }
}

/* Hide mobile-only elements on desktop */
@media(min-width: 961px) {
  .nav-overlay,
  .drawer-head,
  .drawer-section-label,
  .drawer-cta,
  .drawer-contact { display: none !important; }
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background:var(--dark); color:rgba(255,255,255,.75); padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand { max-width:320px; }
.footer-logo  { height:48px; width:auto; object-fit:contain; margin-bottom:16px; }
.footer-logo-text { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:#fff; margin-bottom:14px; }
.footer-tagline   { font-size:.88rem; line-height:1.8; color:rgba(255,255,255,.6); margin-bottom:20px; }
.footer-social    { display:flex; gap:10px; flex-wrap:wrap; }
.footer-social a  { width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.7); font-size:.9rem; transition:var(--trans); text-decoration:none; }
.footer-social a:hover { background:var(--primary); color:#fff; transform:translateY(-3px); }
.footer-col h4 { font-family:'Inter',sans-serif; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:rgba(255,255,255,.4); margin-bottom:18px; }
.footer-links  { display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,.65); font-size:.88rem; transition:var(--trans); }
.footer-links a:hover { color:var(--primary); padding-left:6px; }
.footer-contact      { display:flex; flex-direction:column; gap:12px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; }
.footer-contact-item i   { color:var(--primary); margin-top:3px; flex-shrink:0; width:16px; text-align:center; }
.footer-contact-item a   { color:rgba(255,255,255,.65); }
.footer-contact-item a:hover { color:var(--primary); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:20px 0; flex-wrap:wrap; gap:10px; font-size:.82rem; color:rgba(255,255,255,.35); }
.footer-bottom a { color:rgba(255,255,255,.45); }
.footer-bottom a:hover { color:var(--primary); }
.footer-bottom-links { display:flex; gap:20px; flex-wrap:wrap; }
@media(max-width:900px) { .footer-grid { grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:600px) { .footer-grid { grid-template-columns:1fr; } .footer-brand { max-width:100%; } .footer-bottom { flex-direction:column; text-align:center; } }