:root {
  --ink: #211b18;
  --ink-soft: #4a403b;
  --paper: #f8f4ee;
  --paper-deep: #eee5dc;
  --white: #fffdf9;
  --accent: #c27760;
  --accent-deep: #9f5846;
  --accent-soft: #e9c4b7;
  --sage: #89998d;
  --line: rgba(33, 27, 24, 0.14);
  --line-light: rgba(255, 253, 249, 0.18);
  --shadow: 0 22px 70px rgba(46, 30, 24, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --container: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--accent-deep); }
[data-page-multiline] { white-space: pre-line; }
.eyebrow > b,
.utility-phone > b { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section { padding: 128px 0; }

.utility-bar {
  position: relative;
  z-index: 55;
  color: rgba(255,255,255,.82);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .03em;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-inner p { margin: 0; }
.utility-inner a {
  color: var(--white);
  font-weight: 700;
  letter-spacing: .04em;
}
.utility-inner a span { margin-right: 5px; color: var(--accent-soft); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(248,244,238,.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,253,249,.94);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(33,27,24,.06);
}
.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand img { width: 45px; height: 45px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 20px; letter-spacing: .15em; }
.brand-copy small { margin-top: 7px; color: var(--ink-soft); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.site-nav { display: flex; align-items: center; gap: 31px; }
.site-nav > a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  transition: color .2s ease;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--accent-deep);
  transition: right .3s var(--ease);
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.site-nav > a:hover { color: var(--accent-deep); }
.nav-cta {
  padding: 12px 19px;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s ease !important;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 66px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(194,119,96,.12), transparent 30%),
    linear-gradient(130deg, #fbf8f3 0%, #f6efe8 57%, #efe3d9 100%);
}
.hero-grid {
  min-height: 615px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}
.hero-copy { position: relative; z-index: 2; padding-top: 10px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 27px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .19em;
}
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -.055em;
}
.hero h1 em { position: relative; color: var(--accent-deep); font-style: normal; }
.hero h1 em::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  left: 0;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg width='300' height='16' viewBox='0 0 300 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12C65 2 157 4 298 7' stroke='%23C27760' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: .52;
}
.hero-lead { margin: 31px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.8; letter-spacing: -.025em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .28s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 14px 32px rgba(33,27,24,.16); }
.button-primary:hover { background: var(--accent-deep); box-shadow: 0 17px 36px rgba(159,88,70,.25); }
.button-ghost { border-color: rgba(33,27,24,.22); background: rgba(255,255,255,.38); }
.button-ghost:hover { border-color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #000; }
.button-light { color: var(--ink); background: var(--white); box-shadow: 0 15px 40px rgba(0,0,0,.14); }
.button-light:hover { color: var(--white); background: var(--accent); }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin: 54px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.hero-facts div { padding-right: 20px; }
.hero-facts div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.hero-facts dt { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.hero-facts dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 12px; letter-spacing: -.01em; }
.hero-visual { position: relative; }
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 610px;
  overflow: hidden;
  border-radius: 180px 180px 34px 34px;
  box-shadow: var(--shadow);
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 165px 165px 25px 25px;
}
.hero-photo-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 50%; }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,15,.34), transparent 44%); }
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 200px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  background: rgba(255,253,249,.87);
  box-shadow: 0 16px 42px rgba(26,18,15,.14);
  backdrop-filter: blur(13px);
}
.floating-card-top { top: 15%; left: -47px; }
.floating-card-bottom { right: -33px; bottom: 12%; }
.floating-card strong { display: block; font-size: 13px; letter-spacing: -.02em; }
.floating-card small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: 10px; }
.floating-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--accent-deep);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.floating-dot { width: 11px; height: 11px; flex: 0 0 auto; border: 3px solid rgba(194,119,96,.22); border-radius: 50%; background: var(--accent); box-sizing: content-box; }
.photo-caption { margin: 14px 6px 0 0; color: var(--ink-soft); text-align: right; font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.hero-shape { position: absolute; pointer-events: none; border: 1px solid rgba(194,119,96,.2); border-radius: 50%; }
.hero-shape-one { width: 470px; height: 470px; right: -260px; top: 50px; }
.hero-shape-two { width: 180px; height: 180px; left: -90px; bottom: -40px; }

.brand-grid {
  display: grid;
  grid-template-columns: .8fr 2fr 1fr;
  align-items: start;
  gap: 70px;
}
.section-kicker { position: relative; min-height: 180px; }
.section-index { position: absolute; left: 0; bottom: 0; color: rgba(33,27,24,.11); font-size: 82px; font-weight: 800; line-height: 1; letter-spacing: -.06em; }
.brand-message h2,
.section-heading h2,
.guide-content h2,
.order-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 720;
  line-height: 1.22;
  letter-spacing: -.05em;
}
.brand-message > p { max-width: 710px; margin: 29px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.85; letter-spacing: -.02em; }
.brand-note { padding-top: 88px; }
.brand-note p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 27px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-strip article { min-height: 235px; padding: 34px 31px 32px 0; }
.feature-strip article + article { padding-left: 31px; border-left: 1px solid var(--line); }
.feature-number { color: var(--accent-deep); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.feature-strip h3 { margin: 47px 0 11px; font-size: 18px; letter-spacing: -.03em; }
.feature-strip p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }

.section-dark { color: var(--white); background: var(--ink); }
.section-heading {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}
.section-heading > p { max-width: 420px; margin: 0 0 4px auto; color: var(--ink-soft); font-size: 14px; line-height: 1.85; }
.heading-light .eyebrow { color: var(--accent-soft); }
.heading-light > p { color: rgba(255,253,249,.62); }
.category-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr;
  grid-template-rows: 525px 310px;
  gap: 18px;
}
.category-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}
.category-card-large { grid-row: 1 / 3; }
.category-card-wide { grid-column: 2 / 4; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .6s ease; }
.category-card-large img { object-position: 50% 45%; }
.category-card:nth-child(2) img { object-position: 46% 55%; }
.category-card:nth-child(3) img { object-position: 48% 42%; }
.category-card-wide img { object-position: 50% 46%; }
.category-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(18,13,11,.78) 0%, rgba(18,13,11,.07) 58%, transparent 100%); }
.category-copy { position: absolute; z-index: 2; right: 27px; bottom: 25px; left: 27px; color: var(--white); }
.category-copy > span { font-size: 9px; font-weight: 800; letter-spacing: .19em; opacity: .7; }
.category-copy h3 { margin: 10px 0 7px; font-size: clamp(24px, 2.3vw, 38px); line-height: 1.15; letter-spacing: -.045em; }
.category-copy h3 small { font-size: .58em; font-weight: 650; }
.category-copy p { max-width: 420px; margin: 0; color: rgba(255,255,255,.72); font-size: 12px; }
.category-copy i {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  font-style: normal;
  transition: background .3s ease, transform .3s var(--ease);
}
.category-card:hover img { transform: scale(1.045); filter: saturate(1.04); }
.category-card:hover .category-copy i { color: var(--ink); background: var(--white); transform: rotate(45deg); }

