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

:root {
  --terracotta: #C94F2C;
  --terracotta-dark: #a8401e;
  --terracotta-light: #e06b47;
  --cream: #F5E9D8;
  --cream-light: #FFE8CE;
  --cream-dark: #e8d5be;
  --brown: #5C3A1E;
  --brown-light: #7a4f2d;
  --white: #FFFAF5;
  --text-dark: #2d1a0e;
  --text-mid: #5c3a1e;
  --text-light: #9a7560;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(245, 233, 216, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 1px 24px rgba(201,79,44,0.08);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-logo span { color: var(--brown); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 11px 26px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(201,79,44,0.3);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,79,44,0.35);
}

.btn-secondary {
  color: var(--brown);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, color 0.2s;
}

.btn-secondary:hover { gap: 14px; color: var(--terracotta); }

.btn-secondary .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.btn-light {
  background: var(--cream-light);
  color: var(--terracotta);
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ─── SECTION LABELS & TITLES ────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: #8b4513;
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { color: var(--cream-light); margin-bottom: 16px; display: block; }
.footer-brand .nav-logo span { color: var(--cream); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245,233,216,0.6);
  max-width: 280px;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(245,233,216,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-light);
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.social-link:hover { background: rgba(201,79,44,0.5); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-light);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(245,233,216,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--cream-light); }

.footer-bottom {
  border-top: 1px solid rgba(245,233,216,0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(245,233,216,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(245,233,216,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--cream-light); }

/* ─── MOBILE MENU ────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 20px 40px; }
  nav.scrolled { padding: 14px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
