:root {
  --iron: #3a322c;
  --celadon: #5e7f72;
  --granite: #d7dcd6;
  --paper: #eef0ec;
  --ink: #2a2520;
  --mute: #5c5650;
  --line: #b8c4be;
  --radius: 13px;
  --measure: 40rem;
  --wide: 58rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--granite);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 23px,
    rgba(94, 127, 114, 0.07) 23px,
    rgba(94, 127, 114, 0.07) 24px
  );
  font-family: "Albert Sans", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--iron);
  text-underline-offset: 0.16em;
}

a:hover { color: var(--celadon); }

h1, h2, h3 {
  font-family: "Shippori Mincho", Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--iron);
}

h1 { font-size: clamp(1.85rem, 4vw, 2.55rem); margin: 0 0 1rem; }
h2 { font-size: 1.45rem; margin: 2rem 0 0.7rem; }

p { margin: 0 0 1rem; }

.skip {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--paper);
  padding: 0.4rem 0.7rem;
}

.skip:focus { left: 0.5rem; z-index: 8; }

.rim-mast { background: var(--paper); }

.rim-mast__lip {
  height: 14px;
  background: linear-gradient(180deg, var(--celadon) 0%, rgba(94, 127, 114, 0.55) 100%);
}

.rim-mast__bar {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--iron);
}

.brand img { border-radius: var(--radius); }

.brand__name {
  display: block;
  font-family: "Shippori Mincho", Georgia, serif;
  font-size: 1.15rem;
}

.brand__sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--celadon);
}

.menu-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--iron);
  border-radius: var(--radius);
  color: var(--iron);
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.35rem;
}

.nav.is-open { display: flex; }

.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.2rem 0;
}

.nav a.is-on {
  color: var(--celadon);
  font-weight: 600;
}

.hero {
  background: var(--iron);
  color: var(--granite);
  padding: 2.4rem 1.25rem 2rem;
}

.hero h1 { color: var(--granite); }

.hero__grid {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero__brand {
  font-family: "Shippori Mincho", Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--celadon);
}

.hero__lead { max-width: 36rem; color: rgba(215, 220, 214, 0.92); }

.hero__well {
  display: flex;
  justify-content: center;
}

.pot-well {
  width: min(200px, 50vw);
  height: auto;
  animation: wire-settle 0.9s ease-out both;
}

.pot-wire {
  animation: wire-settle 1.1s ease-out both;
}

@keyframes wire-settle {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.58rem 1.1rem;
  border: 1px solid var(--celadon);
  border-radius: var(--radius);
  color: var(--iron);
  background: var(--celadon);
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cta:hover {
  background: transparent;
  color: var(--celadon);
  border-color: var(--celadon);
}

.cta--on-granite {
  border-color: var(--iron);
  color: var(--granite);
  background: var(--iron);
}

.cta--on-granite:hover {
  background: transparent;
  color: var(--iron);
  border-color: var(--iron);
}

.waterline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--celadon);
  background: var(--paper);
  max-width: var(--wide);
  margin: 0 auto;
}

.waterline span {
  padding: 0.7rem 1rem;
  border-right: 1px solid var(--line);
  color: var(--celadon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.waterline span:last-child { border-right: 0; }

.block {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.block__lead { color: var(--mute); }

.tray-index {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tray-index li { margin: 0 0 0.55rem; }

.tray-index a {
  display: block;
  text-decoration: none;
  padding: 0.85rem 0.9rem 0.85rem 0.75rem;
  border-bottom: 2px solid var(--celadon);
  background: var(--paper);
  transition: border-bottom-width 0.15s ease, padding-bottom 0.15s ease;
  box-shadow: none;
}

.tray-index a:hover {
  border-bottom-width: 4px;
  padding-bottom: 0.7rem;
}

.tray-index__n {
  display: inline-block;
  color: var(--celadon);
  font-size: 0.78rem;
  margin-right: 0.35rem;
}

.tray-index__line {
  display: inline-block;
  color: var(--mute);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tray-index strong {
  display: block;
  color: var(--iron);
  font-family: "Shippori Mincho", Georgia, serif;
  font-weight: 600;
  margin-top: 0.15rem;
}

.tray-index em {
  display: block;
  color: var(--mute);
  font-style: normal;
  font-size: 0.92rem;
}

.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.steps__list--long .steps__n {
  color: var(--celadon);
  margin-right: 0.35rem;
  font-size: 0.85rem;
}

.leaf-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.leaf-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.text-link { font-weight: 600; }

.page-head {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2rem 1.25rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-head__kicker {
  color: var(--celadon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
}

.page-head__lead { color: var(--mute); max-width: 40rem; }

.inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem 2.5rem;
}

.sidenote {
  border-top: 2px solid var(--celadon);
  padding-top: 0.85rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.sidenote__label {
  color: var(--iron);
  font-family: "Shippori Mincho", Georgia, serif;
  margin-bottom: 0.35rem;
}

.plain {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.facts { margin: 0 0 1.2rem; }

.facts div {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.facts dd { margin: 0; }

.prose h2 { margin-top: 1.4rem; }

.faq-item { margin-bottom: 1.2rem; }

.faq-item h2 span {
  color: var(--celadon);
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.inquiry label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.inquiry input,
.inquiry textarea {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--paper);
}

.fine {
  font-size: 0.88rem;
  color: var(--mute);
}

.pot-foot {
  margin-top: 2rem;
  background: var(--iron);
  color: rgba(215, 220, 214, 0.92);
}

.pot-foot__rim {
  height: 2px;
  background: var(--celadon);
}

.pot-foot a { color: var(--granite); }

.pot-foot a:hover { color: var(--celadon); }

.pot-foot__name {
  font-family: "Shippori Mincho", Georgia, serif;
  font-size: 1.1rem;
  color: var(--granite);
}

.pot-foot__warn {
  font-size: 0.9rem;
  color: rgba(215, 220, 214, 0.75);
}

.pot-foot__cols {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2rem 1.25rem 1rem;
  display: grid;
  gap: 1.5rem;
}

.pot-foot__dir {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.pot-foot__dir a {
  text-decoration: none;
  font-size: 0.92rem;
}

.pot-foot__copy {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1rem 1.25rem 1.4rem;
  font-size: 0.82rem;
  color: rgba(215, 220, 214, 0.65);
}

@media (min-width: 720px) {
  .menu-btn { display: none; }

  .nav {
    display: flex;
    flex-direction: row;
    width: auto;
    margin-left: auto;
    gap: 1rem;
  }

  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero__well { justify-content: flex-end; }

  .inner {
    grid-template-columns: minmax(0, 1fr) 14rem;
    align-items: start;
  }

  .pot-foot__cols {
    grid-template-columns: 1.2fr 1fr;
  }
}
