/* assets/styles.css */
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:rgba(17,17,17,.72);
  --border:rgba(17,17,17,.12);
  --shadow:0 14px 34px rgba(0,0,0,.10);
  --shadow2:0 10px 22px rgba(0,0,0,.08);
  --r:18px;
  --r2:14px;
  --wrap:1120px;
  --pad:18px;

  /* brand accent */
  --accent:#111111;
  --accentText:#ffffff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--pad);}

.skip{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:18px;top:18px;width:auto;height:auto;padding:10px 12px;background:#fff;border:1px solid var(--border);border-radius:10px}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f1d9ef; /* slightly darker lavender */
  border-bottom: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* Header text contrast fix */
.header .brand strong {
  color: #111;
}

.header .brand span {
  color: #333;
}

.header .nav a {
  color: #111;
  font-weight: 600;
}

.header .nav a:hover {
  text-decoration: underline;
}


.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;align-items:center;gap:12px;text-decoration:none;
}
.brand img{
  width:46px;height:46px;border-radius:12px;object-fit:cover;
  border:1px solid var(--border);
}
.brand .name{display:flex;flex-direction:column;line-height:1.1}
.brand .name strong{font-size:15px}
.brand .name span{font-size:12px;opacity:.75}

.nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
  text-decoration:none;
  padding:8px 10px;border-radius:12px;border:1px solid transparent;
}
.nav a:hover{border-color:var(--border)}
.nav .pill{border-color:var(--border)}
.nav .primary{background:var(--accent);color:var(--accentText);border-color:transparent}

.hero{padding:58px 0 38px}
.hero-inner{
  display:grid;grid-template-columns:1.2fr 1fr;gap:26px;align-items:center;
}
.kicker{
  display:inline-block;font-size:12px;letter-spacing:.08em;text-transform:uppercase;
  opacity:.8;margin-bottom:10px;
}
.hero h1{
  font-size:clamp(30px, 3.4vw, 48px);
  line-height:1.05;margin:0 0 10px;
}
.hero p{margin:0 0 14px;color:var(--muted);font-size:16px}
.ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;
  text-decoration:none;border:1px solid var(--border);
  font-weight:700;
}
.btn.primary{background:var(--accent);color:var(--accentText);border-color:transparent}
.note{font-size:13px;opacity:.8;margin-top:10px}

.hero-card{
  border:1px solid var(--border);border-radius:var(--r);
  overflow:hidden;box-shadow:var(--shadow);background:#fff;
}
.hero-card img{width:100%;height:360px;object-fit:cover}
.hero-card .cap{padding:12px 14px;color:var(--muted);font-size:13px}

.section{padding:46px 0}
.section h2{margin:0 0 10px;font-size:22px}
.section p{margin:0 0 14px;color:var(--muted)}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.card{
  border:1px solid var(--border);border-radius:16px;padding:16px;
  box-shadow:var(--shadow2);background:#fff;
}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted)}

.split{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start}
.panel{
  border:1px solid var(--border);border-radius:16px;padding:16px;
  box-shadow:var(--shadow2);background:#fff;
}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
.gallery img{
  width:100%;height:190px;object-fit:cover;border-radius:var(--r2);
  border:1px solid var(--border);box-shadow:var(--shadow2);
}

.form{display:grid;gap:12px}
.field{display:grid;gap:6px}
label{font-weight:700;font-size:13px}
input,select,textarea{
  width:100%;padding:12px;border-radius:12px;border:1px solid var(--border);font:inherit;
}
textarea{min-height:120px;resize:vertical}
.notice{
  border:1px solid var(--border);border-radius:14px;padding:12px;background:rgba(0,0,0,.02);
  color:var(--muted);font-size:14px;
}

.footer{
  border-top:1px solid var(--border);
  padding:26px 0;margin-top:36px;
}
.footer-inner{
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.footer a{text-decoration:none}
.footer a:hover{text-decoration:underline}
.links{display:flex;gap:12px;flex-wrap:wrap;opacity:.9}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero-card img{height:260px}
  .cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .nav{justify-content:flex-start}
}
@media (max-width: 520px){
  .gallery{grid-template-columns:1fr}
}

/* Vertical social buttons (Instagram-style) */
.social-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.social-vertical-btn {
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

/* Facebook */
.social-vertical-btn.facebook {
  background: #1877F2;
  color: #fff;
}

/* Instagram gradient */
.social-vertical-btn.instagram {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
  color: #fff;
}

.social-vertical-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

/* Order item buttons */
.ctas .btn {
  background: #111;
  color: #fff;
  border: none;
}

.ctas .btn:hover {
  background: #000;
}
