/* Template 13: Warm - Earth tones and organic shapes */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; line-height: 1.7; color: #4a3f35; background: #faf8f5; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.header { padding: 24px 0; background: transparent; position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Libre Baskerville', serif; font-size: 24px; font-weight: 700; color: #8b5a3c; }
.nav-cta { font-size: 14px; font-weight: 600; color: #8b5a3c; letter-spacing: 1px; text-transform: uppercase; }
.hero { padding: 140px 0 100px; position: relative; overflow: hidden; }
.organic-shape { position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: linear-gradient(135deg, #e8ddd4 0%, #d4c4b0 100%); border-radius: 0 0 0 60%; z-index: 0; opacity: 0.5; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-image { order: 2; }
.image-frame { background: #fff; padding: 16px; border-radius: 24px; box-shadow: 0 20px 60px rgba(139,90,60,0.15); }
.image-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.thumb { width: 65px; height: 65px; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; opacity: 0.6; background: #fff; padding: 4px; box-shadow: 0 2px 8px rgba(139,90,60,0.1); }
.thumb.active { border-color: #8b5a3c; opacity: 1; }
.thumb:hover { opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.hero-text { order: 1; }
.tagline { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #a67c52; background: rgba(166,124,82,0.1); padding: 8px 16px; border-radius: 20px; margin-bottom: 24px; }
.hero-text h1 { font-family: 'Libre Baskerville', serif; font-size: 44px; font-weight: 700; color: #3d3127; line-height: 1.2; margin-bottom: 20px; }
.hero-text p { font-size: 18px; color: #6b5d52; margin-bottom: 32px; }
.price-area { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.price { font-family: 'Libre Baskerville', serif; font-size: 36px; font-weight: 700; color: #8b5a3c; }
.original { font-size: 20px; color: #a99d93; text-decoration: line-through; }
.btn-primary { display: inline-block; background: #8b5a3c; color: #fff; padding: 18px 40px; border-radius: 50px; font-size: 16px; font-weight: 600; transition: all 0.3s; }
.btn-primary:hover { background: #73492f; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,90,60,0.3); }
.btn-secondary { display: inline-block; background: #faf8f5; color: #8b5a3c; padding: 18px 40px; border-radius: 50px; font-size: 16px; font-weight: 600; border: 2px solid #8b5a3c; transition: all 0.3s; }
.btn-secondary:hover { background: #8b5a3c; color: #fff; }
.features { padding: 100px 0; background: #fff; }
.features h2 { font-family: 'Libre Baskerville', serif; font-size: 32px; font-weight: 700; color: #3d3127; text-align: center; margin-bottom: 48px; }
.features-list { max-width: 600px; margin: 0 auto; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid #e8e2db; }
.feature-item:last-child { border-bottom: none; }
.leaf { font-size: 20px; flex-shrink: 0; }
.feature-item p { font-size: 16px; color: #5a4d42; }
.cta { padding: 100px 0; background: linear-gradient(135deg, #d4c4b0 0%, #c9b89c 100%); }
.cta-content { text-align: center; }
.cta h2 { font-family: 'Libre Baskerville', serif; font-size: 36px; font-weight: 700; color: #3d3127; margin-bottom: 16px; }
.cta p { font-size: 18px; color: #5a4d42; margin-bottom: 32px; }
.footer { padding: 40px 0; text-align: center; background: #faf8f5; }
.footer p { font-size: 14px; color: #a99d93; }
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image { order: 1; }
  .hero-text { order: 2; }
  .hero-text h1 { font-size: 32px; }
  .price { font-size: 28px; }
  .price-area { justify-content: center; }
  .organic-shape { display: none; }
}
