:root {
  color-scheme: light;
  --forest: #194c3a;
  --forest-deep: #123c2f;
  --forest-black: #0b2c22;
  --coral: #df7656;
  --coral-deep: #c95d3f;
  --sky: #b9dce3;
  --sky-pale: #e6f2f3;
  --mustard: #d8a844;
  --paper: #f8f8f4;
  --white: #ffffff;
  --ink: #17231f;
  --muted: #66716d;
  --line: #d9dfdb;
  --line-dark: rgba(255, 255, 255, 0.16);
  --danger: #a43b2b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(11, 44, 34, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 78px;
  background: rgba(248, 248, 244, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1240px, calc(100% - 64px));
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--coral);
  border-radius: 50%;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
}

.brand-note {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 28px 0 26px;
  color: #48534f;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

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

.header-inner > .button {
  justify-self: end;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-compact {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-header {
  background: var(--forest-deep);
  color: var(--white);
}

.button-header:hover,
.button-dark:hover {
  background: var(--forest);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

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

.button-dark {
  background: var(--forest-deep);
  color: var(--white);
}

.button-full {
  width: 100%;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--sky);
}

.hero {
  position: relative;
  isolation: isolate;
  height: min(760px, calc(100svh - 112px));
  min-height: 620px;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-visual,
.hero-visual img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -2;
  width: 54%;
  background: rgba(11, 44, 34, 0.62);
}

.hero-inner {
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.hero-content {
  width: min(540px, 47%);
  padding-bottom: 14px;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 700;
  line-height: 0.94;
}

.hero-lead {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.hero-status span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--mustard);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 168, 68, 0.18);
}

.journal-section {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 104px 0 112px;
}

.journal-section-head {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: end;
  gap: 80px;
}

.journal-heading h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.06;
}

.journal-intro {
  max-width: 610px;
  padding-bottom: 4px;
}

.journal-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.journal-all-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.journal-all-link:hover { text-decoration: underline; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

.journal-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.journal-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e8e3;
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.journal-card:hover .journal-card-media img { transform: scale(1.018); }

.journal-card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.journal-meta {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 14px 0 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}

.journal-card-copy > p:not(.journal-meta) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.journal-card-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 800;
}

.journal-card-copy b,
.journal-topic-list b,
.category-link b { font-size: 15px; }

.journal-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.journal-topic-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest-deep);
  text-decoration: none;
}

.journal-topic-list span {
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.journal-topic-list strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.28;
}

.journal-topic-list a:hover strong { text-decoration: underline; }

.maintenance-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr) auto;
  align-items: center;
  gap: 48px;
  padding: 34px max(32px, calc((100% - 1240px) / 2));
  background: var(--mustard);
  color: var(--forest-black);
}

.maintenance-band > div { display: grid; gap: 4px; }
.maintenance-code { font-size: 9px; font-weight: 850; text-transform: uppercase; }
.maintenance-band strong { font-family: var(--serif); font-size: 22px; }
.maintenance-band p { margin: 0; color: rgba(11, 44, 34, 0.75); font-size: 13px; line-height: 1.6; }
.maintenance-band a { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }

.service-strip {
  background: var(--sky-pale);
  border-bottom: 1px solid #cfdee0;
}

.service-strip-inner {
  width: min(1240px, calc(100% - 64px));
  min-height: 106px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

.strip-heading,
.strip-item {
  min-width: 0;
  padding: 24px 34px;
}

.strip-heading {
  padding-left: 0;
}

.strip-heading > p {
  margin: 0;
}

.strip-kicker {
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.strip-heading > p:last-child {
  margin-top: 5px;
  color: #53645e;
  font-size: 14px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid #c9dadd;
}

.strip-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--white);
  border: 1px solid #cbdadd;
  border-radius: 50%;
  color: var(--forest);
}

.strip-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strip-item div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.strip-item strong {
  color: var(--forest-deep);
  font-size: 14px;
}

.strip-item span:last-child {
  overflow: hidden;
  color: #65736e;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-section {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 112px 0 124px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 48px;
}

.section-heading h2,
.care-heading h2,
.order-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.03;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  min-width: 0;
  grid-column: span 5;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.category-featured {
  grid-column: span 7;
}

.category-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
  align-items: stretch;
  margin-top: 2px;
  background: var(--sky-pale);
}

.category-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e6df;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card:hover .category-media img {
  transform: scale(1.018);
}

.category-wide .category-media {
  aspect-ratio: 16 / 8.4;
}

.category-copy {
  padding: 26px 28px 30px;
}

.category-wide .category-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.category-index {
  margin: 0 0 12px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.category-copy h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
}

.category-copy > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 800;
}

.category-card:hover .category-link { text-decoration: underline; }

.care-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 96px;
  padding: 104px max(32px, calc((100% - 1240px) / 2));
  background: var(--forest-deep);
  color: var(--white);
}

