:root {
  --bg: #FAF7F2;
  --bg-warm: #F5F0EA;
  --fg: #3D3028;
  --fg-soft: #6B5D4F;
  --fg-muted: #9B8E7E;
  --accent: #C4A265;
  --accent-light: #D4B896;
  --cream: #F0E6D8;
  --beige: #E8DFD4;
  --taupe: #DDD2C2;
  --brown-soft: #B8A48E;
  --brown: #8B7355;
  --gold: #C4A265;
  --gold-light: rgba(196, 162, 101, 0.15);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-pad: clamp(80px, 12vw, 140px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, var(--gold-light) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 70%, rgba(232, 223, 212, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 36px auto;
}

.hero-sub {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad) 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.about-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 100px;
}

.section-number {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 1px;
}

.section-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--fg);
}

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 28px;
}

.about-text {
  font-size: 16px;
  color: var(--fg-soft);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 600px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--beige);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg);
}

.value-icon {
  color: var(--accent);
  font-size: 18px;
}

/* ===== PRODUCTS ===== */
.products {
  padding: var(--section-pad) 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.products-header {
  margin-bottom: 60px;
}

.products-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  color: var(--fg);
  margin-top: 20px;
}

.products-subtitle {
  font-size: 15px;
  color: var(--fg-soft);
  margin-top: 12px;
  max-width: 480px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(61, 48, 40, 0.08);
}

.product-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-mockup {
  width: 120px;
  height: 160px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(61, 48, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
}

.mockup-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mockup-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige);
}

.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 70px;
}

.mockup-line {
  height: 4px;
  background: var(--cream);
  border-radius: 2px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad) 24px;
  background: var(--bg-warm);
}

.testimonials-header {
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.testimonials-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  color: var(--fg);
  margin-top: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--fg-soft);
}

.author-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.author-detail {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--section-pad) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 50% 50%, var(--gold-light) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
}

.closing-headline em {
  font-style: italic;
  color: var(--accent);
}

.closing-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 36px auto;
}

.closing-text {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.85;
  margin-bottom: 40px;
}

.closing-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.closing-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 1px;
}

.closing-dot {
  color: var(--accent);
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--beige);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--fg);
  letter-spacing: 1px;
}

.footer-tagline {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  color: var(--fg-soft);
}

.footer-bottom {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-label {
    position: static;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-sub br { display: none; }

  .hero h1 br:first-of-type { display: none; }

  .hero-scroll-hint { display: none; }

  .closing-values {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  
  .product-image { height: 220px; }
  
  .testimonial-card { padding: 24px; }
}