/* ============================================================
   No Chairs Given — chair & table rental. Playful light theme.
   ============================================================ */
:root {
  --bg: #fbf7f1;
  --card: #ffffff;
  --ink: #221b15;
  --muted: #766b60;
  --line: #ece3d6;
  --accent: #ff5436;      /* punchy coral */
  --accent-ink: #7a1f10;
  --green: #1f8a70;
  --shadow: 0 18px 40px -20px rgba(60, 40, 20, 0.35);
  --radius: 16px;
  --sans: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --maxw: 1120px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: transform .12s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: #ff3f1c; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 247, 241, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-weight: 900; letter-spacing: -0.02em; font-size: 1.15rem; text-decoration: none; text-transform: uppercase; }
.brand .dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { text-decoration: none; font-weight: 700; font-size: 0.94rem; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.nav .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
.hero .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.kicker {
  display: inline-block; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-ink);
  background: #ffe6df; border: 1.5px solid #ffccbf; padding: 0.3rem 0.75rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98; letter-spacing: -0.03em; font-weight: 900; margin: 0 0 1.1rem;
}
.hero h1 .swash { color: var(--accent); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 40ch; margin: 0 0 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.hero-note { font-weight: 700; font-size: 0.9rem; color: var(--muted); }
.hero-note b { color: var(--green); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); border: 3px solid var(--ink); box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.sticker {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--accent); color: #fff; font-weight: 900; text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 0.03em; padding: 0.7rem 1rem; border-radius: 12px;
  border: 3px solid var(--ink); transform: rotate(-6deg); line-height: 1.1; text-align: center;
}

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; border-top: 2px solid var(--ink); }
.section-head { max-width: 40ch; margin-bottom: 2.6rem; }
.section-head .eyebrow { font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--accent); margin: 0 0 0.5rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; font-weight: 900; margin: 0 0 0.6rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Products ---------- */
.goods { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.product {
  background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.product .photo { aspect-ratio: 4/3; overflow: hidden; background: #f0ece4; border-bottom: 2.5px solid var(--ink); }
.product .photo img { width: 100%; height: 100%; object-fit: cover; }
.product .body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.product h3 { font-size: 1.5rem; font-weight: 900; margin: 0 0 0.2rem; letter-spacing: -0.01em; }
.product .sub { color: var(--muted); font-weight: 600; margin: 0 0 0.9rem; }
.product p { margin: 0 0 1.1rem; color: #4a4139; }
.product ul { margin: 0 0 1.3rem; padding-left: 1.1rem; color: var(--muted); font-size: 0.95rem; }
.product ul li { margin-top: 0.25rem; }
.price-row { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.price { font-weight: 900; font-size: 1.7rem; }
.price small { font-weight: 700; font-size: 0.9rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.4rem; }
.step .n { font-weight: 900; font-size: 1.1rem; width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; border: 2px solid var(--ink); margin-bottom: 0.9rem; }
.step h3 { margin: 0 0 0.35rem; font-size: 1.1rem; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--ink); color: #fff; border-radius: var(--radius); padding: 2.6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; box-shadow: var(--shadow);
}
.pricing-card .rates { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.rate .big { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.rate .big span { color: var(--accent); }
.rate .lbl { color: #d9cfc4; font-weight: 700; margin-top: 0.3rem; }
.pricing-card .fine { color: #cabfb2; font-size: 0.95rem; }
.pricing-card .fine b { color: #fff; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; background: #f0ece4; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact .box { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--radius); padding: 3rem 2rem; box-shadow: var(--shadow); }
.contact h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; letter-spacing: -0.02em; margin: 0 0 0.6rem; }
.contact p.lead { color: var(--muted); font-size: 1.1rem; margin: 0 auto 1.6rem; max-width: 46ch; }
.contact-lines { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; justify-content: center; margin-top: 1.6rem; font-weight: 800; }
.contact-lines a { text-decoration: none; color: var(--ink); }
.contact-lines a:hover { color: var(--accent); }
.contact-lines .label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 800; }
.contact-lines .val { font-size: 1.3rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 2px solid var(--ink); padding: 2rem 0; font-size: 0.9rem; color: var(--muted); }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-figure { max-width: 440px; }
  .goods { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .nav a:not(.btn) { display: none; }
  .steps { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .hero-figure img { transform: none; }
}
