
: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; }
}

main { overflow: hidden; }
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  padding: 72px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 46px solid var(--lime);
  border-radius: 50%;
  left: -130px;
  top: -110px;
  opacity: 0.7;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(52px, 7.2vw, 92px); margin-bottom: 24px; max-width: 780px; }
.hero h1 span { color: var(--cobalt); }
.hero-text { font-size: 19px; max-width: 620px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 44px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 21px;
  border-radius: 13px;
  font-weight: 800;
}
.button:hover { transform: translateY(-3px); }
.button.primary { background: var(--ink); color: #fff; }
.button.secondary { border: 1px solid var(--line); background: var(--paper); }
.button.light { background: var(--white); color: var(--ink); }
.button.dark { background: var(--ink); color: #fff; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats div { display: grid; }
.hero-stats strong { font: 800 25px "Manrope", sans-serif; }
.hero-stats span { color: var(--muted); font-size: 14px; }

.hero-visual { position: relative; min-height: 500px; }
.visual-card {
  position: absolute;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.card-main {
  inset: 40px 28px 28px 30px;
  background: var(--cobalt);
  color: white;
  padding: 34px;
  transform: rotate(-2deg);
}
.card-label {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.chair-shape {
  width: 190px;
  height: 210px;
  margin: 36px auto 20px;
  background: var(--coral);
  border-radius: 70px 70px 32px 32px;
  position: relative;
  transform: rotate(4deg);
}
.chair-shape::before {
  content: "";
  position: absolute;
  width: 225px;
  height: 70px;
  background: var(--lime);
  border-radius: 30px;
  bottom: -22px;
  left: -18px;
}
.chair-shape::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 90px;
  background: var(--ink);
  bottom: -95px;
  left: 84px;
  box-shadow: -56px 75px 0 -4px var(--ink), 56px 75px 0 -4px var(--ink);
}
.card-main h2 { font-size: 32px; margin-bottom: 8px; }
.card-main p { color: rgba(255,255,255,0.78); }
.card-main a { font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.card-small { width: 160px; padding: 20px; z-index: 3; }
.top-card { top: 0; right: -5px; background: var(--coral); transform: rotate(5deg); }
.top-card span, .top-card small { display: block; }
.top-card strong { display: block; font: 800 44px "Manrope"; line-height: 1; margin: 8px 0; }
.bottom-card { bottom: 0; left: 0; background: var(--lime); display: flex; gap: 12px; align-items: center; }
.bottom-card p { margin: 0; font-size: 13px; font-weight: 700; }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); }

.trust-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 22px 28px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.trust-strip span { color: #aaa79f; }
.trust-strip strong { font-family: "Manrope"; }

.section { width: min(1180px, calc(100% - 40px)); margin: 110px auto; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(38px, 5vw, 62px); max-width: 760px; margin-bottom: 0; }
.text-link { font-weight: 800; color: var(--cobalt); white-space: nowrap; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.category-card {
  min-height: 330px;
  padding: 28px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-card.cobalt { background: var(--cobalt); color: white; }
.category-card.coral { background: var(--coral); }
.category-card.lime { background: var(--lime); }
.category-card.sand { background: var(--sand); }
.category-number { position: absolute; right: 24px; top: 18px; font: 800 56px "Manrope"; opacity: 0.18; }
.category-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.5);
  font: 800 24px "Manrope";
  margin-bottom: auto;
}
.category-card h3 { font-size: 30px; margin: 24px 0 10px; }
.category-card p { max-width: 470px; opacity: 0.78; }
.card-link { margin-top: 10px; font-weight: 800; }

.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.deal-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.deal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.deal-image { height: 280px; position: relative; overflow: hidden; display: grid; place-items: center; }
.gradient-one { background: linear-gradient(135deg, #f8cfc6, #ff806d); }
.gradient-two { background: linear-gradient(135deg, #d7defd, #5971e0); }
.gradient-three { background: linear-gradient(135deg, #eef7b9, #d7ef68); }
.deal-badge { position: absolute; left: 16px; top: 16px; background: var(--white); padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.abstract-product { position: relative; }
.box-stack { width: 155px; height: 120px; background: var(--paper); border: 4px solid var(--ink); transform: rotate(-5deg); box-shadow: 18px 18px 0 var(--cobalt); }
.box-stack::after { content: ""; position: absolute; inset: 22px; border: 3px solid var(--coral); border-radius: 50%; }
.desk-set { width: 190px; height: 18px; background: var(--ink); margin-top: 60px; }
.desk-set::before { content:""; position:absolute; width:120px; height:115px; background:var(--coral); border-radius:45px 45px 20px 20px; left:35px; bottom:40px; }
.desk-set::after { content:""; position:absolute; width:14px; height:90px; background:var(--ink); left:25px; top:10px; box-shadow:126px 0 var(--ink); }
.tote-set { width: 145px; height: 150px; background: var(--white); border: 4px solid var(--ink); border-radius: 6px 6px 24px 24px; }
.tote-set::before { content:""; position:absolute; width:70px; height:50px; border:8px solid var(--cobalt); border-bottom:0; border-radius:40px 40px 0 0; left:32px; top:-45px; }
.tote-set::after { content:"S"; position:absolute; inset:0; display:grid; place-items:center; font:800 54px "Manrope"; color:var(--coral); }
.deal-content { padding: 22px; }
.deal-category { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--cobalt); margin-bottom: 10px; }
.deal-content h3 { font-size: 25px; margin-bottom: 10px; }
.deal-content > p:not(.deal-category) { color: var(--muted); }
.deal-bottom { display: flex; justify-content: space-between; gap: 10px; align-items: end; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.deal-bottom del { color: #98958f; margin-right: 7px; }
.deal-bottom strong { font: 800 20px "Manrope"; }
.deal-bottom a { font-weight: 800; color: var(--cobalt); }

.why-panel {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  padding: 65px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.why-copy h2 { font-size: clamp(40px, 5vw, 64px); }
.why-copy > p:not(.eyebrow) { color: #b8b4aa; font-size: 18px; }
.benefit-list { display: grid; gap: 16px; }
.benefit-list > div { padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; display: grid; grid-template-columns: 58px 1fr; column-gap: 14px; }
.benefit-list span { grid-row: 1 / span 2; color: var(--lime); font: 800 23px "Manrope"; }
.benefit-list h3 { margin-bottom: 5px; font-size: 22px; }
.benefit-list p { color: #aaa79f; margin: 0; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; padding: 28px; min-height: 290px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
blockquote > p { font-size: 20px; line-height: 1.5; }
blockquote footer { display: grid; }
blockquote footer span { color: var(--muted); font-size: 14px; }

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 100px auto 30px;
  padding: 48px;
  border-radius: 28px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.cta-section h2 { font-size: clamp(36px, 5vw, 58px); margin: 0; }

.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; width: 100%; }
.footer-top h3 { font-size: 15px; margin-bottom: 14px; }
.footer-top > div { display: flex; flex-direction: column; gap: 8px; }
.footer-top > div:first-child { display: block; }
.footer-bottom { width: 100%; padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line); display:flex; justify-content:space-between; }
.site-footer { display: block; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 54px 40px; }
  .hero-visual { min-height: 520px; }
  .deal-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .why-panel { grid-template-columns: 1fr; gap: 38px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hero, .section, .trust-strip, .cta-section { width: min(100% - 20px, 1180px); }
  .hero { padding: 42px 24px; }
  .hero h1 { font-size: 49px; }
  .hero-visual { min-height: 430px; }
  .card-main { inset: 40px 8px 20px 8px; padding: 24px; }
  .chair-shape { width: 135px; height: 150px; margin-top: 28px; }
  .card-main h2 { font-size: 25px; }
  .card-small { width: 130px; padding: 15px; }
  .top-card strong { font-size: 34px; }
  .trust-strip { overflow-x: auto; justify-content: flex-start; }
  .category-grid, .deal-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .section { margin: 75px auto; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .why-panel { padding: 36px 24px; }
  .cta-section { flex-direction: column; align-items: flex-start; padding: 34px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
