:root {
  --bg: #f3f6f0;
  --surface: #fffaf2;
  --surface-strong: #e3eadf;
  --ink: #251f1c;
  --muted: #6c6258;
  --line: #d7d1c4;
  --accent: #93424c;
  --accent-deep: #672933;
  --green: #3f6652;
  --green-deep: #1f342b;
  --clay: #c4745d;
  --ochre: #b8945b;
  --mist: #dfe9df;
  --plum: #49353d;
  --cream: #fff8ec;
  --shadow: 0 28px 74px rgba(66, 50, 40, 0.14);
  --container: min(1400px, calc(100% - 80px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(63, 102, 82, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(63, 102, 82, 0.046) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  word-break: auto-phrase;
  line-break: strict;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: "Shippori Mincho B1", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.28;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 {
  max-width: 13.8em;
  font-size: 4.55rem;
  line-height: 1.13;
}

h2 {
  max-width: 13.5em;
  font-size: 3.45rem;
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--muted);
}

.keep-with-prev {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  width: var(--container);
  min-height: 74px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(37, 31, 28, 0.06);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 31, 28, 0.1);
}

.header-cta {
  color: var(--surface);
  background: var(--ink);
  font-size: 0.86rem;
}

.purpose-nav {
  position: sticky;
  top: 0;
  z-index: 24;
  width: var(--container);
  margin: 14px auto 0;
}

.purpose-nav-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(215, 209, 196, 0.86);
  background: rgba(215, 209, 196, 0.86);
  box-shadow: 0 18px 42px rgba(66, 50, 40, 0.08);
}

.purpose-link {
  --purpose-color: var(--accent);
  min-width: 0;
  position: relative;
  display: grid;
  gap: 4px;
  padding: 13px 14px 13px 18px;
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(14px);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
}

.purpose-link::before {
  content: "";
  position: absolute;
  inset: 13px auto 13px 8px;
  width: 4px;
  border-radius: 999px;
  background: var(--purpose-color);
  transition: transform 0.28s var(--ease);
}

.purpose-link:hover,
.purpose-link:focus-visible {
  transform: translateY(-2px);
  background: var(--surface);
}

.purpose-link:hover::before,
.purpose-link:focus-visible::before {
  transform: scaleY(1.16);
}

.purpose-link:active {
  transform: translateY(1px) scale(0.99);
}

.purpose-link span {
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.35;
}

.purpose-link small {
  min-width: 0;
  color: var(--muted);
  font-family: "Outfit", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.purpose-gift {
  --purpose-color: var(--accent);
}

.purpose-shop {
  --purpose-color: var(--clay);
}

.purpose-lesson {
  --purpose-color: var(--green);
}

.purpose-wedding {
  --purpose-color: var(--plum);
}

.purpose-consult {
  --purpose-color: var(--ochre);
}

.purpose-store {
  --purpose-color: #63785d;
}

.button:active,
.header-cta:active,
.category-card:active,
.intent-card:active,
.lesson-list a:active,
.route-card:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  color: var(--surface);
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.62);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.button-light {
  color: var(--green-deep);
  background: var(--cream);
}

.button-outline-light {
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.42);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--green-deep);
  background: var(--cream);
}

.kicker {
  color: var(--accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 39rem;
  font-size: 1.08rem;
}

.hero {
  min-height: calc(100dvh - 112px);
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.hero-copy > * {
  min-width: 0;
  max-width: 100%;
}

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

.route-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 8px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 14px 40px rgba(66, 50, 40, 0.08);
}

.route-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px 14px;
  padding: 15px 16px;
  background: rgba(255, 250, 242, 0.82);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.route-card::before {
  content: "";
  grid-row: 1 / span 3;
  width: 10px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--route-color);
  box-shadow: inset 0 -10px 0 rgba(37, 31, 28, 0.08);
  transform-origin: center bottom;
  transition: transform 0.28s var(--ease);
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-2px);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 16px 28px rgba(66, 50, 40, 0.08);
}

