:root {
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --brand-blue: #4f7184;
  --brand-blue-deep: #365765;
  --brand-blue-mid: #7596a5;
  --brand-blue-soft: #eef4f6;
  --ink: #293b3d;
  --muted: #536866;
  --subtle: #788987;
  --line: #dde8e6;
  --white: #ffffff;
  --soft: #f5f9f8;
  --cream: #eef5f6;
  --sage: #5f8678;
  --sage-deep: #365e53;
  --sage-light: #deece6;
  --clay: var(--brand-blue-mid);
  --ruby: var(--sage);
  --lavender: #b9ced7;
  --deep: var(--brand-blue);
  --shadow: 0 18px 44px rgba(41, 59, 61, 0.09), 0 3px 10px rgba(41, 59, 61, 0.04);
}

html.inline-edit-mode [contenteditable="true"],
html.inline-edit-mode [contenteditable="plaintext-only"] {
  cursor: text;
  outline: 1px dashed transparent;
  outline-offset: 5px;
  transition: outline-color 160ms ease, background-color 160ms ease;
  white-space: pre-line;
}

html.inline-edit-mode [contenteditable="true"]:hover,
html.inline-edit-mode [contenteditable="plaintext-only"]:hover {
  outline-color: rgba(108, 150, 167, 0.5);
}

html.inline-edit-mode [contenteditable="true"]:focus,
html.inline-edit-mode [contenteditable="plaintext-only"]:focus {
  outline: 2px solid var(--clay);
  background: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "palt" 1;
  line-height: 1.75;
  letter-spacing: 0;
}

main {
  text-align: left;
}

main h1,
main h2,
main h3,
main h4,
main p,
main li,
main dt,
main dd,
main th,
main td {
  text-align: left;
}

body.admin-page {
  background: #f3f8f8;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 230, 229, 0.9);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 126px;
}

.logo img {
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.nav a {
  white-space: nowrap;
  transition: color 180ms ease;
}

html.inline-edit-mode .nav a[contenteditable="plaintext-only"] {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--brand-blue);
}

.shop-link,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--brand-blue);
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(780px, calc(100vh - 76px));
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 42, 36, 0.92) 0%, rgba(19, 57, 48, 0.76) 38%, rgba(26, 64, 53, 0.22) 67%, rgba(26, 64, 53, 0.02) 100%),
    url("hero-botanical-light.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, #f8fbfb 0%, #bdced6 27%, #deece6 55%, #7b9f92 78%, #4f7184 100%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(620px, 52vw);
  flex-direction: column;
  justify-content: center;
  padding: 92px 0 150px max(7vw, calc((100vw - 1180px) / 2));
}

.hero-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 0;
  max-width: 580px;
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1.42;
}

.hero h1 {
  color: var(--white);
}

.lead {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.9;
}

.nowrap {
  white-space: nowrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--brand-blue);
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand-blue);
}

.button:hover {
  border-color: var(--brand-blue-deep);
  background: var(--brand-blue-deep);
  transform: translateY(-1px);
}

.hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-blue);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.hero .button:hover {
  border-color: var(--brand-blue-soft);
  background: var(--brand-blue-soft);
  color: var(--brand-blue-deep);
}

.hero-word {
  position: absolute;
  right: clamp(30px, 6vw, 90px);
  bottom: 116px;
  z-index: 1;
  margin: 0;
  color: var(--brand-blue-deep);
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-size: 108px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  text-align: right;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.92), 0 0 34px rgba(255, 255, 255, 0.78);
}

.hero-meta {
  position: absolute;
  bottom: 8px;
  left: 0;
  z-index: 2;
  display: grid;
  width: min(900px, 72vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-left: max(7vw, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.hero-meta p {
  min-height: 90px;
  margin: 0;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 600;
}

.page-hero {
  position: relative;
  padding: 88px 7vw 70px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #f8fbfb 0%, #bdced6 27%, #deece6 55%, #7b9f92 78%, #4f7184 100%);
  content: "";
}

.page-hero .lead {
  max-width: 720px;
  color: var(--muted);
}

.page-hero-inner,
.section-inner,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.breadcrumb {
  margin: 0 0 28px;
  color: var(--subtle);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 12px;
}

section,
.section {
  padding: 104px 7vw;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(340px, 1.2fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  padding: 5px 9px;
  border: 1px solid rgba(62, 83, 164, 0.2);
  border-radius: 999px;
  background: var(--cream);
  color: var(--brand-blue-mid);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

#brands .eyebrow {
  border-color: rgba(79, 129, 116, 0.2);
  background: var(--sage-light);
  color: var(--sage-deep);
}

#news .eyebrow {
  border-color: rgba(65, 105, 91, 0.18);
  background: var(--sage-light);
  color: var(--sage-deep);
}

h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.5;
}

h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.section-copy,
.text-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.text-block .eyebrow {
  margin: 0 0 20px;
  color: var(--brand-blue-mid);
  font-size: 11px;
}

.thought-section {
  overflow: hidden;
  background: #f5f9f9;
}

.thought-head {
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(48px, 7vw, 92px);
  margin-bottom: 0;
}

.thought-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 34px;
  align-items: stretch;
}

.thought-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px;
}

