:root {
  --ink: #121212;
  --text: #24211d;
  --muted: #756f66;
  --paper: #f5f2ec;
  --panel: #ffffff;
  --soft: #eee7dc;
  --line: #ddd2bf;
  --gold: #b98632;
  --gold-dark: #7b541f;
  --black: #141313;
  --dark: #211d18;
  --danger: #963b31;
  --shadow: 0 16px 38px rgba(18, 18, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.script-logo,
.script-title {
  font-family: "Brush Script MT", "Lucida Handwriting", Georgia, "Times New Roman", cursive;
  font-weight: 700;
  letter-spacing: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(245, 242, 236, 0.94);
  border-bottom: 1px solid rgba(185, 134, 50, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(185, 134, 50, 0.45);
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.script-logo {
  font-size: 1.42rem;
  font-style: italic;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  color: #312d27;
  font-size: 0.92rem;
  font-weight: 800;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  padding: 9px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav a.current,
.nav a:hover {
  color: #fff;
  background: var(--black);
}

.nav-cta,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  color: #fff;
  background: var(--black);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 76px));
  overflow: hidden;
  background: var(--black);
}

.hero > img,
.hero-shade,
.hero-content,
.hero-ticket {
  grid-area: 1 / 1;
}

.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.48) 52%, rgba(10, 10, 10, 0.16)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.54), transparent 58%);
}

.hero-content {
  align-self: center;
  width: min(720px, 100%);
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 68px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #f6ddb0;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: 0.95;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-ticket {
  align-self: end;
  justify-self: end;
  width: min(320px, calc(100% - 36px));
  margin: 0 clamp(18px, 5vw, 58px) clamp(18px, 5vw, 52px) 18px;
  padding: 18px;
  color: #fff;
  background: rgba(20, 19, 19, 0.78);
  border: 1px solid rgba(185, 134, 50, 0.35);
  border-radius: 6px;
}

.hero-ticket span,
.hero-ticket strong,
.hero-ticket small {
  display: block;
}

.hero-ticket span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ticket strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-ticket small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  color: #fff;
  background: var(--gold-dark);
}

.button.secondary {
  color: #fff;
  background: var(--black);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.3);
}

.button.subtle {
  color: var(--ink);
  background: #f1ece4;
  border-color: var(--line);
}

.button.danger {
  color: #fff;
  background: var(--danger);
}

.wide {
  width: 100%;
}