.route-card:hover::before,
.route-card:focus-visible::before {
  transform: scaleY(1.08);
}

.route-card span,
.route-card strong,
.route-card small {
  min-width: 0;
}

.route-card span {
  color: var(--route-color);
  font-size: 0.82rem;
  font-weight: 700;
}

.route-card strong {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.route-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.route-gift {
  --route-color: var(--accent);
}

.route-lesson {
  --route-color: var(--green);
}

.route-wedding {
  --route-color: var(--clay);
}

.route-store {
  --route-color: var(--ochre);
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 600px;
}

.atelier-sign {
  position: absolute;
  left: 2%;
  top: 0;
  z-index: 3;
  min-height: 210px;
  padding: 16px 8px;
  border-left: 1px solid rgba(37, 31, 28, 0.18);
  color: var(--plum);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 14px 32px rgba(66, 50, 40, 0.08);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-heading,
.split-heading > *,
.consult-copy,
.consult-mock,
.lesson-content,
.wedding-copy,
.trust-copy,
.faq-list,
.store-card,
.latest-card {
  min-width: 0;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  will-change: transform;
  animation: atelier-drift 11s var(--ease) infinite alternate;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-media:hover .hero-photo img {
  transform: scale(1.035);
}

.hero-photo-main {
  inset: 0 7% 12% 12%;
  border-radius: 6px;
}

.hero-photo-gift {
  right: 0;
  bottom: 0;
  width: 34%;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--bg);
  border-radius: 4px;
  animation-duration: 9s;
  animation-delay: -2.5s;
}

.hero-photo-wedding {
  left: 0;
  top: 7%;
  width: 28%;
  aspect-ratio: 1 / 1.14;
  border: 10px solid var(--bg);
  border-radius: 4px;
  animation-duration: 10s;
  animation-delay: -5s;
}

.specimen-tag {
  position: absolute;
  z-index: 2;
  padding: 9px 12px 9px 14px;
  border: 1px solid rgba(37, 31, 28, 0.14);
  border-left: 5px solid var(--tag-color);
  border-radius: 3px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 14px 34px rgba(37, 31, 28, 0.16);
  backdrop-filter: blur(7px);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  will-change: transform;
  animation: specimen-float 6.4s var(--ease) infinite alternate;
}

.tag-gift {
  --tag-color: var(--accent);
  top: 19%;
  right: 2%;
}

.tag-lesson {
  --tag-color: var(--green);
  left: 8%;
  bottom: 22%;
  animation-delay: -2s;
}

.tag-deco {
  --tag-color: var(--ochre);
  right: 22%;
  bottom: 8%;
  animation-delay: -3.4s;
}

.section-heading,
.split-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.section-heading p,
.split-heading p {
  max-width: 42rem;
}

.split-heading {
  min-width: 0;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
}

.intent-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.intent-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(215, 209, 196, 0.92);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(63, 102, 82, 0.08) 1px, transparent 1px),
    rgba(255, 250, 242, 0.78);
  background-size: 28px 28px, auto;
  box-shadow: 0 18px 55px rgba(84, 57, 45, 0.06);
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), background 0.32s var(--ease);
}

.intent-card::before {
  content: "";
  position: absolute;
  inset: 26px auto 26px 23px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(63, 102, 82, 0.45), transparent);
}

.intent-card:hover,
.intent-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(147, 66, 76, 0.52);
  background: var(--surface);
}

.intent-card > * {
  position: relative;
}

.intent-card-large {
  grid-row: span 2;
  min-height: 638px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(31, 52, 43, 0.1), rgba(31, 52, 43, 0.88)),
    url("images/gift.png") center / cover;
}

.intent-card-wide {
  grid-column: span 2;
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.66)),
    url("images/hero.png") center right / cover;
}

.intent-card-large p,
.intent-card-large .intent-label {
  color: rgba(255, 248, 236, 0.82);
}