.models { background: var(--white); }
.model-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: -22px; margin-bottom: 31px; }
.filter-button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.filter-button:hover,
.filter-button.is-active { color: var(--white); border-color: var(--ink); background: var(--ink); }
.model-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
.model-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s ease, opacity .25s ease;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(33,27,24,.1); }
.model-card.is-hidden { display: none; }
.model-image { position: relative; min-height: 410px; overflow: hidden; background: #e9e4de; }
.model-image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 48%; transition: transform .7s var(--ease); }
.model-image-shift img { object-position: 44% 45%; }
.model-image-close img { object-position: 52% 50%; }
.model-card:hover .model-image img { transform: scale(1.035); }
.model-badge { position: absolute; top: 17px; left: 17px; padding: 7px 11px; color: var(--white); background: rgba(33,27,24,.84); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .04em; backdrop-filter: blur(8px); }
.model-body { display: flex; flex-direction: column; padding: 34px 31px 28px; }
.model-title-row { display: flex; align-items: baseline; gap: 12px; }
.model-title-row > span { color: var(--accent-deep); font-size: 13px; font-weight: 850; letter-spacing: .08em; }
.model-title-row h3 { margin: 0; font-size: 23px; letter-spacing: -.035em; }
.model-body > p { margin: 17px 0 25px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.model-body dl { margin: 0; border-top: 1px solid var(--line); }
.model-body dl div { display: grid; grid-template-columns: 85px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.model-body dt { color: #7d726d; }
.model-body dd { margin: 0; font-weight: 650; }
.model-body > a { display: inline-flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 24px; font-size: 12px; font-weight: 800; }
.model-body > a span { transition: transform .25s var(--ease); }
.model-body > a:hover span { transform: translateX(5px); }
.model-disclaimer { margin-top: 25px; color: #776c66; font-size: 11px; }

.guide { background: var(--paper-deep); }
.guide-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: stretch; gap: clamp(55px, 7vw, 100px); }
.guide-photo { position: relative; min-height: 720px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 48%; }
.guide-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(33,27,24,.28), transparent 35%); }
.guide-photo-label { position: absolute; z-index: 2; left: 25px; bottom: 22px; color: var(--white); font-size: 9px; font-weight: 850; letter-spacing: .22em; }
.guide-content { padding: 38px 0 10px; }
.guide-list { margin: 56px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.guide-list li { border-bottom: 1px solid var(--line); }
.guide-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  gap: 15px;
  padding: 23px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.guide-list button span { color: var(--accent-deep); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.guide-list button strong { font-size: 17px; letter-spacing: -.02em; }
.guide-list button i { justify-self: end; font-size: 20px; font-style: normal; font-weight: 350; }
.guide-answer { padding: 0 45px 23px 55px; }
.guide-answer p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.85; }
.guide-callout {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
}
.guide-callout > span { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--accent-soft); font-size: 15px; font-weight: 800; }
.guide-callout strong { display: block; font-size: 13px; }
.guide-callout p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: 10px; }
.guide-callout a { font-size: 15px; font-weight: 800; letter-spacing: .02em; }

.comparison { background: var(--white); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th, td { padding: 20px 24px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
th { color: #70655f; background: #eee6de; font-size: 10px; font-weight: 850; letter-spacing: .08em; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .2s ease; }
tbody tr:hover { background: var(--white); }
td strong { color: var(--accent-deep); font-size: 15px; }

.section-accent { background: var(--accent); }
.order { color: var(--white); }
.order .eyebrow { color: rgba(255,255,255,.82); }
.order-heading { text-align: center; }
.order-heading .eyebrow { justify-content: center; }
.order-heading > p:last-child { margin: 22px 0 0; color: rgba(255,255,255,.74); font-size: 14px; }
.order-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.order-steps article { position: relative; min-height: 260px; padding: 30px 28px 28px 0; }
.order-steps article + article { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.3); }
.order-steps article > span { font-size: 9px; font-weight: 850; letter-spacing: .18em; opacity: .75; }
.order-steps article > i { position: absolute; right: 20px; top: 20px; color: rgba(255,255,255,.12); font-size: 72px; font-style: normal; font-weight: 800; line-height: 1; letter-spacing: -.05em; }
.order-steps h3 { margin: 90px 0 8px; font-size: 19px; letter-spacing: -.03em; }
.order-steps p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }
.phone-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 40px;
  padding: 34px 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 58px rgba(91,43,32,.17);
}
.phone-panel > div:first-child > span { color: var(--accent-deep); font-size: 9px; font-weight: 850; letter-spacing: .19em; }
.phone-panel > div:first-child > p { margin: 12px 0 0; color: var(--ink-soft); font-size: 11px; }
.phone-panel > div:first-child > a { display: block; margin-top: 2px; font-size: clamp(31px, 4vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -.04em; }
.call-device-note { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
[data-mobile-call][data-call-mode="copy"] { cursor: copy; }
[data-mobile-call][data-call-mode="dial"] { cursor: pointer; }
.phone-panel-actions { display: flex; align-items: center; gap: 10px; }
.copy-phone { min-height: 52px; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 12px; font-weight: 750; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.copy-phone:hover { border-color: var(--ink); background: var(--paper); }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(55px, 8vw, 120px); }
.faq-heading > p:last-child { margin: 19px 0 0; color: var(--ink-soft); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-list button span { font-size: 16px; font-weight: 720; letter-spacing: -.02em; }
.faq-list button i { font-size: 20px; font-style: normal; font-weight: 350; }
.faq-answer { padding: 0 48px 27px 0; }
.faq-answer p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.85; white-space: pre-line; overflow-wrap: anywhere; }
.faq-empty-state {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.faq-empty-state > span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; font-size: 17px; }
.faq-empty-state strong { margin-top: 14px; color: var(--ink); font-size: 14px; }
.faq-empty-state p { margin: 7px 0 0; font-size: 12px; line-height: 1.7; }

.closing-visual { position: relative; min-height: 590px; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.closing-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; }
.closing-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,14,12,.82) 0%, rgba(20,14,12,.6) 45%, rgba(20,14,12,.15) 100%); }
.closing-copy { position: relative; z-index: 2; }
.closing-copy > p { margin: 0 0 20px; color: var(--accent-soft); font-size: 10px; font-weight: 850; letter-spacing: .22em; }
.closing-copy h2 { margin: 0 0 34px; font-size: clamp(40px, 5vw, 66px); line-height: 1.18; letter-spacing: -.055em; }

