:root {
  --navy: #15284A;
  --navy-deep: #0E1B36;
  --navy-soft: #2A3D62;
  --teal-1: #2E7A8E;
  --teal-2: #3FA396;
  --teal-3: #5BC4A0;
  --cream: #F6F1E7;
  --cream-2: #EFE9DC;
  --paper: #FBF8F1;
  --ink: #15284A;
  --ink-soft: #5A6580;
  --line: #D7CFBE;
  --line-soft: #E6DFCE;
  --gradient: linear-gradient(90deg, var(--teal-1) 0%, var(--teal-2) 50%, var(--teal-3) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11", "tnum";
}

.serif {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

a { color: inherit; text-decoration: none; }

/* ========== LAYOUT SHELL ========== */
.app {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

/* ========== SIDEBAR ========== */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--navy);
  color: var(--cream);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar { width: 0; }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.brand .logo-plate {
  background: var(--paper);
  border-radius: 2px;
  padding: 6px 8px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px -14px rgba(0,0,0,0.5);
}
.brand .logo-plate img {
  width: 88px;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand .tag {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
}

.bar {
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

.nav-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-list li a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  padding: 7px 0;
  font-size: 13.5px;
  color: rgba(246,241,231,0.75);
  border-left: 1px solid rgba(246,241,231,0.07);
  padding-left: 12px;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  cursor: pointer;
}
.nav-list li a .num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.05em;
}
.nav-list li a:hover {
  color: var(--cream);
  border-left-color: var(--teal-3);
}
.nav-list li a.active {
  color: var(--cream);
  border-left-color: var(--teal-3);
  background: linear-gradient(90deg, rgba(91,196,160,0.08), transparent 60%);
}
.nav-list li a.active .num { opacity: 0.9; color: var(--teal-3); }

.side-foot {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.45;
  line-height: 1.5;
}

/* ========== MAIN ========== */
.main {
  padding: 0;
  max-width: 100%;
}

.hero {
  padding: 88px 88px 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,163,150,0.10), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.eyebrow .line {
  width: 56px; height: 1px;
  background: var(--gradient);
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 880px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--teal-1), var(--teal-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ========== MANIFESTO ========== */
.manifesto {
  max-width: 720px;
  padding: 28px 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.manifesto-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-1);
  margin-bottom: 18px;
}
.manifesto-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.002em;
}
.manifesto-text strong {
  font-weight: 600;
  background: linear-gradient(90deg, var(--teal-1), var(--teal-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto-text em {
  font-style: italic;
  color: var(--navy);
}
.manifesto-etym {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 16px;
  border-left: 2px solid var(--teal-3);
}
.manifesto-etym .ety-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.manifesto-etym .ety-sep { color: var(--teal-2); }
.manifesto-etym .ety-def em {
  font-style: italic;
  color: var(--navy);
}

.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hero-meta .k {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.hero-meta .v {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  color: var(--navy);
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 88px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.section:nth-child(even) {
  background: var(--cream);
}

.section-head {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.85;
  color: var(--navy);
  letter-spacing: -0.04em;
  position: relative;
}
.section-num::after {
  content: "";
  position: absolute;
  left: 6px; right: -16px;
  bottom: 14%;
  height: 6px;
  background: var(--gradient);
  z-index: -1;
  opacity: 0.55;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.section-title-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 6px;
}
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-count {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-bottom: 10px;
  white-space: nowrap;
}

/* ========== TABLE ROWS ========== */
.table {
  display: flex;
  flex-direction: column;
}
.row {
  display: grid;
  grid-template-columns: 44px 1.4fr 220px 1.4fr 44px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.18s, padding 0.18s;
  cursor: pointer;
  gap: 16px;
}
.row:hover {
  background: rgba(63,163,150,0.05);
}
.row .idx {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  color: var(--ink-soft);
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.row .activity {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}
.row .price {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.row .note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.row .add {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: all 0.2s;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}
.row .add:hover {
  border-color: var(--teal-2);
  color: var(--teal-1);
  background: white;
  transform: scale(1.08);
}
.row.in-cart {
  background: linear-gradient(90deg, rgba(63,163,150,0.10), rgba(63,163,150,0.02) 70%);
}
.row.in-cart .add {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* Highlighted rows (free / da X) */
.price.featured {
  color: var(--teal-1);
  font-weight: 600;
}

/* ========== PACKAGES ========== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.pkg {
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 36px 32px 32px;
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}
.pkg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.pkg:hover { border-color: var(--navy); transform: translateY(-2px); }
.pkg:hover::before { transform: scaleX(1); }
.pkg .pkg-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.pkg h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.pkg .pkg-content {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
  min-height: 80px;
}
.pkg .pkg-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 500;
}
.pkg .pkg-price em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 10px;
  font-family: "Inter", sans-serif;
}
.pkg.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.pkg.featured h3 { color: var(--cream); }
.pkg.featured .pkg-content { color: rgba(246,241,231,0.7); border-color: rgba(246,241,231,0.18); }
.pkg.featured .pkg-num { color: rgba(246,241,231,0.55); }
.pkg.featured .pkg-price { color: var(--teal-3); }
.pkg.featured .pkg-price em { color: rgba(246,241,231,0.6); }

/* ========== HOURLY ========== */
.hourly-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.hourly-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 32px 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.hourly-row:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--line-soft); }
.hourly-row:nth-child(even) { padding-left: 48px; }
.hourly-row .h-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  color: var(--navy);
}
.hourly-row .h-rate {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

/* ========== FOOTER NOTE ========== */
.foot-note {
  padding: 64px 88px 80px;
  background: var(--navy);
  color: var(--cream);
}
.foot-note .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-3);
  margin-bottom: 16px;
}
.foot-note p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  max-width: 760px;
  color: rgba(246,241,231,0.92);
  font-style: italic;
}
.foot-note .sign {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,241,231,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* ========== PREVENTIVO CART ========== */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 16px 40px -10px rgba(21,40,74,0.45);
  z-index: 90;
  transition: all 0.2s;
}
.cart-fab:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -12px rgba(21,40,74,0.55); }
.cart-fab .badge {
  background: var(--gradient);
  color: white;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
}
.cart-fab .lbl-empty {
  font-style: italic;
  opacity: 0.7;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
}

.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: 460px;
  height: 100vh;
  background: var(--paper);
  border-left: 1px solid var(--line);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px -20px rgba(21,40,74,0.25);
}
.cart-panel.open { transform: translateX(0); }
.cart-head {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.cart-head .sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.cart-close {
  background: none;
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 18px;
  transition: all 0.18s;
}
.cart-close:hover { border-color: var(--navy); color: var(--navy); }

.cart-list {
  padding: 8px 32px 0;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.cart-item .ci-cat {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-1);
  margin-bottom: 4px;
}
.cart-item .ci-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.2;
}
.cart-item .ci-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--navy);
  white-space: nowrap;
  margin-top: 4px;
}
.cart-item .ci-rm {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink-soft);
  padding: 6px;
  border-radius: 50%;
  width: 32px; height: 32px;
  transition: all 0.18s;
}
.cart-item .ci-rm:hover { background: var(--cream-2); color: var(--navy); }

