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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: #f7f4f0;
  color: #1c1a18;
}

img {
  max-width: 100%;
  display: block;
}

/* Simple fade/slide animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease-out forwards;
}

.reveal:nth-of-type(2) { animation-delay: 0.08s; }
.reveal:nth-of-type(3) { animation-delay: 0.16s; }
.reveal:nth-of-type(4) { animation-delay: 0.24s; }
.reveal:nth-of-type(5) { animation-delay: 0.32s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating subtle animation for product images */

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo {
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #b38b4d;
}

.nav a {
  margin-left: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #665b4a;
}

.nav a:hover {
  color: #b38b4d;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 40px;
  align-items: center;
  padding: 56px 10vw 40px;
  background: radial-gradient(circle at top left,#fdf7ee,#f4eee7);
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}

.hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #9a8c78;
}

.hero-text .sub {
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.hero-ctas {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg,#d5b16c,#b8924c);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.btn.ghost {
  border-color: rgba(0,0,0,0.12);
  color: #4b4337;
  background: rgba(255,255,255,0.7);
}

.btn.ghost:hover {
  border-color: #b8924c;
  color: #b8924c;
  background: #fff;
}

.disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: #8d8170;
}

.disclaimer.center {
  text-align: center;
}

.hero-image {
  position: relative;
  justify-self: center;
}

.hero-image img {
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.glow {
  position: absolute;
  inset: 18% 10% auto;
  height: 60%;
  background: radial-gradient(circle at 50% 0%,rgba(255,230,186,0.9),transparent 60%);
  filter: blur(18px);
  opacity: 0.9;
  z-index: -1;
}

.glow.small {
  inset: 12% 20% auto;
  height: 70%;
}

.glow.tiny {
  inset: 18% 20% auto;
  height: 50%;
}

/* Sections */

.section,
.benefits {
  padding: 56px 10vw;
}

.section.alt {
  background: #f0ebe5;
}

h2 {
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
}

.section-intro,
.benefits > p {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 15px;
  color: #544b3d;
}

/* Benefits grid */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 24px;
  margin-top: 24px;
}

.benefit {
  background: #fff;
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow: 0 14px 45px rgba(0,0,0,0.06);
  text-align: left;
}

.benefit h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

.benefit p {
  font-size: 14px;
  line-height: 1.6;
  color: #5b5144;
}

/* Two column sections */

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 40px;
  align-items: center;
}

.text-col {
  font-size: 15px;
  line-height: 1.7;
  color: #494034;
}

.text-col .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #9a8c78;
}

.text-col h2 {
  text-align: left;
}

.list {
  margin: 14px 0 20px;
  padding-left: 18px;
  color: #4f4538;
}

.list li {
  margin-bottom: 4px;
}

/* Product row */

.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
  gap: 28px;
  margin-top: 28px;
}

.product {
  background: #fff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.06);
  text-align: left;
}

.product img {
  border-radius: 16px;
  margin-bottom: 12px;
}

.product h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.product p {
  font-size: 14px;
  color: #5a5143;
  line-height: 1.6;
}

/* Testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 24px;
  margin-top: 24px;
}

.testimonial {
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.06);
  font-size: 14px;
  line-height: 1.7;
  color: #4b4135;
}

.testimonial .name {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9a8c78;
}

/* Footer */

.footer {
  padding: 26px 10vw 30px;
  font-size: 12px;
  color: #7a6f62;
  text-align: center;
  background: #f9f6f1;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.footer a {
  color: #7a6f62;
  text-decoration: none;
}

.footer a:hover {
  color: #b38b4d;
}

/* Order form */

.order-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  padding: 28px 24px 30px;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 24px;
  margin-top: 20px;
}

.order-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #4b4337;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #faf7f3;
  margin-bottom: 10px;
}

.order-form textarea {
  border-radius: 16px;
  min-height: 80px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: #b38b4d;
  background: #fff;
}

.order-note {
  font-size: 12px;
  color: #7a6f62;
  line-height: 1.6;
  margin-top: 10px;
}

.order-summary {
  font-size: 13px;
  color: #4b4337;
  line-height: 1.7;
}

.order-summary h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }
  .hero-image {
    order: -1;
    max-width: 360px;
    margin: 0 auto 12px;
  }
  .two-col,
  .order-grid {
    grid-template-columns: 1fr;
  }
  .topbar {
    flex-direction: column;
    gap: 8px;
  }
  .nav a {
    margin-left: 10px;
  }
}