.site-footer { color: rgba(255,255,255,.76); background: #181311; }
.footer-top { min-height: 126px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.54); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 28px; }
.footer-links a { font-size: 12px; font-weight: 650; transition: color .2s ease; }
.footer-links a:hover { color: var(--accent-soft); }
.footer-info { display: grid; grid-template-columns: .8fr 1.05fr 1.15fr; gap: 55px; padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-info p { margin: 0 0 7px; font-size: 11px; }
.footer-info strong { display: inline-block; min-width: 84px; color: rgba(255,255,255,.42); font-weight: 600; }
.footer-notice { padding-left: 32px; border-left: 1px solid rgba(255,255,255,.12); }
.footer-notice p { color: rgba(255,255,255,.48); line-height: 1.85; }
.footer-bottom { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.34); font-size: 9px; letter-spacing: .02em; }
.footer-bottom p { margin: 0; }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .35s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --container: 940px; }
  .site-nav { gap: 21px; }
  .site-nav > a { font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr .85fr; gap: 52px; }
  .hero h1 { font-size: 58px; }
  .floating-card-top { left: -28px; }
  .floating-card-bottom { right: -18px; }
  .brand-grid { grid-template-columns: .58fr 1.65fr .77fr; gap: 45px; }
  .category-grid { grid-template-rows: 450px 280px; }
  .model-card { grid-template-columns: .82fr 1.18fr; }
  .model-image { min-height: 390px; }
  .model-body { padding: 28px 24px 24px; }
  .guide-photo { min-height: 650px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 96px 0; }
  .menu-toggle {
    position: relative;
    z-index: 62;
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 17px; height: 1.5px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 23px;
    padding: 96px max(28px, 8vw);
    background: rgba(248,244,238,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .35s var(--ease);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { font-size: 28px; font-weight: 720; letter-spacing: -.04em; }
  .nav-cta { margin-top: 10px; padding: 14px 22px; font-size: 15px !important; }
  .hero { min-height: auto; padding: 62px 0 82px; }
  .hero-grid { grid-template-columns: 1fr; gap: 62px; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(51px, 9vw, 72px); }
  .hero-visual { width: min(82%, 560px); justify-self: center; }
  .hero-photo-wrap { max-height: none; }
  .brand-grid { grid-template-columns: 1fr; gap: 26px; }
  .section-kicker { min-height: auto; }
  .section-index { display: none; }
  .brand-note { max-width: 570px; padding-top: 0; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .feature-strip article:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { margin-left: 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 480px 390px 300px; }
  .category-card-large { grid-column: 1 / 3; grid-row: auto; }
  .category-card-wide { grid-column: 1 / 3; }
  .category-card-large img { object-position: 50% 38%; }
  .model-grid { grid-template-columns: 1fr; }
  .model-card { grid-template-columns: .75fr 1.25fr; }
  .model-image { min-height: 380px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-photo { width: min(100%, 620px); min-height: 620px; }
  .guide-content { padding: 0; }
  .order-steps { grid-template-columns: repeat(2, 1fr); }
  .order-steps article:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(255,255,255,.3); border-left: 0; }
  .order-steps article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.3); }
  .phone-panel { align-items: flex-start; flex-direction: column; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-info { grid-template-columns: repeat(2, 1fr); }
  .footer-notice { grid-column: 1 / 3; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 78px 0; }
  .utility-inner { min-height: 32px; }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: center; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 7px; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(43px, 12vw, 58px); line-height: 1.16; }
  .hero-lead { font-size: 16px; }
  .hero-lead br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-facts { margin-top: 42px; }
  .hero-facts div { padding-right: 10px; }
  .hero-facts div + div { padding-left: 12px; }
  .hero-facts dt { font-size: 19px; }
  .hero-facts dd { font-size: 10px; }
  .hero-visual { width: 100%; }
  .hero-photo-wrap { border-radius: 115px 115px 25px 25px; }
  .hero-photo-wrap::before { border-radius: 105px 105px 18px 18px; }
  .floating-card { min-width: 0; padding: 11px 13px; }
  .floating-card-top { top: 13%; left: -6px; }
  .floating-card-bottom { right: -5px; bottom: 8%; }
  .floating-icon { width: 32px; height: 32px; }
  .floating-card strong { font-size: 11px; }
  .floating-card small { font-size: 8px; }
  .brand-message h2,
  .section-heading h2,
  .guide-content h2,
  .order-heading h2,
  .faq-heading h2 { font-size: 38px; }
  .brand-message > p { font-size: 16px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip article { min-height: auto; padding: 28px 0; }
  .feature-strip article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .feature-strip h3 { margin-top: 28px; }
  .category-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .category-card,
  .category-card-large,
  .category-card-wide { grid-column: auto; min-height: 430px; }
  .category-card-wide { min-height: 330px; }
  .category-copy { right: 21px; bottom: 21px; left: 21px; }
  .category-copy h3 { font-size: 30px; }
  .category-copy p { padding-right: 45px; }
  .model-toolbar { margin-top: -12px; }
  .model-card { grid-template-columns: 1fr; }
  .model-image { min-height: 390px; }
  .model-body { padding: 27px 22px 25px; }
  .guide-photo { min-height: 510px; border-radius: 28px; }
  .guide-list { margin-top: 40px; }
  .guide-answer { padding-left: 0; padding-right: 20px; }
  .guide-callout { grid-template-columns: 40px 1fr; }
  .guide-callout a { grid-column: 1 / 3; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.17); }
  .comparison .section-heading { margin-bottom: 35px; }
  .order-steps { grid-template-columns: 1fr; }
  .order-steps article { min-height: 220px; padding: 27px 0 !important; border-top: 1px solid rgba(255,255,255,.3); border-left: 0 !important; }
  .order-steps article:first-child { border-top: 0; }
  .order-steps h3 { margin-top: 74px; }
  .phone-panel { padding: 27px 22px; }
  .phone-panel > div:first-child > a { font-size: 36px; }
  .phone-panel-actions { width: 100%; flex-direction: column; }
  .phone-panel-actions .button,
  .copy-phone { width: 100%; }
  .closing-visual { min-height: 540px; }
  .closing-overlay { background: rgba(20,14,12,.62); }
  .closing-copy h2 { font-size: 42px; }
  .footer-top { align-items: flex-start; flex-direction: column; padding: 35px 0; }
  .footer-links { justify-content: flex-start; gap: 17px 23px; }
  .footer-info { grid-template-columns: 1fr; gap: 25px; }
  .footer-notice { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; padding: 22px 0; }
}

