:root {
  color-scheme: light;
  --ink: #211c18;
  --muted: #6d6258;
  --line: #ded6cc;
  --paper: #f7f2ea;
  --panel: #fffaf2;
  --accent: #7a3f1d;
  --accent-dark: #3f2112;
  --olive: #4f5a42;
  --shadow: 0 16px 38px rgba(54, 37, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(222, 214, 204, 0.9);
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.hero-actions,
.product-meta,
.filters {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: clamp(150px, 21vw, 230px);
  height: auto;
}

.brand-logo-a,
.brand-logo-d,
.brand-logo-f {
  width: clamp(170px, 24vw, 260px);
}

.brand-logo-b {
  width: clamp(150px, 22vw, 240px);
}

.brand-logo-c {
  width: clamp(160px, 23vw, 250px);
}

.brand-logo-k,
.brand-logo-shoe {
  fill: var(--ink);
}

.brand-logo-k {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
}

.brand-logo-line {
  fill: none;
  stroke: #b98a3d;
  stroke-width: 3;
  stroke-linecap: round;
}

.brand-logo-caption {
  fill: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.menu-toggle {
  display: inline-grid;
  grid-template-columns: 18px auto;
  gap: 4px 9px;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle span {
  display: block;
  grid-column: 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
}

.menu-toggle b {
  grid-column: 2;
  grid-row: 1 / 4;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(33, 28, 24, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-header.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  display: grid;
  align-content: start;
  width: min(360px, 86vw);
  height: 100vh;
  gap: 2px;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.99);
  box-shadow: -18px 0 42px rgba(33, 28, 24, 0.22);
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.site-header.menu-open .site-nav {
  pointer-events: auto;
  transform: translateX(0);
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.menu-panel-head span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(222, 214, 204, 0.74);
  border-radius: 6px;
  color: var(--accent-dark);
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(122, 63, 29, 0.08);
}

.site-header.menu-open .menu-toggle {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--paper);
}

.site-header.menu-open .menu-toggle span {
  background: var(--paper);
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: calc(100vh - 63px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #211c18;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: hero-slide 15s infinite;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(24, 19, 15, 0.18), rgba(24, 19, 15, 0));
}

.hero-slide-men {
  opacity: 1;
  background-image: url("./assets/leather-shoes-hero.jpg");
}

.hero-slide-ladies {
  background-image: url("./assets/hero-ladies-leather-shoes.jpg");
  animation-delay: 5s;
}

.hero-slide-care {
  background-image: url("./assets/hero-shoe-care-tools.jpg");
  animation-delay: 10s;
}

@keyframes hero-slide {
  0%,
  27% {
    opacity: 1;
  }

  34%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10.6em;
  margin: 0;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.buy-link,
.filter-button {
  min-height: 42px;
  border-radius: 6px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--ink);
}

.button.primary,
.buy-link {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

.filters {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.94);
  backdrop-filter: blur(14px);
}

.toc-section {
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.toc-box {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(109, 98, 88, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 12px 28px rgba(54, 37, 22, 0.08);
}

.toc-title {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.toc-note {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.toc-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.toc-list li {
  padding-left: 4px;
  color: var(--accent-dark);
  font-weight: 800;
}

.toc-list a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.toc-list a:hover {
  color: var(--accent);
}

.toc-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.filter-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding: 0 0 4px;
  scrollbar-width: thin;
}

.filter-group {
  position: relative;
  flex: 0 0 auto;
}

.filter-group-toggle {
  position: relative;
  min-height: 44px;
  padding: 8px 36px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.filter-group-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 140ms ease;
}

.filter-group.open .filter-group-toggle,
.filter-group.has-active .filter-group-toggle,
.filter-group-toggle:hover,
.filter-group-toggle:focus-visible {
  border-color: rgba(122, 63, 29, 0.46);
  background: rgba(122, 63, 29, 0.11);
  color: var(--accent-dark);
  outline: none;
}

.filter-group.has-active .filter-group-toggle {
  border-color: var(--accent-dark);
  background: rgba(122, 63, 29, 0.15);
}

.filter-group.open .filter-group-toggle::after {
  transform: translateY(-32%) rotate(225deg);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(150px, 1fr);
  gap: 6px;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 18px 42px rgba(58, 43, 30, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.filter-group.open .filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-button {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.filter-menu .filter-button {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.filter-button::before {
  display: none;
}

.filter-button:hover {
  border-color: rgba(122, 63, 29, 0.46);
  background: rgba(122, 63, 29, 0.11);
  color: var(--ink);
  transform: translateY(-1px);
}

.filter-button:focus-visible {
  outline: 2px solid rgba(122, 63, 29, 0.34);
  outline-offset: -2px;
}

.filter-button.active {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--paper);
}

.cursor-tooltip {
  position: fixed;
  z-index: 100;
  width: min(280px, calc(100vw - 24px));
  padding: 12px;
  border-radius: 8px;
  background: rgba(33, 28, 24, 0.96);
  color: #fffaf2;
  box-shadow: 0 18px 38px rgba(40, 28, 18, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, 8px);
  transition: opacity 120ms ease, transform 120ms ease;
}

.cursor-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.cursor-tooltip strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 5px;
}

.cursor-tooltip span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 250, 242, 0.86);
}

.cursor-tooltip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  margin-top: 10px;
  border: 1px solid rgba(255, 250, 242, 0.32);
  border-radius: 6px;
  background: #fffaf2;
  color: #211c18;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.cursor-tooltip button:hover,
.cursor-tooltip button:focus-visible {
  background: var(--accent);
  color: #fffaf2;
  outline: none;
}

.section,
.guide,
.diagnosis-section,
.scene-guide-section,
.checklist-section,
.ng-section,
.glossary-section,
.shoe-types-section,
.knowledge-section,
.size-chart-section,
.goods-section,
.ideas-section,
.care-section,
.contact-section,
.profile {
  padding: clamp(42px, 7vw, 88px) clamp(16px, 4vw, 48px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.product-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.price-group {
  margin-top: 26px;
}

.price-group:first-child {
  margin-top: 0;
}

.price-group.hidden {
  display: none;
}

.price-group-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.6fr) minmax(0, 1.4fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-group-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.price-group-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-card.hidden {
  display: none;
}

.product-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 3;
  background-image: url("./assets/leather-shoes-hero.jpg");
  background-size: 250%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.product-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(33, 28, 24, 0.02), rgba(33, 28, 24, 0.68));
}

.product-image span {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 14px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.product-image.oxford {
  background-position: 11% 52%;
}

.product-image.brogue {
  background-position: 39% 54%;
}

.product-image.loafer {
  background-position: 67% 53%;
}

.product-image.derby {
  background-position: 91% 51%;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-meta {
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-body h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.price-tier {
  width: fit-content;
  margin-top: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--olive);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.price-tier.entry {
  background: #52644c;
}

.price-tier.middle {
  background: #6b5b39;
}

.price-tier.high {
  background: #7a3f1d;
}

.price-tier.luxury {
  background: #211c18;
}

.brand-en {
  margin-top: -4px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent);
  font-size: 13px;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.spec-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(122, 63, 29, 0.22);
  border-radius: 6px;
  background: rgba(122, 63, 29, 0.07);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.size-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(33, 28, 24, 0.12);
  border-radius: 6px;
  background: #fffdf8;
}

.size-guide span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.size-guide strong {
  color: var(--accent-dark);
  font-size: 13px;
}

.representative-model {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(122, 63, 29, 0.18);
  border-radius: 6px;
  background: rgba(122, 63, 29, 0.06);
}

.representative-model span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.representative-model strong {
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.35;
}

.product-body p,
.product-body li,
.guide p,
.profile p,
.site-footer {
  color: var(--muted);
  font-size: 14px;
}

.product-body ul {
  margin: 12px 0 18px;
  padding-left: 18px;
}

.buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 9px 14px;
}

.guide {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #efe7dc;
}

.diagnosis-section {
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.diagnosis-layout {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: start;
}

.diagnosis-copy {
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 250, 242, 0.78);
}

.diagnosis-copy h3,
.diagnosis-result h3,
.scene-grid h3,
.ng-list h3 {
  margin: 0 0 8px;
  line-height: 1.28;
}

.diagnosis-copy p,
.diagnosis-result p,
.scene-grid p,
.ng-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.diagnosis-tool {
  display: grid;
  gap: 14px;
}

.diagnosis-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diagnosis-option {
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.diagnosis-option:hover,
.diagnosis-option:focus-visible,
.diagnosis-option.active {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--paper);
  outline: none;
}

.diagnosis-result {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.diagnosis-result > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(122, 63, 29, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.diagnosis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.diagnosis-tags a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.diagnosis-tags a:hover,
.diagnosis-tags a:focus-visible {
  background: var(--accent);
  outline: none;
}

.scene-guide-section,
.ng-section {
  border-bottom: 1px solid var(--line);
  background: #efe7dc;
}

.scene-guide-section.alt-section,
.ng-section.alt-section {
  background: #efe7dc;
}

.scene-grid,
.ng-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scene-grid article,
.ng-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.scene-grid span,
.ng-list span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.checklist-section,
.glossary-section {
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.checklist-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.checklist-grid label {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.checklist-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-dark);
  flex: 0 0 auto;
}

.glossary-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.glossary-term {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  cursor: help;
  font-weight: 900;
}

.glossary-term:hover,
.glossary-term:focus-visible {
  border-color: rgba(122, 63, 29, 0.46);
  background: rgba(122, 63, 29, 0.1);
  color: var(--accent-dark);
  outline: none;
}

.shoe-types-section {
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.shoe-types-section.alt-section {
  background: #efe7dc;
}

.type-intro {
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 250, 242, 0.78);
}

.type-intro h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.3;
}

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

.type-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.type-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.type-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.type-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.type-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.type-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.type-card li + li {
  margin-top: 4px;
}

.leather-sample {
  position: relative;
  min-height: 118px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(122, 63, 29, 0.2);
  border-radius: 8px;
  background-color: #4a2418;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08);
}

.leather-sample::before,
.leather-sample::after {
  position: absolute;
  inset: 0;
  content: "";
}

.leather-sample::before {
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 78% 70%, rgba(0, 0, 0, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%, rgba(0, 0, 0, 0.22));
  mix-blend-mode: screen;
}

.leather-sample::after {
  opacity: 0.46;
  background-image:
    repeating-linear-gradient(28deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(112deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 9px);
}

.leather-sample span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 1;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
}

.leather-calf {
  background:
    linear-gradient(135deg, #31140d, #7a3f1d 46%, #2a120d);
}

.leather-calf::after {
  opacity: 0.22;
  background-image: repeating-linear-gradient(18deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 5px);
}

.leather-kip {
  background:
    radial-gradient(circle at 32% 36%, #8a4b25, transparent 32%),
    linear-gradient(135deg, #2b1711, #6c381e);
}

.leather-steer,
.leather-cowhide {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 70% 74%, rgba(0, 0, 0, 0.24), transparent 26%),
    linear-gradient(135deg, #3b2117, #7a4427);
}

.leather-goat {
  background-color: #5a3423;
}

.leather-goat::after {
  opacity: 0.65;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 50%, rgba(0, 0, 0, 0.2) 0 2px, transparent 3px);
  background-size: 18px 18px, 24px 24px;
}

.leather-sheep {
  background:
    linear-gradient(135deg, #8b6647, #d4b08a 48%, #6b4730);
}

.leather-sheep::after {
  opacity: 0.2;
}

.leather-horse {
  background:
    linear-gradient(110deg, #25110c, #6b2d1a 42%, #1c0d0a 72%, #8b4b28);
}

.leather-horse::after {
  opacity: 0.35;
  background-image: repeating-linear-gradient(7deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 10px);
}

.leather-exotic {
  background-color: #50301f;
}

.leather-exotic::after {
  opacity: 0.72;
  background-image:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0 28%, transparent 30%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18) 0 26%, transparent 28%);
  background-position: 0 0, 18px 18px;
  background-size: 36px 28px;
}

.leather-smooth {
  background:
    linear-gradient(135deg, #1d100d, #4b2619 45%, #9d6137 52%, #2a140f);
}

.leather-smooth::after {
  opacity: 0.12;
}

.leather-suede {
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.15), transparent 22%),
    linear-gradient(135deg, #8a623f, #5f3f29);
  filter: saturate(0.86);
}

.leather-suede::after {
  opacity: 0.78;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 4px);
}

.leather-cordovan {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(135deg, #240d13, #651328 44%, #1b0910);
}

.leather-cordovan::after {
  opacity: 0.08;
}

.leather-corrected {
  background:
    linear-gradient(135deg, #160e0c, #2c1813 42%, #d1a172 48%, #321812 56%, #160e0c);
}

.leather-corrected::after {
  opacity: 0.05;
}

.leather-waterproof {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.22) 0 4px, transparent 5px),
    linear-gradient(135deg, #192018, #4f5a42);
}

.leather-embossed {
  background-color: #4d2b1d;
}

.leather-embossed::after {
  opacity: 0.64;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25% 75%, rgba(0, 0, 0, 0.16) 75%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.16) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.12) 75%);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
}

#upper-materials .leather-sample {
  background-image: url("./assets/leather-material-photo-samples.jpg");
  background-repeat: no-repeat;
  background-size: 400% 400%;
  background-color: #4a2418;
  box-shadow: inset 0 -32px 42px rgba(0, 0, 0, 0.18);
}

#upper-materials .leather-sample::before,
#upper-materials .leather-sample::after {
  display: none;
}

#upper-materials .leather-calf {
  background-position: 0% 0%;
}

#upper-materials .leather-kip {
  background-position: 33.333% 0%;
}

#upper-materials .leather-steer {
  background-position: 66.666% 0%;
}

#upper-materials .leather-cowhide {
  background-position: 100% 0%;
}

#upper-materials .leather-goat {
  background-position: 0% 33.333%;
}

#upper-materials .leather-sheep {
  background-position: 33.333% 33.333%;
}

#upper-materials .leather-horse {
  background-position: 66.666% 33.333%;
}

