*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #A8874A;
  --primary-dark: #8B6A35;
  --secondary: #C4A06A;
  --gold-light: #F5ECD7;
  --gold-bg: #FDFAF5;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-900: #111827;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── HEADER ─────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
header.scrolled {
  background: rgba(139,106,53,.96);
  backdrop-filter: blur(8px);
  padding: .75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.logo span { color: var(--secondary); }

nav.desktop { display: flex; align-items: center; gap: .25rem; }
nav.desktop a {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: 9999px;
  transition: color .2s, background .2s;
}
nav.desktop a:hover,
nav.desktop a.active { color: #fff; background: rgba(255,255,255,.1); }

.btn-reserve {
  padding: .5rem 1.5rem;
  height: 2.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
  background: #fff;
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s;
}
.btn-reserve:hover { opacity: .9; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: .25rem;
}
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: .5rem;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-nav .btn-reserve { margin-top: .5rem; align-self: flex-start; }

@media (max-width: 767px) {
  nav.desktop,
  .header-inner > .btn-reserve { display: none; }
  .mobile-toggle { display: block; }
}

/* ─── FOOTER ─────────────────────────────── */
footer { background: var(--primary-dark); color: #fff; }

.footer-newsletter {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 3rem 0;
}
.footer-nl {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 0;
}
.footer-nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nl-inner h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .35rem; }
.footer-nl-inner p { color: rgba(255,255,255,.65); font-size: .875rem; }

.nl-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.nl-input {
  height: 2.75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 9999px;
  padding: 0 1.25rem;
  font-family: inherit;
  font-size: .875rem;
  outline: none;
  width: 17rem;
  max-width: 100%;
  transition: border-color .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.45); }
.nl-input:focus { border-color: rgba(255,255,255,.5); }

.nl-btn {
  height: 2.75rem;
  background: var(--secondary);
  color: #fff;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  padding: 0 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--primary-dark); }
.nl-btn svg { width: .9rem; height: .9rem; }

.footer-main { padding: 3.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { font-size: 1.4rem; display: inline-block; margin-bottom: .75rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .8rem; line-height: 1.7; margin-bottom: 1rem; }

.footer-socials { display: flex; gap: .5rem; }
.footer-social {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
}
.footer-social:hover { background: var(--secondary); }
.footer-social svg { width: 1rem; height: 1rem; }

.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .82rem; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-col ul li { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-col ul li svg { width: .9rem; height: .9rem; flex-shrink: 0; }
.footer-col ul li a { color: rgba(255,255,255,.55); }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}

/* ─── SCROLL REVEAL ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
