
:root {
  --ink: #171716;
  --paper: #f7f2e8;
  --white: #fffdf8;
  --cobalt: #2946d3;
  --coral: #ff6f61;
  --lime: #d7ef68;
  --sand: #e7c99b;
  --line: rgba(23, 23, 22, 0.14);
  --muted: #66645f;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 24px 60px rgba(30, 26, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  position: sticky;
  top: 14px;
  z-index: 50;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  border-radius: 11px;
  font-size: 20px;
}
.site-header nav { display: flex; align-items: center; gap: 8px; }
.site-header nav a {
  padding: 10px 14px;
  border-radius: 10px;
  color: #4d4b46;
  font-weight: 600;
}
.site-header nav a:hover,
.site-header nav a.active { background: var(--paper); color: var(--ink); }
.header-cta {
  padding: 12px 18px;
  background: var(--cobalt);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
}
.header-cta:hover { transform: translateY(-2px); }

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; line-height: 1.05; }
h1 { letter-spacing: -0.06em; }
h2 { letter-spacing: -0.045em; }
p { margin-top: 0; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}
.footer-brand { margin-bottom: 8px; }
.site-footer p { margin: 0; color: var(--muted); }
.footer-links { display: flex; gap: 20px; font-weight: 700; }
.site-footer a:hover { color: var(--cobalt); }

