:root {
  --ink: #111b32;
  --ink-soft: #536077;
  --paper: #f7f4ed;
  --card: #fffefa;
  --line: #ded9ce;
  --yellow: #f4c94b;
  --yellow-soft: #fff4bf;
  --blue: #315caa;
  --blue-soft: #e9f0ff;
  --red: #cf5144;
  --green: #35705a;
  --shadow: 0 18px 50px rgba(17, 27, 50, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
.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;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 5vw, 76px);
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid rgba(17, 27, 50, 0.08);
  backdrop-filter: blur(18px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand > span:last-child { display: grid; line-height: 1.05; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; letter-spacing: -0.02em; }
.brand small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; }
.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--red) 0 45%, var(--ink) 45% 55%, var(--card) 55%);
  box-shadow: inset 0 0 0 3px var(--card);
}
.brand-mark span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--card);
}
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 650; text-decoration: none; }
.header-nav a:hover { color: var(--ink); }
.cart-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px 8px 17px;
  border: 0;
  border-radius: 15px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(17, 27, 50, 0.2);
}
.cart-icon { transform: rotate(45deg); color: var(--yellow); font-size: 21px; }
.cart-label { font-size: 14px; font-weight: 750; }
.cart-count {
  display: grid;
  place-items: center;
  min-width: 29px;
  height: 29px;
  padding-inline: 6px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.hero {
  min-height: calc(100vh - 76px);
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 100px);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .how-section h2, .drawer-header h2, .modal-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: -0.045em;
}
.hero h1 { max-width: 780px; font-size: clamp(49px, 5.2vw, 82px); line-height: 0.99; }
.hero-intro {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 36px; }
.primary-link, .reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 27, 50, 0.18);
}
.primary-link:hover, .reserve-button:hover { background: #1e2b48; transform: translateY(-1px); }
.text-link { color: var(--ink); font-weight: 750; text-decoration: none; }
.text-link span { margin-left: 6px; color: var(--red); }
.hero-stats {
  display: flex;
  gap: 0;
  margin: 55px 0 0;
}
.hero-stats div { min-width: 126px; padding-right: 28px; }
.hero-stats div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.hero-stats dt { font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 700; }
.hero-stats dd { margin: 5px 0 0; color: var(--ink-soft); font-size: 12px; }
.hero-visual { position: relative; min-height: 640px; }
.halo { position: absolute; border-radius: 50%; filter: blur(1px); }
.halo-one { width: 510px; height: 510px; right: -20px; top: 50px; background: #eddfc4; }
.halo-two { width: 280px; height: 280px; left: -30px; bottom: 60px; border: 1px solid rgba(49, 92, 170, 0.18); }
.hero-card {
  position: absolute;
  width: clamp(245px, 25vw, 345px);
  aspect-ratio: 2.5 / 3.5;
  border-radius: 23px;
  box-shadow: 0 28px 70px rgba(17, 27, 50, 0.28);
  overflow: hidden;
}
.hero-card-back {
  top: 8%;
  right: 2%;
  transform: rotate(12deg);
  border: 11px solid #f2e8cc;
  background: radial-gradient(circle at center, #f1c94a 0 11%, #102a63 12% 18%, #f1c94a 19% 22%, #244e9b 23% 48%, #112954 49%);
}
.hero-card-back::before, .hero-card-back::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 30%;
  left: 10%;
  border: 4px solid rgba(255,255,255,.26);
  border-radius: 50%;
  transform: rotate(-22deg);
}
.hero-card-back::before { top: 16%; }
.hero-card-back::after { bottom: 16%; transform: rotate(22deg); }
.hero-card-front {
  left: 5%;
  bottom: 3%;
  transform: rotate(-7deg);
  border: 8px solid #efe6c5;
  background: #ddd;
}
.hero-card-front img { width: 100%; height: 100%; object-fit: cover; }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(17,27,50,.09);
  border-radius: 14px;
  background: rgba(255,254,250,.88);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.note-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(53,112,90,.12); }

.trust-strip {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.trust-strip > div { display: flex; align-items: center; gap: 16px; padding: 28px clamp(20px, 3vw, 45px); }
.trust-strip > div + div { border-left: 1px solid var(--line); }
.trust-strip > div > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow-soft);
  color: #765c00;
  font-weight: 900;
}
.trust-strip p { display: grid; gap: 4px; margin: 0; }
.trust-strip strong { font-size: 14px; }
.trust-strip small { color: var(--ink-soft); }

