@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --brown-deep: #3d1f0a;
  --brown-dark: #7a3b19;
  --brown-mid: #c17f3b;
  --brown-light: #e8b87a;
  --cream-dark: #f0dfc0;
  --cream-mid: #f5ede0;
  --cream-light: #fdf3e7;
  --cream-base: #fdf8f2;
  --text-dark: #1a1208;
  --text-mid: #5c4030;
  --text-muted: #8a6555;
  --text-faint: #b8977a;
  --border: #e8d9c0;
  --border-dark: #d4b896;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream-base);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ======= NAV ======= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-logo span { color: var(--brown-mid); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.4px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown-dark); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--brown-mid);
}

.nav-cta {
  background: var(--brown-dark);
  color: var(--cream-light) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brown-deep) !important; color: var(--cream-light) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brown-dark); transition: 0.3s; }

/* ======= BUTTONS ======= */
.btn-primary {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--cream-light);
  padding: 13px 32px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--brown-deep); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--brown-dark);
  padding: 13px 32px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  border: 1px solid var(--brown-mid);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--cream-mid); }

/* ======= SECTION COMMONS ======= */
.section { padding: 80px 48px; }
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--brown-dark); }
.section-sub { font-size: 14px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ======= TRUST BAR ======= */
.trust-bar {
  background: var(--brown-dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-light);
  font-size: 12px;
  padding: 4px 28px;
  letter-spacing: 0.3px;
}
.trust-item:not(:last-child) { border-right: 0.5px solid rgba(253,243,231,0.25); }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brown-light); flex-shrink: 0; }

/* ======= FOOTER ======= */
footer {
  background: #1a1208;
  padding: 60px 48px 28px;
  color: var(--text-muted);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 0.5px solid #3d2d1a;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-light);
  margin-bottom: 12px;
  display: block;
}
.footer-desc { font-size: 13px; line-height: 1.8; color: #6b4c35; max-width: 280px; }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5c3e28;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-link { font-size: 13px; color: #6b4c35; margin-bottom: 10px; display: block; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--brown-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #4a3020;
}

/* ======= PAGE HERO (inner pages) ======= */
.page-hero {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
  padding: 80px 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,127,59,0.12) 0%, transparent 70%);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--brown-deep);
  margin-bottom: 14px;
}
.page-hero-title em { font-style: italic; color: var(--brown-dark); }
.page-hero-sub { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ======= WHATSAPP FLOAT ======= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ======= ANIMATIONS ======= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--cream-base); border-bottom: 0.5px solid var(--border); padding: 20px 24px; gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 24px; }
  .trust-bar { padding: 12px 16px; gap: 8px; }
  .trust-item { padding: 4px 12px; font-size: 11px; }
  .trust-item:not(:last-child) { border-right: none; border-bottom: 0.5px solid rgba(253,243,231,0.15); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 40px 24px 20px; }
  .page-hero { padding: 56px 24px 44px; }
  .page-hero-title { font-size: 38px; }
}
@media (max-width: 600px) {
  .section-title { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