a, button { transition: 0.2s ease; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(41, 70, 211, 0.35);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .site-header { flex-wrap: wrap; justify-content: center; }
  .site-header nav { order: 3; width: 100%; justify-content: center; border-top: 1px solid var(--line); padding-top: 10px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .site-header { width: min(100% - 20px, 1180px); top: 8px; }
  .site-header nav { overflow-x: auto; justify-content: flex-start; }
  .header-cta { display: none; }
  .site-footer { width: min(100% - 20px, 1180px); padding: 22px; }
  .footer-links { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.page-hero {
  width:min(1180px,calc(100% - 40px));
  margin:28px auto 18px;
  padding:72px 62px;
  background:var(--lime);
  border-radius:32px;
  position:relative;
  overflow:hidden;
}
.page-hero::after {
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  background:var(--coral);
  border-radius:50%;
  right:-40px;
  bottom:-120px;
  box-shadow:-190px -100px 0 var(--cobalt);
}
.page-hero h1 { font-size:clamp(54px,7vw,90px); max-width:900px; margin-bottom:20px; position:relative; z-index:1; }
.page-hero > p:not(.eyebrow) { max-width:700px; font-size:19px; position:relative; z-index:1; }

.deal-index {
  width:min(1180px,calc(100% - 40px));
  margin:18px auto 100px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.deal-index a {
  padding:18px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:16px;
  display:grid;
  grid-template-columns:36px 1fr;
  column-gap:10px;
}
.deal-index a:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.deal-index span { grid-row:1 / span 2; color:var(--cobalt); font-weight:800; }
.deal-index strong { font-family:"Manrope"; }
.deal-index small { color:var(--muted); }

.deal-detail {
  width:min(1180px,calc(100% - 40px));
  margin:0 auto 90px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
  scroll-margin-top:120px;
}
.deal-detail.reversed .deal-art { order:2; }
.deal-art {
  min-height:530px;
  border-radius:30px;
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.deal-art > span {
  position:absolute;
  top:22px;
  left:22px;
  padding:8px 12px;
  background:var(--white);
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.art-one { background:#dce2ff; }
.art-two { background:#ffd8d1; }
.art-three { background:#eef7b9; }
.art-four { background:#e6caa0; }
.art-five { background:#d9e0ff; }
.art-six { background:#ffd9d3; }
.art-object { position:relative; }
.chair-art { width:190px;height:230px;background:var(--cobalt);border-radius:80px 80px 38px 38px;box-shadow:0 150px 0 -80px var(--ink); }
.chair-art::before { content:"";position:absolute;width:250px;height:58px;background:var(--coral);left:-30px;bottom:-26px;border-radius:30px; }
.packaging-art { width:220px;height:165px;background:var(--paper);border:5px solid var(--ink);box-shadow:28px 28px 0 var(--cobalt);transform:rotate(-5deg); }
.packaging-art::after { content:"SAVIRA";position:absolute;inset:0;display:grid;place-items:center;font:800 26px "Manrope";color:var(--coral); }
.desk-art { width:250px;height:18px;background:var(--ink); }
.desk-art::before { content:"";position:absolute;width:150px;height:160px;background:var(--coral);border-radius:65px 65px 28px 28px;left:50px;bottom:45px; }
.desk-art::after { content:"";position:absolute;width:15px;height:130px;background:var(--ink);left:30px;top:10px;box-shadow:175px 0 var(--ink); }
.event-art { width:135px;height:245px;background:var(--cobalt);border:5px solid var(--ink);box-shadow:80px 35px 0 -15px var(--coral); }
.event-art::after { content:"BE SEEN";position:absolute;inset:0;display:grid;place-items:center;color:white;font:800 24px "Manrope";text-align:center; }
.cafe-art { width:150px;height:210px;background:var(--white);border:5px solid var(--ink);clip-path:polygon(8% 0,92% 0,78% 100%,22% 100%); }
.cafe-art::after { content:"S";position:absolute;inset:0;display:grid;place-items:center;color:var(--coral);font:800 64px "Manrope"; }
.gift-art { width:240px;height:155px;background:var(--sand);border:5px solid var(--ink);box-shadow:20px 20px 0 var(--cobalt); }
.gift-art::before { content:"";position:absolute;width:38px;height:100%;background:var(--coral);left:100px; }
.gift-art::after { content:"";position:absolute;width:100%;height:35px;background:var(--coral);top:60px;left:0; }

.deal-copy .eyebrow { color:var(--cobalt); }
.deal-copy h2 { font-size:clamp(42px,5vw,66px); margin-bottom:18px; }
.deal-copy .lead { font-size:18px; color:var(--muted); }
.deal-copy ul { list-style:none; padding:0; margin:28px 0; display:grid; gap:11px; }
.deal-copy li { position:relative; padding-left:30px; }
.deal-copy li::before { content:"✓";position:absolute;left:0;width:20px;height:20px;display:grid;place-items:center;background:var(--lime);border-radius:50%;font-size:12px;font-weight:900; }
.price-row { display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line); }
.price-row span { display:flex;align-items:baseline;gap:10px; }
.price-row del { color:#99968e; }
.price-row strong { font:800 32px "Manrope"; }
.price-row a { background:var(--ink);color:white;padding:13px 16px;border-radius:11px;font-weight:800; }
.price-row a:hover { background:var(--cobalt); }
.back-link { display:inline-block;margin-top:18px;color:var(--cobalt);font-weight:800; }

.cta-section {
  width:min(1180px,calc(100% - 40px));
  margin:110px auto 30px;
  padding:50px;
  background:var(--cobalt);
  color:white;
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-section h2 { font-size:clamp(38px,5vw,60px);margin:0; }
.cta-section a { background:var(--lime);color:var(--ink);padding:15px 20px;border-radius:12px;font-weight:800;white-space:nowrap; }

@media (max-width: 900px) {
  .deal-index { grid-template-columns:1fr 1fr; }
  .deal-detail { grid-template-columns:1fr; gap:32px; }
  .deal-detail.reversed .deal-art { order:initial; }
  .deal-art { min-height:430px; }
}
@media (max-width: 620px) {
  .page-hero,.deal-index,.deal-detail,.cta-section { width:min(100% - 20px,1180px); }
  .page-hero { padding:44px 24px; }
  .page-hero h1 { font-size:48px; }
  .deal-index { grid-template-columns:1fr; margin-bottom:70px; }
  .deal-art { min-height:340px; }
  .price-row { align-items:flex-start; flex-direction:column; }
  .cta-section { padding:34px 24px; flex-direction:column; align-items:flex-start; }
}