.intent-label {
  color: var(--accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intent-card p {
  max-width: 28rem;
}

.intent-card a {
  margin-top: 8px;
  color: currentColor;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.consult-section {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.48), rgba(239, 229, 219, 0.48));
}

.consult-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: start;
}

.consult-copy {
  display: grid;
  gap: 22px;
}

.consult-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.consult-steps li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.consult-steps span {
  color: var(--ink);
  font-weight: 700;
}

.consult-mock {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(222, 212, 202, 0.9);
  border-left: 7px solid var(--green);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(63, 102, 82, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 100% 32px, auto;
  box-shadow: var(--shadow);
}

.consult-mock::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 54px;
  height: 22px;
  border-top: 1px solid rgba(147, 66, 76, 0.38);
  border-bottom: 1px solid rgba(147, 66, 76, 0.38);
  transform: rotate(4deg);
}

.form-note {
  justify-self: start;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-mock label {
  display: grid;
  gap: 7px;
}

.consult-mock label > span {
  font-size: 0.88rem;
  font-weight: 700;
}

.consult-mock input,
.consult-mock select,
.consult-mock textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.78);
}

.consult-mock input,
.consult-mock select {
  height: 48px;
  padding: 0 14px;
}

.consult-mock textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.consult-mock small {
  color: var(--muted);
}

.consult-mock button[disabled] {
  cursor: not-allowed;
  opacity: 0.86;
}

