/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2D2D2D;
  background: #FAFAF8;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Custom Properties ── */
:root {
  --coral: #E86A4A;
  --coral-light: #F4845F;
  --coral-dark: #C94E30;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --cream: #FAFAF8;
  --warm-white: #F5F0EB;
  --sand: #E8DDD3;
  --sand-light: #F0E8E0;
  --text: #2D2D2D;
  --text-muted: #6B6B6B;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(45,45,45,0.08);
  --shadow-lg: 0 12px 48px rgba(45,45,45,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, .logo-text { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
.text-accent { color: var(--coral); }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,106,74,0.35);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,106,74,0.45);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 540px; font-size: 1.05rem; }
.section-header { margin-bottom: 3.5rem; }

/* ── Background Shapes ── */
.bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.04; }
.shape-1 { width: 600px; height: 600px; background: var(--coral); top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; background: var(--coral); bottom: 20%; left: -100px; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape-3 { width: 300px; height: 300px; background: var(--sand); top: 50%; right: 5%; }
.shape-4 { width: 200px; height: 200px; background: var(--coral); bottom: 10%; right: 20%; }
.shape-5 { width: 150px; height: 150px; background: var(--charcoal); top: 30%; left: 8%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; opacity: 0.03; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(45,45,45,0.06);
  padding: 0.75rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.logo-accent { color: var(--coral); }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--charcoal); background: rgba(45,45,45,0.05); }
.btn-nav {
  background: var(--coral);
  color: #fff !important;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.btn-nav:hover { background: var(--coral-dark); color: #fff !important; }

/* ── Hamburger ── */
.nav-toggle { display: none; padding: 0.5rem; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3028 30%, #5C3A28 55%, var(--coral-dark) 80%, var(--coral) 100%);
  z-index: 1;
}
.hero-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; opacity: 0.12; }
.hero-shape-circle {
  width: 420px; height: 420px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%; left: -8%;
  transform: translateY(-50%);
  animation: float 8s ease-in-out infinite;
}
.hero-shape-square {
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  bottom: 15%; right: 5%;
  transform: rotate(25deg);
  animation: float 6s ease-in-out infinite reverse;
}
.hero-shape-triangle {
  width: 0; height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 155px solid rgba(255,255,255,0.07);
  top: 12%; right: 15%;
  animation: float 7s ease-in-out infinite;
}
.hero-shape-ring {
  width: 200px; height: 200px;
  border: 4px solid rgba(232,106,74,0.3);
  border-radius: 50%;
  bottom: 25%; left: 10%;
  animation: float 9s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-20px) rotate(var(--r, 0deg)); }
}
.hero-shape-square { --r: 25deg; }
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--coral-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-headline {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Products ── */
.products {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,0.3) 0%, transparent 50%);
}
.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.product-card-body { padding: 1.5rem; }
.product-name { margin-bottom: 0.5rem; color: var(--charcoal); }
.product-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── About ── */
.about {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 6/7;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(232,106,74,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 70% 80%, rgba(232,106,74,0.1) 0%, transparent 50%);
}
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-lg);
}
.about-accent-block {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: var(--radius);
  transform: rotate(12deg);
  z-index: -1;
}
.about-content { max-width: 520px; }
.about-text {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-values { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232,106,74,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong { display: block; color: var(--charcoal); font-family: 'Space Grotesk', sans-serif; font-size: 1rem; margin-bottom: 0.15rem; }
.value-item span { color: var(--text-muted); font-size: 0.88rem; }

/* ── Community ── */
.community {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
  overflow: hidden;
}
.community-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3020 50%, var(--coral-dark) 100%);
  padding: 5rem 4rem;
  color: #fff;
}
.community-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 10% 90%, rgba(232,106,74,0.15) 0%, transparent 40%);
  pointer-events: none;
}
.community-content { position: relative; z-index: 2; max-width: 600px; }
.community-content .section-tag { color: var(--coral-light); }
.community-content .section-title { color: #fff; margin-bottom: 1.25rem; }
.community-text { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.community-features { display: flex; gap: 2rem; flex-wrap: wrap; }
.feature { display: flex; align-items: center; gap: 0.6rem; }
.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* ── Contact ── */
.contact {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
  background: var(--warm-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-desc { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 2.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232,106,74,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail strong { display: block; color: var(--charcoal); font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; margin-bottom: 0.2rem; }
.detail span, .detail a { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
.detail a:hover { color: var(--coral); }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--sand);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--coral); background: #fff; }
.form-input::placeholder { color: #B0A89F; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(232,106,74,0.08);
  border-radius: var(--radius);
  color: var(--coral-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: #fff; }
.footer-tagline { margin-top: 0.75rem; font-size: 0.92rem; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--coral-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Reveal Animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { gap: 3rem; }
  .community-card { padding: 4rem 2.5rem; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; }
  .btn-nav { margin-left: 0; margin-top: 0.5rem; text-align: center; width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; }
  .about-img-float { right: -1rem; bottom: -1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-shape-circle { width: 260px; height: 260px; }
  .hero-shape-square { width: 100px; height: 100px; }
  .hero-shape-triangle { border-left-width: 60px; border-right-width: 60px; border-bottom-width: 100px; }
  .hero-shape-ring { width: 120px; height: 120px; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .hero { padding: 7rem 0 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .community-card { padding: 3rem 1.5rem; }
  .community-features { flex-direction: column; gap: 1rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
