:root{
  --sand: #F5F1EA;
  --sand-2:#E7DED3;
  --charcoal:#1f2937;
  --charcoal-2:#0f172a;
  --terracotta:#C26A3A;
  --sage:#6B7A5E;
  --ink:#0b1220;
  --card-border: rgba(31,41,55,.10);
}

html { scroll-behavior: smooth; }
body { color: var(--ink); background: #fff; }

.navbar{
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.navbar.navbar-scrolled{
  background: rgba(255,255,255,.90) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(15,23,42,.10);
}
.navbar .nav-link{
  font-weight: 700;
}
.navbar .nav-link.active{ color: var(--terracotta) !important; }

.brand-logo{ width: 170px; height: auto; }

.hero{
  position: relative;
  background: radial-gradient(900px circle at 10% 15%, rgba(194,106,58,.16), transparent 60%),
              radial-gradient(900px circle at 85% 25%, rgba(107,122,94,.14), transparent 55%),
              linear-gradient(135deg, var(--sand), var(--sand-2));
  overflow: hidden;
}
.hero .hero-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
}
.hero .hero-image{
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 24px 60px rgba(15,23,42,.12);
}

.section-pad{ padding: 82px 0; }

.kicker{
  display: inline-flex;
  gap: .55rem;
  align-items:center;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(194,106,58,.10);
  border: 1px solid rgba(194,106,58,.18);
  color: var(--terracotta);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .2px;
}

.btn-primary{
  --bs-btn-bg: var(--terracotta);
  --bs-btn-border-color: var(--terracotta);
  --bs-btn-hover-bg: #a9552b;
  --bs-btn-hover-border-color: #a9552b;
  --bs-btn-active-bg: #8e4a26;
  --bs-btn-active-border-color: #8e4a26;
}
.btn-outline-primary{
  --bs-btn-color: var(--terracotta);
  --bs-btn-border-color: rgba(194,106,58,.55);
  --bs-btn-hover-bg: rgba(194,106,58,.10);
  --bs-btn-hover-border-color: rgba(194,106,58,.75);
}

.card-soft{
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  box-shadow: 0 16px 44px rgba(15,23,42,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-soft:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(15,23,42,.12);
  border-color: rgba(194,106,58,.22);
}

.icon-pill{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(107,122,94,.12);
  border: 1px solid rgba(107,122,94,.18);
}

.muted{ color: rgba(15,23,42,.70); }

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

.gallery-img{
  border-radius: 1.25rem;
  border: 1px solid rgba(15,23,42,.08);
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.tag{
  background: rgba(107,122,94,.12);
  border: 1px solid rgba(107,122,94,.18);
  color: var(--sage);
  font-weight: 800;
}

.process-step{
  background: linear-gradient(135deg, #fff, rgba(245,241,234,.85));
}

.footer{
  background: var(--charcoal-2);
  color: rgba(255,255,255,.78);
}
.footer a{ color: rgba(245,241,234,.92); text-decoration: none; }
.footer a:hover{ text-decoration: underline; }

.page-hero{
  background: radial-gradient(900px circle at 15% 20%, rgba(194,106,58,.18), transparent 60%),
              linear-gradient(135deg, var(--charcoal-2), var(--charcoal));
  color: #fff;
}
.page-hero .lead{ color: rgba(255,255,255,.82); }

.filter-btns .btn{
  border-radius: 999px;
  font-weight: 800;
}
