:root {
  --bg: #ffffff;
  --bg-soft: #fafaf8;
  --bg-muted: #f6f3ef;
  --text: #2b211b;
  --text-soft: #6f6258;
  --text-light: #9a8d82;
  --brown: #5a321e;
  --brown-dark: #3a2116;
  --brown-light: #8a5a35;
  --line: #e5ded6;
  --max: 1160px;
  --gutter: 20px;
  --radius: 8px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 18px;
}

p {
  color: var(--text-soft);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--brown-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px var(--gutter);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 222, 214, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 145px;
  height: auto;
  border-radius: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.site-nav a {
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brown);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 0;
  font-size: 13px;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(42deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-42deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-page {
  min-height: 76vh;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-picture {
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 15%, rgba(43, 33, 27, 0.62) 100%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) 52px;
  color: #fff;
}

.hero-content h1 {
  max-width: 620px;
  color: #fff;
}

.hero-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-content h1 + p {
  margin-top: 14px;
}

.hero-price-mobile {
  display: none;
}

.hero-price-mobile-note {
  display: none;
}

.eyebrow,
.section-label {
  color: var(--brown-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--brown-dark);
  box-shadow: 0 12px 28px rgba(58, 33, 22, 0.16);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--brown);
}

.button-outline:hover {
  border-color: var(--brown-light);
  background: var(--bg-soft);
  color: var(--brown-dark);
  box-shadow: 0 10px 24px rgba(58, 33, 22, 0.08);
}

.text-link {
  color: var(--brown);
  font-weight: 700;
  border-bottom: 1px solid rgba(90, 50, 30, 0.28);
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}

.section {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.product-buy {
  display: grid;
  gap: 30px;
  padding-top: 36px;
}

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

.product-gallery-main {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--bg-soft);
}

.product-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.product-thumb {
  flex: 0 0 72px;
  width: 72px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 3px;
  opacity: 0.68;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.product-thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.product-thumb.is-active,
.product-thumb[aria-pressed="true"] {
  border-color: var(--brown);
  opacity: 1;
}

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

.product-summary {
  min-width: 0;
}

.product-summary h1 {
  margin-top: 10px;
}

.product-name-brand,
.product-name-type {
  display: block;
  max-width: 100%;
  font-size: min(1em, 9vw);
  white-space: nowrap;
}

.product-summary .price {
  margin-top: 16px;
}

.product-description {
  display: none;
  margin-top: 16px;
}

.product-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.product-actions .button {
  width: 100%;
}

.product-basic {
  margin-top: 28px;
}

.product-basic h2 {
  font-size: 18px;
}

.product-basic-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.product-basic-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.section-narrow {
  max-width: 760px;
  text-align: center;
}

.section-narrow h2,
.section-heading h2,
.form-heading h2 {
  margin-top: 10px;
}

.section-narrow p:last-child,
.section-heading p:last-child {
  margin-top: 16px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.value-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.value-list > div {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.value-list span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 13px;
}

.value-list h2 {
  font-size: 22px;
}

.value-list p {
  margin-top: 10px;
}

.site-feature-grid {
  display: grid;
  gap: 28px;
}

.site-feature-card {
  display: grid;
  gap: 16px;
}

.site-feature-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 13px;
}

.site-feature-card h3 + p {
  margin-top: 8px;
}

.photo-story {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 48px var(--gutter);
  display: grid;
  gap: 28px;
}

.photo-frame,
.landscape-frame,
.wide-photo,
.image-grid figure,
.color-grid figure,
.detail-gallery figure,
.order-image {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.photo-frame img,
.image-grid img,
.color-grid img,
.detail-gallery img,
.order-image img,
.feature-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.landscape-frame img,
.site-feature-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 420ms ease, filter 420ms ease;
}

.wide-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-frame:hover img,
.landscape-frame:hover img,
.wide-photo:hover img,
.image-grid figure:hover img,
.color-grid figure:hover img,
.detail-gallery figure:hover img,
.site-feature-card:hover img,
.feature-item:hover img,
.order-image:hover img {
  transform: scale(1.018);
  filter: brightness(1.03);
}

.photo-copy {
  align-self: center;
  max-width: 560px;
}

.photo-copy h2 {
  margin-top: 10px;
}

.photo-copy p:last-child {
  margin-top: 16px;
}

.image-grid,
.color-grid {
  display: grid;
  gap: 14px;
}

.color-grid figcaption {
  padding: 12px 0 0;
  color: var(--text);
  font-weight: 600;
}

.wide-photo figcaption,
.detail-gallery figcaption {
  padding-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

.cta-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price {
  margin-top: 12px;
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
}

.price-subnote {
  margin-top: 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.price-info-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-info-link:hover {
  color: var(--brown-dark);
}

.price-info-link:focus-visible {
  outline: 2px solid var(--brown-light);
  outline-offset: 3px;
  border-radius: 2px;
}

.campaign-note {
  margin-top: 8px;
  color: var(--brown-light);
  font-size: 14px;
  font-weight: 700;
}

.cta-panel p:not(.section-label):last-child {
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.feature-item h3 + p {
  margin-top: 8px;
}

.spec-section {
  background: var(--bg-soft);
  width: 100%;
  max-width: none;
}

.spec-section > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.spec-layout {
  display: grid;
  gap: 26px;
}

.spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--text-light);
}

.spec-list dd {
  margin: 0;
  color: var(--text);
}

.small-note {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 13px;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-showcase {
  display: grid;
  gap: 22px;
}

.detail-main {
  order: 2;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
}

.detail-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--bg-soft);
}

.detail-copy h3 {
  font-size: 22px;
}

.detail-copy {
  order: 3;
}

.detail-copy p {
  margin-top: 10px;
}

.detail-options {
  order: 1;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.detail-option {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.detail-option:hover {
  transform: translateY(-1px);
  border-color: var(--brown-light);
  color: var(--brown);
}

.detail-option.is-active,
.detail-option[aria-pressed="true"] {
  border-color: var(--brown);
  background: var(--brown);
  color: #fff;
}

.muted-section {
  background: var(--bg-muted);
  width: 100%;
  max-width: none;
}

.muted-section > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq-list p {
  margin-top: 10px;
}

.shipping-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.shipping-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.shipping-rate-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.shipping-rate-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.shipping-rate-list dt {
  color: var(--text-light);
}

.shipping-rate-list dd {
  margin: 0;
  color: var(--text);
}

.detailed-rate-list div {
  grid-template-columns: minmax(88px, 0.28fr) minmax(88px, 0.18fr) minmax(0, 1fr);
  align-items: start;
}

.shipping-price {
  font-weight: 700;
}

.shipping-prefectures {
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.shipping-method-grid {
  display: grid;
  gap: 22px;
}

.shipping-method-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.shipping-method-grid p {
  margin-top: 8px;
}

.shipping-note-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-soft);
}

.shipping-note-list li + li {
  margin-top: 8px;
}

.news-section,
.reviews-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news-thumb {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.news-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--text-light);
  font-size: 13px;
}

.news-category {
  color: var(--brown-light);
  font-weight: 700;
}

.news-body h3 {
  font-size: 18px;
}

.news-body p {
  margin-top: 8px;
  font-size: 14px;
}

.reviews-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.review-card:last-child {
  border-bottom: 1px solid var(--line);
}

.review-gallery {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.review-image {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.review-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.review-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 112px));
  gap: 8px;
  width: 100%;
  justify-content: start;
}

.review-thumb {
  min-width: 0;
  margin: 0;
  padding: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.review-thumb:hover {
  border-color: var(--brown-light);
}

.review-thumb.is-active {
  border-color: var(--brown);
  box-shadow: 0 0 0 2px rgba(90, 50, 30, 0.18);
}

.review-thumb:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 2px;
}

.review-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.review-body {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.review-body h3 {
  font-size: 21px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 10px;
  color: var(--brown-light);
  font-size: 13px;
  font-weight: 700;
}

.review-text-content {
  margin-top: 16px;
  color: var(--text-soft);
}

.review-text {
  margin: 0;
  white-space: pre-line;
}

.review-text-content.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.review-text-toggle {
  margin-top: 10px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--brown);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.review-text-toggle:hover {
  color: var(--brown-dark);
}

.review-text-toggle:focus-visible {
  outline: 2px solid var(--brown-light);
  outline-offset: 4px;
}

.review-customer {
  margin-top: 16px;
  color: var(--brown-light);
  font-size: 14px;
  font-weight: 700;
}

.order-hero,
.contact-hero {
  display: grid;
  gap: 28px;
  align-items: center;
}

.order-intro h1,
.contact-hero h1 {
  margin-top: 10px;
}

.order-intro p:not(.section-label),
.contact-hero p:not(.section-label) {
  margin-top: 16px;
}

.order-flow-simple {
  padding-top: 32px;
  padding-bottom: 40px;
}

.flow-heading {
  max-width: 660px;
}

.flow-heading h2 {
  margin-top: 10px;
}

.flow-heading p:not(.section-label) {
  margin-top: 10px;
}

.simple-flow-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.simple-flow-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--brown);
  font-weight: 700;
}

