:root {
  --ink: #191512;
  --muted: #75675d;
  --cream: #f7f1e8;
  --soft: #fbfaf8;
  --white: #ffffff;
  --champagne: #d6bd91;
  --accent-ink: #7b6241;
  --nude: #e7d4c4;
  --line: #e3d8cb;
  --success: #1f7a56;
  --danger: #a84236;
  --shadow: 0 18px 45px rgba(25, 21, 18, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: "Assistant", "Heebo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 0 5vw;
  background: rgba(251, 250, 248, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: lowercase;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-header .brand-logo {
  transform: translateY(3px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  color: var(--muted);
  font-size: 16px;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  min-width: 72px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
}

.cart-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.home-page {
  background: #e5ddd5;
}

.home-page .site-header {
  position: absolute;
  top: 48px;
  right: auto;
  left: 50%;
  width: min(1088px, calc(100vw - 10vw - 56px));
  transform: translateX(-50%);
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(25, 21, 18, .16);
}

.home-page .site-header .brand-logo {
  filter: none;
}

.home-page .site-header .main-nav {
  color: rgba(25, 21, 18, .78);
}

.home-page .site-header .main-nav a:hover {
  color: var(--ink);
}

.home-page .site-header .cart-link {
  border-color: rgba(25, 21, 18, .5);
  background: rgba(25, 21, 18, .78);
  color: var(--white);
}

.home-page .site-header .nav-toggle {
  border-color: rgba(25, 21, 18, .18);
  background: rgba(255, 255, 255, .42);
  color: var(--ink);
}

.home-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 5vw 42px;
  color: var(--ink);
}

.home-hero-frame {
  position: relative;
  min-height: 600px;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(25, 21, 18, .16);
}

.home-hero-image {
  width: 100%;
  min-height: 600px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.hero-mobile-scroll-cue {
  display: none;
}

.hero-after {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.hero-story {
  display: grid;
  gap: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(25, 21, 18, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .32);
  box-shadow: 0 16px 40px rgba(25, 21, 18, .07);
}

.hero-story p {
  margin: 0;
  color: #3f352d;
  font-size: 18px;
  line-height: 1.85;
}

.hero-under-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
  align-items: stretch;
}

.hero-under-actions .btn {
  position: relative;
  min-height: 78px;
  padding: 0 24px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .72);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, .2));
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 18px 42px rgba(25, 21, 18, .09);
  backdrop-filter: blur(18px);
}

.hero-under-actions .btn::after {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: 11px;
  height: 1px;
  border-radius: 999px;
  background: rgba(25, 21, 18, .18);
  transform: scaleX(.32);
  transform-origin: center;
  transition: transform .2s ease, background .2s ease;
}

.hero-under-actions .btn:hover::after {
  background: rgba(25, 21, 18, .32);
  transform: scaleX(.52);
}

.hero-under-actions .btn.secondary {
  border-color: rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, .2));
  color: var(--ink);
}

.hero-private-workshop {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 24px 28px 24px 122px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .2)),
    linear-gradient(90deg, rgba(214, 189, 145, .22), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62), 0 22px 48px rgba(25, 21, 18, .1);
  backdrop-filter: blur(18px);
}

.hero-private-workshop::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 98px;
  width: 1px;
  background: rgba(25, 21, 18, .16);
}

.hero-private-workshop::after {
  content: "ליצירת קשר";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 74px;
  min-height: 32px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 21, 18, .18);
  border-radius: 999px;
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.hero-private-workshop:hover::after {
  background: rgba(255, 255, 255, .42);
  transform: translate(-3px, -50%);
}

.hero-private-workshop span {
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-private-workshop strong {
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.hero-product {
  position: absolute;
  z-index: 3;
  right: auto;
  left: clamp(28px, 5vw, 64px);
  bottom: 44px;
  width: min(270px, 24vw);
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .2);
  box-shadow: 0 22px 52px rgba(25, 21, 18, .18);
  backdrop-filter: blur(14px);
}

.hero-product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.hero-product span {
  padding: 0 2px 3px;
  color: var(--white);
  font-weight: 600;
}

.home-intro {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 52px max(5vw, calc((100vw - 1180px) / 2)) 76px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 52px;
  align-items: center;
  background: linear-gradient(180deg, #e5ddd5 0%, #f4eee7 100%);
  border-top: 1px solid rgba(25, 21, 18, .08);
}

.home-intro-copy {
  display: grid;
  gap: 18px;
  align-items: start;
  max-width: 580px;
}

.home-intro-copy .btn {
  justify-self: start;
}

.intro-product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(150px, .72fr);
  gap: 18px;
  align-items: end;
}

.stage-product {
  width: 100%;
  border: 1px solid rgba(25, 21, 18, .08);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(25, 21, 18, .11);
}

.stage-product-main {
  aspect-ratio: 4 / 5;
}

.stage-product-small {
  aspect-ratio: 4 / 5;
  margin-bottom: 48px;
}

.section.category-showcase {
  max-width: none;
  background: #f7f4ef;
}

.category-showcase > .section-header,
.category-showcase > .category-magazine {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.category-magazine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(25, 21, 18, .08);
  background: #ebe2d8;
  transition: transform .22s ease, box-shadow .22s ease;
}

.category-tile:nth-child(2) {
  background: #dce6e2;
}

.category-tile:nth-child(3) {
  background: #e8d9d5;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(25, 21, 18, .1);
}

.category-tile span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.category-tile span::after {
  content: "↗";
  font-family: Arial, sans-serif;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section.featured-editorial {
  max-width: none;
  background: #1d1916;
  color: var(--white);
}

.featured-editorial .featured-heading,
.featured-editorial .featured-grid,
.featured-editorial .center-action {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.featured-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 38px;
  text-align: center;
}

.featured-heading .eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}

.featured-heading .section-lead {
  margin: 0 auto;
  color: rgba(255, 255, 255, .72);
}

.featured-grid .product-card {
  border-color: rgba(255, 255, 255, .08);
  background: #fffaf3;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .14);
}

.featured-grid .product-card img {
  aspect-ratio: 1 / 1;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.featured-editorial .center-action .btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, .62);
}

