*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{overflow-x:hidden}
body{
  font-family:'Inter',sans-serif;
  background:#FFF8E7;color:#2D1B0E;
  line-height:1.7;-webkit-font-smoothing:antialiased
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* Gold foil grain overlay */
body::before{
  content:'';position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none;z-index:1
}

.container{max-width:1200px;margin:0 auto;padding:0 2rem}

/* Header */
.header{
  padding:1.5rem 2rem;border-bottom:1px solid rgba(212,160,23,0.2);
  display:flex;align-items:center;justify-content:space-between;
  max-width:1200px;margin:0 auto
}
.logo{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:700;color:#C72C2C;letter-spacing:0.02em;font-style:italic}
.logo-sub{display:block;font-family:'Inter',sans-serif;font-size:0.6rem;text-transform:uppercase;letter-spacing:0.25em;color:rgba(199,44,44,0.5);font-weight:400;font-style:normal;margin-top:0.15rem}
.nav{display:flex;gap:0.5rem}
.nav a{padding:0.4rem 1rem;font-size:0.78rem;text-transform:uppercase;letter-spacing:0.12em;color:rgba(45,27,14,0.5);transition:color 0.3s;font-weight:400}
.nav a:hover{color:#C72C2C}

/* Hero — warm red-to-gold gradient */
.hero{
  padding:5rem 0 4rem;text-align:center;
  position:relative;
  background:linear-gradient(135deg, #C72C2C 0%, #D4A017 100%);
  margin:0 -2rem;padding:5rem 2rem 4rem;
  border-radius:0 0 8px 8px
}
.hero::after{
  content:'';display:block;width:60px;height:2px;
  background:#FFF8E7;margin:2.5rem auto 0;opacity:0.6
}
.hero-label{
  font-size:0.7rem;text-transform:uppercase;letter-spacing:0.35em;
  color:rgba(255,248,231,0.7);margin-bottom:1.5rem;font-weight:500
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size:3.5rem;font-weight:700;font-style:italic;
  line-height:1.15;letter-spacing:-0.01em;
  max-width:700px;margin:0 auto 1rem;
  color:#FFF8E7
}
.hero h1 em{font-style:italic;color:#FFE57F}
.hero p{
  font-size:1rem;color:rgba(255,248,231,0.75);
  max-width:480px;margin:0 auto 2rem;font-weight:400;
  line-height:1.7
}
.hero-cta{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:0.8rem 2.2rem;border:2px solid #FFF8E7;
  color:#FFF8E7;font-size:0.8rem;text-transform:uppercase;
  letter-spacing:0.18em;transition:all 0.3s;font-weight:600
}
.hero-cta:hover{background:#FFF8E7;color:#C72C2C}

/* Decorative divider */
.divider{
  text-align:center;padding:3rem 0 2rem;
  font-size:1.5rem;color:#D4A017;opacity:0.5;
  letter-spacing:0.5em
}

/* Philosophy */
.philosophy{
  padding:0 0 4rem;display:grid;
  grid-template-columns:1fr 1fr;gap:4rem;align-items:center
}
.philosophy-text h2{
  font-family:'Playfair Display',serif;
  font-size:2rem;font-weight:700;font-style:italic;
  color:#2D1B0E;margin-bottom:1.2rem
}
.philosophy-text p{
  color:rgba(45,27,14,0.6);font-weight:400;font-size:0.95rem;
  line-height:1.8
}
.philosophy-text p + p{margin-top:1rem}
.philosophy-stat{
  background:linear-gradient(135deg, rgba(199,44,44,0.06), rgba(212,160,23,0.08));
  border:1px solid rgba(212,160,23,0.2);
  padding:2rem;text-align:center
}
.philosophy-stat .num{
  font-family:'Playfair Display',serif;font-size:3rem;
  font-weight:700;color:#C72C2C;font-style:italic;display:block
}
.philosophy-stat .label{
  font-size:0.7rem;text-transform:uppercase;letter-spacing:0.2em;
  color:rgba(199,44,44,0.6);margin-top:0.3rem;font-weight:500
}

/* Signature products */
.section-title{
  font-family:'Playfair Display',serif;
  font-size:1.8rem;font-weight:700;font-style:italic;
  text-align:center;color:#2D1B0E;margin-bottom:0.75rem
}
.section-sub{
  text-align:center;font-size:0.8rem;text-transform:uppercase;
  letter-spacing:0.25em;color:#C72C2C;margin-bottom:3rem;font-weight:600
}
.product-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  margin-bottom:4rem
}
.product-card{
  background:#FFFFFF;
  border:1px solid rgba(212,160,23,0.15);
  padding:1rem 1rem 1.5rem;transition:all 0.3s;cursor:default;
  position:relative;overflow:hidden
}
.product-card:hover{
  border-color:#D4A017;box-shadow:0 8px 24px rgba(199,44,44,0.1);
  transform:translateY(-3px)
}
.product-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:3px;background:linear-gradient(90deg, #C72C2C, #D4A017);opacity:0;transition:opacity 0.3s
}
.product-card:hover::after{opacity:1}
.product-card .card-img{
  width:100%;height:160px;object-fit:cover;object-position:center;
  border-radius:4px;margin-bottom:0.8rem;background:#FFF8E7
}
.product-card h3{
  font-family:'Playfair Display',serif;font-size:1.1rem;
  font-weight:700;color:#2D1B0E;margin-bottom:0.3rem
}
.product-card .origin{
  font-size:0.65rem;text-transform:uppercase;letter-spacing:0.15em;
  color:#D4A017;margin-bottom:0.8rem;font-weight:600
}
.product-card p{color:rgba(45,27,14,0.55);font-size:0.85rem;line-height:1.6;font-weight:400}

/* Heritage section */
.heritage{
  padding:3rem 0;margin:2rem 0 3rem;
  border-top:2px solid rgba(212,160,23,0.15);
  border-bottom:2px solid rgba(212,160,23,0.15)
}
.heritage-inner{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:2rem;text-align:center
}
.heritage-item .num{
  font-family:'Playfair Display',serif;font-size:2.5rem;
  font-weight:700;color:#C72C2C;font-style:italic;display:block
}
.heritage-item p{
  font-size:0.75rem;text-transform:uppercase;letter-spacing:0.15em;
  color:rgba(45,27,14,0.5);margin-top:0.3rem;font-weight:500
}

/* Contact CTA */
.contact-cta{
  text-align:center;padding:3rem 0 4rem
}
.contact-cta h2{
  font-family:'Playfair Display',serif;font-size:1.8rem;
  font-weight:700;font-style:italic;color:#2D1B0E;margin-bottom:0.8rem
}
.contact-cta p{
  color:rgba(45,27,14,0.55);font-size:0.9rem;margin-bottom:1.5rem;font-weight:400
}
.contact-cta .hero-cta{
  border-color:#C72C2C;color:#C72C2C
}
.contact-cta .hero-cta:hover{background:#C72C2C;color:#FFF8E7}

/* Footer */
.footer{
  border-top:2px solid rgba(212,160,23,0.12);
  padding:2rem 2rem;display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:1rem;
  max-width:1200px;margin:0 auto
}
.footer p{font-size:0.78rem;color:rgba(45,27,14,0.4)}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:0.7rem;text-transform:uppercase;letter-spacing:0.12em;color:rgba(45,27,14,0.4);transition:color 0.2s}
.footer-links a:hover{color:#C72C2C}

/* Corner ornament */
.corner-ornament{
  position:fixed;bottom:1.5rem;right:1.5rem;
  font-size:0.6rem;color:#C72C2C;opacity:0.25;
  letter-spacing:0.3em;writing-mode:vertical-rl;
  font-family:'Inter',sans-serif;text-transform:uppercase;
  pointer-events:none;z-index:0
}

@media(max-width:768px){
  .header{flex-direction:column;gap:1rem;padding:1rem 0}
  .nav a{padding:0.3rem 0.6rem;font-size:0.72rem}
  .hero{margin:0 -1rem;padding:3rem 1rem 2.5rem;border-radius:0}
  .hero h1{font-size:2.2rem}
  .philosophy{grid-template-columns:1fr;gap:2rem}
  .product-grid{grid-template-columns:1fr}
  .product-card .card-img{height:200px}
  .heritage-inner{grid-template-columns:1fr;gap:1.5rem}
  .footer{flex-direction:column;text-align:center}
  .corner-ornament{display:none}
}
@media(max-width:480px){
  .container{padding:0 1rem}
  .hero h1{font-size:1.8rem}
  .nav{gap:0.15rem}
  .nav a{padding:0.25rem 0.5rem;font-size:0.68rem;letter-spacing:0.08em}
}
/* Content pages */
.content-page{max-width:800px;margin:3rem auto;padding:0 2rem}
.content-page h1{font-family:'Playfair Display',serif;font-size:2rem;font-weight:400;font-style:italic;color:#C72C2C;margin-bottom:1rem}
.content-page h2{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:400;font-style:italic;color:#C72C2C;margin:2rem 0 1rem}
.content-page p{color:#5D4037;line-height:1.8;margin-bottom:1rem}
.content-page ul,.content-page ol{padding-left:1.5rem;color:#5D4037;margin:1rem 0}
.content-page li{margin-bottom:0.4rem}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin:2rem 0}
.contact-card{background:white;border:1px solid #D4A017;border-radius:4px;padding:1.5rem}
.contact-card h3{font-size:1rem;font-weight:600;color:#C72C2C;margin-bottom:0.3rem}
.contact-card p{color:#5D4037;font-size:0.9rem}
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;padding:3rem 0}
.product-detail-img{background:white;border:1px solid #D4A017;border-radius:4px;padding:2rem;display:flex;align-items:center;justify-content:center;min-height:300px}
.product-detail-img img{max-width:100%;max-height:340px;object-fit:contain}
.product-detail-body h1{font-family:'Playfair Display',serif;font-size:2rem;font-weight:400;font-style:italic;color:#C72C2C;margin-bottom:0.5rem}
.product-detail-body .product-detail-desc{color:#5D4037;margin-bottom:1rem}
.product-detail-body p{color:#5D4037;line-height:1.7}
.product-table{width:100%;border-collapse:collapse;margin:1rem 0}
.product-table th{background:#C72C2C;color:white;padding:0.6rem 1rem;text-align:left;font-weight:600}
.product-table td{padding:0.6rem 1rem;border-bottom:1px solid #D4A017;color:#5D4037}
.product-banner{max-height:220px;width:auto;object-fit:contain;border-radius:4px}
@media(max-width:768px){
  .content-page{padding:0 1rem}
  .product-detail,.contact-grid{grid-template-columns:1fr}
  .product-detail-img{min-height:200px}
}
/* Shared layout (list pages, etc.) */
.section{padding:3rem 0}
.section h1{font-family:'Playfair Display',serif;font-size:2rem;font-weight:400;font-style:italic;color:#C72C2C;text-align:center;margin-bottom:2rem}
.section h2{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:400;font-style:italic;color:#C72C2C;text-align:center;margin-bottom:2rem}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.product-card{background:white;border:1px solid #D4A017;border-radius:4px;overflow:hidden;transition:all 0.3s;display:block;color:inherit;text-decoration:none}
.product-card:hover{border-color:#C72C2C;transform:translateY(-3px);box-shadow:0 4px 20px rgba(199,44,44,0.1)}
.product-card-img{background:#FFF8E7;padding:1.5rem;display:flex;align-items:center;justify-content:center;height:200px}
.product-card-img img{max-width:100%;max-height:100%;object-fit:contain}
.product-card-body{padding:1.2rem}
.product-card-body h3{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:400;font-style:italic;color:#2D1B0E}
.product-card-body p{color:#5D4037;font-size:0.88rem;line-height:1.5}
.content{max-width:800px;margin:0 auto;padding:0 2rem 2rem}
.content p{color:#5D4037;line-height:1.8;margin-bottom:1rem}
.content h2{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:400;font-style:italic;color:#C72C2C;margin:1.5rem 0 0.8rem}
.content ul,.content ol{padding-left:1.5rem;color:#5D4037;margin:1rem 0}
.content li{margin-bottom:0.4rem}
