/* Shared nav + base styles for all pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #c96a2a;
  --orange-l:   #e08040;
  --green:      #3a6b4a;
  --sand:       #f5f0e8;
  --sand-dark:  #e8dfd0;
  --brown:      #2e1a0e;
  --warm-white: #fdfaf5;
  --gray:       #6b5c50;
  --text:       #1e120a;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--warm-white); color: var(--text); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
  border-bottom: 1px solid var(--sand-dark);
}

/* ── HAMBURGER ── */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0; margin-right: 16px;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DRAWER ── */
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(20,10,5,0.5); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s;
}
.drawer-overlay.open { display: block; opacity: 1; }

.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 400;
  width: 300px; background: var(--brown);
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.drawer-logo span { color: var(--orange-l); }

.drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1.2rem; line-height: 1;
  transition: background 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.drawer-nav {
  list-style: none; padding: 24px 0; flex: 1;
}
.drawer-nav li a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 28px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: all 0.2s; border-left: 3px solid transparent;
}
.drawer-nav li a:hover,
.drawer-nav li a.active {
  color: var(--white); background: rgba(255,255,255,0.07);
  border-left-color: var(--orange-l);
}
.drawer-nav li a svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.8; flex-shrink: 0;
}

.drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.drawer-footer a {
  display: block; text-align: center;
  background: var(--orange); color: var(--white);
  padding: 13px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.drawer-footer a:hover { background: var(--orange-l); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); text-decoration: none; white-space: nowrap;
}
.nav-logo span { color: var(--orange); }

.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--brown) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: 6px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

/* ── TRANSLATE ── */
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--sand); border: 1.5px solid var(--sand-dark);
  border-radius: 6px; padding: 7px 12px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  transition: border-color 0.2s, color 0.2s; margin-left: 12px;
  line-height: 1;
}
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-btn .lang-flag { font-size: 1rem; line-height: 1; }
.lang-btn .lang-code { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; }
.lang-btn .lang-chev { font-size: 0.6rem; opacity: 0.6; }

#langMenu {
  display: none; position: fixed; z-index: 99999;
  background: #fff; border: 1px solid #e8dfd0;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 190px;
  font-family: 'Inter', sans-serif;
}
#langMenu.open { display: block; }
#langMenu .lang-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; font-size: 0.82rem; font-weight: 500;
  color: #1e120a; cursor: pointer;
  border-bottom: 1px solid #f5f0e8;
  transition: background 0.15s;
}
#langMenu .lang-opt:last-child { border-bottom: none; }
#langMenu .lang-opt:hover { background: #f5f0e8; }
#langMenu .lang-opt.active { color: #c96a2a; font-weight: 700; background: #fdf7f0; }
#langMenu .lang-opt .opt-flag { font-size: 1.15rem; line-height: 1; }
#langMenu .lang-opt .opt-name { flex: 1; }

/* Hide Google Translate banner */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }
.skiptranslate { display: none !important; }

/* shared section helpers */
.section-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text); line-height: 1.2; margin-bottom: 14px;
}
.section-divider { width: 36px; height: 2px; background: var(--orange); border-radius: 2px; margin-bottom: 24px; }

.btn-primary {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: 14px 36px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--orange-l); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; border: 1.5px solid var(--brown); color: var(--brown);
  padding: 12px 28px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--brown); color: var(--white); }

footer {
  background: var(--brown); padding: 40px 60px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-logo span { color: var(--orange-l); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.73rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.social-icon:hover { background: var(--orange); border-color: var(--orange); }
.social-icon svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.6); transition: fill 0.2s; }
.social-icon:hover svg { fill: var(--white); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.25); text-align: center; }


/* ── NAV SOCIAL ICONS ── */
.nav-social { display: flex; gap: 6px; margin-left: 10px; }
.nav-social a {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--sand); border: 1.5px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; text-decoration: none; flex-shrink: 0;
}
.nav-social a:hover { background: var(--orange); border-color: var(--orange); }
.nav-social a svg { width: 14px; height: 14px; fill: var(--gray); transition: fill 0.2s; }
.nav-social a:hover svg { fill: var(--white); }
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-social { display: none; }
  footer { padding: 28px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