.cart-empty {
  padding: 56px 32px 32px;
  text-align: center;
}
.cart-empty p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.cart-empty-hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ========== CART FORM ========== */
.cart-form {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--line-soft);
  margin-top: 16px;
}
.form-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-1);
  margin-bottom: 16px;
}
.form-row {
  margin-bottom: 12px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cart-form input,
.cart-form textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--line);
  padding: 11px 13px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--navy);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: none;
}
.cart-form input::placeholder,
.cart-form textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.75;
}
.cart-form input:focus,
.cart-form textarea:focus {
  border-color: var(--teal-2);
  box-shadow: 0 0 0 3px rgba(63,163,150,0.12);
}
.cart-form textarea {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  min-height: 110px;
}
.form-hint {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.form-hint .mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--navy);
}

.cta.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cta.disabled::before { display: none; }

.cart-foot {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.cart-total .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cart-total .v {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--navy);
  font-weight: 500;
}
.cart-total .v small {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-soft);
  margin-left: 8px;
  font-weight: 400;
}
.cta {
  width: 100%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.cta:hover::before { transform: translateX(0); }
.cta span { position: relative; z-index: 1; }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21,40,74,0.35);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

/* Intermediate desktop — narrower preview / laptop */
@media (max-width: 1180px) and (min-width: 821px) {
  .sidebar { width: 240px; padding: 28px 22px 22px; }
  .app { grid-template-columns: 240px 1fr; }
  .brand .logo-plate img { width: 86px; }
  .nav-list li a { font-size: 12.5px; padding-left: 10px; }
  .hero { padding: 56px 56px 48px; }
  .hero h1 { font-size: 64px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
  .manifesto-text { font-size: 22px; }
  .section { padding: 56px 56px; }
  .section-num { font-size: 88px; }
  .section-title { font-size: 30px; }
  .section-head { grid-template-columns: 110px 1fr auto; gap: 24px; }
  .row { grid-template-columns: 36px 1.3fr 170px 1.2fr 36px; gap: 12px; }
  .row .activity { font-size: 19px; }
  .pkg h3 { font-size: 26px; }
  .foot-note { padding: 48px 56px 64px; }
  .foot-note p { font-size: 22px; }
}

/* Mobile nav drawer — hidden by default; revealed in mobile @media below */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  color: var(--cream);
  z-index: 200;
  padding: 24px 24px 32px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  flex-direction: column;
  gap: 24px;
  display: none;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .mn-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .mn-head .mn-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
}
.mobile-nav .mn-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.mobile-nav .mn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav .mn-list a {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 16px;
  color: rgba(246,241,231,0.85);
}
.mobile-nav .mn-list a .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--teal-3);
  letter-spacing: 0.05em;
}