.workshop-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 520px);
  gap: 54px;
  align-items: center;
  padding: 92px max(5vw, calc((100vw - 1180px) / 2));
  background: #31443d;
  color: var(--white);
}

.workshop-feature .section-lead {
  color: rgba(255, 255, 255, .76);
}

.workshop-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 62px rgba(0, 0, 0, .2);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.proof-grid > div:first-child {
  max-width: 680px;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(25, 21, 18, .05);
}

.quote-card p {
  margin: 0;
  color: var(--muted);
}

.quote-author {
  display: grid;
  gap: 5px;
}

.quote-author span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.testimonial-grid {
  margin-top: 32px;
}

.testimonial-grid .card-body {
  display: grid;
  gap: 18px;
}

.final-contact {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-copy {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy .section-lead {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-top: 10px;
}

.contact-link {
  color: var(--accent-ink);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.contact-home-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(123, 98, 65, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 45px rgba(25, 21, 18, .07);
  backdrop-filter: blur(16px);
}

.contact-home-form input,
.contact-home-form textarea {
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
}

.contact-home-form textarea {
  min-height: 106px;
}

.contact-home-form .btn {
  justify-self: start;
}

.section,
.hero-content,
.admin-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 5vw;
}

.hero {
  min-height: calc(100vh - 74px);
  background: linear-gradient(rgba(20, 16, 13, .64), rgba(20, 16, 13, .38)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
}

.rich-text {
  white-space: normal;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}

.featured-editorial .eyebrow,
.workshop-feature .eyebrow,
.hero .eyebrow {
  color: var(--champagne);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Heebo", "Assistant", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 300;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(34px, 5.3vw, 64px);
}

h2 {
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 400;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

.hero p,
.section-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 21px;
}

.section-lead {
  color: var(--muted);
}

.actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.hero .btn.secondary {
  color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 15px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.editorial-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}

.soft-band {
  background: var(--cream);
}

.dark-band {
  background: var(--ink);
  color: var(--white);
}

.dark-band .section-lead,
.dark-band .muted {
  color: rgba(255, 255, 255, .72);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.product-card,
.admin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(25, 21, 18, .04);
}

.card-body {
  padding: 24px;
}

.category-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 21, 18, .48);
}

.category-card > * {
  position: relative;
}

.category-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .82);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  background: var(--cream);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-meta {
  color: var(--muted);
  font-size: 15px;
}

.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-weight: 700;
  font-size: 20px;
}

.price del {
  color: var(--muted);
  font-weight: 400;
  font-size: 16px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: start;
}

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

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  background: var(--cream);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.thumbs button {
  border: 1px solid var(--line);
  padding: 0;
  background: var(--white);
  cursor: pointer;
}

.thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
}

.details-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.details-list section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 15px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 0;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 15px;
}

.checkbox input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.cart-table,
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.cart-table th,
.cart-table td,
.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
}

.cart-product {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
}

.cart-product img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.summary-box {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(25, 21, 18, .12);
  padding: 10px 0;
}

.summary-line.total {
  font-weight: 700;
  font-size: 22px;
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 24px;
}

.faq-item h3 {
  font-size: 20px;
}

.muted {
  color: var(--muted);
}

.flash {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 12px 5vw;
  border: 1px solid var(--line);
  background: var(--cream);
}

.flash-success {
  border-color: rgba(31, 122, 86, .25);
  color: var(--success);
}

.flash-error {
  border-color: rgba(168, 66, 54, .25);
  color: var(--danger);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 48px 5vw;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, .7);
}