.catalogue-section, .how-section { max-width: 1480px; margin: 0 auto; padding: 110px clamp(20px, 5vw, 76px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(38px, 4vw, 59px); }
.section-heading > div > p:last-child { margin: 16px 0 0; color: var(--ink-soft); font-size: 16px; }
.result-count { margin: 0 0 7px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.catalogue-toolbar {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto 220px;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(247, 244, 237, .94);
  backdrop-filter: blur(16px);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.search-field span { color: var(--ink-soft); font-size: 22px; }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; }
.filter-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.filter-chip {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.filter-chip:hover { background: white; }
.filter-chip.active { background: var(--ink); color: white; }
.filter-chip.grade-chip.active { background: #744924; }
.sort-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.catalogue-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: #c6bfae; box-shadow: var(--shadow); }
.product-card.in-cart { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(49,92,170,.13); }
.product-image-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: #e9e5dc;
  cursor: zoom-in;
}
.product-image-wrap {
  aspect-ratio: 1 / 1.18;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #faf7ef 0, #e8e3d9 70%);
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 15px 18px rgba(17,27,50,.16)); }
.product-image-wrap.multi { grid-template-columns: repeat(2, 1fr); padding: 13px; }
.product-image-wrap.multi img { min-width: 0; min-height: 0; object-fit: contain; }
.zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(17,27,50,.8);
  color: white;
  font-size: 10px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(5px);
  transition: .2s ease;
}
.product-image-button:hover .zoom-hint, .product-image-button:focus-visible .zoom-hint { opacity: 1; transform: none; }
.product-body { padding: 18px; }
.badge-row { min-height: 25px; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 7px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge.grade { background: #f2e2c8; color: #744924; }
.badge.lot { background: var(--yellow-soft); color: #6d5500; }
.badge.fixed { background: #f7e2df; color: #8d332c; }
.product-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: 1.15; }
.product-variant { min-height: 17px; margin: 7px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-top: 14px; font-size: 11px; }
.condition { color: var(--green); font-weight: 750; }
.condition::before { content: "●"; margin-right: 5px; font-size: 7px; }
.stock { color: var(--ink-soft); }
.product-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-price { display: grid; gap: 2px; }
.product-price strong { font-size: 22px; letter-spacing: -.03em; }
.product-price small { color: var(--ink-soft); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.add-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 11px;
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.add-button:hover { background: var(--ink); color: white; }
.add-button.added { border-color: var(--blue); background: var(--blue); color: white; }
.add-button:disabled { opacity: .45; cursor: not-allowed; }
.empty-state { padding: 80px 20px; text-align: center; }
.empty-state > span { font-size: 44px; color: var(--ink-soft); }
.empty-state h3 { margin: 16px 0 8px; font-family: Georgia, serif; font-size: 28px; }
.empty-state p { color: var(--ink-soft); }
.empty-state button, .cart-empty button {
  min-height: 43px;
  margin-top: 13px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  font-weight: 750;
  cursor: pointer;
}

.how-section { padding-top: 70px; }
.section-heading.compact { margin-bottom: 45px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.steps li { position: relative; padding: 38px clamp(20px, 4vw, 55px) 42px; }
.steps li + li { border-left: 1px solid var(--line); }
.steps > li > span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.steps h3 { margin: 22px 0 10px; font-family: Georgia, serif; font-size: 25px; }
.steps p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.condition-note {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  max-width: 980px;
  margin: 54px auto 0;
  padding: 23px 26px;
  border: 1px solid #e4d29b;
  border-radius: 18px;
  background: #fff8de;
}
.condition-icon { display: grid; place-items: center; width: 31px; height: 31px; flex: 0 0 auto; border-radius: 50%; background: var(--yellow); font-family: Georgia, serif; font-weight: 800; }
.condition-note p { display: grid; gap: 7px; margin: 0; color: #5d512b; font-size: 13px; line-height: 1.6; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  min-height: 120px;
  padding: 25px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: white;
}
.footer-brand small { color: #b7c0d2; }
footer p { color: #b7c0d2; font-size: 12px; text-align: center; }
footer > a:last-child { justify-self: end; color: #d9deea; font-size: 12px; font-weight: 700; text-decoration: none; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(9, 15, 29, .58);
  backdrop-filter: blur(4px);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(480px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--card);
  box-shadow: -20px 0 70px rgba(8, 14, 29, .25);
  transform: translateX(105%);
  transition: transform .28s ease;
}
.cart-drawer.open { transform: none; }
.drawer-header, .modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 27px 28px 21px; border-bottom: 1px solid var(--line); }
.drawer-header h2, .modal-header h2 { font-size: 36px; }
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.icon-button:hover { background: #efebe3; }
.cart-content { overflow-y: auto; padding: 18px 28px; }
.cart-empty { display: grid; justify-items: center; padding: 70px 20px; text-align: center; }
.cart-empty > span { transform: rotate(45deg); color: var(--yellow); font-size: 58px; }
.cart-empty h3 { margin: 20px 0 7px; font-family: Georgia, serif; font-size: 27px; }
.cart-empty p { max-width: 310px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.cart-item { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item-image { width: 78px; height: 99px; object-fit: contain; border-radius: 9px; background: #e9e5dc; }
.cart-item h3 { margin: 4px 0 5px; font-family: Georgia, serif; font-size: 17px; }
.cart-item p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.quantity-control { display: inline-flex; align-items: center; gap: 9px; margin-top: 13px; padding: 3px; border: 1px solid var(--line); border-radius: 10px; }
.quantity-control button { width: 26px; height: 26px; border: 0; border-radius: 7px; background: #efebe3; cursor: pointer; }
.quantity-control strong { min-width: 15px; text-align: center; }
.cart-item-side { display: grid; align-content: space-between; justify-items: end; padding-block: 4px; }
.remove-item { border: 0; background: none; color: var(--ink-soft); font-size: 18px; cursor: pointer; }
.cart-item-price { font-weight: 850; }
.cart-footer { padding: 20px 28px 26px; border-top: 1px solid var(--line); background: #faf8f3; }
.cart-summary { display: grid; gap: 9px; }
.summary-line { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 13px; }
.summary-line.discount { color: var(--green); }
.summary-line.total { margin-top: 3px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink); font-size: 18px; font-weight: 850; }
.summary-note { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.cart-disclaimer { margin: 15px 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.cart-footer .reserve-button { width: 100%; }

.reservation-modal, .product-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 110;
  width: min(1000px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 30px 100px rgba(8,14,29,.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%) scale(.98);
  transition: .2s ease;
}
.reservation-modal.open, .product-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.form-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr); }
#reservationForm { padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-row label { display: grid; gap: 8px; font-size: 12px; font-weight: 800; }
.form-row label span { color: var(--ink-soft); font-weight: 500; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: white;
  color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(49,92,170,.12); }
.consent-field { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.consent-field input { margin-top: 2px; accent-color: var(--blue); }
.submit-button { width: 100%; margin-top: 20px; }
.submit-button:disabled { opacity: .6; cursor: wait; }
.form-help { margin: 12px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; text-align: center; }
.form-status { min-height: 0; margin-top: 14px; padding: 0; border-radius: 11px; font-size: 12px; line-height: 1.5; }
.form-status:not(:empty) { padding: 12px 14px; background: #fbe7e4; color: #7c2d27; }
.form-status.success { background: #e6f4ed; color: #215c45; }
.form-recap { padding: 28px; border-left: 1px solid var(--line); background: #f6f2e8; }
.form-recap h3 { margin: 0 0 17px; font-family: Georgia, serif; font-size: 23px; }
.recap-item { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.recap-total { display: flex; justify-content: space-between; margin-top: 18px; font-size: 17px; font-weight: 850; }

.product-modal { width: min(940px, calc(100vw - 32px)); padding: 0; overflow: visible; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(255,255,255,.9); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 590px; overflow: hidden; border-radius: 24px; }
.product-detail-visual { display: grid; place-items: center; padding: 45px; background: radial-gradient(circle at 50% 35%, #fbf8ef 0, #e2dcd0 75%); }
.product-detail-visual img { width: 100%; height: 100%; max-height: 510px; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(17,27,50,.2)); }
.product-detail-copy { align-self: center; padding: 48px; }
.product-detail-copy h2 { margin: 7px 0 9px; font-family: Georgia, serif; font-size: 43px; line-height: 1.05; }
.product-detail-copy .detail-variant { color: var(--ink-soft); font-size: 13px; }
.detail-description { margin: 24px 0; color: var(--ink-soft); line-height: 1.7; }
.grade-panel { margin: 21px 0; padding: 16px; border: 1px solid #dcc49b; border-radius: 14px; background: #fbf0dd; }
.grade-panel strong { display: block; color: #68421e; }
.grade-panel p { margin: 6px 0 0; color: #725d43; font-size: 11px; line-height: 1.5; }
.detail-price { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 23px; border-top: 1px solid var(--line); }
.detail-price strong { display: block; font-size: 32px; }
.detail-price small { color: var(--ink-soft); font-size: 10px; }
.detail-price .add-button { min-height: 48px; }

.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 140; display: grid; gap: 8px; }
.toast { max-width: 340px; padding: 13px 16px; border-radius: 12px; background: var(--ink); color: white; box-shadow: var(--shadow); font-size: 12px; animation: toast-in .2s ease; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

:focus-visible { outline: 3px solid rgba(49,92,170,.4); outline-offset: 3px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1180px) {
  .catalogue-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalogue-toolbar { grid-template-columns: 1fr 210px; }
  .filter-group { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr .8fr; gap: 35px; }
  .hero-visual { min-height: 550px; }
}
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 75px; }
  .hero-visual { min-height: 570px; max-width: 620px; width: 100%; margin: -20px auto 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .steps li + li { border-left: 0; border-top: 1px solid var(--line); }
  .form-layout, .product-detail { grid-template-columns: 1fr; }
  .form-recap { border-left: 0; border-top: 1px solid var(--line); }
  .product-modal { overflow: auto; }
  .product-detail-visual { min-height: 520px; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  footer > a:last-child { justify-self: center; }
}
@media (max-width: 640px) {
  .site-header { min-height: 68px; padding: 10px 14px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 33px; height: 33px; }
  .cart-button { min-height: 45px; padding-left: 12px; }
  .cart-label { display: none; }
  .hero { padding: 55px 20px 70px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-intro { font-size: 17px; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-stats div { min-width: 0; padding-right: 13px; }
  .hero-stats div + div { padding-left: 13px; }
  .hero-stats dt { font-size: 20px; }
  .hero-stats dd { font-size: 9px; }
  .hero-visual { min-height: 440px; }
  .hero-card { width: 225px; }
  .hero-card-front { left: 0; }
  .hero-card-back { right: -5px; }
  .hero-note { right: 5px; bottom: -7px; }
  .catalogue-section, .how-section { padding: 75px 14px; }
  .section-heading { display: block; }
  .result-count { margin-top: 15px; }
  .catalogue-toolbar { top: 68px; grid-template-columns: 1fr; padding: 10px; border-radius: 16px; }
  .filter-group { grid-column: 1; grid-row: auto; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .filter-chip { flex: 0 0 auto; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-image-wrap { padding: 10px; }
  .product-body { padding: 12px; }
  .badge-row { min-height: 21px; }
  .badge { min-height: 21px; padding-inline: 7px; font-size: 7px; }
  .product-card h3 { font-size: 16px; }
  .product-variant { font-size: 10px; }
  .product-meta { display: grid; gap: 4px; font-size: 9px; }
  .product-footer { display: grid; margin-top: 12px; padding-top: 12px; }
  .product-price strong { font-size: 20px; }
  .add-button { width: 100%; min-height: 40px; padding-inline: 8px; }
  .zoom-hint { display: none; }
  .drawer-header, .modal-header { padding: 22px 18px 17px; }
  .cart-content { padding-inline: 18px; }
  .cart-footer { padding: 17px 18px 22px; }
  .reservation-modal { width: 100vw; max-height: 100dvh; border-radius: 0; }
  #reservationForm, .form-recap { padding: 20px; }
  .form-row.two-columns { grid-template-columns: 1fr; }
  .product-modal { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); }
  .product-detail-visual { min-height: 390px; padding: 30px; }
  .product-detail-copy { padding: 28px 22px; }
  .product-detail-copy h2 { font-size: 34px; }
  .detail-price { align-items: stretch; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
