:root{
  --bg:#faf3ea;
  --fg:#3b2a1e;
  --muted:#7a6656;
  --border:#e5d6c3;
  --card:#fbf6ef;
  --terracotta:#c56a3a;
  --terracotta-deep:#9d4e28;
  --rose:#d68397;
  --leather:#6b4a2b;
  --cream:#f6ecdd;
  --clay:#d1935a;
  --shadow-warm: 0 20px 50px -20px rgba(120,60,20,.35);
  --shadow-soft: 0 8px 24px -12px rgba(120,60,20,.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Nunito Sans",system-ui,sans-serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.6;
  background-image:
    radial-gradient(circle at 15% 12%, rgba(214,131,151,.10), transparent 45%),
    radial-gradient(circle at 85% 88%, rgba(197,106,58,.12), transparent 50%);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

h1,h2,h3,h4{font-family:"Fraunces",Georgia,serif;font-weight:500;letter-spacing:-.01em;margin:0 0 .4em}
h1{font-size:clamp(2.4rem,6vw,4.4rem);line-height:1.05}
h2{font-size:clamp(1.8rem,3.5vw,2.75rem);line-height:1.15}
.eyebrow{
  text-transform:uppercase;letter-spacing:.18em;font-size:.78rem;
  color:var(--terracotta-deep);font-weight:600;margin:0 0 1rem
}
.tagline{font-family:"Fraunces",serif;font-style:italic;font-size:1.35rem;color:var(--terracotta-deep);margin:.2rem 0 1rem}
.description{color:var(--muted);font-size:1.05rem;max-width:60ch}
.body{color:var(--fg);margin-bottom:1.2rem}
blockquote{
  border-left:3px solid var(--terracotta);
  padding:.4rem 1rem;margin:1rem 0;
  font-family:"Fraunces",serif;font-style:italic;color:var(--leather)
}

.container{width:100%;max-width:1180px;margin:0 auto;padding:0 1.25rem}

/* Header */
.site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(250,243,234,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border)
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.9rem 1.25rem}
.brand{display:flex;align-items:center;gap:.6rem}
.brand-mark{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,var(--terracotta),var(--rose));
  color:#fff;display:grid;place-items:center;font-family:"Fraunces",serif;font-weight:600
}
.brand-name{font-family:"Fraunces",serif;font-size:1.15rem}
.brand-name em{color:var(--terracotta-deep);font-style:italic}
.nav{display:flex;gap:1.6rem}
.nav a{color:var(--muted);font-size:.95rem;transition:color .2s}
.nav a:hover{color:var(--terracotta-deep)}
.lang-switch{display:flex;background:var(--cream);border:1px solid var(--border);border-radius:999px;padding:2px}
.lang-switch button{
  border:0;background:transparent;font:inherit;font-size:.78rem;
  padding:.32rem .7rem;border-radius:999px;cursor:pointer;color:var(--muted);font-weight:600
}
.lang-switch button.active{background:var(--terracotta);color:#fff}
@media (max-width:720px){ .nav{display:none} }

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.9rem 1.6rem;border-radius:999px;font-weight:600;font-size:.95rem;
  transition:transform .2s, box-shadow .2s, background .2s;cursor:pointer;border:0
}
.btn-primary{background:var(--terracotta);color:#fff;box-shadow:var(--shadow-soft)}
.btn-primary:hover{background:var(--terracotta-deep);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--terracotta-deep);border:1.5px solid var(--terracotta)}
.btn-outline:hover{background:var(--terracotta);color:#fff}

/* Hero */
.hero{position:relative;min-height:82vh;display:flex;align-items:center;overflow:hidden}
.hero-image{position:absolute;inset:0}
.hero-image img{width:100%;height:100%;object-fit:cover;opacity: 0.7;}
.hero-image::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(115deg, rgba(250,243,234,.96) 0%, rgba(250,243,234,.7) 50%, rgba(250,243,234,.2) 100%)
}
.hero-content{position:relative;z-index:2;max-width:640px;padding-top:5rem;padding-bottom:5rem}
.cta-row{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.5rem}

/* Sections */
.section{padding:5rem 0}
.section-head{max-width:720px;margin:0 auto 3rem;text-align:center}
.section-head .description{margin:0 auto}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
@media (max-width:820px){ .two-col{grid-template-columns:1fr} }
.about-image img, .craft-image img{border-radius:1rem;box-shadow:var(--shadow-warm);aspect-ratio:4/5;object-fit:cover;width:100%}