.site-footer .brand-logo {
  filter: invert(1);
  transform: none;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255, 255, 255, .75);
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: var(--shadow);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.admin-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  background: #f6f1ea;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 22px;
  background: var(--ink);
  color: var(--white);
}

.admin-sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 28px;
}

.admin-sidebar nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, .78);
}

.admin-sidebar nav a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.admin-main {
  max-width: none;
  padding-top: 32px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
}

.admin-top p {
  margin: 0;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-card {
  padding: 20px;
}

.admin-card strong {
  display: block;
  font-size: 30px;
}

.admin-section {
  display: grid;
  gap: 20px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-strip img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.notice {
  padding: 14px 16px;
  border: 1px solid #d4bd81;
  background: #fff8e8;
  color: #6a5527;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 73px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .home-page .site-header {
    top: 14px;
    right: 4vw;
    left: 4vw;
    width: auto;
    transform: none;
    display: grid;
    grid-template-columns: 72px 1fr 72px;
    direction: ltr;
    justify-content: normal;
    justify-items: center;
    gap: 12px;
    padding: 0 14px;
  }

  .home-page .site-header .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    direction: rtl;
  }

  .home-page .site-header .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    direction: rtl;
  }

  .home-page .site-header .brand-logo {
    width: 82px;
    max-height: 42px;
  }

  .home-page .site-header .cart-link {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    direction: rtl;
    min-height: 42px;
    padding: 0 10px;
  }

  .home-page .site-header .main-nav {
    direction: rtl;
  }

  .home-page .main-nav.is-open {
    color: var(--ink);
    background: var(--white);
  }

  .home-page .main-nav.is-open a:hover {
    color: var(--ink);
  }

  .home-hero {
    padding: 112px 18px 42px;
  }

  .home-hero-frame {
    min-height: 560px;
    border-radius: 14px;
  }

  .home-hero-image {
    min-height: 560px;
    aspect-ratio: auto;
    border-radius: 14px;
    object-position: 68% center;
  }

  .hero-mobile-scroll-cue {
    position: absolute;
    z-index: 2;
    top: 82px;
    right: auto;
    left: 42px;
    width: min(238px, calc(100% - 86px));
    display: grid;
    gap: 8px;
    padding: 18px 18px 20px;
    border-right: 1px solid rgba(25, 21, 18, .2);
    color: #332922;
    text-align: right;
    text-shadow: 0 1px 16px rgba(255, 255, 255, .44);
  }

  .hero-mobile-scroll-cue span {
    color: var(--accent-ink);
    font-size: 14px;
    font-weight: 700;
  }

  .hero-mobile-scroll-cue strong {
    max-width: 210px;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 500;
  }

  .hero-after {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 86px;
  }

  .hero-story {
    padding: 18px;
  }

  .hero-story p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-under-actions {
    gap: 10px;
    order: -1;
  }

  .home-intro,
  .category-magazine,
  .featured-heading,
  .workshop-feature,
  .proof-grid,
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .hero-under-actions .btn {
    min-height: 64px;
    padding: 0 12px;
    font-size: 15px;
  }

  .hero-under-actions .btn::after {
    right: 16px;
    left: 16px;
    bottom: 8px;
  }

  .hero-private-workshop {
    min-height: 112px;
    padding: 20px 18px 58px;
  }

  .hero-private-workshop::before {
    display: none;
  }

  .hero-private-workshop::after {
    top: auto;
    right: 18px;
    left: auto;
    bottom: 18px;
    transform: none;
  }

  .hero-private-workshop:hover::after {
    transform: translateX(-3px);
  }

  .hero-private-workshop strong {
    font-size: 20px;
  }

  .hero-product {
    right: 50%;
    left: auto;
    bottom: -64px;
    width: min(235px, 72vw);
    max-width: 220px;
    transform: translateX(50%);
  }

  .home-intro {
    padding: 42px 18px 58px;
    gap: 28px;
  }

  .intro-product-stage {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stage-product {
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(25, 21, 18, .1);
  }

  .stage-product-small {
    margin-top: 34px;
    margin-bottom: 0;
  }

  .category-tile {
    min-height: 360px;
  }

  .featured-heading {
    justify-items: center;
    text-align: center;
  }

  .workshop-feature {
    padding: 68px 5vw;
  }

  .final-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .contact-home-form {
    padding: 18px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-actions .btn,
  .contact-home-form .btn {
    width: 100%;
  }

  .main-nav a {
    padding: 14px 5vw;
    border-top: 1px solid var(--line);
  }

  .cart-link {
    justify-self: end;
    padding: 0 12px;
  }

  .hero {
    min-height: 78vh;
    background-position: center;
  }

  .section-header,
  .split,
  .product-layout,
  .site-footer,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .grid,
  .admin-grid,
  .form-grid,
  .admin-form.compact {
    grid-template-columns: 1fr;
  }

  .admin-body {
    display: block;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td,
  .admin-table,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .cart-table thead,
  .admin-table thead {
    display: none;
  }
}