.care-heading h2 {
  color: var(--white);
}

.care-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.care-points article {
  min-width: 0;
  padding: 4px 28px 0;
  border-left: 1px solid var(--line-dark);
}

.care-points article:first-child {
  padding-left: 0;
  border-left: 0;
}

.care-points article:last-child {
  padding-right: 0;
}

.care-points span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

.care-points h3 {
  margin: 54px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.care-points p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 88px;
  padding: 96px max(32px, calc((100% - 1240px) / 2)) 104px;
  background: var(--sky-pale);
}

.faq-heading h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.05;
}

.faq-heading > p:last-child {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid #bfd2d4;
}

.faq-list details {
  border-bottom: 1px solid #bfd2d4;
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 3px;
  color: var(--coral-deep);
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 500;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.faq-list details a { color: var(--forest-deep); font-weight: 700; }

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 54px;
  padding: 90px max(32px, calc((100% - 1240px) / 2));
  background: var(--coral);
  color: var(--forest-black);
}

.order-section .eyebrow {
  color: var(--forest-deep);
}

.order-section > div > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(11, 44, 34, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.order-section .button {
  min-width: 210px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 0.9fr;
  gap: 42px;
  padding: 64px max(32px, calc((100% - 1240px) / 2)) 30px;
  background: var(--forest-black);
  color: rgba(255, 255, 255, 0.68);
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-note {
  color: rgba(255, 255, 255, 0.56);
}

.footer-main > p {
  margin: 17px 0 0;
  font-size: 14px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding-top: 4px;
}

.footer-nav > span,
.footer-contact > span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav button,
.footer-contact a {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.footer-nav a:hover,
.footer-nav button:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact small {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  line-height: 1.6;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.footer-legal p { margin: 0; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: rgba(255, 255, 255, 0.64); text-decoration: none; }
.footer-legal a:hover { color: var(--white); text-decoration: underline; }

.cookie-notice[hidden] { display: none; }

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: min(440px, calc(100% - 32px));
  padding: 18px;
  background: var(--white);
  border: 1px solid #9eada6;
  border-radius: 6px;
  box-shadow: 0 16px 52px rgba(11, 44, 34, 0.2);
  color: var(--ink);
}

.cookie-notice p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-notice strong { color: var(--forest-deep); }
.cookie-notice > div { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-top: 15px; }
.cookie-notice a { color: var(--forest-deep); font-size: 12px; font-weight: 750; }
.cookie-notice button { min-height: 38px; padding: 0 16px; background: var(--forest-deep); border: 0; border-radius: 4px; color: var(--white); font-weight: 750; cursor: pointer; }

.order-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: auto;
  background: transparent;
  border: 0;
  color: var(--ink);
}

.order-dialog::backdrop {
  background: rgba(5, 22, 17, 0.78);
  backdrop-filter: blur(3px);
}

.dialog-shell {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dialog-accent {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-accent-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: var(--white);
}

.dialog-accent-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dialog-content {
  position: relative;
  padding: 42px 44px 38px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-deep);
  cursor: pointer;
}

.dialog-close {
  position: absolute;
  top: 22px;
  right: 24px;
}

.dialog-heading {
  padding-right: 54px;
}

.dialog-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.08;
}

.dialog-heading > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
}

#order-form {
  margin-top: 30px;
}

#order-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.order-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 12px;
}

#order-code {
  min-width: 0;
  width: 100%;
  height: 58px;
  padding: 0 17px;
  background: var(--white);
  border: 1px solid #aebbb4;
  border-radius: 6px;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 20px;
  text-transform: uppercase;
}

#order-code::placeholder {
  color: #99a39f;
}

.paste-code-button {
  min-width: 126px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  background: #e8efec;
  border: 1px solid #aebbb4;
  border-radius: 6px;
  color: var(--forest-deep);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.paste-code-button:hover {
  background: #dce8e3;
}

.paste-code-button:focus-visible {
  outline: 3px solid rgba(63, 141, 174, 0.35);
  outline-offset: 2px;
}

.paste-code-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-message {
  min-height: 22px;
  margin: 11px 0 0;
  color: var(--danger);
  font-size: 13px;
}

.order-result[hidden] {
  display: none;
}

.result-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 48px;
}

.result-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--sky);
  border-radius: 50%;
  color: var(--forest-deep);
}

