:root {
  color-scheme: light;
  --paper: #faf9f6;
  --ink: #242723;
  --muted: #656862;
  --line: #ddded7;
  --soft: #eeefe8;
  --green: #365444;
  --header: 88px;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
ul {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.5;
}
button {
  color: inherit;
}
a,
button,
input,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #7b6539;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #9da397;
}
.text-link:hover {
  text-decoration-color: var(--ink);
}
.button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  transition:
    background 0.2s,
    color 0.2s;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #454b42;
}
.button-line {
  background: var(--green);
  color: #fff;
}
.button-line:hover {
  background: #273f32;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  background: white;
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 249, 246, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 36px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.wordmark img {
  width: 224px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a,
.header-shop {
  font-size: 0.875rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.desktop-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.header-shop {
  gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: none;
  width: 44px;
  height: 44px;
  position: relative;
  padding: 11px;
}
.menu-button span {
  display: block;
  height: 1px;
  background: var(--ink);
  width: 20px;
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-nav {
  background: var(--paper);
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  max-height: calc(100svh - var(--header));
  overflow: auto;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  padding-block: 32px 0;
  gap: 36px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0;
}
.hero .eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.6;
}
.hero h1 span {
  display: block;
}
.hero-description {
  color: var(--muted);
  margin: 24px 0 28px;
  font-size: 1rem;
  line-height: 2;
}
.hero .button {
  min-width: 202px;
}
.hero-newsletter {
  margin-top: 14px;
  font-size: 0.875rem;
}
.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 550px;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: 55% center;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 5px #000;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}
.hero-visual figcaption {
  z-index: 1;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}
h2 {
  font-size: clamp(1.625rem, 2.4vw, 2.125rem);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.section-heading > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.product-card {
  min-width: 0;
  display: block;
  border-radius: 6px;
}
.product-image {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #efefeb;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-info {
  padding: 23px 0 0;
}
.product-en {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 5px;
}
.product-info h3 {
  font-size: 1.375rem;
  font-weight: 500;
}
.product-description {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 10px;
}
.product-price {
  font-size: 1.125rem;
  margin-top: 18px;
}
.product-price span,
.assort-price span {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-left: 5px;
}
.product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--line);
  margin-top: 8px;
}
.product-card:hover .product-action {
  border-color: var(--ink);
}
.collection-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 22px;
}
.assort-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 48px;
  background: var(--soft);
  border: 1px solid #e1e3d9;
  border-radius: 8px;
  padding: 28px;
  margin-top: 40px;
}
.assort-image {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.assort-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.assort-copy .eyebrow {
  margin-bottom: 10px;
}
.assort-copy h3 {
  font-size: 1.75rem;
  font-weight: 400;
}
.assort-copy > p:not(.eyebrow) {
  margin-top: 12px;
}
.assort-copy > p:not(.assort-price) {
  color: var(--muted);
}
.assort-copy .text-link {
  margin-top: 12px;
}
.assort-price {
  font-size: 1.25rem;
}
.connect {
  background: #eeeee8;
  border-block: 1px solid #e1e2da;
}
.connect-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
.connect-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  min-width: 0;
}
.channel-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
}
.line-dot {
  width: 9px;
  height: 9px;
  background: #3e6b50;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.connect-card h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.connect-card > p:not(.channel-label):not(.fine-print) {
  font-size: 1rem;
  color: var(--muted);
}
.line-card > .button {
  margin-top: 28px;
  width: 100%;
}
.fine-print {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
  margin-top: 12px;
}
#newsletter-form {
  margin-top: 24px;
}
.email-label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.email-field {
  display: flex;
  gap: 8px;
}
.email-field input {
  min-width: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #a5aaa0;
  border-radius: 5px;
  min-height: 52px;
  padding: 12px 14px;
  font-size: 1rem;
  color: var(--ink);
}
.email-field button {
  flex-shrink: 0;
  gap: 18px;
  padding-inline: 20px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  min-height: 44px;
  padding-top: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}
.consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green);
  margin: 2px 0 0;
}
.consent a,
.faq-list a,
.connect-card noscript a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  font-size: 0.875rem;
  line-height: 1.8;
}
.form-status:not(:empty) {
  margin-top: 12px;
  padding: 12px;
  border-radius: 4px;
  background: var(--soft);
}
.form-status[data-state="error"] {
  color: #8d3425;
  background: #f8eae5;
}
.form-status[data-state="success"] {
  color: #28452f;
  background: #e7efe3;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.craft-visual {
  border-radius: 6px;
  overflow: hidden;
}
.craft-visual img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}
.craft-copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.625rem);
  line-height: 1.6;
}
.craft-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  line-height: 2;
}
.craft-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 24px 0;
  margin-top: 8px;
  font-size: 0.8125rem;
}
.craft-facts li {
  padding-left: 12px;
  position: relative;
}
.craft-facts li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6d7665;
  position: absolute;
  top: 11px;
  left: 0;
}
.reading {
  padding-top: 0;
  padding-bottom: 80px;
}
.reading-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reading-grid > a {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px 24px;
  min-width: 0;
  transition: background 0.2s;
}
.reading-grid > a:first-child {
  border-right: 1px solid var(--line);
  padding-left: 0;
}
.reading-grid > a:hover {
  background: var(--soft);
}
.reading-number {
  font-size: 0.75rem;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 6px;
}
.reading-grid h3 {
  font-size: 1.125rem;
}
.reading-grid p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 5px;
}
.reading-grid > a > span:last-child {
  margin-left: auto;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  padding-top: 0;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding-block: 22px;
  font-size: 1rem;
  list-style: none;
  line-height: 1.65;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 24px 24px 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 100px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-top .wordmark img {
  width: 220px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  margin-top: 24px;
}
.footer-links a {
  font-size: 0.875rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-bottom > span {
  padding-top: 10px;
}
.desktop-line {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  background: #fff;
  border: 1px solid #cdd5ca;
  box-shadow: 0 4px 24px #27342912;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 500;
}
.desktop-line small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}
.desktop-line:hover {
  background: #edf2e9;
}
.mobile-dock {
  display: none;
}
@media (min-width: 1700px) {
  .hero-visual {
    min-height: 610px;
  }
}
@media (max-width: 1150px) {
  :root {
    --header: 76px;
  }
  .wrap {
    width: calc(100% - 64px);
  }
  .desktop-nav,
  .header-shop {
    display: none;
  }
  .header-inner {
    justify-content: space-between;
  }
  .menu-button {
    display: block;
  }
  .hero {
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(2rem, 3.6vw, 2.75rem);
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-visual figcaption span {
    display: none;
  }
  .hero-description {
    font-size: 1rem;
  }
  .collection-grid {
    gap: 20px;
  }
  .product-description {
    font-size: 1rem;
  }
  .connect-card {
    padding: 24px;
  }
  .connect-grid {
    grid-template-columns: 1fr 1.1fr;
  }
  .email-field {
    flex-wrap: wrap;
  }
  .email-field .button {
    width: 100%;
  }
  .craft {
    gap: 40px;
  }
  .craft-copy > p br {
    display: none;
  }
}
@media (max-width: 767px) {
  :root {
    --header: 68px;
    scroll-padding-top: 88px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 56px;
  }
  .header-inner {
    gap: 16px;
  }
  .wordmark img {
    width: 190px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }
  .hero-copy {
    padding: 38px 4px 28px;
    display: block;
  }
  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.75rem;
  }
  .hero h1 {
    font-size: clamp(1.875rem, 7.9vw, 2.875rem);
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  .hero-description {
    margin: 18px 0 22px;
    line-height: 1.9;
    max-width: 30em;
  }
  .hero .button {
    min-width: 190px;
  }
  .hero-newsletter {
    display: flex;
    width: fit-content;
    margin-top: 8px;
    min-height: 44px;
    font-size: 0.875rem;
    gap: 18px;
  }
  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.5;
    width: 100%;
    border-radius: 6px;
  }
  .hero-visual img {
    object-position: center 52%;
  }
  .hero-visual figcaption {
    bottom: 14px;
    left: 18px;
    font-size: 0.75rem;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading .eyebrow {
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.625rem;
  }
  .section-heading > p {
    font-size: 1rem;
    margin-top: 14px;
  }
  .collection-grid {
    display: block;
    border-top: 1px solid var(--line);
  }
  .product-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    padding-block: 24px;
    align-items: start;
  }
  .product-image {
    margin-top: 3px;
  }
  .product-info {
    padding: 0;
  }
  .product-en {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }
  .product-info h3 {
    font-size: 1.1875rem;
  }
  .product-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 7px;
  }
  .product-price {
    font-size: 1.0625rem;
    margin-top: 10px;
    line-height: 1.8;
  }
  .product-price span {
    font-size: 0.75rem;
    margin-left: 3px;
    display: inline-block;
  }
  .product-action {
    border: 0;
    margin-top: 2px;
    font-size: 0.875rem;
    min-height: 44px;
    gap: 8px;
  }
  .collection-note {
    font-size: 0.75rem;
    line-height: 1.85;
    margin-top: 16px;
  }
  .assort-card {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
    padding: 20px 16px;
    margin-top: 28px;
    align-items: start;
  }
  .assort-image {
    margin-top: 4px;
  }
  .assort-copy .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .assort-copy h3 {
    font-size: 1.125rem;
    line-height: 1.65;
  }
  .assort-copy > p:not(.eyebrow):not(.assort-price) {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 8px;
  }
  .assort-copy > p br {
    display: none;
  }
  .assort-price {
    font-size: 1.0625rem;
    line-height: 1.8;
  }
  .assort-price span {
    display: block;
    margin-left: 0;
    font-size: 0.75rem;
  }
  .assort-copy .text-link {
    margin-top: 8px;
    font-size: 0.875rem;
    gap: 12px;
  }
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .connect-card {
    padding: 24px;
  }
  .connect-card h3 {
    font-size: 1.25rem;
  }
  .connect-card > p:not(.channel-label):not(.fine-print) {
    font-size: 1rem;
    line-height: 1.9;
  }
  .channel-label {
    margin-bottom: 12px;
  }
  .line-card > .button {
    margin-top: 20px;
  }
  .email-field {
    flex-wrap: wrap;
  }
  .email-field input,
  .email-field .button {
    width: 100%;
  }
  .consent {
    font-size: 0.875rem;
    line-height: 1.9;
    margin-top: 10px;
  }
  #newsletter-form {
    margin-top: 20px;
  }
  .craft {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .craft-visual {
    order: 2;
  }
  .craft-visual img {
    aspect-ratio: 1.55;
    object-position: center 55%;
  }
  .craft-copy h2 {
    font-size: 1.875rem;
  }
  .craft-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }
  .craft-facts {
    padding: 18px 0 12px;
    gap: 6px 16px;
    margin-top: 4px;
    font-size: 0.8125rem;
  }
  .reading {
    padding-top: 0;
    padding-bottom: 56px;
  }
  .reading-grid {
    grid-template-columns: 1fr;
  }
  .reading-grid > a,
  .reading-grid > a:first-child {
    padding: 24px 0;
    border-right: 0;
    gap: 16px;
  }
  .reading-grid > a:first-child {
    border-bottom: 1px solid var(--line);
  }
  .reading-grid p {
    font-size: 1rem;
  }
  .reading-grid h3 {
    font-size: 1.125rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }
  .faq-list summary {
    font-size: 0.9375rem;
    padding-block: 20px;
  }
  .faq-list details > p {
    font-size: 1rem;
    padding-right: 0;
  }
  .footer {
    padding: 36px 0 calc(106px + env(safe-area-inset-bottom));
  }
  .footer-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-top .wordmark img {
    width: 196px;
  }
  .footer-links {
    column-gap: 20px;
    margin-top: 20px;
  }
  .footer-links a {
    font-size: 0.875rem;
  }
  .footer-bottom {
    display: block;
    margin-top: 20px;
  }
  .footer-bottom > span {
    display: block;
  }
  .desktop-line {
    display: none;
  }
  .mobile-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 8px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250, 249, 246, 0.98);
    border-top: 1px solid var(--line);
  }
  .mobile-dock a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    border-radius: 5px;
    background: var(--ink);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 8px;
    line-height: 1.5;
  }
  .mobile-dock a:first-child {
    background: #edf1e9;
    color: #284532;
    border: 1px solid #cbd6c5;
  }
  .form-editing .mobile-dock {
    display: none;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .product-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
  }
  .assort-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding-inline: 12px;
  }
  .connect-card {
    padding: 20px;
  }
  .product-info h3 {
    font-size: 1.0625rem;
  }
  .mobile-dock {
    padding-inline: 10px;
    gap: 6px;
  }
  .mobile-dock a {
    gap: 6px;
  }
  .hero-copy {
    padding-inline: 0;
  }
  .wordmark img {
    width: 178px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
