:root {
  --bg: #ffffff;
  --ink: #111111;
  --soft: #f4f4f1;
  --soft-2: #e7e7e1;
  --text-on-photo: #f8f8f2;
  --muted: #777777;
  --muted-light: #9a9a9a;
  --line: rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  min-height: 86px;
  padding: 20px clamp(22px, 6vw, 88px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: baseline;
  display: inline-flex;
  gap: 9px;
  line-height: 1;
  min-width: max-content;
}

.brand-mark {
  color: var(--ink);
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: scaleY(1.14);
  transform-origin: left center;
}

.brand-sub {
  color: #222;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: scaleY(1.1);
  transform-origin: left center;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-left: clamp(28px, 4vw, 58px);
  text-transform: uppercase;
}

.site-nav a {
  color: #858585;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 32px;
  margin-left: auto;
  padding: 0;
  width: 32px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 1px;
  margin: 7px 0;
  width: 28px;
}

.hero {
  align-items: center;
  background: var(--bg);
  display: grid;
  min-height: min(760px, calc(100svh - 86px));
  overflow: hidden;
  padding: 72px clamp(24px, 6vw, 88px);
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: contain;
  object-position: right center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04) 58%);
}

.hero-content {
  color: var(--text-on-photo);
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.date,
.footer-kicker {
  color: var(--muted-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--text-on-photo);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 3rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 22px;
}

h3 {
  font-size: 1rem;
  line-height: 1.35;
}

p {
  line-height: 1.85;
}

.hero-copy {
  color: var(--text-on-photo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.6vw, 1.45rem);
  line-height: 1.42;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 48px;
  padding: 0 28px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: var(--text-on-photo);
}

.section {
  padding: 92px clamp(24px, 6vw, 88px);
  scroll-margin-top: 88px;
}

.page {
  min-height: 56svh;
  padding: 92px clamp(24px, 6vw, 88px);
}

.page-heading {
  margin-bottom: 70px;
  max-width: 920px;
}

.page-heading h1,
.page-approach h1,
.legal-list h1 {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 24px;
  text-transform: none;
}

.page-heading p:not(.section-kicker) {
  color: #555;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.page-grid {
  padding-bottom: 34px;
}

.approach {
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  min-height: 600px;
  padding-bottom: 160px;
  padding-top: 160px;
  text-align: center;
}

.page-approach {
  border-bottom: 0;
  min-height: 58svh;
  padding: 120px 0 80px;
}

.approach .section-kicker {
  color: var(--ink);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.approach h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  margin-left: auto;
  margin-right: auto;
}

.approach p:not(.section-kicker) {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.1vw, 1.95rem);
  line-height: 1.55;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.approach-links {
  display: flex;
  gap: clamp(40px, 8vw, 90px);
  justify-content: center;
  margin-top: 56px;
}

.approach-links a {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-approach {
  background: #fff;
  padding: 96px clamp(24px, 6vw, 88px) 84px;
  text-align: center;
}

.home-approach .section-kicker,
.outdoor-moments .section-kicker {
  color: var(--ink);
}

.home-approach h2 {
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-transform: none;
}

.home-approach p:not(.section-kicker) {
  color: #444;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.home-approach .approach-links {
  gap: clamp(34px, 6vw, 72px);
  margin-top: 38px;
}

.outdoor-moments {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: 66px clamp(24px, 6vw, 88px);
}

.moments-image {
  aspect-ratio: 16 / 10;
  background: var(--soft-2);
  overflow: hidden;
}

.moments-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.moments-copy h2 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 620px;
}

.moment-list {
  display: grid;
  gap: 0;
}

.moment-list article {
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 120px 1fr;
  padding: 18px 0;
}

.moment-list article:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.moment-list h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.moment-list p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

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

.section-heading p:last-child {
  align-self: end;
  color: #555;
  max-width: 640px;
}

.products,
.journal,
.wholesale {
  background: #fff;
  color: var(--ink);
}

.product-grid {
  display: grid;
  gap: 38px 54px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  background: transparent;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  min-height: 250px;
  padding: 28px 0 0;
}

.product-link {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.product-name {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.65rem);
  font-weight: 700;
  line-height: 1.08;
}

.product-meta {
  color: #8a8a8a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-details {
  display: grid;
  gap: 13px;
  margin: 0;
}

.product-details div {
  display: grid;
  gap: 12px;
  grid-template-columns: 70px 1fr;
}

.product-details dt {
  color: #9a9a9a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-details dd {
  color: #4d4d4d;
  line-height: 1.6;
  margin: 0;
}

.product-card p,
.journal-list p:last-child,
.story-copy p,
.brew .section-heading p,
.brew .tab-panel p {
  color: #555;
}

.product-link:hover .product-name,
.journal a:hover,
.footer-nav a:hover,
.approach-links a:hover {
  color: #8a8a8a;
}

.story {
  align-items: stretch;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 6vw, 88px);
  grid-template-columns: 1.1fr 0.75fr;
}

