:root {
  --paper: #f4f1ea;
  --paper-2: #efeae0;
  --white: #fffcf7;
  --ink: #141414;
  --muted: #5c574e;
  --line: #e4ddd0;
  --forest: #16362c;
  --forest-2: #0f2a22;
  --sage: #dfe8df;
  --rust: #c45c3a;
  --alert: #b5471d;
  --max: 1180px;
  --r: 20px;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.5 "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.osk-skip {
  position: absolute;
  left: -999px;
}
.osk-skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px; z-index: 50; }

.osk-wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.osk-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.osk-header__bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.osk-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.osk-logo__mark { color: var(--forest); display: inline-flex; }
.osk-logo__mark--light { width: 18px; height: 18px; border-radius: 50%; background: #e8efe8; display: inline-block; }

.osk-nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: flex-end; }
.osk-nav__link {
  text-decoration: none;
  padding: 8px 10px;
  font-weight: 550;
  font-size: 0.95rem;
}

.osk-drop { position: relative; }
.osk-drop__btn {
  background: none;
  border: 0;
  padding: 8px 10px;
  font-weight: 550;
  cursor: pointer;
}
.osk-drop__btn::after { content: " ▾"; font-size: 0.7em; opacity: 0.55; }
.osk-drop__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 40;
}
.osk-drop.is-open .osk-drop__menu,
.osk-drop:hover .osk-drop__menu { display: grid; }
.osk-drop__menu a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
}
.osk-drop__menu a:hover { background: var(--paper-2); }

.osk-header__tools { display: flex; align-items: center; gap: 6px; margin-left: 12px; }

.osk-lang { display: flex; align-items: center; gap: 4px; font-size: 0.88rem; margin-right: 6px; }
.osk-lang a { text-decoration: none; opacity: 0.5; font-weight: 650; }
.osk-lang a.is-on { opacity: 1; }

.osk-nav-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: 999px;
  padding: 8px 12px;
}

.osk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75em 1.15em;
  font-weight: 650;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.osk-btn--dark { background: var(--forest); color: #fff; }
.osk-btn--dark:hover { background: var(--forest-2); }
.osk-btn--ghost { background: transparent; color: var(--ink); }
.osk-btn--ghost:hover { background: var(--paper-2); }
.osk-play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
}
.osk-play::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent currentColor;
}

.osk-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.osk-kicker--light { color: #c9d4cc; }

h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.12; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.15rem; }

.osk-lead { font-size: 1.08rem; color: var(--muted); max-width: 36rem; }
.osk-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.6rem 0 1.1rem; }
.osk-trust { display: flex; flex-wrap: wrap; gap: 16px 22px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 0.88rem; }
.osk-trust li { display: flex; align-items: center; gap: 8px; }
.osk-trust li::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--sage); box-shadow: inset 0 0 0 4px var(--forest); }

.osk-hero { position: relative; padding: 36px 0 20px; overflow: hidden; }
.osk-hero__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 28px; align-items: start; }
.osk-hero__stage { position: relative; min-height: 560px; }

.osk-leaf--tr {
  position: absolute;
  right: -40px;
  top: 20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, #7ea36a 0%, transparent 62%);
  opacity: 0.35;
  pointer-events: none;
}