.thought-statement {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.95;
}

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

.thought-point {
  position: relative;
  min-height: 132px;
  padding: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 42, 39, 0.07);
}

.thought-point:nth-child(1) {
  background: var(--brand-blue);
  color: var(--white);
}

.thought-point:nth-child(2) {
  background: var(--cream);
}

.thought-point:nth-child(3) {
  background: var(--sage-light);
}

.thought-point span {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.thought-point:nth-child(1) span {
  color: #d8e6eb;
}

.thought-point strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.thought-point:nth-child(1) strong {
  color: var(--white);
}

.thought-note {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--clay);
  color: var(--muted);
  font-size: 15px;
}

.thought-image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--line);
  background-image: url("thought-sprout.png");
  background-position: 21% center;
  background-size: cover;
}

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

.photo-panel {
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0)),
    linear-gradient(135deg, #eef7f8, #b9d7d0);
}

.photo-panel.botanical {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.02)),
    url("hero-botanical-light.png");
  background-position: center;
  background-size: cover;
}

.photo-panel.cordyceps-material {
  border: 0;
  background: url("cordyceps-material.jpg");
  background-position: center;
  background-size: cover;
}

.text-block p + p {
  margin-top: 18px;
}

.history-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.history-fact {
  min-width: 0;
  padding: 24px 20px 24px 0;
}

.history-fact + .history-fact {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.history-fact strong {
  display: block;
  color: var(--brand-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.history-fact strong span {
  display: inline;
  margin-left: 2px;
  font-size: 0.55em;
}

.history-fact > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}

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

.brand-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover {
  box-shadow: 0 24px 54px rgba(16, 42, 39, 0.14), 0 4px 12px rgba(16, 42, 39, 0.05);
  transform: translateY(-4px);
}

.brand-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  aspect-ratio: 4 / 3;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background-image: url("cordyceps-product.jpg");
  background-position: center 45%;
  background-size: cover;
}

.brand-image.luzi {
  align-items: flex-end;
  justify-content: flex-start;
  background-image: url("luzi-product.jpg");
  background-position: center;
  background-size: cover;
}

.brand-image.wakanto {
  background-image: url("wakanto-product.jpg");
  background-position: center;
  background-size: cover;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 0;
  background: transparent;
}

.brand-mark img {
  max-width: 160px;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.32));
}

.brand-image.wakanto .brand-mark img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.32));
}

.brand-image.luzi .brand-mark {
  min-width: 0;
  min-height: 0;
}

.brand-image.luzi .brand-mark img {
  max-width: 118px;
  max-height: none;
  filter: none;
}

.brand-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.brand-label {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sage-light);
  color: var(--sage-deep);
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.brand-card:nth-child(1) .brand-label {
  border-color: rgba(79, 113, 132, 0.18);
  background: var(--cream);
  color: var(--brand-blue-deep);
}

.brand-card:nth-child(2) .brand-label {
  border-color: rgba(79, 113, 132, 0.2);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.brand-card:nth-child(3) .brand-label {
  border-color: rgba(95, 134, 120, 0.2);
  background: var(--sage-light);
  color: var(--sage-deep);
}

.brand-logo-inline {
  margin: 0 0 14px;
}

.brand-logo-inline img {
  width: 92px;
  height: auto;
  filter: none;
}

.brand-body p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.brand-card .brand-body .brand-label {
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 12px;
  border-width: 0 0 3px;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1.25;
}

.brand-body h3 {
  font-size: 25px;
  line-height: 1.45;
}

.brand-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 14px;
  width: 100%;
  margin-top: auto;
}

.brand-actions .button {
  width: 100%;
  white-space: nowrap;
}

.promise-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  background: transparent;
}

.philosophy-section {
  background: var(--brand-blue-deep);
  color: var(--white);
}

.philosophy-section .eyebrow {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-blue-deep);
}

.philosophy-section .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 981px) {
  #brands .section-head,
  .philosophy-section .section-head,
  #news .section-head {
    align-items: end;
  }
}

.philosophy-section .promise-grid {
  gap: 18px;
}

.promise,
.info-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.philosophy-section .promise {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 44, 50, 0.16);
}

.philosophy-section .promise:nth-child(2) {
  background: var(--white);
}

.philosophy-section .promise:nth-child(3) {
  background: var(--white);
}

.promise-image {
  aspect-ratio: 306 / 240;
  overflow: hidden;
}

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

.promise-copy {
  flex: 1;
  padding: 24px 26px 28px;
}

.philosophy-section .promise-num {
  color: var(--brand-blue-mid);
  font-size: 38px;
  line-height: 1;
}

.philosophy-section .promise h3 {
  color: var(--ink);
  font-size: 24px;
}

.philosophy-section .promise p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.promise-num {
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 18px;
}

.promise h3 {
  margin-top: 20px;
  font-size: 21px;
}

.promise p,
.info-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.news-item {
  display: grid;
  grid-template-columns: 140px 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  transition: color 180ms ease, padding 180ms ease;
}

