:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --primary: #0f766e;
  --primary-hover: #0b5c56;
  --border: #dbe1e8;
  --hero-guide-bg: #c2b76b;
  --header-height: 3.5rem;
  --hero-top-bg: #9fb57f;
  --hero-image-bg: #ffffff;
  --hero-glow-outer: rgba(159, 181, 127, 0.72);
  --hero-glow-inner: rgba(255, 255, 255, 0.88);
  --hero-mist-bleed: 6rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--bg);
  color: var(--text);
  font-family: "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.25s ease;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.header-menu-toggle {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
}

.site-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.site-title-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.header-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.header-nav-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0 0 0 3rem;
  list-style: none;
  box-sizing: border-box;
}

.header-nav-list li {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  text-align: center;
}

.header-nav-list > li:not(.header-nav-cta):not(:first-child) {
  position: relative;
}

.header-nav-list > li:not(.header-nav-cta):not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.15em;
  background: var(--border);
  pointer-events: none;
}

.header-link {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.15rem 0.25rem;
  border-bottom: 2px solid transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.header-link:hover,
.header-link:focus-visible {
  border-bottom-color: var(--hero-guide-bg);
  color: var(--primary-hover);
}

.header-nav-cta {
  flex: 0 0 auto;
  margin-left: auto;
  align-self: center;
}

.header-buy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.header-buy-link:hover,
.header-buy-link:focus-visible {
  background: var(--primary-hover);
  color: #ffffff;
}

.header-buy-link:focus-visible {
  outline: 2px solid var(--hero-guide-bg);
  outline-offset: 2px;
}

.header-buy-icon {
  display: block;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  fill: currentColor;
}

.container {
  width: min(100% - 2rem, 1020px);
  margin-inline: auto;
}

section {
  padding: 4rem 0;
}

h1,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 1.2rem;
}

h4 {
  font-size: 1.2rem;
  margin: 1.6rem 0 0.6rem;
}

.hero {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.intro,
.features {
  padding-top: 0;
  padding-bottom: 0;
}

.hero + .intro,
.intro + .features,
.features + .story {
  padding-top: 0;
}

.hero-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 1.25rem;
  align-items: stretch;
  padding: 0 0 0 1.1rem;
  border: 1px solid rgba(180, 197, 156, 0.45);
  border-radius: 0;
  background: var(--hero-top-bg);
  box-shadow: 0 6px 14px rgba(89, 109, 62, 0.08);
  overflow: hidden;
}

.hero-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  height: 100%;
  transform: translateY(-14px);
}

.hero-center-icon {
  margin: 0 0 0.45rem;
}

.hero-center-icon img {
  display: block;
  width: 64px;
  height: auto;
}