@media (max-width: 820px) {
  .app { grid-template-columns: 1fr; }
  .sidebar {
    position: sticky;
    top: 0;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 14px 20px;
    gap: 16px;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .sidebar .bar,
  .sidebar .nav-label,
  .sidebar .nav-list,
  .sidebar .side-foot { display: none; }
  .brand {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1;
  }
  .brand .logo-plate {
    padding: 5px 8px 3px;
  }
  .brand .logo-plate img {
    width: 64px;
  }
  .brand .tag {
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.6;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .mobile-nav { display: flex; }

  .hero {
    padding: 36px 22px 32px;
  }
  .hero h1 { font-size: 44px; line-height: 1; }
  .hero .lede { font-size: 14px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; padding-top: 20px; }
  .hero-meta .v { font-size: 18px; }
  .hero::after { display: none; }

  .manifesto { padding: 18px 0 24px; margin-bottom: 24px; }
  .manifesto-text { font-size: 19px; line-height: 1.4; }
  .manifesto-etym {
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
    font-size: 12px;
    margin-top: 16px;
  }
  .manifesto-etym .ety-sep { display: none; }

  .section { padding: 40px 22px; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 18px;
  }
  .section-num {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 4px;
  }
  .section-num::after { bottom: 18%; height: 5px; right: -8px; }
  .section-title { font-size: 24px; }
  .section-kicker { font-size: 9px; }
  .section-count { display: none; }

  .row {
    grid-template-columns: 1fr 36px;
    gap: 4px 12px;
    padding: 16px 0;
    align-items: start;
  }
  .row .idx { display: none; }
  .row .activity {
    font-size: 18px;
    grid-column: 1;
    grid-row: 1;
  }
  .row .price {
    font-size: 12px;
    grid-column: 1;
    grid-row: 2;
    margin-top: 2px;
  }
  .row .note {
    font-size: 12px;
    grid-column: 1;
    grid-row: 3;
    margin-top: 6px;
    line-height: 1.4;
  }
  .row .add {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: start;
    margin-top: 2px;
  }

  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg { padding: 28px 24px 24px; }
  .pkg h3 { font-size: 24px; }
  .pkg .pkg-content { font-size: 13px; min-height: 0; }
  .pkg .pkg-price { font-size: 22px; }

  .hourly-grid { grid-template-columns: 1fr; }
  .hourly-row {
    padding: 18px 0 !important;
    border-right: none !important;
  }
  .hourly-row .h-name { font-size: 18px; }

  .foot-note { padding: 40px 22px 56px; }
  .foot-note p { font-size: 18px; }
  .foot-note .sign { flex-direction: column; gap: 8px; align-items: flex-start; }

  .cart-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px 12px 16px;
    font-size: 12px;
  }
  .cart-fab .lbl-empty { font-size: 13px; }
  .cart-fab .badge { width: 22px; height: 22px; font-size: 10px; }

  .cart-panel { width: 100%; }
  .cart-head { padding: 22px 22px 18px; }
  .cart-head h2 { font-size: 26px; }
  .cart-list { padding: 8px 22px 0; }
  .cart-form { padding: 20px 22px 24px; }
  .form-row.two { grid-template-columns: 1fr; gap: 10px; }
  .cart-foot { padding: 20px 22px 24px; }
}

/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(246,241,231,0.2);
  color: var(--cream);
  padding: 9px 14px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.menu-toggle:hover { border-color: var(--teal-3); background: rgba(255,255,255,0.04); }

/* ========== PRINT ========== */
@media print {
  @page { size: A4; margin: 18mm 14mm; }
  body { background: white; color: var(--navy); font-size: 11pt; }
  .app { display: block; }
  .sidebar,
  .cart-fab,
  .cart-panel,
  .cart-backdrop,
  .mobile-nav,
  .menu-toggle,
  .row .add { display: none !important; }
  .main { padding: 0; }
  .hero {
    padding: 0 0 18pt;
    background: white;
    border-bottom: 1px solid var(--line);
    page-break-after: avoid;
  }
  .hero::after { display: none; }
  .hero h1 { font-size: 36pt; line-height: 0.95; color: var(--navy); margin-bottom: 8pt; }
  .hero .lede { font-size: 10pt; max-width: 100%; margin-bottom: 18pt; }
  .manifesto { padding: 12pt 0; max-width: 100%; }
  .manifesto-text { font-size: 13pt; line-height: 1.4; }
  .manifesto-etym { font-size: 10pt; }
  .hero-meta { padding-top: 12pt; gap: 24pt; }
  .hero-meta .v { font-size: 16pt; }
  .section {
    padding: 20pt 0;
    background: white !important;
    border-bottom: 1px solid var(--line);
    page-break-inside: avoid;
  }
  .section-head {
    grid-template-columns: 80pt 1fr auto;
    gap: 16pt;
    margin-bottom: 16pt;
    padding-bottom: 8pt;
  }
  .section-num { font-size: 56pt; line-height: 0.9; }
  .section-num::after { display: none; }
  .section-title { font-size: 20pt; }
  .section-kicker { font-size: 8pt; }
  .row {
    grid-template-columns: 28pt 1.4fr 130pt 1.4fr;
    padding: 9pt 0;
    gap: 10pt;
    page-break-inside: avoid;
  }
  .row:hover { background: transparent; }
  .row .activity { font-size: 12pt; }
  .row .price { font-size: 9pt; }
  .row .note { font-size: 9pt; }
  .packages-grid { grid-template-columns: 1fr 1fr; gap: 12pt; }
  .pkg {
    background: white !important;
    border: 1px solid var(--line);
    padding: 14pt;
    page-break-inside: avoid;
  }
  .pkg.featured { background: var(--navy) !important; color: var(--cream) !important; }
  .pkg h3 { font-size: 16pt; }
  .pkg .pkg-content { font-size: 10pt; min-height: 0; }
  .pkg .pkg-price { font-size: 14pt; }
  .hourly-grid { grid-template-columns: 1fr 1fr; }
  .hourly-row { padding: 10pt 0 !important; }
  .hourly-row .h-name { font-size: 13pt; }
  .foot-note {
    background: var(--navy) !important;
    color: var(--cream) !important;
    padding: 18pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    page-break-inside: avoid;
  }
  .foot-note p { font-size: 14pt; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
