@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --orange: #e8610a;
  --orange-light: #ff8c38;
  --orange-glow: rgba(232, 97, 10, 0.15);
  --orange-pale: #fff4ec;
  --dark: #1a1208;
  --dark-mid: #2d2015;
  --text: #3d2e1e;
  --text-muted: #7a6654;
  --white: #ffffff;
  --cream: #fffaf4;
  --border: rgba(232,97,10,0.2);
  --shadow: 0 20px 60px rgba(232,97,10,0.1);
  --shadow-hover: 0 30px 80px rgba(232,97,10,0.2);
  --radius: 20px;
  --radius-lg: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,250,244,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(232,97,10,0.4);
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 14px rgba(232,97,10,0.35);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: #c94f00 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(232,97,10,0.4) !important;
}
.nav-cta::after { display: none !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(232,97,10,0.35);
  transition: var(--transition);
}
.btn-primary:hover {
  background: #c94f00;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(232,97,10,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
}

/* ── SECTION TITLES ── */
.section-eyebrow {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: #b8a898;
  padding: 4rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo span { color: white; }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; line-height: 1.7; color: #9a8878; }
.footer-col h4 { color: white; font-weight: 700; margin-bottom: 1.2rem; font-size: 0.95rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; color: #9a8878; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: #6a5a50; }
.footer-socials { display: flex; gap: 0.7rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: grid; place-items: center;
  text-decoration: none;
  font-size: 0.9rem;
  color: #9a8878;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: white; }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: white;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; border-radius: 14px; }
.error-msg { color: #dc3545; font-size: 0.82rem; margin-top: 4px; padding-left: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 0 4%; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}