#upper-materials .leather-exotic {
  background-position: 100% 33.333%;
}

#upper-materials .leather-smooth {
  background-position: 0% 66.666%;
}

#upper-materials .leather-suede {
  background-position: 33.333% 66.666%;
  filter: none;
}

#upper-materials .leather-cordovan {
  background-position: 66.666% 66.666%;
}

#upper-materials .leather-corrected {
  background-position: 100% 66.666%;
}

#upper-materials .leather-waterproof {
  background-position: 0% 100%;
}

#upper-materials .leather-embossed {
  background-position: 33.333% 100%;
}

.lace-sample,
.knot-sample {
  position: relative;
  height: 104px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(122, 63, 29, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 24%, var(--accent-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 68% 24%, var(--accent-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 44%, var(--accent-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 68% 44%, var(--accent-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 64%, var(--accent-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 68% 64%, var(--accent-dark) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent 29%, rgba(122, 63, 29, 0.12) 29% 31%, transparent 31% 69%, rgba(122, 63, 29, 0.12) 69% 71%, transparent 71%),
    #fffdf8;
}

.lace-sample i,
.knot-sample i {
  position: absolute;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #7a3f1d;
  box-shadow: 0 1px 0 rgba(33, 28, 24, 0.12);
  transform-origin: center;
  animation: lace-draw 2.8s ease-in-out infinite;
}

.lace-sample i:nth-child(2),
.knot-sample i:nth-child(2) {
  animation-delay: 0.25s;
}

.lace-sample i:nth-child(3),
.knot-sample i:nth-child(3) {
  animation-delay: 0.5s;
}

.lace-sample i:nth-child(4),
.knot-sample i:nth-child(4) {
  animation-delay: 0.75s;
}

.lace-sample::after,
.knot-sample::after {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(33, 28, 24, 0.08);
  color: var(--accent-dark);
  content: "見本";
  font-size: 11px;
  font-weight: 800;
}

@keyframes lace-draw {
  0%,
  18% {
    opacity: 0.28;
    scale: 0.88 1;
  }

  42%,
  74% {
    opacity: 1;
    scale: 1 1;
  }

  100% {
    opacity: 0.5;
    scale: 0.94 1;
  }
}

.lace-single i,
.lace-parallel i {
  left: 32%;
  width: 36%;
}

.lace-single i:nth-child(1),
.lace-parallel i:nth-child(1) {
  top: 24%;
}

.lace-single i:nth-child(2),
.lace-parallel i:nth-child(2) {
  top: 44%;
}

.lace-single i:nth-child(3),
.lace-parallel i:nth-child(3) {
  top: 64%;
}

.lace-single i:nth-child(4) {
  top: 82%;
  left: 50%;
  width: 24%;
  transform: rotate(28deg);
}

.lace-parallel i:nth-child(4) {
  top: 82%;
  left: 26%;
  width: 48%;
  transform: rotate(-16deg);
  opacity: 0.55;
}

.lace-overlap i,
.lace-underlap i {
  left: 28%;
  width: 44%;
}

.lace-overlap i:nth-child(1),
.lace-underlap i:nth-child(2) {
  top: 30%;
  transform: rotate(25deg);
}

.lace-overlap i:nth-child(2),
.lace-underlap i:nth-child(1) {
  top: 30%;
  transform: rotate(-25deg);
}

.lace-overlap i:nth-child(3),
.lace-underlap i:nth-child(4) {
  top: 56%;
  transform: rotate(25deg);
}

.lace-overlap i:nth-child(4),
.lace-underlap i:nth-child(3) {
  top: 56%;
  transform: rotate(-25deg);
}

.knot-sample {
  background:
    radial-gradient(circle at 50% 58%, var(--accent-dark) 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 49%, rgba(122, 63, 29, 0.14) 49% 51%, transparent 51%),
    #fffdf8;
}

.knot-sample i:nth-child(1) {
  top: 54%;
  left: 16%;
  width: 35%;
  transform: rotate(20deg);
}

.knot-sample i:nth-child(2) {
  top: 54%;
  right: 16%;
  width: 35%;
  transform: rotate(-20deg);
}

.knot-sample i:nth-child(3) {
  top: 34%;
  left: 30%;
  width: 22%;
  height: 22px;
  border: 3px solid #7a3f1d;
  border-radius: 999px 999px 999px 999px;
  background: transparent;
  transform: rotate(-18deg);
}

.knot-berluti i:nth-child(4) {
  top: 34%;
  right: 30%;
  width: 22%;
  height: 22px;
  border: 3px solid #7a3f1d;
  border-radius: 999px;
  background: transparent;
  transform: rotate(18deg);
}

.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 13px;
  border: 1px solid var(--accent-dark);
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.video-link:hover {
  background: var(--accent);
}

.photo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(122, 63, 29, 0.34);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.photo-link:hover {
  border-color: var(--accent-dark);
  background: rgba(122, 63, 29, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .lace-sample i,
  .knot-sample i {
    animation: none;
  }
}

.knowledge-section {
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.sole-section {
  background: #f1e8dc;
}

.size-chart-section {
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.size-chart-content {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: start;
}

.size-chart-copy {
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 250, 242, 0.72);
}

.size-chart-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.size-chart-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.size-table-stack {
  display: grid;
  gap: 14px;
}

.goods-section {
  border-bottom: 1px solid var(--line);
  background: #fbf7f0;
}

.knowledge-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.goods-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.goods-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.goods-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.goods-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.goods-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.ideas-section {
  border-bottom: 1px solid var(--line);
  background: #efe7dc;
}

.ideas-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ideas-list article {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 250, 242, 0.72);
}

.ideas-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.ideas-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ideas-list ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.ideas-list li + li {
  margin-top: 4px;
}

.size-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
}

.size-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 13px;
}

.size-table caption {
  padding: 10px 12px 8px;
  color: var(--accent-dark);
  font-weight: 800;
  text-align: left;
}

.size-table th,
.size-table td {
  border-top: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  white-space: nowrap;
}

.size-table th {
  background: rgba(122, 63, 29, 0.07);
  color: var(--accent-dark);
  font-weight: 800;
}

.width-table {
  min-width: 680px;
}

.width-table td:first-child {
  color: var(--accent-dark);
  font-weight: 900;
}

.width-pop-row {
  cursor: help;
  transition: background 140ms ease, color 140ms ease;
}

.width-pop-row:hover,
.width-pop-row:focus-visible {
  background: rgba(122, 63, 29, 0.09);
  outline: none;
}

.size-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(122, 63, 29, 0.07);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.large-size-guide {
  display: grid;
  max-width: 1180px;
  margin: 26px auto 0;
  gap: 16px;
}

.large-size-copy {
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 250, 242, 0.78);
}

.large-size-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.3;
}

.large-size-copy p:not(.eyebrow),
.large-size-grid p,
.large-size-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.large-size-copy p:not(.eyebrow),
.large-size-grid p {
  margin: 0;
}

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

.large-size-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.large-size-grid span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.large-size-grid h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.32;
}

.large-size-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.large-size-grid a:hover,
.large-size-grid a:focus-visible {
  background: var(--accent);
  outline: none;
}

.large-size-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(122, 63, 29, 0.07);
}