.story-note {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: clamp(24px, 4vw, 40px);
}

.story-note dl {
  display: grid;
  gap: 32px;
  margin: 0;
}

.story-note dt {
  font-weight: 700;
  margin-bottom: 8px;
}

.story-note dd {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.34) 56%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08) 62%),
    url("assets/no563-main-forest.JPG") center 48% / cover;
  border-bottom: 0;
  margin-left: calc(clamp(24px, 6vw, 88px) * -1);
  margin-right: calc(clamp(24px, 6vw, 88px) * -1);
  min-height: min(650px, calc(100svh - 86px));
  padding: clamp(118px, 15vw, 190px) clamp(24px, 6vw, 88px);
  text-align: center;
}

.about-hero .section-kicker {
  color: rgba(248, 248, 242, 0.78);
}

.about-hero h1 {
  color: var(--text-on-photo);
  font-size: clamp(1.7rem, 3.4vw, 3.6rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: none;
}

.about-copy {
  color: var(--text-on-photo);
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.75vw, 1.55rem);
  gap: 18px;
  line-height: 1.65;
  margin: 44px auto 0;
  max-width: 900px;
}

.about-copy p {
  margin: 0;
}

.about-principles {
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 82px 0 34px;
}

.about-principles article {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  padding-top: 24px;
}

