@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&family=Noto+Serif+KR:wght@500;600;700&display=swap");

:root {
  --ink: #171a17;
  --ink-soft: #333a35;
  --paper: #f7f8f5;
  --white: #ffffff;
  --mist: #dfe5df;
  --line: #cfd6cf;
  --jade: #326653;
  --jade-dark: #204a3d;
  --cinnabar: #ad3b31;
  --cinnabar-dark: #842a24;
  --brass: #b3924d;
  --stone: #777e78;
  --shadow: 0 18px 44px rgba(22, 28, 23, 0.12);
  --shell: 1240px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Noto Serif KR", "Batang", Georgia, serif;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 22px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.announcement {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 5px 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.announcement p {
  margin: 0;
}

.announcement-center {
  color: #d8ddd9;
}

.text-button {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 12px;
}

.text-button svg {
  width: 14px;
  height: 14px;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 28px;
  background: rgba(247, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  background: var(--cinnabar);
  color: var(--white);
  border-radius: 50%;
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--stone);
  font-size: 9px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--cinnabar);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.icon-button:hover {
  background: var(--mist);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.bag-button span {
  position: absolute;
  right: 1px;
  top: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--cinnabar);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 22px 24px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Noto Serif KR", serif;
  font-size: 20px;
}

.mobile-menu p {
  margin: 20px 0 0;
  color: var(--stone);
  font-size: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #f0d0ca;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--cinnabar);
  color: var(--white);
  border: 1px solid var(--cinnabar);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--cinnabar-dark);
  border-color: var(--cinnabar-dark);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--mist);
  border-color: var(--mist);
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--jade-dark);
  border-color: var(--jade-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  min-height: 520px;
  height: calc(100svh - 190px);
  max-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../images/new-daoist/hero-temple.jpg");
  background-position: center 36%;
  background-size: cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 15, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 34px 0 54px;
}

.hero h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 76px;
}

.hero h2 {
  max-width: 540px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 32px;
}

.hero .lead {
  max-width: 530px;
  margin-bottom: 28px;
  color: #eef2ee;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce4de;
  font-size: 11px;
}

.hero-note::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.intentions {
  background: var(--ink);
  color: var(--white);
}

.intention-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intention-link {
  min-height: 138px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid #454b46;
}

.intention-link:last-child {
  border-right: 0;
}

.intention-link:hover {
  background: var(--jade-dark);
}

.intention-symbol {
  color: var(--brass);
  font-family: "Noto Serif KR", serif;
  font-size: 30px;
}

.intention-link strong,
.intention-link small {
  display: block;
}

.intention-link strong {
  margin-bottom: 3px;
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
}

.intention-link small {
  color: #bfc8c1;
  font-size: 11px;
}

.intention-link svg {
  width: 18px;
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.section-header h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-header p {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--stone);
}

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

.product-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e9e6de;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  background: var(--white);
  color: var(--ink);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}

.product-body {
  padding: 18px;
}

.product-meta {
  margin-bottom: 6px;
  color: var(--stone);
  font-size: 11px;
}

