/* ==================== Reset & Base ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown-900: #4A2C17;
  --brown-700: #6B4226;
  --brown-500: #8B5A2B;
  --brown-300: #C9A87C;
  --cream-100: #FAF3E0;
  --cream-200: #F5E9CF;
  --cream-300: #EBDCB8;
  --green-600: #3D6B4A;
  --green-500: #4A7C59;
  --green-400: #6FA776;
  --white: #ffffff;
  --text: #3B2A1E;
  --text-light: #6B5B4A;
  --shadow-sm: 0 2px 8px rgba(74, 44, 23, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 44, 23, 0.12);
  --shadow-lg: 0 20px 40px rgba(74, 44, 23, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream-100);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brown-900);
  line-height: 1.2;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(74, 124, 89, 0.45);
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
}

.btn-outline {
  background: transparent;
  color: var(--brown-700) !important;
  border: 2px solid var(--brown-500);
}

.btn-outline:hover {
  background: var(--brown-700);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==================== Navbar ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 243, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(107, 66, 38, 0.08);
}

.navbar.scrolled {
  background: rgba(250, 243, 224, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--brown-900);
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brown-500);
  box-shadow: var(--shadow-sm);
}

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: var(--transition);
  font-size: 15px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--green-600);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--brown-700);
  cursor: pointer;
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-200) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(111, 167, 118, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 90, 43, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(74, 124, 89, 0.12);
  color: var(--green-600);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(74, 124, 89, 0.2);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--brown-900);
}

.text-accent {
  color: var(--green-600);
  font-style: italic;
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--brown-700);
  font-size: 14px;
}

.hero-feature i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--green-600);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.hero-image-wrap {
  position: relative;
  padding: 20px;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 12px solid var(--white);
  animation: float 6s ease-in-out infinite;
}

.hero-image-decor {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.decor-1 {
  width: 120px;
  height: 120px;
  background: var(--green-400);
  opacity: 0.3;
  top: -20px;
  right: 10%;
  animation: float 5s ease-in-out infinite;
}

.decor-2 {
  width: 80px;
  height: 80px;
  background: var(--brown-300);
  opacity: 0.4;
  bottom: 10%;
  left: 0;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ==================== Section Head ==================== */
.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 90, 43, 0.1);
  color: var(--brown-700);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 16px;
}

/* ==================== About ==================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--green-500);
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
}

.about-badge span {
  font-size: 13px;
  opacity: 0.95;
}

.about-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 16px;
}

.about-list {
  list-style: none;
  margin-bottom: 32px;
}

.about-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}

.about-list i {
  color: var(--green-500);
  font-size: 18px;
}

/* ==================== Product ==================== */
.product {
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-200) 100%);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--green-500);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name {
  font-size: 2rem;
  margin-bottom: 14px;
}

.product-desc {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 15px;
}

.price-list {
  margin-bottom: 32px;
  border-top: 1px solid var(--cream-300);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-300);
  transition: var(--transition);
}

.price-item:hover {
  padding-left: 8px;
}

.price-size {
  font-weight: 500;
  color: var(--text);
  font-size: 15px;
}

.price-size small {
  color: var(--green-600);
  font-weight: 600;
  margin-left: 4px;
}

.price-amount {
  font-weight: 700;
  color: var(--brown-700);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

.price-item.featured {
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(74, 124, 89, 0.02));
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid transparent;
}

.price-item.featured .price-amount {
  color: var(--green-600);
  font-size: 22px;
}

/* ==================== Order / Pesanan ==================== */
.order {
  background: var(--white);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.order-image {
  position: relative;
}

.order-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.order-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--brown-700), var(--brown-500));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
}

.order-badge i {
  font-size: 24px;
  color: var(--cream-200);
}

.order-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.order-content > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 16px;
}

.order-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.order-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-300);
  transition: var(--transition);
}

.order-item:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
}

.order-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.order-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--brown-900);
}

.order-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==================== Testimonials ==================== */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--cream-100);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-300);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--brown-300);
  opacity: 0.4;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-400);
}

.testimonial-stars {
  color: #F5B500;
  margin-bottom: 16px;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  color: var(--text);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
  min-height: 48px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-300);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--brown-500));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.author-info strong {
  display: block;
  color: var(--brown-900);
  font-size: 15px;
  font-weight: 600;
}

.author-info span {
  font-size: 13px;
  color: var(--text-light);
}

/* ==================== Contact ==================== */
.contact {
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-200) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.info-card p, .info-card a {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.info-card a {
  color: var(--green-600);
  font-weight: 600;
  transition: var(--transition);
}

.info-card a:hover {
  color: var(--green-500);
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  background: var(--white);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ==================== Footer ==================== */
.footer {
  background: var(--brown-900);
  color: var(--cream-200);
  padding: 60px 0 24px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid var(--cream-300);
}

.footer-brand h4 {
  color: var(--cream-100);
  font-size: 20px;
  margin-bottom: 4px;
  text-align: left;
}

.footer-brand p {
  color: var(--cream-300);
  font-size: 14px;
  text-align: left;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--cream-200);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-bottom {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 233, 207, 0.15);
  font-size: 13px;
  color: var(--cream-300);
}

/* ==================== Floating WA ==================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==================== Reveal Animation ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
  .hero-container,
  .about-grid,
  .product-card,
  .order-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .order-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .order-badge {
    left: 20px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-badge {
    right: 20px;
  }

  .product-info {
    padding: 36px 28px;
  }

  .contact-map {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream-100);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-features {
    gap: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .float-wa {
    width: 54px;
    height: 54px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .nav-logo span {
    font-size: 17px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .product-info {
    padding: 28px 20px;
  }

  .testimonial-card {
    padding: 26px 22px;
  }
}