.news-item:hover {
  padding-right: 14px;
  padding-left: 14px;
  color: var(--ink);
}

.news-list--with-thumbnails .news-item {
  grid-template-columns: 180px 140px 116px 1fr;
  align-items: center;
}

.news-thumbnail {
  width: 180px;
  height: 112px;
  object-fit: contain;
  background: #fff;
}

.news-category {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 500;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.table th,
.table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  width: 180px;
  color: var(--brand-blue);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  text-align: left;
}

.article {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--subtle);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 13px;
}

.article h1 {
  margin: 0 0 38px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.55;
}

.article p {
  color: var(--muted);
  font-size: 16px;
}

.article-visual {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.article-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body p {
  margin: 0;
  white-space: pre-line;
  line-height: 2;
}

.sdgs-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.sdgs-intro-image {
  aspect-ratio: 768 / 548;
  overflow: hidden;
  border-radius: 8px;
}

.sdgs-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sdgs-intro-copy h2,
.sdgs-goal-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.5;
}

.sdgs-intro-copy > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.sdgs-goal-section {
  background: var(--brand-blue-soft);
}

.sdgs-goal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.sdgs-goal-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.sdgs-action-list {
  margin-top: 54px;
  border-top: 1px solid rgba(79, 113, 132, 0.28);
}

.sdgs-action {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(79, 113, 132, 0.28);
}

.sdgs-action span {
  color: var(--brand-blue);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
}

.sdgs-action p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.footer-cta {
  background: var(--sage-deep);
  color: var(--white);
}

.footer-cta .section-copy {
  color: rgba(255, 255, 255, 0.86);
}

.footer-cta .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-blue);
}

.footer-cta .button.secondary {
  background: transparent;
  color: var(--white);
}

.site-footer {
  padding: 38px 7vw;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 13px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  max-width: 1180px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.footer-logo img {
  width: 126px;
  height: auto;
}

.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}

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

.admin-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-card-head,
.admin-form {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-form {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px 22px;
}

.admin-form label {
  color: var(--sage);
  font-weight: 700;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.admin-form textarea {
  min-height: 160px;
  resize: vertical;
}

.admin-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .section-head,
  .story-grid,
  .sdgs-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(680px, 82vw);
    padding: 86px 24px 190px;
  }

  .hero h1,
  .page-title {
    font-size: 46px;
    line-height: 1.35;
  }

  .article h1 {
    font-size: 24px;
  }

  .lead,
  .section-copy,
  .text-block p,
  .brand-body p,
  .promise p,
  .info-card p,
  .news-item,
  .article p {
    font-size: 16px;
    line-height: 1.9;
  }

  .thought-panel {
    grid-template-columns: 1fr;
  }

  .thought-image {
    order: -1;
    min-height: 280px;
  }

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

  .thought-head {
    gap: 34px;
  }

  .thought-statement {
    font-size: 20px;
  }

  .button {
    min-height: 48px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .hero-word {
    right: 24px;
    bottom: 136px;
    font-size: 78px;
  }

  h2 {
    font-size: 36px;
  }

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

  section,
  .section,
  .page-hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand-grid,
  .promise-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .news-list--with-thumbnails .news-item {
    grid-template-columns: 112px 1fr;
    gap: 8px 16px;
  }

  .news-list--with-thumbnails .news-thumbnail {
    grid-row: span 3;
    width: 112px;
    height: 82px;
  }

  .table th,
  .table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .footer-inner,
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    padding: 14px 18px;
  }

  .logo img {
    width: 105px;
  }

  .nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

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

  .hero {
    min-height: 690px;
    align-items: flex-start;
    background-position: 68% center;
  }

  .hero-copy {
    width: 100%;
    padding: 70px 22px 210px;
  }

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

  .page-title {
    font-size: 36px;
  }

  .article h1 {
    font-size: 22px;
  }

  .hero .nowrap {
    white-space: normal;
  }

  .lead {
    max-width: 92%;
    font-size: 14px;
  }

  .hero .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button {
    width: fit-content;
  }

  .sdgs-goal-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .sdgs-goal-image {
    width: 120px;
    height: 120px;
  }

  .sdgs-intro-copy h2,
  .sdgs-goal-head h2 {
    font-size: 34px;
  }

  .sdgs-action {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .sdgs-action p {
    font-size: 16px;
  }

  .hero-word {
    right: 20px;
    bottom: 150px;
    font-size: 58px;
  }

  .hero-meta p {
    min-height: 104px;
    padding: 16px 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  section,
  .section,
  .page-hero {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-head {
    gap: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .thought-points {
    gap: 12px;
  }

  .thought-point {
    min-height: 0;
    padding: 24px;
  }

  .history-facts {
    grid-template-columns: 1fr;
  }

  .history-fact {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: baseline;
    padding: 20px 0;
  }

  .history-fact + .history-fact {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .history-fact > span {
    margin-top: 0;
  }

  .history-fact strong {
    font-size: 32px;
  }

  .philosophy-section .promise {
    min-height: 0;
    padding: 28px 24px;
  }

  .brand-card {
    min-height: 0;
  }

  .brand-body {
    padding: 24px;
  }
}