.product-body h3 {
  min-height: 54px;
  margin-bottom: 8px;
  font-size: 18px;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.product-price small {
  color: var(--stone);
  font-size: 10px;
  font-weight: 400;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 680px;
  background: var(--white);
}

.story-visual {
  min-height: 560px;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(40px, calc((100vw - var(--shell)) / 2));
  background: var(--jade-dark);
  color: var(--white);
}

.story-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.story-copy > p {
  margin-bottom: 28px;
  color: #dce8e0;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 32px;
}

.story-value {
  padding-top: 16px;
  border-top: 1px solid #648173;
}

.story-value strong,
.story-value span {
  display: block;
}

.story-value strong {
  margin-bottom: 6px;
  color: var(--brass);
  font-family: "Noto Serif KR", serif;
  font-size: 20px;
}

.story-value span {
  color: #c9d6ce;
  font-size: 12px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.journal-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.journal-card:first-child .journal-card-image {
  aspect-ratio: 16 / 11;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.journal-card-body time,
.journal-category {
  color: var(--cinnabar);
  font-size: 11px;
  font-weight: 700;
}

.journal-card-body h3 {
  margin: 10px 0;
  font-size: 22px;
}

.journal-card-body p {
  color: var(--stone);
  font-size: 13px;
}

.journal-card-body .text-link {
  margin-top: auto;
}

.trust-band {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 32px 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 22px;
  color: var(--jade);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.trust-item small {
  color: var(--stone);
  font-size: 11px;
}

.newsletter-band {
  padding: 72px 0;
  background: var(--cinnabar);
  color: var(--white);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.newsletter-inner h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 34px;
}

.newsletter-inner p {
  margin-bottom: 0;
  color: #f5dcd8;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input,
.footer-form input {
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  outline: 0;
}

.newsletter-form input::placeholder,
.footer-form input::placeholder {
  color: inherit;
  opacity: 0.72;
}

.newsletter-form input:focus,
.footer-form input:focus {
  border-bottom-width: 2px;
}

.page-hero {
  padding: 84px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: 58px;
}

.page-hero p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--stone);
}

.page-hero-aside {
  padding-left: 24px;
  border-left: 3px solid var(--cinnabar);
}

.page-hero-aside strong,
.page-hero-aside span {
  display: block;
}

.page-hero-aside strong {
  margin-bottom: 6px;
  font-family: "Noto Serif KR", serif;
  font-size: 20px;
}

.page-hero-aside span {
  color: var(--stone);
  font-size: 12px;
}

.filter-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  background: rgba(247, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.filter-button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
}

.filter-button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  color: var(--stone);
  font-size: 12px;
}

.product-page {
  padding: 54px 0 100px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--stone);
  font-size: 11px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 68px;
  align-items: start;
}

.product-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.product-thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 3px;
}

.product-thumb[aria-pressed="true"] {
  border-color: var(--ink);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  position: sticky;
  top: 24px;
}

.product-info h1 {
  margin-bottom: 14px;
  font-size: 42px;
}

.product-info .product-subtitle {
  margin-bottom: 20px;
  color: var(--stone);
}

.product-info .price-large {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: 700;
}

.product-info .price-large small {
  color: var(--stone);
  font-size: 11px;
  font-weight: 400;
}