.knowledge-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.knowledge-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.knowledge-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.knowledge-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.care-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.care-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.care-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.care-icon {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.care-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.care-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.guide article {
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 250, 242, 0.72);
}

.guide span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.guide h3 {
  margin: 8px 0;
  font-size: 18px;
}

.profile {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  margin: 0 auto;
}

.profile p {
  margin: 0;
  font-size: 15px;
}

.contact-section {
  border-top: 1px solid var(--line);
  background: #fbf7f0;
}

.contact-wrap {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  margin: 0 auto;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-panel {
  align-content: start;
  grid-template-columns: 1fr;
}

.season-popup {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.season-popup.visible {
  opacity: 1;
  pointer-events: auto;
}

.season-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 19, 15, 0.58);
  backdrop-filter: blur(3px);
}

.season-popup-card {
  position: relative;
  display: flex;
  width: min(440px, calc(100vw - 32px));
  aspect-ratio: 1 / 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(185, 138, 61, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 16%, rgba(185, 138, 61, 0.18), transparent 31%),
    linear-gradient(145deg, #fffaf2 0%, #f1e5d3 100%);
  box-shadow: 0 28px 70px rgba(20, 14, 10, 0.34);
  color: var(--ink);
  overflow-y: auto;
  transform: translateY(14px) scale(0.96);
  transition: transform 180ms ease;
}

.season-popup.visible .season-popup-card {
  transform: translateY(0) scale(1);
}

.season-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(122, 63, 29, 0.18);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.82);
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.season-popup-close:hover,
.season-popup-close:focus-visible {
  background: var(--accent-dark);
  color: var(--paper);
  outline: none;
}

