/* Star Leather — starleather.shop */
:root {
  --ink: #2b1d14; --ink-2: #4a3628; --tan: #c89b5a; --tan-2: #a97d3f; --cream: #f6f1ea; --paper: #fffdf9;
  --line: #e6dccf; --text: #2a2521; --muted: #6b5f55; --wa: #25d366; --wa-2: #1ebe5b;
  --font-h: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-b: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-b); color: var(--text); background: var(--paper); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tan-2); }
h1, h2, h3 { font-family: var(--font-h); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.wrap { width: min(1160px, 92vw); margin: 0 auto; }
.narrow { max-width: 720px; }
.section { padding: 56px 0; }
.section.alt { background: var(--cream); }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 8px 12px; }
.skip:focus { left: 8px; z-index: 100; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,249,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 68px; }
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1.1; }
.brand .brand-name { font-family: var(--font-h); font-size: 1.35rem; font-weight: 700; }
.brand small { color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.brand .star { color: var(--tan); }
.site-header nav { margin-left: auto; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.menu a { display: block; padding: 8px 12px; color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem; border-radius: 6px; }
.menu a:hover, .menu a[aria-current="page"] { background: var(--ink); color: #fff; }
.nav-toggle { display: none; }
.btn { display: inline-block; padding: 11px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer; font-family: var(--font-b); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-2); color: #fff; }
.head-wa { white-space: nowrap; }
@media (max-width: 900px) {
  .head-wa { display: none; }
  .nav-toggle { display: block; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
  .nav-toggle span { display: block; height: 3px; margin: 6px 0; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .site-header nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); display: none; box-shadow: 0 10px 24px rgba(0,0,0,.12); }
  .site-header nav.open { display: block; }
  .menu { flex-direction: column; padding: 8px 4vw 12px; }
  .menu a { padding: 12px 10px; font-size: 1.05rem; border-radius: 0; }
}

/* hero */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; background: var(--ink); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-text { position: relative; color: #fff; padding: 72px 0; max-width: 720px; }
.hero-text h1 { color: #fff; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--tan); font-weight: 600; margin: 0 0 10px; }
.lead { font-size: 1.12rem; color: inherit; opacity: .92; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

/* categories */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat { position: relative; display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 7 / 9; background: var(--cream); text-decoration: none; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat:hover img { transform: scale(1.04); }
.cat-name { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 16px 14px; background: linear-gradient(transparent, rgba(43,29,20,.85)); color: #fff; font-family: var(--font-h); font-size: 1.25rem; }
@media (max-width: 640px) { .cats { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* split + prose */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split img { border-radius: 10px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.prose p { margin: 0 0 1em; }
.ticks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.ticks li { padding-left: 26px; position: relative; margin: 6px 0; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--tan-2); font-weight: 700; }
.addr { font-size: 1.05rem; font-weight: 500; }
.note { font-size: .85rem; color: var(--muted); }
.others a { margin-right: 4px; }

/* band */
.band { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; padding: 56px 0 44px; }
.band h1 { color: #fff; }
.band .lead { max-width: 760px; }

/* items */
.items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 28px 0 14px; }
.item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.item img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.item figcaption { padding: 12px 14px 14px; }
.item b { display: block; font-family: var(--font-h); font-size: 1.1rem; color: var(--ink); }
.item span { display: block; color: var(--muted); font-size: .92rem; }
@media (max-width: 1000px) { .items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .items { grid-template-columns: 1fr; } }

/* map */
.map { position: relative; width: 100%; padding-bottom: 66%; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--cream); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* form */
.enquiry { display: grid; gap: 14px; }
.enquiry .f { display: grid; gap: 4px; }
.enquiry label { font-weight: 600; font-size: .9rem; }
.enquiry input, .enquiry select, .enquiry textarea { font: inherit; padding: 11px 12px; border: 1px solid #cdbfae; border-radius: 6px; background: #fff; width: 100%; }
.enquiry input:focus, .enquiry select:focus, .enquiry textarea:focus { outline: 2px solid var(--tan); border-color: var(--tan); }
.enquiry .is-invalid { border-color: #b3261e; }
.enquiry .err { color: #b3261e; font-size: .82rem; min-height: 1em; }
.enquiry button { justify-self: start; }

/* toast */
#toast { position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 16px); opacity: 0; pointer-events: none; background: var(--ink); color: #fff; padding: 14px 18px; border-radius: 8px; max-width: 92vw; width: 440px; font-size: .95rem; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: .25s; z-index: 90; }
#toast.show { opacity: 1; transform: translate(-50%, 0); }
#toast.err { background: #b3261e; }

/* footer */
.site-footer { background: var(--ink); color: #e9dfd2; padding: 48px 0 24px; margin-top: 24px; }
.site-footer a { color: var(--tan); }
.grid-3 { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.site-footer .brand { font-family: var(--font-h); font-size: 1.3rem; color: #fff; margin: 0 0 8px; }
.ft-h { font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.ft-links { list-style: none; padding: 0; margin: 0; }
.ft-links li { margin: 4px 0; }
.copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 16px; font-size: .82rem; color: #b9a995; }
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; gap: 20px; } }

/* floating whatsapp */
.wa-float { position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.28); z-index: 80; }
.wa-float:hover { background: var(--wa-2); }

/* logo */
.brand { flex-direction: row; align-items: center; gap: 10px; }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-footer .brand img { width: 120px; height: 120px; }
.emblem { display: flex; align-items: center; gap: 18px; background: var(--cream); border-radius: 10px; padding: 14px 18px; margin: 8px 0 20px; }
.emblem img { flex: 0 0 auto; width: 110px; height: 110px; }
.emblem p { margin: 0; color: var(--ink-2); font-family: var(--font-h); font-size: 1.05rem; }

/* product cards as links + product page */
a.item { text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s; }
a.item:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(43,29,20,.12); }
.item .cap { display: block; padding: 12px 14px 14px; }
.item .cap b { display: block; font-family: var(--font-h); font-size: 1.1rem; color: var(--ink); }
.item .cap span { display: block; color: var(--muted); font-size: .92rem; }
.item .cap em { display: block; font-style: normal; color: var(--tan-2); font-size: .88rem; margin-top: 6px; font-weight: 600; }
.crumbs { padding: 14px 0 0; font-size: .9rem; color: var(--muted); }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.product .split.top { align-items: start; }
.pimg img { border-radius: 10px; width: 100%; }
.specs { border-collapse: collapse; width: 100%; margin: 6px 0 16px; font-size: .95rem; }
.specs th, .specs td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { width: 32%; color: var(--ink); font-weight: 600; }
.items.related { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .items.related { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .items.related { grid-template-columns: repeat(2, 1fr); } }