.simple-flow-list strong {
  color: var(--text);
  font-size: 15px;
}

.simple-flow-list.flow-three {
  grid-template-columns: 1fr;
}

.form-section {
  padding-top: 24px;
}

.order-layout {
  display: grid;
  gap: 28px;
}

.form {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.form.order-layout {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.form-required-note {
  color: var(--text-soft);
  font-size: 13px;
}

.order-form-fields {
  display: grid;
  gap: 20px;
}

.form-block {
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.form-block legend {
  padding: 0;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.product-options .form-grid {
  gap: 20px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.form label span {
  font-size: 14px;
}

.form label .field-label-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.form .required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 20px;
  padding: 2px 7px;
  border: 1px solid rgba(161, 55, 42, 0.32);
  border-radius: 999px;
  background: rgba(161, 55, 42, 0.08);
  color: #8f3026;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.form label small {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
}

.field-note-link {
  justify-self: start;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(90, 50, 30, 0.28);
}

.field-note-link:hover {
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}

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

.privacy-consent {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.55rem 0.75rem;
  align-items: start;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(91, 62, 40, 0.22);
  border-radius: 0.75rem;
  background: rgba(255, 252, 247, 0.85);
}

.privacy-consent input[type="checkbox"] {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0.15rem 0 0;
  accent-color: var(--brown, #6b4932);
  cursor: pointer;
}

.privacy-consent label {
  line-height: 1.7;
  cursor: pointer;
}

.consent-label-text {
  display: inline;
}

.privacy-consent .text-link {
  position: relative;
  z-index: 1;
}

.consent-error {
  grid-column: 2;
  margin: 0;
  color: #a1372a;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form textarea {
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 3px rgba(138, 90, 53, 0.14);
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check-note {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.check-note p {
  color: var(--text);
  font-weight: 700;
}

.check-note ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  color: var(--text-soft);
}

.order-review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.order-review-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(138, 90, 53, 0.12);
}

.review-heading h2 {
  margin-top: 10px;
}

.review-heading p:not(.section-label) {
  margin-top: 10px;
}

.review-grid {
  display: grid;
  gap: 26px;
  margin-top: 24px;
}

.review-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-block h3 {
  font-size: 18px;
}

.review-product-name {
  margin-top: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.review-list {
  display: grid;
  margin: 12px 0 0;
}

.review-list div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.review-list dt {
  color: var(--text-light);
}

.review-list dd {
  margin: 0;
  color: var(--text);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.review-note {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.review-actions .button {
  min-width: min(100%, 220px);
}

.form-button {
  justify-self: start;
  min-width: min(100%, 280px);
  margin-top: 6px;
}

.form-status {
  padding: 16px 18px;
  border: 1px solid rgba(90, 50, 30, 0.22);
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text);
}

.confirm-hero {
  padding-bottom: 24px;
}

.confirm-hero h1,
.complete-panel h1 {
  margin-top: 10px;
}

.confirm-hero p:not(.section-label),
.complete-copy {
  margin-top: 16px;
}

.confirm-shell {
  padding-top: 24px;
}

.confirm-form {
  display: grid;
  gap: 24px;
}

.confirm-panel {
  display: grid;
  gap: 30px;
}

.confirm-section {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.confirm-section h2 {
  font-size: 22px;
}

.confirm-list {
  display: grid;
  margin: 14px 0 0;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.confirm-list dt {
  color: var(--text-light);
}

.confirm-list dd {
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.confirm-text {
  margin-top: 14px;
  color: var(--text);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.confirm-note {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.confirm-actions .button {
  min-width: min(100%, 240px);
}

.missing-state,
.complete-panel {
  max-width: 760px;
}

.missing-state h2 {
  margin-top: 10px;
}

.missing-state p {
  margin-top: 12px;
}

.missing-state .button,
.complete-panel .button {
  margin-top: 24px;
}

.complete-copy {
  display: grid;
  gap: 12px;
}

[hidden] {
  display: none !important;
}

.legal-note {
  border-top: 1px solid var(--line);
}

.legal-note h2 {
  margin-top: 10px;
}

.legal-note p:not(.section-label) {
  margin-top: 12px;
}

.legal-page-section {
  padding-top: 40px;
}

.legal-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-list div {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  color: var(--text-light);
  font-weight: 700;
}

.legal-list dd {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.legal-list ul {
  margin: 0;
  padding-left: 1.2em;
}

.legal-list li + li {
  margin-top: 6px;
}

.privacy-sections {
  display: grid;
  gap: 20px;
  max-width: 960px;
}

.privacy-sections > section {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface, #fff);
  overflow-wrap: anywhere;
}

.privacy-sections h3 {
  margin: 0 0 14px;
  color: var(--accent-dark, #6b4932);
}

.privacy-sections p,
.privacy-sections ul {
  margin-top: 0;
  line-height: 1.9;
}

.privacy-sections p:last-child,
.privacy-sections ul:last-child {
  margin-bottom: 0;
}

.privacy-sections li + li {
  margin-top: 6px;
}

.privacy-contact-list {
  margin: 0;
}

.privacy-contact-list div {
  display: grid;
  grid-template-columns: minmax(128px, 0.3fr) minmax(0, 1fr);
  gap: 8px 16px;
  padding: 9px 0;
}

.privacy-contact-list dt {
  font-weight: 700;
}

.privacy-contact-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.privacy-enacted {
  margin: 0;
  text-align: right;
}

@media (max-width: 640px) {
  .privacy-contact-list div {
    grid-template-columns: 1fr;
  }

  .privacy-consent {
    padding: 14px;
  }
}

.placeholder-text {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--bg-muted);
  color: var(--brown);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-inner {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 34px var(--gutter);
  display: grid;
  gap: 24px;
}

.footer-brand {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--brown);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 719px) {
  .hero-home {
    min-height: clamp(640px, calc(100svh - var(--header-height)), 780px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--brown-dark);
  }

  .hero-home::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(35, 20, 13, 0.68) 0%, rgba(35, 20, 13, 0.26) 62%, rgba(35, 20, 13, 0.04) 100%),
      linear-gradient(180deg, rgba(35, 20, 13, 0.02) 35%, rgba(35, 20, 13, 0.76) 100%);
  }

  .hero-home .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 32px 24px 30px;
    color: #fff;
  }

  .hero-home .eyebrow {
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-home .hero-content h1 {
    max-width: 9em;
    color: #fff;
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .hero-home .hero-content h1 + p {
    margin-top: 16px;
  }

  .hero-home .hero-content p {
    max-width: 23em;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-price-mobile {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
  }

  .hero-price-mobile-note {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-home .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .hero-home .actions .button {
    min-width: 0;
    min-height: 52px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-home .actions a[href="order.html"] {
    order: 1;
    border-color: var(--brown);
    background: var(--brown);
    color: #fff;
  }

  .hero-home .actions a[href="product.html"] {
    order: 2;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .hero-home .hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-home .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
    z-index: -2;
  }

  .home-features,
  .home-concept,
  .home-color,
  .news-section,
  .reviews-section,
  .home-product-cta {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .home-features {
    padding-top: 76px;
  }

  .home-features .section-heading,
  .home-color .section-heading,
  .news-section .section-heading,
  .reviews-section .section-heading {
    margin-bottom: 32px;
  }

  .home-features .site-feature-grid {
    gap: 44px;
  }

  .home-features .site-feature-card {
    gap: 16px;
  }

  .home-features .site-feature-card span {
    margin-bottom: 6px;
  }

  .home-concept {
    text-align: left;
  }

  .home-concept h2 {
    max-width: 14em;
  }

  .home-concept p:last-child {
    margin-top: 18px;
  }

  .home-color .wide-photo {
    background: #fff;
  }

  .home-product-cta {
    gap: 18px;
  }

  .home-product-cta .actions {
    margin-top: 0;
  }

  .home-product-cta .button {
    width: 100%;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0 var(--gutter);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
  }

  .js .site-nav.is-open {
    max-height: 220px;
    padding-top: 10px;
    padding-bottom: 16px;
    opacity: 1;
    pointer-events: auto;
  }

  .js .site-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .order-image img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .order-image {
    width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
  }

  .order-hero {
    gap: 22px;
  }

  .order-flow-simple {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .order-form-section {
    padding-top: 28px;
  }

  .product-options .form-grid {
    gap: 16px;
  }

  .order-review-card {
    padding: 20px;
  }

  .review-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .review-actions {
    justify-content: stretch;
  }

  .review-actions .button {
    width: 100%;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .confirm-actions {
    display: grid;
  }

  .confirm-actions .button {
    width: 100%;
  }

  .shipping-rate-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .detailed-rate-list div {
    grid-template-columns: 1fr;
  }

  .form-button {
    width: 100%;
    margin-top: 10px;
  }
}

@media (min-width: 720px) {
  :root {
    --gutter: 32px;
    --header-height: 72px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .brand img {
    width: 180px;
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .product-buy {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: start;
    gap: 56px;
    padding-top: 72px;
  }

  .product-gallery {
    gap: 14px;
  }

  .product-gallery-main img {
    aspect-ratio: 4 / 3;
  }

  .product-thumb {
    flex-basis: 84px;
    width: 84px;
  }

  .product-summary {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .product-description {
    display: block;
  }

  .product-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .product-basic {
    margin-top: 34px;
  }

  .value-list {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
  }

  .value-list > div {
    padding: 0 28px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .value-list > div:first-child {
    padding-left: 0;
  }

  .value-list > div:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .photo-story,
  .spec-layout,
  .order-hero,
  .contact-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .order-flow-simple {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .order-form-section {
    padding-top: 52px;
  }

  .simple-flow-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .simple-flow-list.flow-three {
    grid-template-columns: repeat(3, 1fr);
  }

  .simple-flow-list li {
    min-height: 68px;
    padding: 16px 44px 16px 18px;
  }

  .simple-flow-list li:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: 18px;
    color: var(--text-light);
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .order-form-fields {
    grid-column: 1;
  }

  .order-review-card {
    grid-column: 1;
  }

  .check-note,
  .form-button,
  .form-status {
    grid-column: 1;
  }

  .photo-story-reverse .photo-frame,
  .photo-story-reverse .landscape-frame {
    order: 2;
  }

  .image-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .site-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .shipping-rate-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
  }

  .detailed-rate-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shipping-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-list div {
    grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
  }

  .news-item {
    grid-template-columns: minmax(140px, 0.22fr) minmax(180px, 0.26fr) minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    padding: 24px 0;
  }

  .news-item-no-image {
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  }

  .news-meta {
    align-content: start;
    display: grid;
    gap: 6px;
  }

  .reviews-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .review-card {
    border-bottom: 1px solid var(--line);
  }

  .review-card:only-child {
    grid-template-columns: minmax(0, 1fr);
    max-width: 860px;
  }

  .review-card-text-only:only-child {
    grid-template-columns: minmax(0, 1fr);
  }

  .review-thumbs {
    grid-template-columns: repeat(3, 112px);
  }

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

  .detail-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .detail-showcase {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 28px 52px;
  }

  .detail-options {
    order: 1;
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .detail-main img {
    aspect-ratio: 4 / 3;
  }

  .detail-main {
    order: 2;
  }

  .detail-copy {
    order: 3;
    align-self: center;
  }

  .detail-option {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .cta-panel {
    grid-template-columns: 1fr auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .feature-large {
    grid-column: span 2;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

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

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 1040px) {
  .hero-home {
    min-height: 88vh;
    background-image: url("images/site/hero-main.jpg");
    background-position: center;
    background-size: cover;
  }

  .hero-home::after {
    background:
      linear-gradient(90deg, rgba(43, 33, 27, 0.4) 0%, rgba(43, 33, 27, 0.16) 34%, rgba(43, 33, 27, 0) 58%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.03) 15%, rgba(43, 33, 27, 0.62) 100%);
  }

  .hero-home .hero-image {
    right: 20px;
    width: calc(100% - 20px);
    object-fit: contain;
    object-position: right center;
  }

  .hero-home .hero-content {
    padding-right: 44px;
    padding-bottom: 130px;
    padding-left: 44px;
  }

  .hero-home .hero-content h1 {
    max-width: 730px;
    font-size: 58px;
  }

  .hero-home .hero-content p {
    max-width: 600px;
    line-height: 1.9;
  }

  .hero-home .eyebrow {
    margin-bottom: 12px;
  }

  .hero-home .actions {
    gap: 16px;
    margin-top: 30px;
  }

  .hero-home .actions .button {
    min-height: 52px;
    padding: 14px 26px;
  }
}

/* Product page readability refinements */
.product-page .product-summary h1 {
  line-height: 1.3;
}

.product-page .product-summary .price {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.4;
}

.product-page .product-summary .price-subnote,
.product-page .product-summary .campaign-note,
.product-page .product-summary .price-info-link {
  font-size: 15px;
  line-height: 1.75;
}

.product-page .product-summary .campaign-note {
  margin-top: 7px;
}

.product-page .product-summary .price-info-link {
  margin-top: 9px;
}

.product-page .product-description {
  max-width: 34em;
  margin-top: 18px;
  line-height: 1.85;
}

.product-page .product-actions {
  margin-top: 26px;
}

.product-page .product-basic-list li {
  font-size: 15px;
  line-height: 1.8;
}

.product-page .section-heading p:not(.section-label),
.product-page .section-narrow p:not(.section-label),
.product-page .site-feature-card p,
.product-page .detail-copy p,
.product-page .faq-list p {
  font-size: 16px;
  line-height: 1.85;
}

.product-page .section-heading p:not(.section-label) {
  max-width: 620px;
  margin-top: 16px;
}

.product-page .site-feature-card {
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.product-page .site-feature-card > div {
  align-self: start;
}

.product-page .site-feature-card h3 {
  font-size: 19px;
}

.product-page .site-feature-card h3 + p {
  margin-top: 10px;
}

.product-page .spec-list div {
  gap: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.product-page .spec-list dt {
  color: var(--text-soft);
  font-weight: 700;
}

.product-page .spec-list dd {
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.product-page .product-led-section p:not(.section-label) {
  margin-top: 16px;
}

.product-page .product-led-section p:not(.section-label) + p {
  margin-top: 10px;
}

.product-page .wide-photo figcaption {
  padding-top: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.product-page .small-note {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.product-page .detail-copy p {
  margin-top: 12px;
}

.product-page .faq-list details {
  padding: 0;
}

.product-page .faq-list summary {
  min-height: 56px;
  padding: 18px 4px;
  font-size: 16px;
  line-height: 1.6;
}

.product-page .faq-list summary::marker {
  color: var(--brown-light);
}

.product-page .faq-list details[open] summary {
  color: var(--brown);
}

.product-page .faq-list p {
  margin-top: 0;
  padding: 0 4px 20px;
  color: var(--text-soft);
}

.product-page .cta-panel h2 {
  line-height: 1.35;
}

.product-page .cta-panel .price {
  font-size: 28px;
}

.product-page .cta-panel .price-subnote,
.product-page .cta-panel .campaign-note {
  font-size: 15px;
  line-height: 1.75;
}

.product-page .cta-panel .actions {
  margin-top: 0;
}

.product-page .text-link,
.product-page .price-info-link,
.product-page .footer-nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.product-page .footer-nav a {
  text-decoration-line: underline;
  text-decoration-color: rgba(90, 50, 30, 0.24);
}

.product-page a:focus-visible,
.product-page button:focus-visible,
.product-page summary:focus-visible {
  outline: 2px solid var(--brown-light);
  outline-offset: 3px;
}

@media (max-width: 719px) {
  .product-page main > .section:not(.product-buy) {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-page .product-buy {
    padding-bottom: 64px;
  }

  .product-page .product-summary .price {
    font-size: 26px;
  }

  .product-page .product-actions {
    margin-top: 24px;
  }

  .product-page .site-feature-card {
    gap: 18px;
  }

  .product-page .faq-list summary {
    min-height: 60px;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .product-page .cta-panel {
    gap: 20px;
  }

  .product-page .cta-panel .actions {
    display: grid;
  }

  .product-page .cta-panel .button {
    width: 100%;
    min-height: 52px;
  }
}

@media (min-width: 720px) {
  .product-page .section-heading {
    margin-bottom: 32px;
  }

  .product-page .site-feature-grid {
    align-items: stretch;
  }

  .product-page .cta-panel {
    gap: 40px;
  }
}

/* Order page mobile readability refinements */
@media (max-width: 719px) {
  .order-page .order-hero {
    gap: 26px;
  }

  .order-page .order-image {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .order-page .order-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: right center;
  }

  .order-page .form-required-note,
  .order-page .field-note-link {
    font-size: 13px;
    line-height: 1.7;
  }

  .order-page .order-form-fields {
    gap: 28px;
  }

  .order-page .form-block {
    gap: 20px;
    padding-bottom: 28px;
  }

  .order-page .form-block legend {
    margin-bottom: 16px;
    font-size: 19px;
  }

  .order-page .form-grid,
  .order-page .product-options .form-grid {
    gap: 20px;
  }

  .order-page .form label {
    gap: 9px;
  }

  .order-page .form label span {
    font-size: 14px;
  }

  .order-page .form label small {
    font-size: 13px;
  }

  .order-page .form .required-badge {
    min-height: 21px;
    font-size: 12px;
  }

  .order-page .form input,
  .order-page .form select,
  .order-page .form textarea {
    min-height: 50px;
    padding: 13px 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .order-page .form textarea {
    min-height: 140px;
  }

  .order-page .check-note {
    padding: 22px 4px 0;
  }

  .order-page .check-note p {
    font-size: 16px;
    line-height: 1.6;
  }

  .order-page .check-note ul {
    margin-top: 12px;
    padding-left: 1.25em;
    font-size: 14px;
    line-height: 1.75;
  }

  .order-page .check-note li {
    padding-left: 2px;
  }

  .order-page .check-note li + li {
    margin-top: 12px;
  }

  .order-page .check-note .text-link {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .order-page .form-button {
    min-height: 52px;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