.category-rail {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(220px, 0.75fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.category-card {
  min-height: 360px;
  min-width: 230px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, transparent 0 68%, rgba(63, 102, 82, 0.055) 68% 100%),
    var(--surface);
  scroll-snap-align: start;
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 26px;
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(147, 66, 76, 0.5);
}

.category-card span {
  color: var(--accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card strong {
  font-size: 1.18rem;
}

.category-card p {
  font-size: 0.92rem;
}

.category-image {
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.category-image::before {
  background: var(--cream);
}

.category-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 52, 45, 0.08), rgba(35, 52, 45, 0.74));
}

.category-image:hover img {
  transform: scale(1.04);
}

.category-image span,
.category-image strong {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.lesson-section {
  background: var(--surface);
}

.lesson-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.lesson-image {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.lesson-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lesson-content {
  display: grid;
  gap: 22px;
}

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

.lesson-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.28s var(--ease), transform 0.28s var(--ease);
}

.lesson-list a:hover,
.lesson-list a:focus-visible {
  color: var(--accent);
  transform: translateX(4px);
}

.lesson-list span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.82rem;
}

.lesson-list strong,
.lesson-list small {
  line-height: 1.3;
}

.lesson-list small {
  color: var(--muted);
}

.wedding-section {
  color: var(--cream);
  background:
    linear-gradient(135deg, var(--green-deep), #2a4036 52%, var(--plum));
}

.wedding-section p {
  color: rgba(255, 248, 236, 0.76);
}

.wedding-section .kicker {
  color: #d8a49c;
}

.wedding-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.wedding-copy {
  display: grid;
  gap: 22px;
}

.wedding-copy > *,
.trust-copy > * {
  min-width: 0;
  max-width: 100%;
}

.wedding-copy h2,
.trust-copy h2 {
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

.wedding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.wedding-image {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.wedding-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 248, 236, 0.22);
  border-bottom: 1px solid rgba(255, 248, 236, 0.22);
}

.service-line {
  padding: 30px 34px 30px 0;
  border-right: 1px solid rgba(255, 248, 236, 0.22);
}

.service-line:last-child {
  padding-left: 34px;
  border-right: 0;
}

.service-line span {
  color: #d8a49c;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-line h3 {
  margin-top: 10px;
}

.service-line p {
  margin-top: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: start;
}

.trust-copy {
  display: grid;
  gap: 18px;
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "open";
  float: right;
  color: var(--accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list details[open] summary::after {
  content: "close";
}

.faq-list p {
  max-width: 42rem;
  padding: 0 44px 24px 0;
}

.store-section {
  padding-top: 0;
}

.store-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.store-card,
.latest-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(84, 57, 45, 0.07);
}

.store-card {
  display: grid;
  gap: 24px;
}

.store-info {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.store-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.store-info dt {
  color: var(--accent);
  font-weight: 700;
}

.store-info dd {
  margin: 0;
  color: var(--muted);
}

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

.latest-card h3 {
  margin-bottom: 20px;
}

.latest-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.latest-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.latest-card a {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
}

.latest-card a:hover,
.latest-card a:focus-visible {
  color: var(--accent);
}

.latest-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 248, 236, 0.72);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  color: inherit;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes atelier-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(0, -8px, 0) rotate(0.35deg);
  }
}

@keyframes specimen-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -6px, 0);
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1500px) {
  :root {
    --container: min(1400px, calc(100% - 120px));
  }

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.72rem;
  }

  .section {
    padding: 112px 0;
  }

  .hero {
    min-height: calc(100dvh - 118px);
    padding-top: 66px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 84px;
  }

  .hero-media {
    min-height: 660px;
  }

  .route-board {
    max-width: 720px;
  }

  .purpose-link {
    padding: 15px 16px 15px 20px;
  }

  .store-section {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  h3 {
    font-size: 1.42rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero-grid,
  .consult-grid,
  .lesson-grid,
  .wedding-panel,
  .trust-grid,
  .store-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 560px;
    order: -1;
  }

  .intent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intent-card-large,
  .intent-card-wide {
    grid-column: span 2;
    min-height: 390px;
  }

  .category-rail {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    min-height: 64px;
    margin-top: 10px;
  }

  .purpose-nav {
    width: 100%;
    margin-top: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .purpose-nav::-webkit-scrollbar {
    display: none;
  }

  .purpose-nav-inner {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(6, minmax(148px, 1fr));
    border-left: 0;
    border-right: 0;
  }

  .purpose-link {
    padding: 12px 13px 12px 18px;
  }

  .purpose-link span {
    font-size: 0.84rem;
  }

  .purpose-link small {
    font-size: 0.62rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .brand {
    grid-template-columns: 36px auto;
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-photo-main {
    inset: 0 0 18% 6%;
  }

  .hero-photo-gift {
    width: 38%;
    border-width: 7px;
  }

  .hero-photo-wedding {
    top: 10%;
    width: 32%;
    border-width: 7px;
  }

  .specimen-tag {
    padding: 7px 10px;
    font-size: 0.65rem;
  }

  .route-board {
    grid-template-columns: 1fr;
  }

  .intent-grid {
    grid-template-columns: 1fr;
  }

  .intent-card,
  .intent-card-large,
  .intent-card-wide {
    grid-column: auto;
    min-height: 270px;
    padding: 24px;
  }

  .consult-grid,
  .lesson-grid,
  .wedding-panel,
  .trust-grid,
  .store-grid {
    gap: 34px;
  }

  .consult-steps li,
  .store-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .consult-mock {
    padding: 22px;
  }

  .category-rail {
    display: flex;
    margin-right: 0;
    padding-right: 0;
  }

  .category-card {
    min-height: 310px;
    flex: 0 0 78%;
  }

  .service-pair {
    grid-template-columns: 1fr;
  }

  .service-line,
  .service-line:last-child {
    padding: 24px 0;
    border-right: 0;
  }

  .service-line + .service-line {
    border-top: 1px solid rgba(255, 248, 236, 0.22);
  }

  .faq-list summary::after {
    float: none;
    display: block;
    margin-top: 6px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.28rem;
    max-width: 100%;
  }

  h2 {
    font-size: 1.84rem;
  }

  h1,
  h2,
  h3 {
    word-break: auto-phrase;
    overflow-wrap: anywhere;
  }

  .hero-media {
    min-height: 360px;
  }

  .atelier-sign {
    min-height: 156px;
    padding: 12px 6px;
    font-size: 0.58rem;
  }

  .specimen-tag {
    max-width: 140px;
  }

  .hero-actions,
  .store-actions,
  .wedding-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