.osk-dash {
  display: grid;
  grid-template-columns: 72px 1fr;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
  position: relative;
  z-index: 2;
}
.osk-dash__side { background: var(--forest); color: #d7e2db; padding: 16px 10px; font-size: 0.62rem; }
.osk-dash__side ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.osk-dash__side li { opacity: 0.7; }
.osk-dash__side li.is-on { opacity: 1; color: #fff; }
.osk-dash__main { padding: 16px 18px 18px; }
.osk-dash__top { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; }
.osk-dash__pill { margin-left: auto; background: var(--paper-2); border-radius: 999px; padding: 3px 8px; font-size: 0.7rem; color: var(--muted); }
.osk-dash__who { width: 24px; height: 24px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; font-size: 0.7rem; }
.osk-dash__hello { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.03em; margin: 14px 0 2px; }
.osk-dash__sub { margin: 0 0 14px; color: var(--muted); font-size: 0.88rem; }
.osk-dash__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.osk-dash__stats div { background: var(--paper); border-radius: 12px; padding: 10px; }
.osk-dash__stats span { font-size: 1.4rem; font-weight: 700; display: block; }
.osk-dash__stats small { color: var(--muted); font-size: 0.72rem; }
.osk-dash__stats .is-alert span { color: var(--alert); }
.osk-dash__split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.osk-dash__h { font-size: 0.78rem; font-weight: 700; margin: 0 0 8px; }
.osk-dash__bars, .osk-dash__orders { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 0.78rem; }
.osk-dash__bars li { display: grid; grid-template-columns: 1fr auto; gap: 4px; }
.osk-dash__bars i { display: block; grid-column: 1 / -1; height: 5px; background: var(--line); border-radius: 99px; position: relative; }
.osk-dash__bars i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--p); background: var(--forest); border-radius: inherit; }
.osk-dash__orders em { display: block; color: var(--muted); font-style: normal; font-size: 0.72rem; }
.osk-dash__orders .warn { color: var(--alert); }
.osk-dash__orders code { font-size: 0.7rem; color: var(--muted); }