.hero-product-name {
  margin: 0 0 0.2rem;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.7rem, 5.4vw, 4.1rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero-top .eyebrow,
.hero-top h1 {
  color: #ffffff;
}

.hero-top .eyebrow {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-body,
.hero-body-secondary,
.hero-guide {
  margin-top: 0;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid #d7e0cb;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fcee 0%, #d9e7c1 100%);
  scroll-margin-top: 4rem;
}

.hero-body,
.hero-guide {
  text-align: center;
}

.hero-guide {
  background: var(--hero-guide-bg);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-guide .sub-head {
  margin: 0;
  font-size: clamp(1.65rem, 3.3vw, 2.35rem);
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.hero-body-secondary {
  border-top: none;
}

.hero-uv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
  gap: 1rem;
  align-items: start;
}

.hero-uv-image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-uv-image .doc-image {
  width: 100%;
  margin: 0 0 0.4rem;
}

.hero-uv-image .hero-secondary-image-half img {
  width: 100%;
  max-width: none;
  box-shadow: 0 14px 30px rgba(78, 92, 56, 0.3);
}

.hero-uv-image .note {
  margin: 0.45rem 0 0;
  text-align: right;
}

.hero-side-image {
  position: relative;
  margin: 0 0 0 calc(-1 * var(--hero-mist-bleed));
  align-self: start;
  justify-self: end;
  width: calc(400px + var(--hero-mist-bleed));
  max-width: 100%;
  height: fit-content;
}

.hero-side-image::before {
  display: none;
}

.hero-side-image picture {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.hero-side-image img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-left: auto;
  border: 1px solid rgba(180, 197, 156, 0.5);
  border-right: none;
  border-radius: 0;
  background: var(--hero-image-bg);
  box-shadow:
    0 8px 16px rgba(89, 109, 62, 0.12),
    16px 0 24px rgba(159, 181, 127, 0.38),
    6px 0 12px rgba(255, 255, 255, 0.55);
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sub-head {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.sub-head-center {
  text-align: center;
}

.hero-body-secondary .sub-head-center {
  margin-top: 2em;
}

.lead {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.lead-gap-top {
  margin-top: 2em;
}

.features .product-split-group .product-strength2-text > p:not(.note),
.story .container > .hero-guide + .card .product-strength-layout > div > p:not(.note) {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.features .product-split-group .product-strength2-text > p.lead-gap-top,
.story .container > .hero-guide + .card .product-strength-layout > div > p.lead-gap-top {
  margin-top: 2em;
}

.story .container > .hero-guide + .card .product-strength-layout > div > p:last-of-type {
  margin-bottom: calc(0.8rem + 1.2rem);
}

.br-mobile,
.br-tablet,
.br-desktop {
  display: none;
}

@media (min-width: 1021px) {
  .br-desktop {
    display: inline;
  }
}

.note {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0.6rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: var(--primary-hover);
}

.product-name {
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--primary);
  margin: 1.6rem 0 0.6rem;
  text-align: left;
}

h5.product-name {
  margin-top: 0;
}

.purchase-tagline {
  font-size: 1rem;
  color: var(--muted);
  text-align: left;
  width: auto;
  max-width: 100%;
  margin: 0 0 0.2rem;
}

@media (min-width: 641px) {
  .purchase-tagline {
    position: relative;
    left: 160px;
    top: -10px;
    width: fit-content;
    margin: 0;
  }
}

.purchase-spec {
  display: flex;
  align-items: baseline;
  font-size: 1rem;
  color: var(--muted);
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  text-align: left;
}

.purchase-spec-label {
  flex: 0 0 5.5em;
  text-align: right;
}

.purchase-spec-value {
  flex: 1 1 auto;
  min-width: 0;
}

.purchase-spec:last-child {
  margin-bottom: 0;
}

.product-copy {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.product-split-group {
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid #d7e0cb;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fcee 0%, #d9e7c1 100%);
}

.product-split-group.product-split-tight-y {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-guide + .product-split-group.product-split-tight-y {
  padding-top: 1rem;
}

.product-split-group + .product-split-group {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px dashed #c8d9b0;
}

.product-split-group + .product-split-group.product-split-tight-y,
.product-split-group.product-split-tight-y + .product-split-group {
  margin-top: 0;
  padding-top: 1rem;
  border-top: none;
}

.story .card,
.purchase .purchase-card,
.faq details {
  border: 1px solid #d7e0cb;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fcee 0%, #d9e7c1 100%);
}

.hero-body-secondary .product-split-group h4,
.product-split-group h4,
.story h4,
.purchase h4 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.product-split-group h4.heading-right {
  text-align: right;
}

.hero-body-secondary .product-split-group h4.heading-gap-top,
.product-split-group h4.heading-gap-top,
.story h4.heading-gap-top,
.purchase h4.heading-gap-top {
  margin-top: 2em;
}

.purchase p,
.faq p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.intro .hero-body p:not(.note),
.intro .hero-body-secondary p:not(.note),
.intro .product-split-group p:not(.note),
.features .product-split-group p:not(.note),
.story .card p:not(.note) {
  color: var(--text);
  font-weight: 700;
}

.intro .hero-body p:not(.note),
.intro .hero-body-secondary p:not(.note),
.intro .product-split-group p:not(.note),
.features .product-split-group > p:not(.note),
.story .card p:not(.note) {
  overflow-wrap: anywhere;
  margin-bottom: 0.8rem;
}

.features .product-strength-text > p:not(.note) {
  overflow-wrap: normal;
  margin-bottom: 0;
}

.features .product-split-group.product-split-tight-y > p:last-of-type {
  margin-bottom: calc(0.8rem + 1.2rem);
}

.story .product-strength2-text > p:last-of-type {
  margin-bottom: calc(0.8rem + 1.2rem);
}

.doc-image {
  margin: 1rem 0 1.2rem;
}

.doc-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.product-image2-same-size img {
  width: 435px;
  max-width: 100%;
  box-shadow: 0 14px 30px rgba(78, 92, 56, 0.3);
}

.product-strength-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 435px;
  gap: 1rem;
  align-items: start;
}

.product-strength-text {
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  align-self: stretch;
}

.product-strength-text > p {
  margin: 0;
}

.product-strength-text > p + p {
  margin-top: 0.8rem;
}

.product-strength-text > p:nth-child(2),
.product-strength-text > p:nth-child(3) {
  margin-top: 3.5em;
}

.product-strength-text::after {
  content: "";
  flex: 1 1 0;
  min-height: 0;
  margin-top: 0.8rem;
}

.product-strength-image .doc-image {
  margin: 0;
}

.product-strength-text > p:last-child {
  margin-bottom: 0;
}

.product-strength2-layout {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-strength2-table .table-wrap-image-size {
  margin-top: 0;
}

.product-strength2-table .note {
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.55;
  padding-left: 2em;
}

.product-strength2-text {
  max-width: 480px;
  width: 100%;
  justify-self: end;
  margin-left: auto;
}

.story .story-strength2-spacer {
  height: 3.15rem;
}

.story .product-strength2-table .doc-image {
  margin-top: 0;
}

.hero-secondary-image-half img {
  width: 50%;
  max-width: 473px;
}

.target-list {
  margin: 0.2rem 0 1rem;
  padding-left: 1.1rem;
}

.hero-body-secondary .target-list {
  margin: 0.6rem auto 0.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  max-width: 680px;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "left . right"
    ". top .";
  justify-items: center;
  align-items: start;
  gap: 2.6rem 1rem;
}

.hero-body-secondary .target-list li {
  position: relative;
  width: min(100%, 320px);
  padding: 0.62rem 1rem;
  border: 1px solid #c8d9b0;
  border-radius: 999px;
  background: #f8fcee;
  color: var(--muted);
  text-align: center;
  box-shadow: 0 6px 12px rgba(89, 109, 62, 0.12);
  z-index: 1;
}

.hero-body-secondary .target-list li::before,
.hero-body-secondary .target-list li::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #f8fcee;
  border: 1px solid #c8d9b0;
  z-index: -1;
}

.hero-body-secondary .target-list li::before {
  width: 18px;
  height: 18px;
  top: -8px;
  left: 20%;
}

.hero-body-secondary .target-list li::after {
  width: 14px;
  height: 14px;
  top: -6px;
  right: 18%;
}

.hero-body-secondary .target-list li:nth-child(1) {
  grid-area: top;
}

.hero-body-secondary .target-list li:nth-child(2) {
  grid-area: left;
}

.hero-body-secondary .target-list li:nth-child(3) {
  grid-area: right;
}

.table-wrap {
  overflow-x: auto;
  margin: 0.8rem 0 1rem;
}

.table-wrap-image-size {
  width: 100%;
  max-width: 470px;
  margin-left: 0;
  margin-right: auto;
  box-shadow: 0 14px 30px rgba(78, 92, 56, 0.3);
}

.table-wrap-image-size table {
  min-width: 0;
  table-layout: fixed;
}

.product-strength2-table .table-wrap-image-size table {
  min-width: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  background: #f5f7f2;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.55rem 0.6rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.95rem;
  background: #f5f7f2;
}

thead th {
  background: #e8ecdf;
}

.product-strength2-table .table-wrap-image-size th,
.product-strength2-table .table-wrap-image-size td {
  white-space: nowrap;
}

.product-strength2-table .table-wrap-image-size th.cell-two-line {
  white-space: normal;
  font-size: 0.86rem;
  line-height: 1.05;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.product-strength2-table .table-wrap-image-size th.cell-two-line .cell-subline {
  display: block;
  font-size: 0.9em;
}

.product-strength2-table .table-wrap-image-size th:nth-child(3),
.product-strength2-table .table-wrap-image-size th:nth-child(4),
.product-strength2-table .table-wrap-image-size td:nth-child(3),
.product-strength2-table .table-wrap-image-size td:nth-child(4) {
  width: 16%;
}

.product-strength2-table .table-wrap-image-size thead th:nth-child(2) {
  background: #d9e7c1;
  color: #2e4a1e;
  font-weight: 800;
}

.product-strength2-table .table-wrap-image-size tbody td:nth-child(2) {
  background: #eef5e2;
  color: #2e4a1e;
  font-weight: 700;
}

.product-strength2-table .table-wrap-image-size thead th:nth-child(2),
.product-strength2-table .table-wrap-image-size tbody td:nth-child(2) {
  border-left: 2px solid #a7c27a;
  border-right: 2px solid #a7c27a;
}

.product-strength2-table .table-wrap-image-size thead th:nth-child(2) {
  border-top: 2px solid #a7c27a;
}

.product-strength2-table .table-wrap-image-size tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid #a7c27a;
}

.story {
  padding-top: 0;
  padding-bottom: 0;
}

.story .container > .hero-guide + .card {
  padding-bottom: 0;
}

.story .container > .card + .card {
  margin-top: -1px;
  padding-top: 1rem;
  padding-bottom: 0;
}

.purchase {
  padding-top: 1rem;
  padding-bottom: 0;
}

.story + .purchase {
  padding-top: 0;
}

.purchase + .faq {
  padding-top: 0;
}

.faq + .contact {
  padding-top: 0;
}

.purchase .container > .hero-guide {
  margin: 0;
}

.purchase .container > .purchase-card {
  margin-top: 0;
  border-top: none;
}

.purchase-card {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  text-align: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 435px;
  column-gap: 1rem;
  align-items: start;
}

.purchase-meta {
  grid-column: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 334px;
  max-width: 100%;
  margin-left: 48px;
}

.purchase-meta > p {
  margin-top: 0;
}

.purchase-card .purchase-media {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.purchase-card .cta-button {
  grid-column: 1;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 334px;
  max-width: 100%;
  margin: 0.3rem 0 0 48px;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
}

.purchase-card .cta-button:focus-visible {
  outline: 2px solid var(--hero-guide-bg);
  outline-offset: 2px;
}

.purchase-media {
  --purchase-thumb-size: 72px;
  display: grid;
  grid-template-columns: var(--purchase-thumb-size) minmax(0, 435px);
  gap: 1rem;
  align-items: start;
  width: 435px;
  max-width: 100%;
  margin: 1rem 0 1.2rem auto;
  text-align: initial;
}

.purchase-thumbs {
  display: grid;
  grid-template-columns: var(--purchase-thumb-size);
  grid-auto-rows: var(--purchase-thumb-size);
  gap: 0.45rem;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.purchase-thumb {
  box-sizing: border-box;
  width: var(--purchase-thumb-size);
  height: var(--purchase-thumb-size);
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}

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

.purchase-thumb.is-selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.35);
}

.purchase-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-main {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  max-width: 435px;
}

.purchase-main img {
  display: block;
  width: 435px;
  max-width: 100%;
  max-height: 435px;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(78, 92, 56, 0.3);
}

.faq {
  padding-top: 0;
  padding-bottom: 0;
}

.faq .container {
  border: 1px solid #d7e0cb;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fcee 0%, #d9e7c1 100%);
  padding: 0;
  box-sizing: border-box;
}

.faq .container > .hero-guide {
  margin: 0;
}

.faq .container > details {
  margin: 1.2rem 1.2rem 0;
}

.faq .container > details:last-of-type {
  margin-bottom: 1.2rem;
}

.faq details {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #d7e0cb;
  border-radius: 0;
  padding: 0.9rem 1rem;
}

.faq details + details {
  margin-top: 0.75rem;
}

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

.faq p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact {
  padding-top: 0;
  padding-bottom: 0;
}

.contact .container {
  border: 1px solid #d7e0cb;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fcee 0%, #d9e7c1 100%);
  padding: 0;
  box-sizing: border-box;
}

.contact .container > .hero-guide {
  margin: 0;
}

.contact-body {
  margin: 1.2rem;
}

.contact-intro {
  margin: 0 0 1.2rem;
  color: var(--text);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-label {
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d7e0cb;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font: inherit;
  line-height: 1.5;
  padding: 0.65rem 0.75rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--hero-guide-bg);
  outline-offset: 2px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-button:hover {
  background: var(--primary-hover);
}

.contact-button:focus-visible {
  outline: 2px solid var(--hero-guide-bg);
  outline-offset: 2px;
}

.contact-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.contact-button-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.contact-button-secondary:hover {
  background: rgba(78, 92, 56, 0.08);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(85vh, 640px);
  overflow: auto;
  margin: 0;
  padding: 1.2rem;
  border: 1px solid #d7e0cb;
  background: linear-gradient(180deg, #f8fcee 0%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.contact-modal-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.contact-modal-summary {
  margin: 0 0 1.2rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #d7e0cb;
}

.contact-modal-row {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.contact-modal-row + .contact-modal-row {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #d7e0cb;
}

.contact-modal-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.contact-modal-row dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.contact-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-success {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #d7e0cb;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.6;
}

.site-legal {
  padding: 0;
  background: var(--bg);
}

.site-legal-panel {
  width: min(100% - 2rem, 1020px);
  margin-inline: auto;
  padding: 1.5rem 0 2rem;
  background: var(--bg);
  text-align: center;
}

.site-legal-links {
  margin: 0 0 0.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.site-legal-links a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.site-legal-links a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.site-legal-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 641px) and (max-width: 1020px) {
  :root {
    --header-height: 5.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.4rem;
    padding-bottom: 0.35rem;
  }

  .site-title {
    flex: 1 1 100%;
    width: 100%;
  }

  .header-nav {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .header-nav-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    padding-left: 0;
  }

  .header-nav-list li {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header-nav-cta {
    flex: 0 1 auto;
    margin-left: 0;
    width: auto;
  }

  .header-link {
    font-size: 0.875rem;
    padding: 0.15rem 0.35rem;
  }

  .header-buy-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-top h1 {
    font-size: clamp(1.25rem, 2.6vw, 1.5rem);
    line-height: 1.2;
    margin-bottom: 0.65rem;
    white-space: nowrap;
  }

  .br-tablet {
    display: inline;
  }

  .purchase-tagline {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    max-width: 100%;
    margin: 0 0 0.2rem;
  }

  .purchase-card {
    display: block;
  }

  .purchase-card .purchase-media {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    margin: 1rem auto 1.2rem;
  }

  .purchase-card .purchase-meta {
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .purchase-card .cta-button {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .purchase-card .purchase-main {
    order: 2;
    width: 100%;
    max-width: min(435px, 100%);
    justify-self: center;
  }

  .purchase-card .purchase-main img {
    width: 100%;
    max-width: min(435px, 100%);
    height: auto;
  }

  .purchase-card .purchase-thumbs {
    order: 1;
    grid-template-columns: repeat(4, var(--purchase-thumb-size));
    grid-auto-rows: var(--purchase-thumb-size);
    justify-content: center;
    justify-self: center;
    gap: 0.45rem;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 3.75rem;
  }

  .br-mobile {
    display: inline;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .header-inner {
    flex-wrap: nowrap;
    min-height: 3.2rem;
    position: relative;
  }

  .site-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
  }

  .header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary);
    cursor: pointer;
  }

  .header-menu-toggle:focus-visible {
    outline: 2px solid var(--hero-guide-bg);
    outline-offset: 2px;
  }

  .header-menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    position: relative;
    transition: background 0.2s ease;
  }

  .header-menu-icon::before,
  .header-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: transform 0.2s ease, top 0.2s ease;
  }

  .header-menu-icon::before {
    top: -7px;
  }

  .header-menu-icon::after {
    top: 7px;
  }

  .site-header.is-nav-open .header-menu-icon {
    background: transparent;
  }

  .site-header.is-nav-open .header-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header.is-nav-open .header-menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.12);
    box-sizing: border-box;
  }

  .site-header.is-nav-open .header-nav {
    display: block;
  }

  .header-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  .header-nav-list li {
    flex: none;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .header-nav-list > li:not(.header-nav-cta):not(:first-child)::before {
    display: none;
  }

  .header-link {
    font-size: 0.9rem;
    text-align: center;
    padding: 0.65rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .header-nav-cta {
    flex: none;
    margin: 0.75rem 0 0;
    width: 100%;
  }

  .header-buy-link {
    width: 100%;
    justify-content: center;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero-heading {
    transform: none;
  }

  .hero-top h1 {
    font-size: clamp(1.1rem, 4.8vw, 1.35rem);
    line-height: 1.2;
    margin-bottom: 0.65rem;
    white-space: nowrap;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    align-items: center;
    overflow: visible;
  }

  .hero-side-image {
    align-self: center;
    justify-self: center;
    width: auto;
    max-width: 100%;
    height: fit-content;
    margin-left: 0;
  }

  .hero-side-image picture {
    max-width: 320px;
    margin-left: 0;
  }

  .hero-side-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-left: 0;
    border-right: 1px solid rgba(180, 197, 156, 0.5);
    box-shadow:
      0 8px 16px rgba(89, 109, 62, 0.12),
      -12px 0 20px rgba(159, 181, 127, 0.3),
      12px 0 20px rgba(159, 181, 127, 0.3);
  }

  .hero-side-image::before {
    left: -14px;
    right: -14px;
    background: linear-gradient(
      90deg,
      var(--hero-glow-outer) 0%,
      var(--hero-glow-inner) 22%,
      var(--hero-glow-inner) 78%,
      var(--hero-glow-outer) 100%
    );
    filter: blur(12px);
    opacity: 0.95;
  }

  .hero-body,
  .hero-body-secondary {
    padding: 0.9rem 0.9rem 1rem;
  }

  .intro .hero-body-secondary,
  .intro .hero-body-secondary .hero-uv-text,
  .intro .hero-body-secondary .sub-head,
  .intro .product-split-group,
  .intro .product-split-group h4,
  .intro .product-split-group p,
  .features .product-split-group.product-split-tight-y,
  .features .product-split-group.product-split-tight-y h4,
  .features .product-split-group.product-split-tight-y p {
    text-align: center;
  }

  .features .product-split-group.product-split-tight-y .product-strength-image {
    display: flex;
    justify-content: center;
  }

  .features .product-split-group:not(.product-split-tight-y),
  .features .product-split-group:not(.product-split-tight-y) h4,
  .features .product-split-group:not(.product-split-tight-y) p,
  .features .product-split-group:not(.product-split-tight-y) .note {
    text-align: center;
  }

  .features .product-split-group:not(.product-split-tight-y) .table-wrap-image-size {
    margin-left: auto;
    margin-right: auto;
  }

  .features .product-split-group h4.heading-right {
    text-align: center;
  }

  .hero-body-secondary .target-list {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left right"
      "top top";
    gap: 0.65rem 0.45rem;
    max-width: 100%;
  }

  .hero-body-secondary .target-list li {
    width: 100%;
    max-width: none;
    white-space: nowrap;
    padding-inline: 0.55rem;
    font-size: clamp(0.78rem, 2.7vw, 0.9rem);
  }

  .hero-body-secondary .target-list li:nth-child(1) {
    justify-self: center;
    width: max-content;
    max-width: 100%;
  }

  .hero-body-secondary .target-list li:nth-child(2),
  .hero-body-secondary .target-list li:nth-child(3) {
    justify-self: stretch;
  }

  .hero-uv-layout {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hero-uv-image {
    align-items: center;
  }

  .hero-uv-image .doc-image {
    width: 100%;
  }

  .intro .hero-body-secondary .hero-uv-image .note {
    width: 100%;
    text-align: center;
  }

  .product-strength-layout {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .story .container > .hero-guide + .card h4,
  .story .container > .hero-guide + .card .product-strength-layout > div:not(.product-strength-image),
  .story .container > .hero-guide + .card .product-strength-layout > div:not(.product-strength-image) > p {
    text-align: center;
  }

  .story .container > .hero-guide + .card .product-strength-layout {
    justify-items: center;
  }

  .story .container > .hero-guide + .card .product-strength-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .story .container > .hero-guide + .card + .card .product-strength2-text,
  .story .container > .hero-guide + .card + .card .product-strength2-text h4,
  .story .container > .hero-guide + .card + .card .product-strength2-text > p {
    text-align: center;
  }

  .story .container > .hero-guide + .card + .card .product-strength2-layout {
    justify-items: center;
  }

  .product-strength-text {
    min-height: 0;
  }

  .product-strength2-layout {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .purchase-media {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    margin: 1rem 0 1.2rem;
  }

  .purchase-card {
    display: block;
  }

  .purchase-meta {
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
  }

  .purchase-card .cta-button {
    width: 100%;
    margin-left: 0;
  }

  .purchase-tagline {
    width: auto;
    max-width: 100%;
    margin-left: 0;
  }

  .purchase-main {
    justify-self: center;
    order: 2;
  }

  .purchase-thumbs {
    order: 1;
  }

  .product-strength2-table {
    order: 2;
  }

  .product-strength2-text {
    order: 1;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
    margin-left: 0;
  }

  .product-strength2-table .table-wrap-image-size table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .product-strength2-table .table-wrap-image-size th,
  .product-strength2-table .table-wrap-image-size td {
    font-size: 0.62rem;
    padding: 0.18rem 0.1rem;
  }

  .product-strength2-table .table-wrap-image-size th:first-child,
  .product-strength2-table .table-wrap-image-size td:first-child {
    width: 44%;
  }

  .product-strength2-table .table-wrap-image-size th:nth-child(3),
  .product-strength2-table .table-wrap-image-size th:nth-child(4),
  .product-strength2-table .table-wrap-image-size td:nth-child(3),
  .product-strength2-table .table-wrap-image-size td:nth-child(4) {
    width: 14%;
  }

  .product-split-group h4.heading-right {
    text-align: left;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .contact-button {
    width: 100%;
  }

  .contact-modal-actions {
    flex-direction: column;
  }
}