/* Collection carousel */
.collection{background:linear-gradient(180deg,transparent,var(--cream) 40%,transparent)}
.carousel{position:relative;display:flex;align-items:center;gap:.5rem}
.carousel-track{
  display:flex;gap:1.25rem;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:1rem .25rem 1.5rem;scroll-behavior:smooth;flex:1;
  scrollbar-width:thin;scrollbar-color:var(--terracotta) transparent
}
.carousel-track::-webkit-scrollbar{height:8px}
.carousel-track::-webkit-scrollbar-thumb{background:var(--terracotta);border-radius:4px}
.product{
  flex:0 0 320px;scroll-snap-align:start;
  background:var(--card);border:1px solid var(--border);border-radius:1rem;overflow:hidden;
  display:flex;flex-direction:column;box-shadow:var(--shadow-soft);
  transition:transform .3s, box-shadow .3s
}
.product:hover{transform:translateY(-4px);box-shadow:var(--shadow-warm)}
.product-img{aspect-ratio:1/1;overflow:hidden;background:var(--cream)}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.product:hover .product-img img{transform:scale(1.05)}
.product-body{padding:1.25rem;display:flex;flex-direction:column;gap:.6rem;flex:1}
.product-name{font-family:"Fraunces",serif;font-size:1.35rem;color:var(--fg)}
.product-price{color:var(--terracotta-deep);font-weight:700;font-size:1.05rem}
.product-desc{color:var(--muted);font-size:.9rem;flex:1}
.product a.order{
  margin-top:.5rem;color:var(--terracotta-deep);font-weight:600;font-size:.9rem;
  border-top:1px solid var(--border);padding-top:.8rem
}
.product a.order:hover{color:var(--terracotta)}
.carousel-btn{
  width:44px;height:44px;border-radius:50%;border:1px solid var(--border);
  background:#fff;color:var(--terracotta-deep);font-size:1.4rem;cursor:pointer;
  box-shadow:var(--shadow-soft);flex-shrink:0
}
.carousel-btn:hover{background:var(--terracotta);color:#fff}
@media (max-width:520px){ .product{flex:0 0 260px} .carousel-btn{display:none} }

/* Craft list */
.craft-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.craft-list li{background:var(--card);border:1px solid var(--border);border-radius:.9rem;padding:1.1rem}
.craft-list h4{margin:0 0 .3rem;font-size:1.05rem;color:var(--terracotta-deep)}
.craft-list p{margin:0;color:var(--muted);font-size:.92rem}
@media (max-width:520px){ .craft-list{grid-template-columns:1fr} }

/* Payment grid */
.payment{background:linear-gradient(180deg,transparent,var(--cream) 30%,transparent)}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.grid-4 > div{background:var(--card);border:1px solid var(--border);border-radius:.9rem;padding:1.4rem;text-align:center}
.grid-4 h4{margin:0 0 .3rem;color:var(--terracotta-deep)}
.grid-4 p{margin:0;color:var(--muted);font-size:.9rem}
@media (max-width:820px){ .grid-4{grid-template-columns:repeat(2,1fr)} }
@media (max-width:460px){ .grid-4{grid-template-columns:1fr} }

/* Contact */
.contact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.contact-card{
  background:var(--card);border:1px solid var(--border);border-radius:.9rem;
  padding:1.4rem;display:flex;flex-direction:column;gap:.35rem;
  transition:transform .2s, box-shadow .2s
}
a.contact-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft);border-color:var(--terracotta)}
.c-label{font-size:.75rem;text-transform:uppercase;letter-spacing:.14em;color:var(--terracotta-deep);font-weight:600}
.c-value{color:var(--fg);font-weight:500}
@media (max-width:820px){ .contact-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:460px){ .contact-grid{grid-template-columns:1fr} }

/* Footer */
.site-footer{background:var(--leather);color:var(--cream);padding:2.5rem 0;margin-top:2rem}
.site-footer .brand-name{color:#fff;font-size:1.2rem;margin:0}
.site-footer .brand-name em{color:var(--rose)}
.site-footer .muted{color:rgba(246,236,221,.7);font-size:.85rem}
.footer-inner{display:flex;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.footer-inner .muted p{margin:.15rem 0}
