/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ── */
.no-underline { text-decoration: none; }

/* ── Tag ── */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e45a28;
  background: #fce4d9;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 246, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.h-18 { height: 72px; }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(145deg, #c94218 0%, #e45a28 30%, #ee754a 55%, #f59e7a 80%, #f9c4b0 100%);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(228, 90, 40, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 122, 0.35) 0%, transparent 55%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #c94218;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(201, 66, 24, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 66, 24, 0.45);
  background: #fefcf8;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ── Area Pills ── */
.area-pill {
  display: inline-block;
  background: #fff;
  color: #665640;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid #ece2d4;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.area-pill:hover {
  background: #fce4d9;
  border-color: #f59e7a;
  color: #a33014;
  transform: translateY(-2px);
}

/* ── Form Inputs ── */
.input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ece2d4;
  border-radius: 12px;
  background: #faf8f6;
  color: #473b2f;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.input::placeholder { color: #beaa88; }
.input:focus {
  border-color: #ee754a;
  box-shadow: 0 0 0 3px rgba(238, 117, 74, 0.15);
  background: #fff;
}
.input:hover:not(:focus) { border-color: #d9c8b0; }

/* ── Mobile Menu ── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(250, 248, 246, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu-link {
  display: block;
  text-decoration: none;
  color: #665640;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: #e45a28; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 639px) {
  .hero { min-height: 80vh; }
  .card { padding: 1.5rem; }
}