.about-principles h2 {
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-principles p:last-child {
  color: #555;
}

.journal-list {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.journal-list article {
  align-items: start;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  display: grid;
  gap: 24px;
  grid-template-columns: 130px 0.9fr 1.1fr;
  padding: 26px 0;
}

.journal-grid {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-tools {
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  display: grid;
  gap: 24px;
  margin-bottom: 52px;
  padding: 24px 0;
}

.journal-search {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.journal-search label {
  color: #999;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-search input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.36);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  outline: 0;
  padding: 8px 0;
}

.journal-search input::placeholder {
  color: #999;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tabs button {
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.22);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
}

.category-tabs button.is-active,
.category-tabs button:hover {
  background: var(--ink);
  color: var(--bg);
}

.journal-count,
.journal-empty {
  color: #777;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.journal-empty {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  padding-top: 22px;
}

.journal-card {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  padding-top: 28px;
}

.journal-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.journal-card p:not(.date) {
  color: #555;
}

.journal-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.journal-card li {
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  color: #777;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.brew {
  background: var(--soft);
  color: var(--ink);
}

.brew-tabs {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 340px;
  overflow: hidden;
}

.tab-list {
  background: var(--soft-2);
  display: grid;
}

.tab {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 24px;
  text-align: left;
}

.tab.is-active {
  background: #fff;
}

.tab-panel {
  display: none;
  padding: clamp(28px, 4vw, 52px);
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 26px;
  text-transform: none;
}

.recipe-label {
  color: #999;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.recipe-grid {
  display: grid;
  gap: 0 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 30px;
}

.recipe-grid div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}

.recipe-grid dt {
  color: #888;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recipe-grid dd {
  margin: 0;
}

.brew-steps {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 20px;
}

.tab-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.tab-panel li {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  padding-bottom: 12px;
}

.site-footer {
  background: #fff;
  color: var(--ink);
  padding: 92px clamp(24px, 6vw, 88px) 46px;
}

.compact-footer {
  padding-top: 74px;
}

.footer-rule {
  border-top: 1px solid rgba(17, 17, 17, 0.22);
  margin-bottom: 72px;
}

.footer-grid {
  display: grid;
  gap: clamp(32px, 5vw, 74px);
  grid-template-columns: 1.35fr 1fr 0.75fr 0.55fr;
}

.footer-copy,
.footer-mail,
.footer-link {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

.footer-link {
  display: block;
  margin-bottom: 40px;
}

.contact-title {
  margin-top: 36px;
}

.subscribe-form {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(180px, 1fr) 170px;
  margin-top: 58px;
  max-width: 540px;
}

.subscribe-form label {
  display: grid;
  gap: 14px;
}

.subscribe-form span {
  color: #999;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.subscribe-form input {
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  font: inherit;
  min-height: 46px;
  padding: 8px 0;
}

.subscribe-form button {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  min-height: 58px;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-meta p {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-meta {
  align-self: end;
}

.legal-note {
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  color: #666;
  font-size: 0.78rem;
  line-height: 1.8;
  margin-top: 68px;
  padding-top: 24px;
}

.legal-list {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  max-width: 980px;
}

.legal-list div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  display: grid;
  gap: 32px;
  grid-template-columns: 220px 1fr;
  padding: 22px 0;
}

.legal-list span {
  color: #888;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-list p {
  margin: 0;
}

.site-footer p {
  margin: 0;
}

.site-footer .footer-kicker {
  margin: 0 0 10px;
}

.site-footer .contact-title {
  margin-top: 34px;
}

.footer-meta p + p {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    padding: 20px 30px;
  }

  .site-nav {
    gap: 18px;
    margin-left: 28px;
  }

  h1 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
  }

  .section-heading,
  .story,
  .brew-tabs,
  .about-principles,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-tools {
    margin-bottom: 38px;
  }

  .outdoor-moments {
    gap: 34px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .page {
    padding-top: 74px;
  }

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

  .subscribe-form {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .journal-list article {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .tab {
    padding: 18px 14px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .outdoor-moments {
    grid-template-columns: 1fr;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    display: none;
    flex-direction: column;
    inset: 76px 0 auto;
    margin-left: 0;
    padding: 28px 20px;
    position: fixed;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand-sub {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: 640px;
    padding-bottom: 48px;
  }

  .hero-image {
    object-position: center top;
  }

  h1 {
    font-size: clamp(1.35rem, 8vw, 2.05rem);
  }

  .section,
  .wholesale {
    padding-bottom: 74px;
    padding-top: 74px;
  }

  .approach {
    min-height: 0;
    padding-bottom: 96px;
    padding-top: 96px;
  }

  .approach-links {
    align-items: center;
    flex-direction: column;
    gap: 22px;
  }

  .home-approach {
    padding-bottom: 70px;
    padding-top: 76px;
  }

  .home-approach .approach-links {
    margin-top: 32px;
  }

  .outdoor-moments {
    padding-bottom: 64px;
    padding-top: 58px;
  }

  .moment-list article {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 18px 0 20px;
  }

  .product-grid,
  .tab-list,
  .recipe-grid,
  .footer-grid,
  .subscribe-form,
  .product-details div,
  .legal-list div {
    grid-template-columns: 1fr;
  }

  .button,
  .subscribe-form button {
    width: 100%;
  }
}

body.theme-take2 {
  --bg: #1b1d1d;
  --ink: #f3efe7;
  --soft: #242826;
  --soft-2: #303533;
  --text-on-photo: #fbf7ef;
  --muted: #b8b1a6;
  --muted-light: #a79f93;
  --line: rgba(243, 239, 231, 0.16);
}

body.theme-take2,
body.theme-take2 .products,
body.theme-take2 .journal,
body.theme-take2 .wholesale,
body.theme-take2 .page {
  background: var(--bg);
  color: var(--ink);
}

body.theme-take2 .site-header,
body.theme-take2 .site-footer,
body.theme-take2 .home-approach,
body.theme-take2 .approach,
body.theme-take2 .story-note,
body.theme-take2 .brew-tabs,
body.theme-take2 .tab.is-active,
body.theme-take2 .tab-panel {
  background: #1f2221;
  color: var(--ink);
}

body.theme-take2 .site-header {
  border-bottom-color: rgba(243, 239, 231, 0.11);
}

body.theme-take2 .brand-sub,
body.theme-take2 .site-nav a,
body.theme-take2 .product-meta,
body.theme-take2 .product-details dt,
body.theme-take2 .legal-list span,
body.theme-take2 .recipe-grid dt,
body.theme-take2 .subscribe-form span {
  color: var(--muted-light);
}

body.theme-take2 .site-nav a:hover,
body.theme-take2 .site-nav a[aria-current="page"],
body.theme-take2 .brand-mark,
body.theme-take2 .home-approach .section-kicker,
body.theme-take2 .outdoor-moments .section-kicker,
body.theme-take2 .about-hero .section-kicker,
body.theme-take2 .page-heading h1,
body.theme-take2 .page-approach h1,
body.theme-take2 .legal-list h1,
body.theme-take2 .product-name,
body.theme-take2 .tab-panel h2,
body.theme-take2 .footer-copy,
body.theme-take2 .footer-mail,
body.theme-take2 .footer-link,
body.theme-take2 .footer-nav a,
body.theme-take2 .footer-meta p {
  color: var(--ink);
}

body.theme-take2 .page-heading p:not(.section-kicker),
body.theme-take2 .home-approach p:not(.section-kicker),
body.theme-take2 .moment-list p,
body.theme-take2 .product-details dd,
body.theme-take2 .product-card p,
body.theme-take2 .journal-list p:last-child,
body.theme-take2 .story-copy p,
body.theme-take2 .story-note dd,
body.theme-take2 .about-principles p:last-child,
body.theme-take2 .journal-card p:not(.date),
body.theme-take2 .brew .section-heading p,
body.theme-take2 .brew .tab-panel p,
body.theme-take2 .legal-note {
  color: #c9c2b8;
}

body.theme-take2 .outdoor-moments,
body.theme-take2 .story,
body.theme-take2 .brew,
body.theme-take2 .tab-list {
  background: var(--soft);
}

body.theme-take2 .moments-image,
body.theme-take2 .tab {
  background: var(--soft-2);
}

body.theme-take2 .nav-toggle span,
body.theme-take2 .button.primary {
  background: var(--ink);
}

body.theme-take2 .button.primary {
  color: var(--bg);
}

body.theme-take2 .button.ghost {
  border-color: rgba(251, 247, 239, 0.86);
  color: var(--text-on-photo);
}

body.theme-take2 .hero-shade {
  background:
    linear-gradient(90deg, rgba(27, 29, 29, 0.9), rgba(27, 29, 29, 0.62) 38%, rgba(27, 29, 29, 0.08) 76%),
    linear-gradient(0deg, rgba(27, 29, 29, 0.34), rgba(27, 29, 29, 0.04) 58%);
}

body.theme-take2 .about-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12) 62%),
    url("assets/no563-main-forest.JPG") center 48% / cover;
}

body.theme-take2 .product-card,
body.theme-take2 .moment-list article,
body.theme-take2 .moment-list article:last-child,
body.theme-take2 .about-principles article,
body.theme-take2 .journal-list,
body.theme-take2 .journal-list article,
body.theme-take2 .journal-card,
body.theme-take2 .journal-card li,
body.theme-take2 .tab,
body.theme-take2 .recipe-grid div,
body.theme-take2 .tab-panel li,
body.theme-take2 .footer-rule,
body.theme-take2 .legal-note,
body.theme-take2 .legal-list,
body.theme-take2 .legal-list div {
  border-color: var(--line);
}

body.theme-take2 .subscribe-form input {
  background: transparent;
  border-bottom-color: var(--ink);
  color: var(--ink);
}

body.theme-take2 .subscribe-form button {
  border-color: var(--ink);
  color: var(--ink);
}

body.theme-take2 .subscribe-form button:hover {
  background: var(--ink);
  color: var(--bg);
}

body.theme-take2 .journal-tools,
body.theme-take2 .journal-empty {
  border-color: var(--line);
}

body.theme-take2 .journal-search label,
body.theme-take2 .journal-search input::placeholder,
body.theme-take2 .journal-count,
body.theme-take2 .journal-empty {
  color: var(--muted-light);
}

body.theme-take2 .journal-search input {
  border-bottom-color: var(--line);
  color: var(--ink);
}

body.theme-take2 .category-tabs button {
  border-color: var(--line);
  color: var(--ink);
}

body.theme-take2 .category-tabs button.is-active,
body.theme-take2 .category-tabs button:hover {
  background: var(--ink);
  color: var(--bg);
}

body.theme-take2 .product-link:hover .product-name,
body.theme-take2 .journal a:hover,
body.theme-take2 .footer-nav a:hover,
body.theme-take2 .approach-links a:hover {
  color: #cfc6b8;
}

@media (max-width: 680px) {
  body.theme-take2 .site-nav {
    background: rgba(31, 34, 33, 0.98);
    border-bottom-color: rgba(243, 239, 231, 0.11);
  }
}
