@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --espresso:   #1C1208;
  --terracotta: #D4622A;
  --amber:      #E8A040;
  --olive:      #4A7C3F;
  --linen:      #F5EDD8;
  --linen-dark: #EDE0C4;
  --muted:      #7A5C3A;
  --dark-muted: #4A3010;
  --border:     rgba(212,98,42,0.18);
  --border-strong: rgba(212,98,42,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--linen);
  color: var(--espresso);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 52px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,237,216,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border-strong);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 32px rgba(28,18,8,0.1); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--terracotta); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 0.5px;
  background: var(--terracotta);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after { width: 100%; }

.nav-reserve {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linen);
  background: var(--terracotta);
  padding: 11px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
}
.nav-reserve:hover { background: var(--espresso); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span { width: 22px; height: 1px; background: var(--espresso); display: block; transition: all 0.3s; }

/* ─── FOOTER ─── */
footer {
  background: var(--espresso);
  color: var(--linen);
  padding: 72px 52px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(212,98,42,0.2);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--linen);
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-logo span { color: var(--amber); font-style: italic; }

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(212,98,42,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--linen); }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--linen); }
.footer-col p { font-size: 13px; color: var(--muted); line-height: 1.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── SHARED ─── */
.btn-primary {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linen);
  background: var(--terracotta);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  transition: background 0.25s;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-primary:hover { background: var(--espresso); }

.btn-outline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: 0.5px solid var(--espresso);
  transition: all 0.25s;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-outline:hover { background: var(--espresso); color: var(--linen); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: block;
  font-weight: 400;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
}

.terracotta-line {
  width: 40px; height: 1.5px;
  background: var(--terracotta);
  margin: 18px 0;
}

.page-content { padding-top: 76px; }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-reserve { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--linen);
    padding: 24px;
    gap: 20px;
    border-bottom: 0.5px solid var(--border-strong);
    z-index: 99;
  }
  .nav-links.open .nav-reserve { display: inline-block; }
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