.osk-photo { position: absolute; margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.osk-photo img { width: 100%; height: 100%; object-fit: cover; }
.osk-photo--croissant { left: -8%; bottom: 18px; width: 42%; height: 168px; z-index: 1; }
.osk-photo--cup { right: -4%; bottom: 8px; width: 28%; height: 150px; z-index: 3; }
.osk-float {
  position: absolute;
  right: 6%;
  bottom: 150px;
  width: 220px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  z-index: 4;
}
.osk-float__k { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.osk-float__t { font-weight: 700; margin: 0 0 8px; }
.osk-float a { color: var(--forest); font-weight: 650; text-decoration: none; font-size: 0.88rem; }

.osk-cats { padding: 18px 0 10px; }
.osk-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.osk-cats a { text-decoration: none; display: grid; gap: 6px; }
.osk-cats strong { font-size: 0.98rem; }
.osk-cats small { color: var(--muted); font-size: 0.84rem; }
.osk-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.osk-ico--green { background: #e4efe4; color: var(--forest); }
.osk-ico--rust { background: #f3e0d6; color: var(--rust); }
.osk-ico--ink { background: #eceae4; color: var(--ink); }

.osk-section { padding: 72px 0; }
.osk-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; margin-bottom: 28px; }
.osk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.osk-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 18px 20px;
  box-shadow: 0 1px 0 var(--line);
}
.osk-card p { color: var(--muted); }
.osk-card a { color: var(--rust); font-weight: 650; text-decoration: none; }
.osk-card__viz { background: var(--paper); border-radius: 14px; padding: 14px; margin-bottom: 14px; min-height: 168px; font-size: 0.82rem; }
.osk-mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin: 8px 0 12px; }
.osk-mini-cal span { text-align: center; padding: 4px 0; border-radius: 6px; color: var(--muted); }
.osk-mini-cal .is-on { background: var(--forest); color: #fff; }
.osk-switch { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.osk-switch i { width: 28px; height: 16px; border-radius: 99px; background: var(--forest); position: relative; }
.osk-switch i::after { content: ""; position: absolute; width: 12px; height: 12px; background: #fff; border-radius: 50%; right: 2px; top: 2px; }
.osk-check, .osk-timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.osk-check li { display: flex; justify-content: space-between; }
.osk-check .is-done { text-decoration: line-through; opacity: 0.55; }
.osk-timeline li { padding-left: 12px; border-left: 2px solid var(--line); color: var(--muted); }

.osk-dark { background: var(--forest); color: #eef3ef; padding: 72px 0; }
.osk-dark h2 { color: #fff; }
.osk-dark__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: center; }
.osk-dark__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.osk-dark__list strong { display: block; color: #fff; margin-bottom: 4px; }
.osk-dark__list span { color: #c5d0c8; font-size: 0.92rem; }

.osk-week { background: var(--white); color: var(--ink); border-radius: 22px; padding: 18px; box-shadow: var(--shadow); }
.osk-week__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.osk-week__head span { font-size: 0.75rem; color: var(--muted); }
.osk-week__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.osk-week__cols > div { background: var(--paper); border-radius: 14px; padding: 12px; }
.osk-week__cols h3 { font-size: 0.95rem; margin: 0 0 4px; }
.osk-week__cols p { margin: 0 0 10px; color: var(--muted); font-size: 0.78rem; }
.osk-week__cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 0.82rem; }
.osk-week__cols b { float: right; }

.osk-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.osk-steps article { background: var(--white); border-radius: var(--r); padding: 22px; }
.osk-steps span { display: block; font-size: 0.78rem; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.osk-steps p { color: var(--muted); }

.osk-finale {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.7fr;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 40px;
  padding: 20px 0 48px;
}
.osk-finale__photo { margin: 0; border-radius: 22px; overflow: hidden; }
.osk-finale__photo img { width: 100%; height: 280px; object-fit: cover; }
.osk-finale__note { color: var(--muted); font-style: italic; font-size: 0.95rem; max-width: 12rem; justify-self: end; }

.osk-footer { padding: 10px 0 28px; }
.osk-footer__row { display: flex; justify-content: space-between; gap: 24px; align-items: end; padding-bottom: 18px; }
.osk-footer__brand p { color: var(--muted); margin: 8px 0 0; font-size: 0.9rem; }
.osk-footer__links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: 0.9rem; }
.osk-footer__links a { text-decoration: none; }
.osk-footer__base { border-top: 1px solid var(--line); padding-top: 14px; color: var(--muted); font-size: 0.82rem; }

.osk-page { padding: 56px 0 80px; }
.osk-page .osk-wrap { max-width: 760px; }
.osk-page--wide .osk-wrap { max-width: var(--max); }
.osk-page h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
.osk-page .osk-lead { font-size: 1.15rem; }
.osk-page ul { padding-left: 1.1em; }
.osk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.osk-price { background: var(--white); border-radius: var(--r); padding: 22px; }
.osk-price--featured { outline: 2px solid var(--forest); }
.osk-price__num { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.04em; margin: 0.2em 0 0.4em; }
.osk-price__num span { font-size: 1rem; color: var(--muted); font-weight: 550; }
.osk-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.92rem; }
.osk-table th, .osk-table td { text-align: left; border-bottom: 1px solid var(--line); padding: 10px 6px; }
.osk-form { display: grid; gap: 12px; max-width: 32rem; }
.osk-form label { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 650; }
.osk-form input, .osk-form select, .osk-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
}
.osk-hp { position: absolute; left: -9999px; }
.osk-notice { padding: 12px 14px; border-radius: 12px; background: var(--white); }
.osk-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.osk-feat-grid .osk-card { margin: 0; }

@media (max-width: 980px) {
  .osk-hero__grid,
  .osk-intro,
  .osk-dark__grid,
  .osk-finale,
  .osk-cards,
  .osk-cats__grid,
  .osk-steps,
  .osk-grid-3,
  .osk-feat-grid,
  .osk-week__cols { grid-template-columns: 1fr; }
  .osk-hero__stage { min-height: auto; }
  .osk-photo--croissant, .osk-photo--cup, .osk-float { position: static; width: 100%; height: auto; margin-top: 14px; }
  .osk-photo--cup { max-width: 200px; }
  .osk-nav-toggle { display: inline-block; }
  .osk-nav {
    display: none;
    position: absolute;
    inset: 76px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .osk-nav.is-open { display: flex; }
  .osk-header { position: relative; }
  .osk-drop__menu { position: static; box-shadow: none; }
  .osk-header__tools { margin: 8px 0 0; flex-wrap: wrap; }
}