.option-group {
  margin: 22px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.option-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.size-option {
  min-height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
}

.size-option[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.purchase-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 10px;
  margin-top: 24px;
}

.quantity-stepper {
  height: 50px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.quantity-stepper button {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.quantity-stepper output {
  text-align: center;
  font-size: 13px;
}

.product-promises {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: var(--stone);
  font-size: 11px;
}

.product-promise svg {
  width: 17px;
  color: var(--jade);
}

.product-details-band {
  background: var(--white);
}

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

.detail-columns h3 {
  margin-bottom: 12px;
}

.detail-columns p,
.detail-columns li {
  color: var(--stone);
  font-size: 13px;
}

.detail-columns ul {
  padding-left: 18px;
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 560px;
  background: var(--ink);
  color: var(--white);
}

.journal-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.journal-feature-copy h2 {
  margin: 14px 0 20px;
  color: var(--white);
  font-size: 38px;
}

.journal-feature-copy p {
  color: #cbd3cd;
}

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

.article-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  background-image: url("../images/new-daoist/bagua-bronze.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 23, 18, 0.66);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 80px 0;
}

.article-hero h1 {
  margin: 12px 0 20px;
  color: var(--white);
  font-size: 54px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #d5ddd7;
  font-size: 12px;
}

.article-body {
  padding: 80px 0 100px;
}

.article-body .intro {
  margin-bottom: 40px;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
  line-height: 1.8;
}

.article-body h2 {
  margin: 58px 0 18px;
  font-size: 30px;
}

.article-body blockquote {
  margin: 44px 0;
  padding: 24px 30px;
  background: var(--mist);
  border-left: 4px solid var(--jade);
  font-family: "Noto Serif KR", serif;
  font-size: 19px;
}

.article-body figure {
  margin: 48px 0;
}

.article-body figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.article-body figcaption {
  margin-top: 8px;
  color: var(--stone);
  font-size: 11px;
}

.site-footer {
  padding-top: 72px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
  gap: 58px;
  padding-bottom: 60px;
}

.brand-light .brand small {
  color: #b8c1bb;
}

.footer-brand p,
.footer-main p {
  color: #abb6ae;
  font-size: 12px;
}

.footer-brand p {
  max-width: 270px;
  margin-top: 22px;
}

.footer-main h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 12px;
}

.footer-main > div > a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #cbd3cd;
  font-size: 12px;
}

.footer-main > div > a:hover {
  color: var(--white);
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.icon-button-light {
  color: var(--white);
}

.icon-button-light:hover {
  background: #323a34;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid #3a423c;
  color: #89958c;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.search-dialog {
  width: min(calc(100% - 32px), 720px);
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(16, 22, 18, 0.72);
}

.search-dialog-inner {
  padding: 28px;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.dialog-head h2 {
  margin: 0;
  font-size: 24px;
}

.search-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 2px solid var(--ink);
}

.search-field input {
  min-width: 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.search-suggestions a {
  padding: 6px 10px;
  background: var(--mist);
  border-radius: 3px;
  font-size: 11px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  max-width: 380px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  border-left: 4px solid var(--brass);
  box-shadow: var(--shadow);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .desktop-nav {
    gap: 18px;
  }

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

  .story-section,
  .journal-feature {
    grid-template-columns: 1fr 1fr;
  }

  .story-copy,
  .journal-feature-copy {
    padding: 48px;
  }

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

  .journal-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .journal-card:first-child .journal-card-image {
    aspect-ratio: auto;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .shell,
  .narrow {
    width: min(calc(100% - 32px), var(--shell));
  }

  .announcement {
    grid-template-columns: 1fr auto;
    padding: 5px 16px;
  }

  .announcement-center {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 12px 0 16px;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: 520px;
    height: calc(100svh - 170px);
    max-height: 650px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero h2 {
    font-size: 27px;
  }

  .hero .lead {
    font-size: 15px;
  }

  .hero-note {
    display: none;
  }

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

  .intention-link:nth-child(2) {
    border-right: 0;
  }

  .intention-link:nth-child(-n + 2) {
    border-bottom: 1px solid #454b46;
  }

  .section {
    padding: 76px 0;
  }

  .section-header,
  .page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .story-section,
  .journal-feature,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 460px;
  }

  .story-copy {
    padding: 58px 28px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-info {
    position: static;
  }

  .detail-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journal-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .header-tools {
    gap: 0;
  }

  .icon-button {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .hero {
    min-height: 535px;
    height: calc(100svh - 150px);
    max-height: 610px;
  }

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

  .hero h1 {
    font-size: 48px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    padding: 11px 14px;
    font-size: 12px;
  }

  .intention-link {
    min-height: 112px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 18px 15px;
  }

  .intention-link svg {
    display: none;
  }

  .intention-symbol {
    font-size: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 26px;
  }

  .product-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-body {
    padding: 13px;
  }

  .product-body h3 {
    min-height: 48px;
    font-size: 15px;
  }

  .product-price {
    display: block;
    font-size: 12px;
  }

  .product-price small {
    display: block;
    margin-top: 3px;
  }

  .story-visual {
    min-height: 380px;
  }

  .story-values,
  .journal-grid,
  .journal-list-grid {
    grid-template-columns: 1fr;
  }

  .journal-card:first-child {
    grid-column: auto;
    display: flex;
  }

  .journal-card:first-child .journal-card-image {
    aspect-ratio: 16 / 10;
  }

  .trust-item {
    padding: 22px 16px;
  }

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

  .page-hero {
    padding: 60px 0 44px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .shop-note {
    display: block;
  }

  .product-page {
    padding: 32px 0 70px;
  }

  .product-layout {
    gap: 34px;
  }

  .product-info h1 {
    font-size: 34px;
  }

  .purchase-row {
    grid-template-columns: 100px 1fr;
  }

  .journal-feature-copy {
    padding: 42px 24px;
  }

  .journal-feature-copy h2 {
    font-size: 30px;
  }

  .article-hero {
    min-height: 470px;
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .article-body .intro {
    font-size: 19px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand,
  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 6px;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
