/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── 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);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 252, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(123, 45, 59, 0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav-link:hover { color: #7B2D3B; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7B2D3B;
  background: rgba(123, 45, 59, 0.08);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: rgba(123, 45, 59, 0.14);
  transform: translateY(-1px);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary {
  background: #7B2D3B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25);
}
.btn-primary:hover {
  background: #632532;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}
.btn-outline {
  background: transparent;
  color: #7B2D3B;
  border: 2px solid rgba(123, 45, 59, 0.3);
}
.btn-outline:hover {
  border-color: #7B2D3B;
  background: rgba(123, 45, 59, 0.05);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #7B2D3B;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #FFFCFA 0%, #FFF5F7 50%, #FFEEF2 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 204, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { padding-right: 20px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: #7B2D3B;
  border-radius: 1px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #7B2D3B;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.5);
  letter-spacing: 0.04em;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(123, 45, 59, 0.15);
}
.hero-image-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.15);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-img-main:hover img { transform: scale(1.03); }
.hero-img-float {
  position: absolute;
  bottom: -20px;
  left: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(123, 45, 59, 0.18);
  border: 4px solid #fff;
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7B2D3B;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(123, 45, 59, 0.1);
}

/* ── Section Shared ───────────────────────────────────── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.6);
  max-width: 540px;
}
.section-header { margin-bottom: 56px; }

/* ── Products ─────────────────────────────────────────── */
.products {
  padding: 100px 0;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #FFFCFA;
  border: 1px solid rgba(123, 45, 59, 0.07);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.12);
}
.product-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 18px 22px 6px;
}
.product-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.55);
  padding: 0 22px 22px;
}

/* ── Why Us ───────────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFCFA 0%, #FFF5F7 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content .section-sub { margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 59, 0.07);
  border-radius: 14px;
}
.why-item-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.why-item-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
}
.why-image-col { position: relative; }
.why-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(123, 45, 59, 0.15);
  border: 4px solid #fff;
}
.why-img-accent img { display: block; }

/* ── About ────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.62);
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.78);
}
.about-value svg { flex-shrink: 0; }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #7B2D3B 0%, #632532 60%, #4e1e28 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 204, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFF5F7 0%, #FFFCFA 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 59, 0.07);
  border-radius: 12px;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.6;
}
.contact-link {
  color: #7B2D3B;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-link:hover { color: #632532; }

/* ── Form ─────────────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(123, 45, 59, 0.08);
  border: 1px solid rgba(123, 45, 59, 0.06);
}
.contact-form-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(123, 45, 59, 0.14);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  background: #FFFCFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(26, 26, 26, 0.3);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.form-success-text {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.6;
}
.hidden { display: none; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FFB8CC; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Mobile Menu ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 252, 250, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(123, 45, 59, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(123, 45, 59, 0.06);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: #7B2D3B; }
.mobile-menu .nav-cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  background: rgba(123, 45, 59, 0.08);
  color: #7B2D3B;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .why-grid,
  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image-col { order: 2; max-width: 500px; }
  .hero-img-float { left: -16px; bottom: -12px; }
  .why-img-accent { right: -16px; bottom: -16px; }
  .about-image { order: 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 0.95rem; }
  .products-grid { grid-template-columns: 1fr; }
  .products, .why-us, .about, .contact { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-img-float { display: none; }
  .why-img-accent { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}
