:root {
  --ink: #10271d;
  --ink-soft: #345044;
  --forest: #10271d;
  --forest-2: #18392b;
  --paper: #f4f4ed;
  --white: #fffef8;
  --line: rgba(16, 39, 29, 0.16);
  --line-light: rgba(255, 254, 248, 0.2);
  --glass: rgba(248, 249, 242, 0.76);
  --green: #80ad69;
  --lime: #c7dd8b;
  --rust: #c95836;
  --blue: #3e7896;
  --yellow: #e9bd58;
  --muted: #65776d;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", Georgia, serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --radius: 8px;
  --shadow: 0 18px 54px rgba(8, 31, 21, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

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

.app-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 10px 0 18px;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(8, 31, 21, 0.11);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  transform: translateX(-50%);
}

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

.brand-symbol {
  position: relative;
  width: 30px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 39, 29, 0.18);
  border-radius: 50% 50% 44% 44%;
  background: rgba(255, 254, 248, 0.64);
}

.brand-symbol::before,
.brand-symbol span {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 80% 0 80% 0;
  background: var(--green);
  transform: rotate(-18deg) translate(-2px, -1px);
}

.brand-symbol span {
  width: 8px;
  height: 13px;
  background: var(--rust);
  transform: rotate(34deg) translate(4px, 4px);
}

.brand-word {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.nav-link {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nav-link svg {
  width: 15px;
  height: 15px;
}

.nav-link:hover,
.nav-link:focus-visible,
.explore-trigger[aria-expanded="true"] {
  background: rgba(16, 39, 29, 0.08);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 254, 248, 0.62);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
  outline: none;
}

.header-contact {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--forest);
  background: var(--lime);
  border-color: var(--lime);
  outline: none;
}

.header-contact svg {
  width: 17px;
  height: 17px;
}

.menu-trigger {
  display: none;
}

.explore-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(900px, calc(100vw - 36px));
  display: none;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 254, 248, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.explore-menu.open {
  display: grid;
}

.explore-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.explore-intro strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.mini-label,
.article-category,
.suggestions-label,
.explore-title {
  display: block;
  color: var(--rust);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.explore-groups > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explore-title {
  margin-bottom: 5px;
  color: var(--muted);
}

.explore-groups a {
  font-size: 14px;
  font-weight: 600;
}

.explore-groups a:hover {
  color: var(--rust);
}

.explore-index {
  grid-column: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.explore-index svg {
  width: 16px;
  height: 16px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 18, 0.46);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: var(--white);
  background: var(--forest);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  animation: slide-in 280ms ease-out both;
}

@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu-head .icon-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-light);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.mobile-menu nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 22px;
}

.mobile-menu nav svg {
  width: 18px;
  height: 18px;
}

.mobile-contact {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  color: var(--forest);
  background: var(--lime);
  border-radius: 6px;
  font-weight: 800;
}

.search-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 31, 21, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.search-dialog::backdrop {
  background: transparent;
}

.search-dialog[open] {
  display: grid;
  place-items: start center;
}

.search-dialog-shell {
  width: min(760px, calc(100% - 32px));
  margin-top: 96px;
  padding: 26px;
  background: rgba(255, 254, 248, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}

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

.search-dialog-head strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 28px;
}

.global-search {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  background: var(--white);
}

.global-search input {
  min-width: 0;
  height: 60px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  font-size: 18px;
}

kbd {
  padding: 4px 7px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
}

.search-suggestions {
  display: grid;
  margin-top: 22px;
}

.suggestions-label {
  margin-bottom: 8px;
  color: var(--muted);
}

.search-suggestions a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.search-suggestions a:hover {
  color: var(--rust);
}