.result-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-kicker {
  margin: 0;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.order-result h3 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.result-link {
  min-height: 104px;
  margin-bottom: 12px;
  padding: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.qr-wrap {
  width: 190px;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

#qr-canvas {
  display: block;
  width: 170px;
  height: 170px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-shade {
    width: 66%;
  }

  .hero-content {
    width: min(540px, 62%);
  }

  .journal-section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .journal-card:last-child { grid-column: 1 / -1; }

  .journal-card:last-child .journal-card-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }

  .maintenance-band {
    grid-template-columns: 1fr auto;
    gap: 20px 36px;
  }

  .maintenance-band > p { grid-column: 1 / -1; grid-row: 2; }

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

  .strip-heading {
    grid-column: 1 / -1;
    padding: 20px 0 14px;
    border-bottom: 1px solid #c9dadd;
  }

  .strip-item {
    padding: 18px 0;
    border-left: 0;
  }

  .strip-item:last-child {
    padding-left: 28px;
    border-left: 1px solid #c9dadd;
  }

  .category-card,
  .category-featured {
    grid-column: span 6;
  }

  .category-wide {
    grid-column: 1 / -1;
  }

  .care-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header,
  .header-inner {
    min-height: 68px;
  }

  .header-inner {
    width: calc(100% - 32px);
    gap: 16px;
  }

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

  .brand-mark svg {
    width: 22px;
    height: 22px;
  }

  .brand-name {
    font-size: 25px;
  }

  .button-header {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .button-header span {
    display: none;
  }

  .hero {
    height: min(720px, calc(100svh - 68px));
    min-height: 590px;
    display: flex;
    align-items: end;
  }

  .hero-visual img {
    object-position: 62% center;
  }

  .hero-shade {
    inset: auto 0 0;
    width: 100%;
    height: 63%;
    background: rgba(11, 44, 34, 0.72);
  }

  .hero-inner {
    width: calc(100% - 32px);
    height: auto;
    margin-bottom: 38px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

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

  .hero-lead {
    margin-top: 18px;
    font-size: 30px;
  }

  .hero-copy {
    max-width: 360px;
    margin-top: 15px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-strip-inner,
  .catalog-section,
  .journal-section {
    width: calc(100% - 32px);
  }

  .journal-section {
    padding: 72px 0 78px;
  }

  .journal-heading h2 { font-size: 38px; }

  .journal-section-head { gap: 24px; }

  .journal-intro p { font-size: 14px; }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .journal-card:last-child { grid-column: auto; }

  .journal-card:last-child .journal-card-link { display: flex; }

  .journal-card-copy { padding: 21px 20px 23px; }

  .journal-card h3 { font-size: 24px; }

  .journal-topic-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .journal-topic-list a {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px 0;
  }

  .journal-topic-list strong { font-size: 16px; }

  .maintenance-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 16px;
  }

  .maintenance-band > p { grid-column: auto; grid-row: auto; }

  .maintenance-band a { width: max-content; }

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

  .strip-heading {
    grid-column: auto;
    padding: 22px 0;
  }

  .strip-item,
  .strip-item:last-child {
    padding: 17px 0;
    border-left: 0;
    border-top: 1px solid #c9dadd;
  }

  .strip-heading + .strip-item {
    border-top: 0;
  }

  .catalog-section {
    padding: 78px 0 86px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .care-heading h2,
  .order-section h2 {
    font-size: 39px;
  }

  .category-grid {
    gap: 18px;
  }

  .category-card,
  .category-featured,
  .category-wide {
    grid-column: 1 / -1;
    display: block;
  }

  .category-media,
  .category-wide .category-media {
    aspect-ratio: 5 / 4;
  }

  .category-copy,
  .category-wide .category-copy {
    display: block;
    padding: 23px 22px 26px;
  }

  .category-copy h3 {
    font-size: 25px;
  }

  .care-section {
    gap: 52px;
    padding: 74px 16px 78px;
  }

  .faq-section {
    gap: 34px;
    padding: 72px 16px 78px;
  }

  .faq-heading h2 { font-size: 39px; }

  .faq-list summary {
    padding: 20px 38px 20px 0;
    font-size: 19px;
  }

  .faq-list details p { margin-right: 0; }

  .care-points {
    grid-template-columns: 1fr;
  }

  .care-points article,
  .care-points article:first-child,
  .care-points article:last-child {
    padding: 24px 0 28px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .care-points article:first-child {
    border-top: 0;
  }

  .care-points h3 {
    margin-top: 14px;
  }

  .order-section {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding: 68px 16px;
  }

  .order-section .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 18px 28px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 12px;
  }

  .cookie-notice { right: 16px; bottom: 16px; }

  .order-dialog {
    width: min(100% - 20px, 720px);
    max-height: calc(100svh - 20px);
  }

  .dialog-accent {
    min-height: 62px;
    padding: 12px 18px;
  }

  .dialog-accent-mark {
    width: 34px;
    height: 34px;
  }

  .dialog-content {
    padding: 32px 20px 24px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
  }

  .dialog-heading h2 {
    font-size: 31px;
  }

  .order-code-row {
    grid-template-columns: 1fr;
  }

  .paste-code-button {
    width: 100%;
    height: 50px;
  }

  .result-layout {
    grid-template-columns: 1fr;
  }

  .qr-wrap {
    width: 190px;
    min-height: 190px;
    margin: 0 auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