/* --------------------------------------------------------------------------
   Product manager
---------------------------------------------------------------------------- */
body.admin-open,
body.admin-login-open { overflow: hidden; }
.utility-actions { display: flex; align-items: center; gap: 13px; }
.utility-phone { white-space: nowrap; }
.admin-launch {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.admin-launch:hover,
.admin-launch:focus-visible { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }
.admin-launch span { color: var(--accent-soft); font-size: 11px; }

.model-photo-count {
  position: absolute;
  right: 17px;
  bottom: 17px;
  padding: 7px 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(33,27,24,.72);
  font-size: 9px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}
.model-empty-state {
  grid-column: 1 / -1;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 24px;
  border: 1px dashed rgba(33,27,24,.24);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.48);
  text-align: center;
}
.model-empty-state > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--accent);
  font-size: 28px;
  font-weight: 300;
}
.model-empty-state strong { margin-top: 21px; font-size: 22px; letter-spacing: -.035em; }
.model-empty-state p { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; }
.comparison-empty { padding: 44px 24px; color: #7b6f68; text-align: center; }


.admin-login-layer {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility 0s linear .24s;
}
.admin-login-layer[hidden] { display: none; }
.admin-login-layer.is-open { opacity: 1; visibility: visible; transition: opacity .24s ease; }
.admin-login-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 7%, rgba(194,119,96,.22), transparent 34%),
    rgba(24,19,17,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.admin-login-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 450px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 43px 44px 31px;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 28px;
  outline: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(233,196,183,.5), transparent 34%),
    var(--paper);
  box-shadow: 0 36px 110px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(-20px) scale(.97);
  transition: opacity .22s ease, transform .38s var(--ease);
}
.admin-login-layer.is-open .admin-login-modal { opacity: 1; transform: translateY(0) scale(1); }
.admin-login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px;
  color: #665b55;
  border: 1px solid rgba(33,27,24,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.56);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .25s var(--ease);
}
.admin-login-close:hover,
.admin-login-close:focus-visible { color: var(--white); background: var(--ink); transform: rotate(7deg); }
.admin-login-brand {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(33,27,24,.16);
}
.admin-login-brand img { width: 46px; height: 46px; }
.admin-login-kicker { margin: 0 0 8px; color: var(--accent-deep); font-size: 9px; font-weight: 850; letter-spacing: .2em; }
.admin-login-modal h2 { margin: 0; font-size: 31px; line-height: 1.2; letter-spacing: -.045em; }
.admin-login-description { margin: 12px 0 0; color: #6f635d; font-size: 12px; line-height: 1.7; }
.admin-login-form { margin-top: 27px; }
.admin-login-field { display: flex; flex-direction: column; gap: 8px; margin-top: 15px; }
.admin-login-field:first-child { margin-top: 0; }
.admin-login-field > span:first-child { color: #5e534d; font-size: 10px; font-weight: 800; }
.admin-login-field > input,
.admin-password-control {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(33,27,24,.16);
  border-radius: 13px;
  background: rgba(255,255,255,.72);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.admin-login-field > input {
  padding: 0 15px;
  color: var(--ink);
  outline: 0;
  font-size: 12px;
}
.admin-password-control { display: grid; grid-template-columns: minmax(0, 1fr) auto; overflow: hidden; }
.admin-password-control input {
  min-width: 0;
  padding: 0 9px 0 15px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}
.admin-password-control button {
  min-width: 58px;
  margin: 7px;
  padding: 0 10px;
  color: #6b5f59;
  border: 0;
  border-radius: 9px;
  background: #eee6de;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.admin-password-control button:hover,
.admin-password-control button:focus-visible { color: var(--white); background: var(--accent-deep); }
.admin-login-field > input:focus,
.admin-password-control:focus-within { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px rgba(194,119,96,.12); }
.admin-login-field > input::placeholder,
.admin-password-control input::placeholder { color: #a29791; }
.admin-login-form.is-invalid .admin-login-field > input,
.admin-login-form.is-invalid .admin-password-control { border-color: #b94d3c; }
.admin-caps-lock { margin-top: -2px; color: #9f5846; font-size: 8px; font-weight: 700; }
.admin-login-error { min-height: 20px; margin: 10px 0 0; color: #ae3f30; font-size: 9px; font-weight: 750; line-height: 1.55; }
.admin-login-submit {
  width: 100%;
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 5px;
  padding: 0 19px 0 21px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--accent-deep);
  box-shadow: 0 14px 30px rgba(159,88,70,.24);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .25s var(--ease), opacity .2s ease;
}
.admin-login-submit i { font-size: 17px; font-style: normal; transition: transform .25s var(--ease); }
.admin-login-submit:hover:not(:disabled),
.admin-login-submit:focus-visible:not(:disabled) { background: var(--ink); transform: translateY(-2px); }
.admin-login-submit:hover:not(:disabled) i { transform: translateX(4px); }
.admin-login-submit:disabled { cursor: wait; opacity: .66; }
.admin-login-security { display: flex; align-items: flex-start; gap: 8px; margin: 22px 0 0; padding-top: 18px; color: #82756e; border-top: 1px solid rgba(33,27,24,.11); font-size: 8px; line-height: 1.55; }
.admin-login-security span { margin-top: 3px; color: var(--sage); font-size: 7px; }

.admin-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.admin-layer[hidden] { display: none; }
.admin-layer.is-open { opacity: 1; visibility: visible; }
.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,19,17,.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.admin-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  height: min(94dvh, 920px);
  max-height: calc(100dvh - 10px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.34);
  border-top: 0;
  border-radius: 0 0 32px 32px;
  outline: 0;
  background: var(--paper);
  box-shadow: 0 34px 110px rgba(0,0,0,.36);
  opacity: 0;
  transform: translateY(-32px) scale(.988);
  transform-origin: top center;
  transition: opacity .23s ease, transform .38s var(--ease);
}
.admin-layer.is-open .admin-modal { opacity: 1; transform: translateY(0) scale(1); }
.admin-layer.is-saving .admin-modal { cursor: progress; }
.admin-layer.is-saving [data-admin-panel] { opacity: .72; pointer-events: none; }
.admin-modal-header {
  min-height: 108px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 30px 22px 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(194,119,96,.32), transparent 28%),
    var(--ink);
}
.admin-kicker { margin: 0 0 7px; color: var(--accent-soft); font-size: 9px; font-weight: 850; letter-spacing: .2em; }
.admin-modal-header h2 { margin: 0; font-size: 30px; line-height: 1.1; letter-spacing: -.045em; }
.admin-header-actions { display: flex; align-items: center; gap: 8px; }
.admin-icon-button {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s ease;
}
.admin-icon-button:last-child { font-size: 29px; }
.admin-icon-button:hover { background: var(--accent-deep); transform: translateY(-2px); }
.admin-icon-button:last-child:hover { transform: rotate(7deg); }

.admin-storage-note {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 24px;
  color: #5f5550;
  border-bottom: 1px solid rgba(33,27,24,.12);
  background: #f0e8df;
}
.admin-storage-note > span { margin-top: 4px; color: var(--sage); font-size: 8px; }
.admin-storage-note p { margin: 0; font-size: 10px; line-height: 1.65; }
.admin-storage-note strong { color: var(--ink); }
.admin-storage-note.is-warning { background: #fae8dc; }
.admin-storage-note.is-warning > span { color: #b44d36; }

.admin-tabs {
  min-height: 58px;
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(33,27,24,.12);
  background: rgba(255,255,255,.86);
}
.admin-tab {
  position: relative;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: #7c7069;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.admin-tab::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--accent-deep);
  content: '';
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .2s ease, transform .25s var(--ease);
}
.admin-tab small { min-width: 21px; height: 21px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; color: #786d66; border-radius: 999px; background: #eee7df; font-size: 8px; }
.admin-tab:hover { color: var(--ink); background: rgba(194,119,96,.06); }
.admin-tab.is-active { color: var(--accent-deep); }
.admin-tab.is-active::after { opacity: 1; transform: scaleX(1); }
.admin-tab.is-active small { color: var(--white); background: var(--accent-deep); }
.admin-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }
.admin-panel[hidden] { display: none !important; }

.admin-workspace {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
}
.admin-sidebar,
.admin-editor { min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.admin-sidebar {
  display: flex;
  flex-direction: column;
  padding: 26px 23px 22px;
  border-right: 1px solid var(--line);
  background: #eee7df;
}
.admin-sidebar-heading,
.admin-editor-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.admin-sidebar-heading > div { display: flex; flex-direction: column; }
.admin-sidebar-heading strong { font-size: 19px; line-height: 1.2; letter-spacing: -.035em; }
.admin-sidebar-heading span { margin-top: 3px; color: var(--accent-deep); font-size: 10px; font-weight: 750; }
.admin-new-button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, transform .25s var(--ease);
}
.admin-new-button:hover { background: var(--accent-deep); transform: translateY(-2px); }
.admin-search {
  position: relative;
  display: block;
  margin-top: 18px;
}
.admin-search i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 13px;
  color: #7d716a;
  font-size: 18px;
  font-style: normal;
  transform: translateY(-52%);
  pointer-events: none;
}
.admin-search input {
  width: 100%;
  height: 42px;
  padding: 0 13px 0 38px;
  color: var(--ink);
  border: 1px solid rgba(33,27,24,.14);
  border-radius: 12px;
  outline: 0;
  background: rgba(255,255,255,.76);
  font-size: 11px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.admin-search input:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(194,119,96,.12); }
.admin-product-list { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.admin-product-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.admin-product-item:hover { background: var(--white); box-shadow: 0 10px 28px rgba(33,27,24,.07); }
.admin-product-item.is-selected { border-color: rgba(159,88,70,.48); background: #fffaf6; box-shadow: 0 10px 28px rgba(159,88,70,.1); }
.admin-product-select {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.admin-product-select img { width: 58px; height: 68px; flex: 0 0 auto; object-fit: cover; border-radius: 10px; background: #ddd4cc; }
.admin-product-copy { min-width: 0; display: flex; flex-direction: column; }
.admin-product-copy strong { overflow: hidden; font-size: 12px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.admin-product-copy strong b { display: inline-block; margin-right: 7px; color: var(--accent-deep); font-size: 9px; letter-spacing: .07em; }
.admin-product-copy small { margin-top: 5px; overflow: hidden; color: #81746d; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.admin-product-copy em { margin-top: 3px; color: #9a8d85; font-size: 8px; font-style: normal; }
.admin-product-delete {
  padding: 8px 6px;
  color: #8b6258;
  border: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
}
.admin-product-delete:hover { color: #b13e2d; text-decoration: underline; }

.admin-faq-list { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.admin-faq-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.admin-faq-item:hover { background: var(--white); box-shadow: 0 10px 28px rgba(33,27,24,.07); }
.admin-faq-item.is-selected { border-color: rgba(159,88,70,.48); background: #fffaf6; box-shadow: 0 10px 28px rgba(159,88,70,.1); }
.admin-faq-select { min-width: 0; display: flex; align-items: flex-start; gap: 11px; padding: 2px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.admin-faq-order { width: 30px; height: 30px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: var(--accent-deep); border: 1px solid rgba(159,88,70,.22); border-radius: 50%; background: #fffaf6; font-size: 9px; font-weight: 850; }
.admin-faq-copy { min-width: 0; display: flex; flex-direction: column; }
.admin-faq-copy strong { display: -webkit-box; overflow: hidden; font-size: 11px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.admin-faq-copy small { display: -webkit-box; margin-top: 5px; overflow: hidden; color: #8d8079; font-size: 8px; line-height: 1.5; white-space: pre-line; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.admin-list-empty {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px dashed rgba(33,27,24,.2);
  border-radius: 16px;
  color: #7e716a;
  text-align: center;
}
.admin-list-empty > span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(33,27,24,.22); border-radius: 50%; font-size: 20px; }
.admin-list-empty strong { margin-top: 14px; font-size: 12px; }
.admin-list-empty p { margin: 5px 0 0; font-size: 9px; }
.admin-sidebar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}
.admin-sidebar-actions button,
.admin-import-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #665b55;
  border: 1px solid rgba(33,27,24,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.admin-sidebar-actions button:hover,
.admin-import-button:hover { color: var(--accent-deep); border-color: rgba(159,88,70,.4); background: var(--white); }
.admin-import-button input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.admin-sidebar-actions .admin-reset-button { grid-column: 1 / -1; color: #8b6258; }

.admin-editor { padding: 27px 34px 42px; background: var(--paper); }
.admin-editor-heading { padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.admin-editor-heading > div > span { color: var(--accent-deep); font-size: 8px; font-weight: 850; letter-spacing: .17em; }
.admin-editor-heading h3 { margin: 5px 0 0; font-size: 21px; line-height: 1.25; letter-spacing: -.035em; }
.admin-required { color: #7e716a; font-size: 9px; }
.admin-required i,
.admin-field > span i { color: var(--accent-deep); font-style: normal; }
.admin-form { padding-top: 23px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px 17px; }
.admin-field { position: relative; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.admin-field-wide { grid-column: 1 / -1; }
.admin-field > span { color: #665b55; font-size: 10px; font-weight: 700; }
.admin-field > small { align-self: flex-end; margin-top: -3px; color: #978a83; font-size: 8px; }
.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(33,27,24,.17);
  border-radius: 10px;
  outline: 0;
  background: rgba(255,255,255,.72);
  font-size: 12px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.admin-field textarea { min-height: 82px; resize: vertical; line-height: 1.6; }
.admin-field input::placeholder,
.admin-field textarea::placeholder { color: #aaa09a; }
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(194,119,96,.12); }
.admin-faq-form .admin-field textarea { min-height: 245px; }
.admin-faq-order-help {
  min-height: 66px;
  align-self: end;
  padding: 12px 14px;
  border: 1px solid rgba(33,27,24,.11);
  border-radius: 11px;
  background: rgba(255,255,255,.45);
}
.admin-faq-order-help strong { display: block; color: #665b55; font-size: 9px; }
.admin-faq-order-help p { margin: 5px 0 0; color: #8d8079; font-size: 8px; line-height: 1.55; }

.admin-photo-manager { margin: 25px 0 0; padding: 22px 0 0; border: 0; border-top: 1px solid var(--line); }
.admin-photo-manager legend { width: 100%; margin: 0 0 9px; padding: 0; font-size: 14px; font-weight: 800; letter-spacing: -.02em; }
.admin-photo-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.admin-photo-heading p { max-width: 660px; margin: 0; color: #7e716a; font-size: 9px; line-height: 1.65; }
.admin-photo-heading > span { flex: 0 0 auto; color: var(--accent-deep); font-size: 10px; font-weight: 800; }
.admin-dropzone {
  position: relative;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding: 16px;
  overflow: hidden;
  color: #776b64;
  border: 1px dashed rgba(33,27,24,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.48);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, opacity .2s ease;
}
.admin-dropzone:hover,
.admin-dropzone.is-dragging { border-color: var(--accent); background: #fffaf6; transform: translateY(-1px); }
.admin-dropzone.is-busy { pointer-events: none; opacity: .58; }
.admin-dropzone.is-full { opacity: .52; }
.admin-dropzone input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.admin-dropzone.is-full input { pointer-events: none; }
.admin-dropzone-icon { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; color: var(--white); border-radius: 50%; background: var(--ink); font-size: 18px; font-weight: 300; }
.admin-dropzone strong { font-size: 11px; }
.admin-dropzone small { margin-top: 3px; font-size: 8px; }
.admin-photo-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.admin-photo-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 9px;
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.68);
}
.admin-photo-thumb { position: relative; height: 82px; overflow: hidden; border-radius: 10px; background: #e2d9d1; }
.admin-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-photo-thumb span { position: absolute; top: 6px; left: 6px; padding: 4px 6px; color: var(--white); border-radius: 999px; background: rgba(33,27,24,.78); font-size: 7px; font-weight: 800; }
.admin-photo-copy { min-width: 0; display: flex; flex-direction: column; }
.admin-photo-copy strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-photo-copy small { margin-top: 5px; color: #8d8079; font-size: 8px; }
.admin-photo-actions { display: flex; flex-direction: column; gap: 4px; }
.admin-photo-actions button { padding: 6px 7px; color: #6c605a; border: 1px solid rgba(33,27,24,.14); border-radius: 8px; background: transparent; font-size: 8px; font-weight: 700; white-space: nowrap; cursor: pointer; }
.admin-photo-actions button:hover { border-color: var(--ink); background: var(--paper); }
.admin-photo-actions button.is-delete { color: #a34837; }
.admin-photo-actions button.is-delete:hover { color: var(--white); border-color: #a34837; background: #a34837; }
.admin-photo-empty {
  grid-column: 1 / -1;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px;
  color: #8b7e77;
  border: 1px solid rgba(33,27,24,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.35);
}
.admin-photo-empty > span { font-size: 20px; }
.admin-photo-empty p { margin: 0; font-size: 9px; }
.admin-form-actions {
  position: sticky;
  z-index: 2;
  bottom: -42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 25px;
  padding: 18px 0 9px;
  background: linear-gradient(to bottom, rgba(248,244,238,0), var(--paper) 30%);
}
.admin-secondary-button,
.admin-save-button { min-height: 44px; padding: 0 18px; border-radius: 999px; font-size: 10px; font-weight: 750; cursor: pointer; }
.admin-secondary-button { color: var(--ink-soft); border: 1px solid rgba(33,27,24,.2); background: rgba(255,255,255,.5); }
.admin-secondary-button:hover { border-color: var(--ink); background: var(--white); }
.admin-save-button { min-width: 150px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; color: var(--white); border: 0; background: var(--accent-deep); box-shadow: 0 10px 24px rgba(159,88,70,.2); }
.admin-save-button i { font-style: normal; transition: transform .25s var(--ease); }
.admin-save-button:hover { background: var(--ink); }
.admin-save-button:hover i { transform: translateX(4px); }

/* Homepage manager */
.admin-page-workspace {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  background: var(--paper);
}
.admin-page-nav,
.admin-page-editor { min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.admin-page-nav {
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px;
  border-right: 1px solid var(--line);
  background: #eee7df;
}
.admin-page-nav-heading > span,
.admin-page-editor-heading > div > span,
.admin-page-section-heading > span {
  color: var(--accent-deep);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .17em;
}
.admin-page-nav-heading strong { display: block; margin-top: 6px; font-size: 19px; line-height: 1.25; letter-spacing: -.035em; }
.admin-page-nav-heading p { margin: 10px 0 0; color: #7d716a; font-size: 9px; line-height: 1.65; }
.admin-page-nav-links { display: flex; flex-direction: column; gap: 5px; margin-top: 22px; }
.admin-page-nav-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #655a54;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 750;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.admin-page-nav-links a span { color: var(--accent-deep); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.admin-page-nav-links a:hover,
.admin-page-nav-links a:focus-visible { color: var(--ink); border-color: rgba(159,88,70,.28); background: rgba(255,255,255,.72); transform: translateX(3px); }
.admin-page-nav-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  color: #756962;
  border: 1px solid rgba(33,27,24,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.45);
}
.admin-page-nav-note > span { margin-top: 3px; color: var(--sage); font-size: 7px; }
.admin-page-nav-note p { margin: 0; font-size: 8px; line-height: 1.65; }

.admin-page-editor { padding: 27px 34px 56px; background: var(--paper); }
.admin-page-editor-heading {
  max-width: 1060px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}
.admin-page-editor-heading h3 { margin: 5px 0 0; font-size: 21px; line-height: 1.25; letter-spacing: -.035em; }
.admin-page-editor-heading > p { margin: 0; color: #7e716a; font-size: 9px; }
.admin-page-editor-heading > p i { color: var(--accent-deep); font-style: normal; }
.admin-page-form { max-width: 1060px; margin: 0 auto; padding-top: 23px; }
.admin-page-section {
  scroll-margin-top: 22px;
  padding: 25px;
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 19px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 10px 30px rgba(33,27,24,.035);
}
.admin-page-section + .admin-page-section { margin-top: 17px; }
.admin-page-section-heading { display: grid; grid-template-columns: 135px minmax(0, 1fr); gap: 20px; margin-bottom: 22px; }
.admin-page-section-heading > span { padding-top: 6px; white-space: nowrap; }
.admin-page-section-heading h4 { margin: 0; font-size: 18px; line-height: 1.3; letter-spacing: -.03em; }
.admin-page-section-heading p { margin: 5px 0 0; color: #7e716a; font-size: 9px; line-height: 1.65; }
.admin-page-form .admin-field textarea { min-height: 78px; }
.admin-page-form .admin-field textarea[rows="2"] { min-height: 64px; }
.admin-page-form .admin-field textarea[rows="4"] { min-height: 105px; }
.admin-page-form .admin-field textarea[rows="5"] { min-height: 125px; }
.admin-page-image-control { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.admin-page-subheading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 25px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.admin-page-subheading strong { font-size: 13px; }
.admin-page-subheading span { color: #8a7e77; font-size: 8px; }
.admin-page-repeat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 20px; }
.admin-page-subheading + .admin-page-repeat-grid { margin-top: 0; }
.admin-page-repeat-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(33,27,24,.11);
  border-radius: 14px;
  background: rgba(248,244,238,.68);
}
.admin-page-repeat-card legend { padding: 0 5px; font-size: 10px; font-weight: 800; }
.admin-page-repeat-card legend span {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: var(--white);
  border-radius: 50%;
  background: var(--accent-deep);
  font-size: 7px;
  letter-spacing: .05em;
}
.admin-page-repeat-card .admin-field textarea { min-height: 82px; }
.admin-page-category-editors .admin-page-repeat-card { gap: 11px; }
.admin-page-callout-fields { margin-top: 15px; padding-top: 18px; border-top: 1px solid var(--line); }

.admin-media-section { background: #f3ece4; }
.admin-media-toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.admin-media-toolbar > div { display: flex; align-items: center; gap: 9px; }
.admin-media-toolbar strong { font-size: 13px; }
.admin-media-toolbar span { padding: 5px 8px; color: var(--white); border-radius: 999px; background: var(--accent-deep); font-size: 8px; font-weight: 800; }
.admin-media-toolbar p { max-width: 470px; margin: 0; color: #7e716a; font-size: 8px; line-height: 1.65; text-align: right; }
.admin-media-dropzone { min-height: 116px; margin-top: 14px; background: rgba(255,255,255,.6); }
.admin-media-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 13px; }
.admin-media-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.75);
}
.admin-media-preview { position: relative; min-height: 132px; overflow: hidden; border-radius: 10px; background: #ddd4cc; }
.admin-media-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-media-preview span { position: absolute; top: 7px; left: 7px; padding: 4px 7px; color: var(--white); border-radius: 999px; background: rgba(33,27,24,.78); font-size: 7px; font-weight: 800; }
.admin-media-preview span.is-unused { background: rgba(117,105,98,.8); }
.admin-media-fields { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.admin-media-fields label { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.admin-media-fields label > span { color: #665b55; font-size: 8px; font-weight: 700; }
.admin-media-fields input,
.admin-media-fields textarea {
  width: 100%;
  min-height: 34px;
  padding: 7px 9px;
  color: var(--ink);
  border: 1px solid rgba(33,27,24,.15);
  border-radius: 8px;
  outline: 0;
  background: rgba(255,255,255,.82);
  font-size: 9px;
  line-height: 1.45;
}
.admin-media-fields textarea { min-height: 53px; resize: vertical; }
.admin-media-fields input:focus,
.admin-media-fields textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(194,119,96,.1); }
.admin-media-fields small { margin-top: auto; overflow: hidden; color: #8c8079; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.admin-media-delete {
  align-self: center;
  padding: 7px 5px;
  color: #a34837;
  border: 0;
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}
.admin-media-delete:hover:not(:disabled) { text-decoration: underline; }
.admin-media-delete:disabled { color: #aaa09a; cursor: not-allowed; }
.admin-media-empty {
  grid-column: 1 / -1;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #81746d;
  border: 1px dashed rgba(33,27,24,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.4);
  text-align: center;
}
.admin-media-empty > span { font-size: 23px; }
.admin-media-empty strong { margin-top: 7px; font-size: 11px; }
.admin-media-empty p { margin: 4px 0 0; font-size: 8px; }
.admin-page-form-actions { bottom: -56px; padding-bottom: 10px; }
.toast { z-index: 1200; }

@media (max-width: 1120px) {
  .admin-workspace { grid-template-columns: 315px minmax(0, 1fr); }
  .admin-sidebar { padding-inline: 19px; }
  .admin-editor { padding-inline: 26px; }
  .admin-photo-list { grid-template-columns: 1fr; }
  .admin-page-workspace { grid-template-columns: 235px minmax(0, 1fr); }
  .admin-page-editor { padding-inline: 25px; }
  .admin-media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .admin-layer { padding: 0; }
  .admin-modal { width: 100%; height: 100dvh; max-height: none; overflow-y: auto; border: 0; border-radius: 0; }
  .admin-modal-header { position: sticky; z-index: 6; top: 0; min-height: 98px; padding: 19px 22px; }
  .admin-modal-header h2 { font-size: 26px; }
  .admin-storage-note { position: relative; z-index: 5; }
  .admin-tabs { position: sticky; z-index: 5; top: 98px; min-height: 54px; padding: 0 16px; background: rgba(255,255,255,.96); }
  .admin-tab { min-width: 0; flex: 1; padding-inline: 10px; }
  .admin-workspace { display: block; }
  .admin-sidebar,
  .admin-editor { overflow: visible; }
  .admin-sidebar { min-height: auto; padding: 24px 22px 27px; border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-product-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-sidebar-actions { margin-top: 20px; }
  .admin-editor { padding: 28px 22px 56px; }
  .admin-editor-heading { scroll-margin-top: 108px; }
  .admin-form-actions { bottom: 0; }
  .admin-page-workspace { display: block; flex: none; background: var(--paper); }
  .admin-page-nav,
  .admin-page-editor { overflow: visible; }
  .admin-page-nav { padding: 17px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-page-nav-heading,
  .admin-page-nav-note { display: none; }
  .admin-page-nav-links { flex-direction: row; gap: 6px; margin: 0; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
  .admin-page-nav-links a { min-width: 132px; min-height: 38px; justify-content: center; flex: 0 0 auto; padding-inline: 11px; background: rgba(255,255,255,.58); }
  .admin-page-nav-links a:hover,
  .admin-page-nav-links a:focus-visible { transform: translateY(-1px); }
  .admin-page-editor { padding: 28px 22px 66px; }
  .admin-page-section { scroll-margin-top: 172px; }
  .admin-page-form-actions { bottom: 0; }
}

@media (max-width: 620px) {
  .utility-actions { width: 100%; justify-content: center; gap: 9px; }
  .utility-phone { font-size: 10px; }
  .admin-launch { min-height: 23px; padding-inline: 9px; }
  .admin-modal-header { min-height: 88px; padding: 15px 14px 15px 18px; }
  .admin-kicker { margin-bottom: 5px; font-size: 7px; }
  .admin-modal-header h2 { font-size: 23px; }
  .admin-header-actions { gap: 5px; }
  .admin-tabs { top: 88px; min-height: 51px; padding-inline: 8px; }
  .admin-tab { gap: 6px; padding-inline: 6px; font-size: 10px; }
  .admin-tab::after { right: 7px; left: 7px; }
  .admin-icon-button { width: 39px; height: 39px; font-size: 18px; }
  .admin-icon-button:last-child { font-size: 25px; }
  .admin-storage-note { padding: 10px 14px; }
  .admin-storage-note p { font-size: 8px; }
  .admin-sidebar { padding: 22px 14px 25px; }
  .admin-product-list { grid-template-columns: 1fr; }
  .admin-editor { padding: 25px 14px 45px; }
  .admin-editor-heading { align-items: flex-start; }
  .admin-editor-heading h3 { font-size: 18px; }
  .admin-form-grid { grid-template-columns: 1fr; gap: 13px; }
  .admin-field-wide { grid-column: auto; }
  .admin-faq-order-help { align-self: auto; }
  .admin-faq-form .admin-field textarea { min-height: 210px; }
  .admin-photo-heading { gap: 10px; }
  .admin-photo-heading p { font-size: 8px; }
  .admin-dropzone { min-height: 96px; }
  .admin-photo-list { grid-template-columns: 1fr; }
  .admin-photo-item { grid-template-columns: 68px minmax(0, 1fr); }
  .admin-photo-thumb { height: 75px; }
  .admin-photo-actions { grid-column: 1 / -1; flex-direction: row; }
  .admin-photo-actions button { flex: 1; }
  .admin-form-actions { align-items: stretch; flex-direction: column-reverse; }
  .admin-secondary-button,
  .admin-save-button { width: 100%; }
  .admin-tabs { overflow-x: auto; }
  .admin-tab { min-width: 106px; flex: 1 0 106px; font-size: 9px; }
  .admin-page-nav { padding: 12px 14px; }
  .admin-page-nav-links a { min-width: 122px; min-height: 36px; font-size: 9px; }
  .admin-page-editor { padding: 24px 14px 50px; }
  .admin-page-editor-heading { align-items: flex-start; }
  .admin-page-editor-heading h3 { font-size: 18px; }
  .admin-page-section { padding: 18px 14px; border-radius: 16px; }
  .admin-page-section-heading { grid-template-columns: 1fr; gap: 5px; margin-bottom: 18px; }
  .admin-page-section-heading > span { padding-top: 0; }
  .admin-page-section-heading h4 { font-size: 16px; }
  .admin-page-image-control,
  .admin-page-repeat-grid { grid-template-columns: 1fr; }
  .admin-page-subheading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .admin-page-repeat-card { padding: 14px 12px; }
  .admin-media-toolbar { flex-direction: column; gap: 6px; }
  .admin-media-toolbar p { text-align: left; }
  .admin-media-grid { grid-template-columns: 1fr; }
  .admin-media-item { grid-template-columns: 92px minmax(0, 1fr); }
  .admin-media-preview { min-height: 126px; }
  .admin-media-delete { grid-column: 1 / -1; width: 100%; min-height: 34px; border: 1px solid rgba(163,72,55,.18); border-radius: 8px; }
  .admin-page-form-actions { padding-inline: 2px; }
}


@media (max-width: 520px) {
  .admin-login-layer { align-items: flex-end; padding: 10px 10px 0; }
  .admin-login-modal {
    width: 100%;
    max-height: calc(100dvh - 10px);
    padding: 35px 23px 27px;
    border-bottom: 0;
    border-radius: 27px 27px 0 0;
    transform: translateY(34px) scale(.99);
  }
  .admin-login-close { top: 13px; right: 13px; }
  .admin-login-brand { width: 57px; height: 57px; margin-bottom: 17px; border-radius: 18px; }
  .admin-login-brand img { width: 41px; height: 41px; }
  .admin-login-modal h2 { font-size: 27px; }
  .admin-login-description { font-size: 11px; }
  .admin-login-form { margin-top: 22px; }
  .admin-login-field > input,
  .admin-password-control { min-height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .admin-login-layer,
  .admin-login-modal,
  .admin-login-close,
  .admin-login-submit,
  .admin-login-submit i { transition: none !important; }
}