.search-suggestions svg {
  width: 17px;
  height: 17px;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 42px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 26, 17, 0.88) 0%, rgba(8, 26, 17, 0.7) 36%, rgba(8, 26, 17, 0.15) 68%, rgba(8, 26, 17, 0.04) 100%),
    linear-gradient(180deg, rgba(8, 26, 17, 0.12) 60%, rgba(8, 26, 17, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 78px auto 112px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 750;
}

.hero-kicker span {
  width: 26px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: 138px;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 254, 248, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.answer-search {
  width: min(650px, 100%);
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 7px 7px 7px 17px;
  color: var(--ink);
  background: rgba(255, 254, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.answer-search input {
  min-width: 0;
  height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  font-size: 17px;
}

.answer-search button {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--rust);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.answer-search button:hover,
.answer-search button:focus-visible {
  color: var(--ink);
  background: var(--lime);
  outline: none;
}

.answer-search button svg {
  width: 17px;
  height: 17px;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: rgba(255, 254, 248, 0.68);
  font-size: 12px;
}

.quick-searches a {
  padding-bottom: 1px;
  color: rgba(255, 254, 248, 0.92);
  border-bottom: 1px solid rgba(255, 254, 248, 0.42);
}

.intent-dock {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: min(1180px, calc(100% - 28px));
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--ink);
  background: rgba(249, 249, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -8px 30px rgba(8, 31, 21, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.intent-dock a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.intent-dock a:last-child {
  border-right: 0;
}

.intent-dock a:hover,
.intent-dock a:focus-visible {
  background: var(--lime);
  outline: none;
}

.intent-dock a:nth-child(2):hover,
.intent-dock a:nth-child(2):focus-visible {
  background: #d5e9f1;
}

.intent-dock a:nth-child(3):hover,
.intent-dock a:nth-child(3):focus-visible {
  background: #f3dfa7;
}

.intent-dock a:nth-child(4):hover,
.intent-dock a:nth-child(4):focus-visible {
  background: #efc5b9;
}

.intent-dock svg {
  flex: 0 0 auto;
  color: var(--rust);
}

.intent-dock span {
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.intent-dock small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.weather-strip {
  padding: 26px 24px;
  background: var(--yellow);
  border-bottom: 1px solid var(--line);
}

.weather-strip > div {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: auto 130px 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.weather-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 39, 29, 0.25);
  border-radius: 50%;
}

.weather-place {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.weather-strip p {
  margin: 0;
  color: rgba(16, 39, 29, 0.8);
  font-size: 14px;
}

.weather-strip a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.weather-strip a svg,
.text-link svg {
  width: 16px;
  height: 16px;
}

.answer-hub,
.article-section {
  padding: 96px max(24px, calc((100% - 1180px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2,
.encyclopedia-head h2,
.service-copy h2 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.answer-console {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.answer-tabs button {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.answer-tabs button:last-child {
  border-right: 0;
}

.answer-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--forest);
}

.answer-tabs button:hover:not([aria-selected="true"]) {
  color: var(--ink);
  background: rgba(16, 39, 29, 0.06);
}

.answer-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 330px;
}

.answer-prompt {
  display: flex;
  gap: 22px;
  padding: 46px 38px;
  border-right: 1px solid var(--line);
}

.prompt-number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.answer-prompt h3 {
  max-width: 360px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

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

.answer-options a {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
}

.answer-options a:nth-child(2n) {
  border-right: 0;
}

.answer-options a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.answer-options a:hover,
.answer-options a:focus-visible {
  background: var(--lime);
  outline: none;
}

.answer-options svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.encyclopedia-band {
  padding: 96px max(24px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--forest);
}

.encyclopedia-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.mini-label.light {
  color: var(--yellow);
}

.encyclopedia-head p {
  margin: 0;
  color: rgba(255, 254, 248, 0.68);
}

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

.plant-index {
  border-top: 1px solid var(--line-light);
}

.plant-entry {
  min-height: 104px;
  display: grid;
  grid-template-columns: 54px 1.4fr 0.8fr 0.8fr 0.8fr 74px 24px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.plant-entry:hover,
.plant-entry:focus-visible {
  padding: 0 14px;
  color: var(--ink);
  background: var(--lime);
  outline: none;
}

.plant-letter {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 40px;
}

.plant-entry:hover .plant-letter {
  color: var(--rust);
}

.plant-name strong,
.plant-name em {
  display: block;
}

.plant-name strong {
  font-family: var(--serif);
  font-size: 22px;
}

.plant-name em {
  margin-top: 3px;
  color: rgba(255, 254, 248, 0.58);
  font-size: 12px;
}

.plant-entry:hover .plant-name em {
  color: var(--ink-soft);
}

.plant-family {
  color: rgba(255, 254, 248, 0.58);
  font-family: var(--mono);
  font-size: 11px;
}

.plant-entry:hover .plant-family {
  color: var(--ink-soft);
}

.care-reading small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 254, 248, 0.52);
  font-size: 10px;
}

.plant-entry:hover .care-reading small {
  color: var(--ink-soft);
}

.care-reading b {
  display: flex;
  gap: 4px;
}

.care-reading i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.care-reading i.off {
  background: rgba(255, 254, 248, 0.18);
}

.plant-entry:hover .care-reading i.off {
  background: rgba(16, 39, 29, 0.16);
}

.plant-difficulty {
  width: 70px;
  padding: 5px 7px;
  border-radius: 999px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.plant-difficulty.easy {
  color: var(--ink);
  background: var(--lime);
}

.plant-difficulty.medium {
  color: var(--ink);
  background: var(--yellow);
}

.plant-entry:hover .plant-difficulty {
  background: var(--white);
}

.entry-arrow {
  width: 17px;
  height: 17px;
}

.article-heading {
  grid-template-columns: 1fr auto;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-article {
  min-height: 460px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 40px;
  color: var(--white);
  background: var(--blue);
  border-right: 1px solid var(--line);
}

.featured-number,
.article-number {
  align-self: start;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.featured-article .article-category {
  color: rgba(255, 254, 248, 0.7);
}

.featured-article h3 {
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.featured-article p {
  max-width: 570px;
  margin: 0 0 18px;
  color: rgba(255, 254, 248, 0.76);
}

.reading-time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.featured-article .reading-time {
  color: rgba(255, 254, 248, 0.64);
}

.round-link {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--yellow);
  outline: none;
}

.article-list {
  display: grid;
  grid-auto-rows: minmax(136px, 1fr);
}

.article-list article {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.article-list article:last-child {
  border-bottom: 0;
}

.article-list article:hover {
  background: var(--white);
}

.article-list .article-category {
  color: var(--rust);
}

.article-list h3 {
  margin: 7px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
}

.article-list svg {
  width: 17px;
  height: 17px;
}

.service-band {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  color: var(--white);
  background: var(--rust);
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px max(28px, calc((100vw - 1180px) / 2));
}

.service-copy .mini-label {
  color: rgba(255, 254, 248, 0.68);
}

.service-copy h2 {
  max-width: 720px;
}

.service-copy p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 254, 248, 0.78);
  font-size: 17px;
}

.service-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.service-button:hover,
.service-button:focus-visible {
  background: var(--lime);
  outline: none;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--forest);
}

.service-details span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 20px;
}

.service-details span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-details svg {
  color: var(--yellow);
}

.site-footer {
  padding: 72px max(24px, calc((100% - 1180px) / 2)) 24px;
  color: var(--white);
  background: #091b13;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-bottom: 60px;
}

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

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 254, 248, 0.54);
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 8px;
  color: rgba(255, 254, 248, 0.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 254, 248, 0.74);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 254, 248, 0.4);
  border-top: 1px solid var(--line-light);
  font-size: 11px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

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

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

  .header-actions {
    justify-self: end;
  }

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

  .intent-dock a:nth-child(2) {
    border-right: 0;
  }

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

  .hero {
    min-height: min(840px, calc(100svh - 24px));
  }

  .hero-content {
    margin-bottom: 210px;
  }

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

  .plant-entry {
    grid-template-columns: 50px 1.3fr 0.7fr 0.7fr 70px 24px;
  }

  .plant-family {
    display: none;
  }
}

@media (max-width: 760px) {
  .app-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 58px;
    padding-left: 12px;
  }

  .brand-word {
    font-size: 21px;
  }

  .brand-symbol {
    width: 28px;
    height: 30px;
  }

  .header-contact {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .header-contact span {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

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

  .hero {
    min-height: min(820px, calc(100svh - 18px));
    align-items: flex-start;
  }

  .hero > img {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 26, 17, 0.84) 0%, rgba(8, 26, 17, 0.46) 54%, rgba(8, 26, 17, 0.86) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 110px auto 224px;
  }

  .hero h1 {
    font-size: 54px;
    overflow-wrap: break-word;
  }

  .hero-summary {
    max-width: 420px;
    margin-top: 18px;
    font-size: 16px;
  }

  .answer-search {
    min-height: 60px;
    grid-template-columns: auto 1fr 50px;
    margin-top: 26px;
    padding: 5px 5px 5px 13px;
  }

  .answer-search input {
    height: 46px;
    font-size: 15px;
  }

  .answer-search button {
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .quick-searches {
    display: none;
  }

  .intent-dock {
    min-height: 192px;
  }

  .intent-dock a {
    gap: 9px;
    padding: 14px 12px;
  }

  .intent-dock span {
    font-size: 13px;
  }

  .intent-dock small {
    font-size: 9px;
  }

  .weather-strip > div {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .weather-place {
    font-size: 18px;
  }

  .weather-strip p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .weather-strip a {
    font-size: 0;
  }

  .answer-hub,
  .article-section,
  .encyclopedia-band {
    padding: 72px 20px;
  }

  .section-heading,
  .encyclopedia-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .encyclopedia-head h2,
  .service-copy h2 {
    font-size: 48px;
  }

  .answer-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .answer-tabs::-webkit-scrollbar {
    display: none;
  }

  .answer-tabs button {
    min-width: max-content;
    min-height: 54px;
    padding: 10px 16px;
  }

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

  .answer-prompt {
    min-height: 190px;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .answer-prompt h3 {
    font-size: 34px;
  }

  .answer-options a {
    min-height: 88px;
    padding: 18px;
    font-size: 18px;
  }

  .encyclopedia-head .text-link {
    width: max-content;
  }

  .plant-entry {
    min-height: 96px;
    grid-template-columns: 36px 1fr 58px 20px;
    gap: 10px;
  }

  .plant-letter {
    font-size: 30px;
  }

  .plant-name strong {
    font-size: 18px;
  }

  .plant-family,
  .care-reading {
    display: none;
  }

  .plant-difficulty {
    width: 58px;
    font-size: 9px;
  }

  .article-heading .text-link {
    width: max-content;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-article {
    min-width: 0;
    min-height: 410px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 15px;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-article > div {
    min-width: 0;
  }

  .featured-article h3 {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  .featured-article p {
    font-size: 14px;
  }

  .round-link {
    width: 44px;
    height: 44px;
    grid-column: 2;
    justify-self: start;
  }

  .article-list article {
    min-width: 0;
    padding: 24px 16px;
  }

  .article-list h3 {
    font-size: 21px;
  }

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

  .service-copy {
    padding: 72px 20px;
  }

  .service-details {
    min-height: 340px;
  }

  .service-details span {
    font-size: 16px;
  }

  .site-footer {
    padding: 60px 20px 24px;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }

  .search-dialog-shell {
    margin-top: 70px;
    padding: 18px;
  }

  .search-dialog-head strong {
    font-size: 23px;
  }

  .global-search {
    min-height: 58px;
  }

  .global-search input {
    height: 52px;
    font-size: 15px;
  }

  .global-search kbd {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand {
    gap: 7px;
  }

  .brand-word {
    font-size: 19px;
  }

  .header-actions .search-trigger {
    display: inline-grid;
  }

  .header-contact {
    display: none;
  }

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

  .answer-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
  }

  .answer-tabs button {
    min-width: 0;
    padding: 9px 6px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
  }

  .answer-tabs button svg {
    display: none;
  }

  .answer-options {
    grid-template-columns: 1fr;
  }

  .answer-options a,
  .answer-options a:nth-child(2n),
  .answer-options a:nth-last-child(-n + 2) {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .answer-options a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