.section {
  padding: clamp(42px, 6vw, 78px) clamp(16px, 5vw, 64px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.compact-heading {
  margin-top: 28px;
  margin-bottom: 16px;
}

.section-note {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-note.light {
  color: rgba(255, 255, 255, 0.72);
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.info-band div {
  padding: 22px clamp(16px, 4vw, 46px);
  background: #fffaf2;
}

.info-band strong,
.info-band span {
  display: block;
}

.info-band span {
  margin-top: 5px;
  color: var(--muted);
}

.signature-section,
.clean-section,
.style-intro,
.contact-layout,
.admin-access-layout {
  background: #f7f3ec;
}

.signature-grid,
.style-grid,
.process-list,
.recommendation-grid,
.stats-grid,
.admin-access-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signature-grid article,
.style-card,
.process-list article,
.panel,
.stat,
.feature-link,
.recommendation-grid article,
.admin-access-copy article,
.salon-block,
.tariff-board {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.signature-grid article,
.style-card,
.process-list article,
.recommendation-grid article,
.admin-access-copy article,
.stat {
  min-height: 170px;
  padding: 22px;
}

.signature-grid span,
.admin-access-copy span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-grid h3,
.style-card h3,
.process-list h3 {
  margin: 18px 0 9px;
  font-size: 1.22rem;
}

.signature-grid p,
.style-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.preview-section,
.recommendation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
  color: #fff;
  background: var(--black);
}

.preview-copy p:not(.eyebrow),
.recommendation-section p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.preview-stack {
  display: grid;
  gap: 10px;
}

.preview-stack figure,
.gallery-grid figure {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.preview-stack img,
.gallery-grid img,
.gallery-grid .gallery-feature img {
  width: 84px;
  height: 92px;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease, filter 260ms ease;
}

.preview-stack figure:hover,
.gallery-grid figure:hover,
.lookbook-card:hover {
  border-color: rgba(185, 134, 50, 0.62);
  box-shadow: 0 22px 54px rgba(18, 18, 18, 0.18);
  transform: translateY(-2px);
}

.preview-stack figure:hover img,
.gallery-grid figure:hover img,
.lookbook-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.16);
}

.preview-stack figcaption,
.gallery-grid figcaption {
  display: grid;
  align-items: center;
  height: 100%;
  padding: 12px 14px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.mini-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: #f7f3ec;
}

.feature-link {
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 24px;
}

.feature-link.dark {
  color: #fff;
  background: linear-gradient(135deg, #151413, #2b251d);
}

.feature-link span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-link strong {
  align-self: end;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(20px, 5vw, 48px);
  align-items: center;
  min-height: 340px;
  padding: clamp(46px, 7vw, 78px) clamp(16px, 5vw, 60px);
  color: #fff;
  background: linear-gradient(135deg, #111, #28221b);
}

.page-hero img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid rgba(185, 134, 50, 0.32);
  border-radius: 6px;
}

.page-hero h1 {
  margin: 0;
  color: #f6ddb0;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.96;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 14px;
}

.lookbook-card {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  min-height: 136px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lookbook-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.lookbook-card img {
  display: block;
  width: 102px;
  height: 100%;
  min-height: 136px;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease, filter 260ms ease;
}

.lookbook-card figcaption,
.lookbook-card span {
  display: none;
}

.lookbook-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 136px;
  padding: 15px;
}

.lookbook-card h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.lookbook-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.lookbook-card small {
  display: block;
  margin-top: 8px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.style-photo-note {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.options-premium-section,
.tariff-section,
.process-section,
.accounting-section,
.inline-accounting {
  background: var(--soft);
}

.options-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

.option-card {
  background: #fffaf2;
}

.style-card > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
}

.style-card span,
.process-list b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.recommendation-section {
  grid-template-columns: 1fr;
}

.recommendation-grid article,
.admin-access-copy article {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.recommendation-grid strong,
.recommendation-grid span {
  display: block;
}

.recommendation-grid span {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
}

.tariff-board {
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.tariff-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.tariff-row:last-child {
  border-bottom: 0;
}

.tariff-row strong {
  color: var(--gold-dark);
}

.muted-row {
  background: #fbf7ef;
}

.style-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 840px;
  margin: 16px auto 0;
  padding: 22px;
  color: #fff;
  background: var(--black);
  border-radius: 6px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 16px;
  align-items: start;
}

.panel {
  padding: clamp(18px, 3vw, 28px);
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-heading.compact {
  margin-bottom: 14px;
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #37332d;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d6cbbc;
  border-radius: 6px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 134, 50, 0.14);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.order-zone {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fbf7ef;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.booking-order {
  display: grid;
  gap: 12px;
}

.order-group {
  display: grid;
  gap: 8px;
}

.order-group > span,
.order-menu summary,
.salon-menu summary {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-menu,
.salon-menu {
  border-radius: 6px;
}

.order-menu summary,
.salon-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  list-style: none;
  background: #f3eadc;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.order-menu summary::-webkit-details-marker,
.salon-menu summary::-webkit-details-marker {
  display: none;
}

.order-menu summary::after,
.salon-menu summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--black);
  border-radius: 50%;
}

.order-menu[open] summary::after,
.salon-menu[open] summary::after {
  content: "-";
}

.order-menu > .order-choice {
  margin-top: 8px;
}

.order-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.order-choice input {
  width: 19px;
  min-height: 19px;
  accent-color: var(--gold-dark);
}

.order-choice strong,
.order-choice small {
  display: block;
}

.order-choice small {
  margin-top: 2px;
  color: var(--muted);
}

.order-choice b,
.booking-total strong,
.client-cart-footer strong {
  color: var(--gold-dark);
}

.booking-total,
.client-cart-footer,
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.client-cart-panel,
.ticket-panel {
  position: sticky;
  top: 92px;
}

.client-cart-summary,
.client-list,
.appointment-list,
.prep-list,
.sales-list,
.ticket-lines,
.z-summary,
.z-list,
.handoff-list {
  display: grid;
  gap: 10px;
}

.client-cart-line,
.client-card,
.appointment,
.sale,
.ticket-line,
.prep-card,
.z-row,
.z-card,
.handoff-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.client-cart-line,
.client-card,
.z-row,
.ticket-line,
.appointment-top,
.sale-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.client-card {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.client-card strong,
.client-card small {
  display: block;
}

.client-card small {
  margin-top: 3px;
  color: var(--muted);
}

.client-base-actions,
.send-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.send-actions .button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.82rem;
}

.feedback-section {
  background: #f7f3ec;
}

.feedback-form {
  max-width: 720px;
}

.client-cart-line span,
.appointment small,
.sale small,
.z-row span,
.z-card small,
.handoff-card small,
.cart-note,
.accounting-note {
  color: var(--muted);
  line-height: 1.45;
}

.empty {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  background: #fbf8f2;
  border: 1px dashed #cabfab;
  border-radius: 6px;
}

.salon-shell {
  background: #f7f3ec;
}

.salon-login {
  max-width: 520px;
}

.salon-private {
  display: none;
}

.salon-unlocked .salon-login {
  display: none;
}

.salon-unlocked .salon-private {
  display: block;
}

.salon-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px;
  color: #fff;
  background: var(--black);
  border-radius: 6px;
}

.salon-block {
  margin-top: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.salon-menu {
  padding: 0;
  overflow: hidden;
}

.salon-menu summary {
  min-height: 62px;
  padding: 18px 20px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 6px 6px 0 0;
  font-size: 0.82rem;
}

.salon-menu > :not(summary) {
  margin: 18px;
}

.dark-salon-block.salon-menu summary {
  color: #f7ddb0;
  background: #1b1815;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.dark-salon-block {
  color: #fff;
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-salon-block .prep-card {
  color: #fff;
  background: #211d18;
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-salon-block .prep-card p {
  color: rgba(255, 255, 255, 0.72);
}

.planning-list,
.prep-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  color: #f5d9a5;
  background: rgba(185, 134, 50, 0.15);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.status-badge.done {
  color: #cde8cd;
  background: rgba(73, 135, 77, 0.18);
}

.mini-button {
  min-width: 32px;
  height: 32px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.cashier-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.88fr) minmax(260px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.pos-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pos-item {
  display: grid;
  min-height: 96px;
  padding: 14px;
  text-align: left;
  color: var(--ink);
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.pos-item small {
  color: var(--muted);
  font-weight: 800;
}

.pos-item span {
  color: var(--gold-dark);
  font-weight: 900;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  margin-top: 14px;
}

.discount-row input {
  max-width: 120px;
}

.total-row {
  margin: 16px 0;
  font-size: 1.18rem;
}

.total-row strong {
  font-size: 1.55rem;
}

.accounting-layout,
.certified-layout,
.admin-access-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: start;
}

.accounting-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.admin-lock {
  display: none;
  min-height: calc(100svh - 76px);
  padding: clamp(42px, 6vw, 78px) clamp(16px, 5vw, 64px);
  place-items: center;
  background: var(--black);
}

.admin-locked .admin-lock {
  display: grid;
}

.admin-locked .protected-content {
  display: none;
}

.admin-lock-card {
  width: min(500px, 100%);
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(16px, 5vw, 60px);
  color: #fff;
  background: var(--black);
}

.hidden-planning {
  display: none;
}

@media (max-width: 980px) {
  .page-hero,
  .split,
  .preview-section,
  .accounting-layout,
  .certified-layout,
  .admin-access-layout,
  .contact-layout,
  .cashier-layout {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .style-grid,
  .process-list,
  .recommendation-grid,
  .stats-grid,
  .admin-access-copy,
  .planning-list,
  .prep-list,
  .mini-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-panel,
  .client-cart-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .script-logo {
    font-size: 1.22rem;
  }

  .nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 6px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .nav a[href="concept.html"],
  .nav a[href="galerie.html"] {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.42));
  }

  .hero-content {
    align-self: end;
    padding: 34px 16px 38px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-ticket {
    display: none;
  }

  .section {
    padding: 36px 14px;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .info-band,
  .signature-grid,
  .style-grid,
  .process-list,
  .recommendation-grid,
  .stats-grid,
  .admin-access-copy,
  .planning-list,
  .prep-list,
  .mini-links,
  .options-grid,
  .pos-grid,
  .payment-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .client-card {
    grid-template-columns: 1fr;
  }

  .info-band div {
    padding: 16px;
  }

  .signature-grid article,
  .style-card,
  .process-list article,
  .recommendation-grid article,
  .admin-access-copy article,
  .panel,
  .salon-block {
    padding: 16px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .lookbook-card {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 92px;
  }

  .lookbook-card img {
    width: 72px;
    min-height: 92px;
  }

  .lookbook-body {
    min-height: 92px;
    padding: 10px 12px;
  }

  .lookbook-card p {
    display: none;
  }

  .lookbook-card h3 {
    font-size: 1rem;
  }

  .lookbook-card small {
    margin-top: 4px;
    font-size: 0.76rem;
  }

  .preview-section {
    display: block;
  }

  .preview-stack {
    margin-top: 18px;
  }

  .preview-stack figure,
  .gallery-grid figure {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 86px;
  }

  .preview-stack figure:hover,
  .gallery-grid figure:hover,
  .lookbook-card:hover {
    transform: none;
  }

  .preview-stack figure:hover img,
  .gallery-grid figure:hover img,
  .lookbook-card:hover img {
    transform: scale(1.08);
  }

  .preview-stack img,
  .gallery-grid img,
  .gallery-grid .gallery-feature img {
    width: 72px;
    height: 86px;
  }

  .style-cta,
  .salon-toolbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .salon-menu > :not(summary) {
    margin: 14px;
  }
}