.season-popup-eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.season-popup-card h2 {
  margin: 0;
  font-size: clamp(25px, 5vw, 36px);
  line-height: 1.16;
}

.season-popup-card p:not(.season-popup-eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.season-popup-card ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}

.season-popup-card li {
  position: relative;
  padding-left: 15px;
}

.season-popup-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.season-popup-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.season-popup-cta:hover,
.season-popup-cta:focus-visible {
  background: var(--accent);
  outline: none;
}

.contact-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-fields span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.contact-form .full,
.contact-submit,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit {
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 30vh;
  }

  .price-group-grid,
  .knowledge-grid,
  .type-grid,
  .goods-grid,
  .ideas-list,
  .care-grid,
  .guide-list,
  .scene-grid,
  .ng-list,
  .checklist-grid,
  .glossary-grid,
  .large-size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide,
  .diagnosis-layout,
  .size-chart-content,
  .profile,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .season-popup {
    padding: 16px;
  }

  .season-popup-card {
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    padding: 24px 20px;
  }

  .season-popup-card h2 {
    font-size: 27px;
  }

  .season-popup-card p:not(.season-popup-eyebrow),
  .season-popup-card ul {
    font-size: 12px;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    width: min(330px, 88vw);
  }

  .filters {
    position: static;
    padding: 10px 16px;
  }

  .filter-toolbar {
    display: flex;
    overflow: visible;
  }

  .filter-toolbar {
    gap: 6px;
  }

  .filter-menu {
    min-width: min(240px, calc(100vw - 32px));
  }

  .filter-button {
    width: auto;
    max-width: none;
    min-width: max-content;
    padding: 8px 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    padding: 28px 18px 40px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  h1 {
    font-size: 34px;
    max-width: 100%;
    word-break: keep-all;
  }

  h1 span {
    white-space: normal;
  }

  .hero-copy p:not(.eyebrow) {
    width: 100%;
    max-width: min(320px, calc(100vw - 48px));
    font-size: 15px;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .menu-toggle b {
    display: none;
  }

  .price-group-grid,
  .knowledge-grid,
  .type-grid,
  .goods-grid,
  .ideas-list,
  .care-grid,
  .guide-list,
  .scene-grid,
  .ng-list,
  .checklist-grid,
  .glossary-grid,
  .large-size-grid {
    grid-template-columns: 1fr;
  }

  .price-group-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
