:root {
  --forest: #0c2f24;
  --forest-2: #143e31;
  --green: #146343;
  --leaf: #9bc45a;
  --lime: #d5eb92;
  --cream: #f4f1e8;
  --cream-2: #ebe7db;
  --ink: #10251c;
  --muted: #66736d;
  --line: #d9ded9;
  --white: #fff;
  --header: 92px;
  --page: min(84vw, 1320px);
  --shadow: 0 24px 60px rgba(12, 47, 36, .12);
  --home-section-title-size: clamp(29px, 2.15vw, 34px);
  --home-section-title-line-height: 1.22;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -.015em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.menu-open::before { content: ""; position: fixed; z-index: 999; inset: var(--header) 0 0; background: rgba(7, 28, 20, .48); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

/* Scroll-in motion: restrained, brand-appropriate, and disabled for reduced-motion users. */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .72s cubic-bezier(.22, .61, .36, 1), transform .72s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-on-scroll[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal-on-scroll[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal-on-scroll[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal-on-scroll[data-reveal-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
h1, h2, h3, p { margin-top: 0; }
.skip-link {
  position: fixed;
  z-index: 9999;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  background: var(--forest);
  color: #fff;
}
.skip-link:focus { top: 20px; }

.nf-header {
  height: var(--header);
  padding: 0 max(4vw, 28px);
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16, 37, 28, .1);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s, height .25s;
}
.nf-header.scrolled { box-shadow: 0 8px 30px rgba(12, 47, 36, .08); }
@media (min-width: 901px) {
  .nf-header--overlay {
    width: 100%;
    position: fixed;
    color: #fff;
    background: linear-gradient(180deg, rgba(5, 29, 21, .4), rgba(5, 29, 21, 0));
    border-bottom-color: rgba(255,255,255,.2);
    backdrop-filter: none;
  }
  .nf-header--overlay.scrolled {
    color: var(--ink);
    background: rgba(255,255,255,.97);
    border-bottom-color: rgba(16, 37, 28, .1);
    backdrop-filter: blur(16px);
  }
  .nf-header--overlay:not(.scrolled) .nf-nav a::after { background: var(--lime); }
  .nf-header--overlay:not(.scrolled) .language-switch,
  .nf-header--overlay:not(.scrolled) .language-switch a,
  .nf-header--overlay:not(.scrolled) .shipping-link { color: rgba(255,255,255,.86); }
  .nf-header--overlay:not(.scrolled) .language-switch a.active { color: #fff; }
  .nf-header--overlay:not(.scrolled) .shipping-link { border-left-color: rgba(255,255,255,.3); }
}
.nf-brand {
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.nf-brand-logo { width: 215px; height: auto; object-fit: contain; }
.nf-brand-round,
.section-brand-mark {
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background-color: transparent;
  background-image: url("reference/round-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.nf-brand-round {
  width: 50px;
  height: 50px;
}
.nf-brand-wordmark {
  width: 173px;
  height: 51px;
  display: block;
  background-image: url("reference/logo.png?v=3.2.3");
  background-repeat: no-repeat;
  background-size: 204px 51px;
  background-position: -52px center;
  transform: translateY(1px);
}
.nf-nav {
  justify-self: center;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.8vw, 52px);
}
.nf-nav a {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
}
.nf-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
.nf-nav a:hover::after, .nf-nav a.active::after { right: 0; }
.nf-nav .mobile-account-link { display: none; }
.mobile-language-switch { display: none; }
.nf-actions { display: flex; align-items: center; gap: 12px; }
.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
  color: #9ca49f;
  font-size: 14px;
}
.language-switch button {
  padding: 4px;
  border: 0;
  background: none;
  color: #8b958f;
  cursor: pointer;
}
.language-switch button.active { color: var(--green); font-weight: 800; }
.shipping-link {
  padding: 4px 0 4px 12px;
  border-left: 1px solid var(--line);
  color: #7c8781;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.shipping-link:hover { color: var(--green); }
.nf-nav .mobile-shipping-link { display: none; }
.cart-pill {
  min-height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.cart-pill b {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 9px;
}
.login-pill {
  min-height: 46px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}
.login-pill i { font-style: normal; color: var(--lime); }
.menu-toggle { display: none; }

.overline {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .08em;
}
.overline.light { color: var(--lime); }
.section { padding: 112px max(8vw, calc((100vw - 1320px) / 2)); }
.section h2,
.global-cta h2,
.sub-hero h1,
.contact-hero h1,
.gallery-hero h1 {
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 650;
}
.section-heading {
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.section-heading h2 { margin-bottom: 0; }
.home-section h2 { font-size: clamp(40px, 4vw, 60px); line-height: 1.08; }
.section-intro h2, .insight-copy h2 { font-size: clamp(36px, 3.4vw, 52px); }
.product-preview h2 { font-size: clamp(32px, 3.2vw, 48px); }
.section-note {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.text-link {
  padding: 0 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  font-weight: var(--nf-action-weight);
}
.text-link i { font-style: normal; transition: transform .2s; }
.text-link:hover i { transform: translateX(4px); }
.button {
  min-width: 206px;
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button i { font-style: normal; }
.button-accent { background: var(--lime); color: var(--forest); }
.button-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.button-light { background: #fff; color: var(--forest); }
.button-dark { background: var(--forest); color: #fff; }

.home-hero {
  height: 100vh;
  min-height: 660px;
  max-height: 940px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}
.hero-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.hero-media {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 6s ease-out;
}
.hero-slide.active .hero-media { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 29, 21, .84) 0%, rgba(5, 29, 21, .5) 45%, rgba(5, 29, 21, .12) 78%),
    linear-gradient(0deg, rgba(5, 29, 21, .38), transparent 58%);
}
.hero-inner {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  padding-bottom: 96px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-copy-fixed > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.home-hero.is-ready .hero-copy-fixed > *,
.home-hero.is-ready .hero-slider-controls,
.home-hero.is-ready .hero-facts {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy-fixed > *:nth-child(2) { transition-delay: .12s; }
.hero-slider-controls,
.hero-facts {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.hero-slider-controls { transition-delay: .24s; }
.hero-facts { transition-delay: .34s; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy-fixed > *,
  .hero-slider-controls,
  .hero-facts,
  .home-hero.is-ready .hero-copy-fixed > *,
  .home-hero.is-ready .hero-slider-controls,
  .home-hero.is-ready .hero-facts {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hero-eyebrow {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero-slide-title {
  max-width: 1040px;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(48px, 4.45vw, 68px);
  font-weight: 380;
  line-height: 1.12;
  letter-spacing: -.058em;
}
.hero-slide-title strong {
  font-weight: 720;
}
.hero-title-row { display: block; }
.hero-title-row small {
  margin-left: 10px;
  display: inline-block;
  color: var(--lime);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.01em;
  vertical-align: .14em;
}
.hero-description {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.7;
}
.hero-slider-controls {
  position: absolute;
  z-index: 5;
  left: max(8vw, calc((100vw - 1320px) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.hero-slide-numbers { display: flex; align-items: center; gap: 15px; }
.hero-slide-numbers button,
.hero-pause {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.hero-slide-numbers button[aria-current="true"] { color: #fff; }
.hero-control-progress {
  width: 74px;
  height: 2px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.32);
}
.hero-control-progress i {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  background: #fff;
}
.hero-control-progress i.running { animation: hero-progress 2s linear forwards; }
.hero-pause { width: 22px; color: #fff; font-size: 13px; letter-spacing: -.18em; }
.hero-pause span { display: block; }
@keyframes hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-facts {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  display: flex;
  background: rgba(8, 42, 31, .92);
  backdrop-filter: blur(14px);
}
.hero-facts div {
  width: 184px;
  padding: 24px 26px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.hero-facts div:first-child { width: 286px; }
.hero-facts strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.03em;
}
.hero-facts span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-intro {
  display: grid;
  grid-template-columns: .9fr 1fr 190px;
  gap: 6vw;
  align-items: end;
  background: #fff;
}
.section-intro h2 { margin-bottom: 0; }
.section-intro h2 em,
.process-heading h2 em { color: var(--green); font-style: normal; }
.intro-copy > p {
  margin-bottom: 24px;
  color: #405149;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.7;
  letter-spacing: -.035em;
}
.intro-details summary {
  width: fit-content;
  min-width: 138px;
  padding: 12px 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--forest);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.intro-details summary::-webkit-details-marker { display: none; }
.intro-details summary i { font-size: 18px; font-style: normal; transition: transform .2s; }
.intro-details[open] summary i { transform: rotate(90deg); }
.intro-details-body {
  max-width: 580px;
  padding-top: 20px;
}
.intro-details-body p {
  margin: 0;
  color: #52635b;
  font-size: 17px;
  line-height: 1.75;
}
.intro-details--aside { align-self: end; margin-bottom: 6px; }
.intro-details--aside .intro-details-body { max-width: 760px; }
.intro-detail-list { margin: 0; padding: 0; list-style: none; }
.intro-detail-list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.intro-detail-list li:last-child { border-bottom: 0; }
.intro-detail-list strong { display: block; color: var(--green); font-size: 16px; line-height: 1.45; }
.intro-detail-list span { display: block; margin-top: 4px; color: var(--muted); font-size: 16px; line-height: 1.65; }
@media (min-width: 901px) {
  .section-intro.home-section { padding-block: 42px 32px; }
  .process-section.home-section { padding-block: 30px 58px; }
  .section-intro {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .section-intro .section-kicker {
    width: 100%;
    max-width: 1120px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
  .section-intro .section-kicker .overline { margin-left: 0; }
  .section-intro .section-kicker h2 {
    max-width: 1120px;
    margin-left: 0;
  }
  .section-intro .intro-copy {
    max-width: 760px;
    margin: 24px auto 0 0;
    transform: none;
  }
  .section-intro .intro-details--aside {
    align-self: flex-start;
    margin-top: 22px;
    margin-bottom: 0;
    transform: none;
  }
}
.process-section { background: #fff; }
.process-heading { max-width: 1280px; margin: 0 0 40px; text-align: left; }
.process-heading h2 { max-width: 1080px; margin: 0; font-size: clamp(30px, 3vw, 46px); line-height: 1.2; letter-spacing: -.065em; }
.process-heading h2 em { color: var(--green); font-style: normal; }
.process-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.process-steps::before { content: ""; position: absolute; z-index: 0; top: 94px; left: 12.5%; right: 12.5%; border-top: 1px solid #cbd5c9; }
.process-step { position: relative; z-index: 1; text-align: center; }
.process-image { width: 190px; height: 190px; margin: 0 auto 25px; position: relative; border: 4px solid var(--green); border-radius: 50%; overflow: visible; background: #fff; }
.process-step:nth-child(2) .process-image { border-color: #8ca68d; }
.process-step:nth-child(3) .process-image { border-color: #3972a1; }
.process-step:nth-child(4) .process-image { border-color: #2d5f92; }
.process-image img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.process-image span { width: 48px; height: 48px; position: absolute; top: -25px; left: 50%; display: grid; place-items: center; transform: translateX(-50%); border-radius: 50%; background: var(--green); color: #fff; font-size: 19px; font-weight: 800; }
.process-step:nth-child(2) .process-image span { background: #8ca68d; }
.process-step:nth-child(3) .process-image span { background: #3972a1; }
.process-step:nth-child(4) .process-image span { background: #2d5f92; }
.process-step h3 { margin: 0 0 11px; font-size: 22px; line-height: 1.3; letter-spacing: -.045em; }
.process-step ul { width: fit-content; min-width: 154px; margin: 18px auto 0; padding: 0; list-style: none; color: #475950; font-size: 17px; line-height: 1.85; }
.process-step li { text-align: left; }
.process-step li::before { content: "– "; color: var(--green); }
.home-section {
  position: relative;
  padding-block: 88px;
}
.section-intro.home-section { padding-block: 42px 32px; }
.section-intro + .video-section.home-section { padding-top: 58px; }
.home-section .overline {
  width: fit-content;
  padding: 10px 15px 10px 13px;
  border-left: 5px solid var(--green);
  background: #edf3e9;
}
.home-section .brand-overline,
.brand-overline {
  width: fit-content;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
}
.brand-overline .overline-label {
  padding: 9px 14px;
  display: inline-block;
  background: #edf3e9;
}
.section-brand-mark {
  width: 36px;
  height: 36px;
}
.intro-contact-link {
  min-width: 132px;
  margin-bottom: 6px;
  justify-content: space-between;
}
.video-section-heading--compact { margin-bottom: 30px; align-items: center; }
.video-section { background: #fff; }
.video-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(350px, .78fr);
  gap: 38px;
}
.featured-video {
  height: 500px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
}
.featured-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 28, 20, .78), transparent 62%);
}
.featured-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.featured-video:hover > img { transform: scale(1.035); }
.video-play {
  width: 72px;
  height: 72px;
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.video-play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--green);
}
.video-copy {
  position: absolute;
  z-index: 3;
  left: 38px;
  right: 38px;
  bottom: 34px;
}
.video-copy > span, .video-card em {
  color: var(--lime);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .17em;
}
.video-copy h3 {
  max-width: 640px;
  margin: 9px 0 8px;
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: -.035em;
}
.video-copy small { color: rgba(255,255,255,.65); font-size: 10px; }
.video-rail { display: flex; flex-direction: column; }
.video-card {
  width: 100%;
  padding: 0 0 19px;
  margin: 0 0 19px;
  display: grid;
  grid-template-columns: 112px 1fr 24px;
  align-items: center;
  gap: 15px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  opacity: .63;
  transition: opacity .2s;
}
.video-card:hover, .video-card.active { opacity: 1; }
.video-card > img { width: 112px; height: 76px; object-fit: cover; }
.video-card span { display: grid; gap: 7px; }
.video-card em { color: var(--green); }
.video-card b { font-size: 16px; line-height: 1.45; font-weight: 650; letter-spacing: -.025em; }
.video-card > i { color: #9ba59f; font-size: 9px; font-style: normal; }
.video-control-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-control-row > span { color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.video-control-row div { display: flex; }
.video-control-row button {
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.video-control-row button + button { border-left: 0; }

.product-preview { background: #fff; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.preview-grid--two { grid-template-columns: repeat(2, 1fr); }
.preview-grid--four { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.preview-card { border: 1px solid var(--line); background: #fff; overflow: hidden; }
.preview-card > img { width: 100%; height: 290px; object-fit: cover; transition: transform .5s; }
.preview-card:hover > img { transform: scale(1.025); }
.preview-card > div { min-height: 280px; padding: 31px 31px 34px; position: relative; }
.preview-grid--four .preview-card > img { height: 220px; }
.preview-grid--four .preview-card > div { min-height: 196px; padding: 27px 24px 28px; }
.preview-grid--four .preview-card > div > span { top: 29px; right: 24px; }
.preview-grid--four .preview-card h3 { font-size: 23px; }
.preview-grid--four .preview-card p { min-height: 82px; font-size: 15px; }
.product-heading-actions { max-width: 520px; display: grid; justify-items: end; gap: 18px; }
.product-heading-actions .section-note { margin: 0; }
.preview-card > div > span {
  position: absolute;
  top: 33px;
  right: 30px;
  color: #9aa49f;
  font-size: 9px;
}
.preview-card h3 { margin: 0 45px 17px 0; font-size: 25px; line-height: 1.2; letter-spacing: -.04em; }
.preview-card p { min-height: 88px; margin-bottom: 20px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.preview-card a { font-size: 13px; font-weight: 750; }

.insight-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: #fff;
  color: var(--ink);
}
.insight-section.home-section .overline {
  border-left-color: var(--green);
  background: #edf3e9;
  color: var(--green);
}
.insight-section.home-section .brand-overline { background: transparent; }
.insight-section.home-section .brand-overline .overline-label { background: #edf3e9; }
.insight-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 48px;
}
.insight-copy .brand-overline,
.insight-copy h2,
.insight-copy > p:not(.overline) { grid-column: 1; }
.insight-copy h2 { margin-bottom: 22px; }
.insight-copy > p:not(.overline) { max-width: 1000px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.insight-contact-link { grid-column: 2; grid-row: 1 / span 3; align-self: end; margin: 0 0 4px; white-space: nowrap; }
.insight-list { border-top: 1px solid var(--line); }
.insight-list > a {
  min-height: 68px;
  padding: 10px 5px;
  display: grid;
  grid-template-columns: 150px 1fr 90px 24px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: padding .2s, background .2s;
}
.insight-list > a:hover { padding-left: 13px; background: #f6f8f4; }
.insight-list > a span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .1em; white-space: nowrap; }
.insight-list > a h3 { margin: 0; font-size: 21px; font-weight: 550; line-height: 1.4; }
.insight-list > a b { color: var(--green); font-size: 11px; letter-spacing: .08em; }
.insight-list > a b.open { color: #8b9891; }
.insight-list > a i { font-style: normal; }
.membership-banner {
  margin-top: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: var(--lime);
  color: var(--forest);
}
.membership-banner h3 { max-width: 470px; margin: 0; font-size: 21px; line-height: 1.35; }
.membership-banner a { padding: 13px 16px; background: var(--forest); color: #fff; font-size: 13px; font-weight: 750; }

.gallery-preview-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 14px; }
.gallery-preview-grid--four { grid-template-columns: repeat(4, 1fr); }
.gallery-preview-grid figure {
  height: 430px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.gallery-preview-grid--four figure { height: 325px; }
.gallery-preview-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-preview-grid figure:hover img { transform: scale(1.035); }
.gallery-preview-grid figcaption,
.gallery-page-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 65px 24px 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(4, 30, 21, .83), transparent);
}
.gallery-preview-grid figcaption small,
.gallery-page-grid figcaption small {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.gallery-preview-grid figcaption strong,
.gallery-page-grid figcaption strong {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 650;
}

.global-cta {
  padding: 82px max(8vw, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  background: #09291f;
  color: #fff;
}
.global-cta h2 { margin-bottom: 0; font-size: clamp(36px, 3.6vw, 58px); line-height: 1.12; }
.nf-footer {
  padding: 58px max(8vw, calc((100vw - 1320px) / 2)) 30px;
  background: #061c15;
  color: #fff;
}
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.footer-brand img { width: 225px; }
.footer-brand p { max-width: 470px; margin: 22px 0 0; color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.7; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-nav b { margin-bottom: 8px; color: var(--lime); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav a { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.55; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.35);
  font-size: 13px;
  letter-spacing: .06em;
}

.sub-hero {
  height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.sub-hero > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.sub-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,35,25,.88), rgba(5,35,25,.25) 72%); }
.sub-hero > div:last-child { width: var(--page); margin: 0 auto; position: relative; }
.sub-hero h1 { margin-bottom: 24px; }
.sub-hero > div:last-child > p:last-child { max-width: 560px; color: rgba(255,255,255,.72); font-size: 16px; }
.product-subhero { height: 520px; }
.product-subhero h1 { max-width: 760px; margin-bottom: 22px; }
.product-subhero > div:last-child > p:last-child { max-width: 650px; font-size: 18px; line-height: 1.7; }
.product-subhero--solid { background: var(--forest); }
.product-subhero--solid > img,
.product-subhero--solid > .sub-hero-overlay { display: none; }
.product-top-hero {
  min-height: 420px;
  padding: 104px max(8vw, calc((100vw - 1320px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--cream);
}
.product-top-hero h1 { max-width: 900px; margin: 0 0 22px; font-size: clamp(52px, 6.2vw, 94px); line-height: 1.05; letter-spacing: -.065em; }
.product-top-hero > p:last-child { max-width: 610px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.product-top-hero--compact { min-height: 190px; padding-top: 58px; padding-bottom: 38px; justify-content: flex-end; }
.product-top-hero--compact > .overline { max-width: none; margin-bottom: 0; color: var(--green); font-size: 17px; line-height: 1.5; }
.product-category-list { width: 100%; }
.product-category-row { min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; }
.product-category-media { min-height: 560px; overflow: hidden; }
.product-category-media img { width: 100%; height: 100%; min-height: 560px; display: block; object-fit: cover; transition: transform .7s ease; }
.product-category-row:hover .product-category-media img { transform: scale(1.025); }
.product-category-content { padding: 88px clamp(36px, 5vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.product-category-content h2 { max-width: 610px; margin: 0 0 24px; font-size: clamp(38px, 4vw, 62px); line-height: 1.08; letter-spacing: -.06em; }
.product-category-description { max-width: 590px; margin: 0 0 24px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.product-category-content ul { max-width: 590px; padding: 0; margin: 0; list-style: none; }
.product-category-content li { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 16px; line-height: 1.5; }
.product-category-row--light { background: var(--cream); }
.product-category-row--dark { background: var(--forest); color: #fff; }
.product-category-row--dark .product-category-description,
.product-category-row--dark .product-category-content li { color: rgba(255,255,255,.74); border-color: rgba(255,255,255,.18); }

@media (min-width: 901px) {
  .global-cta h2 { max-width: none; font-size: clamp(30px, 3vw, 48px); white-space: nowrap; }
  .insight-section .insight-list { width: 100%; }
}
@media (min-width: 1201px) {
  .section-intro .intro-copy { max-width: 1120px; }
  .section-intro .intro-copy > p { max-width: none; white-space: nowrap; }
  .process-heading h2 { max-width: none; font-size: clamp(28px, 2.2vw, 42px); white-space: nowrap; }
}
.product-detail-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.product-detail-heading h2 { margin-bottom: 0; }
.product-detail-image { width: 100%; height: 280px; margin-top: 38px; object-fit: cover; }
.product-detail-body { display: grid; grid-template-columns: 1fr; gap: 50px; }
.product-detail-body article > span { display: block; margin-bottom: 13px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.product-detail-body h3 { max-width: 690px; margin-bottom: 22px; font-size: 29px; line-height: 1.35; letter-spacing: -.03em; }
.product-detail-body p, .product-detail-body li { color: var(--muted); font-size: 17px; line-height: 1.75; }
.product-detail-body ul { padding: 0; margin: 0; list-style: none; }
.product-detail-body li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.product-detail-body li.priority { padding: 17px 18px; border-color: #c8dc77; background: #f3f8df; color: var(--forest); }
.product-detail-body li.priority strong { color: var(--green); font-weight: 800; }
.product-detail-body .text-link { margin-top: 24px; color: var(--ink); }
.product-feature {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
  color: #fff;
}
.product-feature > img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.product-feature > div { padding: 10vw 8vw; display: flex; flex-direction: column; justify-content: center; }
.product-feature h2 { margin-bottom: 27px; font-size: clamp(45px, 4.5vw, 70px); line-height: 1.03; letter-spacing: -.06em; }
.product-feature > div > p:not(.overline) { max-width: 560px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.feature-tags { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tags span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.2); color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .11em; }
.product-category-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.product-category-strip > img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.product-category-strip > div { padding: 90px max(8vw, calc((100vw - 1320px) / 2)); display: flex; flex-direction: column; justify-content: center; }
.product-category-strip h2 { max-width: 560px; margin: 0 0 22px; font-size: clamp(38px, 4vw, 62px); line-height: 1.08; letter-spacing: -.06em; }
.product-category-strip p:not(.overline) { max-width: 520px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.product-category-strip--light { background: var(--cream); }
.product-category-strip--dark { background: var(--forest); color: #fff; }
.product-category-strip--dark > div { order: 1; }
.product-category-strip--dark > img { order: 2; }
.product-category-strip--dark p:not(.overline) { color: rgba(255,255,255,.72); }
.capability-section { background: var(--cream); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #d6dacf; border: 1px solid #d6dacf; }
.capability-grid article { min-height: 285px; padding: 34px; background: #fff; }
.capability-grid b { color: var(--green); font-size: 9px; letter-spacing: .15em; }
.capability-grid h3 { margin: 42px 0 15px; font-size: 23px; letter-spacing: -.04em; }
.capability-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.contact-hero, .gallery-hero {
  min-height: 480px;
  padding: 95px max(8vw, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  background: var(--forest);
  color: #fff;
}
.contact-hero h1, .gallery-hero h1 { margin-bottom: 0; }
.contact-hero > p, .gallery-hero > p { max-width: 420px; margin-bottom: 12px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 38px; }
.form-notice { margin-bottom: 25px; padding: 15px 17px; font-size: 13px; }
.form-notice.success { background: #e5f2dc; color: #285429; }
.form-notice.error { background: #f6e4df; color: #7b3026; }
.contact-form { display: grid; gap: 26px; }
.contact-form .honeypot { width: 1px; height: 1px; position: absolute; left: -9999px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: grid; gap: 9px; color: #47564f; font-size: 14px; font-weight: 650; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #aeb7b1;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}
.contact-form textarea { padding: 16px; border: 1px solid #aeb7b1; resize: vertical; }
.recaptcha-wrap { min-height: 78px; display: flex; align-items: center; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.form-submit p { max-width: 390px; margin: 0; color: #88928d; font-size: 10px; line-height: 1.6; }
.contact-details { padding: 45px; background: var(--forest); color: #fff; }
.contact-detail-block { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-detail-block > span, .contact-detail-block > div > span { display: block; margin-bottom: 9px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.contact-detail-block p, .contact-detail-block a { margin: 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.75; }
.contact-detail-block.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.gallery-hero { min-height: 400px; background: #0c3528; }
.gallery-hero h1 { font-size: clamp(42px, 4.2vw, 62px); }
.insights-hero,
.gallery-hero,
.product-subhero { height: 520px; min-height: 520px; box-sizing: border-box; }
.gallery-filters {
  padding: 24px max(8vw, calc((100vw - 1320px) / 2));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.gallery-filters button {
  padding: 11px 17px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.gallery-filters button[aria-pressed="true"] { border-color: var(--forest); background: var(--forest); color: #fff; }
.gallery-page-grid {
  padding: 28px max(5vw, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 14px;
  background: var(--cream);
}
.gallery-page-grid figure { margin: 0; position: relative; overflow: hidden; }
.gallery-page-grid figure[hidden] { display: none; }
.gallery-page-grid button { width: 100%; height: 100%; padding: 0; border: 0; background: var(--forest); cursor: zoom-in; text-align: left; }
.gallery-page-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-page-grid figure:hover img { transform: scale(1.035); }
.gallery-page-grid figcaption { display: block; }
.gallery-page-grid figcaption span { position: absolute; right: 20px; bottom: 23px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .1em; }
.gallery-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  padding: 70px;
  display: grid;
  place-items: center;
  background: rgba(4, 21, 15, .94);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox img { max-width: min(1100px, 88vw); max-height: 78vh; object-fit: contain; box-shadow: var(--shadow); }
.gallery-lightbox p { margin: 18px 0 0; color: #fff; font-size: 13px; }
.gallery-lightbox button { position: absolute; top: 24px; right: 30px; border: 0; background: none; color: #fff; font-size: 38px; cursor: pointer; }

.standard-page { min-height: 65vh; }
.page-title-band {
  padding: 82px max(8vw, calc((100vw - 1320px) / 2));
  background: var(--cream);
}
.page-title-band h1 { margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; }
.page-title-band .account-page-intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.page-content { width: var(--page); margin: 0 auto; padding: 80px 0 105px; }

@media (max-width: 1180px) {
  :root { --page: min(90vw, 1100px); }
  .nf-header { grid-template-columns: 210px 1fr auto; gap: 20px; padding-inline: 3vw; }
  .nf-brand { min-width: 192px; gap: 7px; }
  .nf-brand-logo { width: 190px; }
  .nf-brand-round { width: 43px; height: 43px; }
  .nf-brand-wordmark { width: 141px; height: 43px; background-size: 172px 43px; background-position: -44px center; }
  .nf-nav { gap: 27px; }
  .nf-actions .cart-pill { display: none; }
  .section { padding-inline: 5vw; }
  .global-cta, .nf-footer, .contact-hero, .gallery-hero, .page-title-band { padding-inline: 5vw; }
  .video-stage { grid-template-columns: 1fr; }
  .featured-video { height: 570px; }
  .video-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .video-card { grid-template-columns: 105px 1fr; align-items: start; }
  .video-card > img { width: 105px; height: 80px; }
  .video-card > i { display: none; }
  .video-control-row { grid-column: 1 / -1; }
  .preview-card > img { height: 250px; }
  .preview-grid--four { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid--four { grid-template-columns: repeat(2, 1fr); }
  .insight-section { grid-template-columns: 1fr; }
  .insight-copy { display: block; }
  .insight-contact-link { display: inline-flex; margin-top: 24px; }
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail-section { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 900px) {
  :root { --header: 74px; }
  .nf-header { grid-template-columns: 1fr auto; padding: 0 22px; }
  .nf-brand { min-width: 190px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
  }
  .menu-toggle span { height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-toggle em { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .nf-nav {
    width: min(88vw, 340px);
    height: calc(100dvh - var(--header));
    padding: 28px 24px 40px;
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: auto;
    display: none;
    justify-self: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 42px rgba(5, 28, 20, .18);
    z-index: 1001;
  }
  .nf-nav.open { display: flex; }
  .nf-nav .desktop-login-link { display: none; }
  .nf-nav a { height: auto; padding: 18px 0; display: block; border-bottom: 1px solid var(--line); font-size: 21px; }
  .nf-nav a::after { display: none; }
  .mobile-language-switch { margin-top: 23px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
  .mobile-language-switch a { padding: 12px 8px; display: grid; place-items: center; border: 0; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
  .mobile-language-switch a + a { border-left: 1px solid var(--line); }
  .mobile-language-switch a.active { background: var(--cream); color: var(--green); }
  .nf-nav .mobile-account-link { margin-top: 25px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; background: var(--forest); color: #fff; font-size: 16px; font-weight: 800; }
  .nf-nav .mobile-shipping-link { margin-top: 16px; padding: 14px 0; display: flex; align-items: center; justify-content: space-between; color: var(--green); font-size: 15px; font-weight: 750; }
  .mobile-shipping-link i { font-style: normal; }
  .mobile-account-link i { color: var(--lime); font-style: normal; }
  .nf-actions { display: none; }
  .home-hero { min-height: 720px; max-height: none; }
  .hero-inner { padding-bottom: 150px; }
  .hero-slider-controls { bottom: 128px; }
  .hero-facts div { width: 33.333vw; }
  .hero-facts div:first-child { width: 33.333vw; }
  .section { padding-block: 88px; }
  .home-section { padding-block: 76px; }
  .section-intro.home-section { padding-block: 50px; }
  .section-intro + .video-section.home-section { padding-top: 50px; }
  .section-intro { grid-template-columns: 1fr; gap: 38px; }
  .intro-details--aside { margin-top: -10px; }
  .process-steps { gap: 20px; }
  .process-image { width: 160px; height: 160px; }
  .process-steps::before { top: 80px; }
  .intro-contact-link { margin-top: -12px; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-grid--four { grid-template-columns: repeat(2, 1fr); }
  .preview-card { display: grid; grid-template-columns: .85fr 1.15fr; }
  .preview-card > img { height: 100%; min-height: 290px; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid .large { grid-column: 1 / -1; }
  .product-feature { grid-template-columns: 1fr; }
  .product-feature > img { min-height: 480px; max-height: 560px; }
  .product-feature > div { padding: 85px 6vw; }
  .product-category-strip { grid-template-columns: 1fr; }
  .product-category-strip > img { min-height: 380px; max-height: 520px; }
  .product-category-strip > div { padding: 75px 6vw; }
  .product-category-strip--dark > div { order: 2; }
  .product-category-strip--dark > img { order: 1; }
  .product-category-row { grid-template-columns: 1fr; }
  .product-category-media { min-height: 380px; max-height: 520px; }
  .product-category-media img { min-height: 380px; max-height: 520px; }
  .product-category-content { padding: 75px 6vw; }
  .global-cta h2 { white-space: normal; }
  .process-heading h2 { white-space: normal; }
  .product-top-hero { padding-inline: 5vw; }
  .capability-grid { grid-template-columns: 1fr; }
  .contact-hero, .gallery-hero { min-height: 420px; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 10px; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .gallery-filters { padding-inline: 5vw; }
}

@media (max-width: 640px) {
  :root { --page: calc(100vw - 42px); }
  body { font-size: 15px; }
  .section { padding: 72px 21px; }
  .home-section { padding-block: 64px; }
  .section-intro.home-section { padding-block: 44px; }
  .section-intro + .video-section.home-section { padding-top: 44px; }
  .section h2, .global-cta h2, .sub-hero h1, .contact-hero h1, .gallery-hero h1 { font-size: 43px; letter-spacing: -.055em; }
  .section-intro h2, .insight-copy h2 { font-size: 36px; }
  .product-preview h2 { font-size: 32px; }
  .process-heading { margin-bottom: 42px; text-align: left; }
  .process-heading h2 { font-size: 34px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px 18px; }
  .process-steps::before { display: none; }
  .process-image { width: 145px; height: 145px; margin-bottom: 20px; }
  .process-image span { width: 40px; height: 40px; top: -20px; font-size: 15px; }
  .process-step h3 { font-size: 19px; }
  .process-step ul { font-size: 14px; }
  .global-cta h2 { font-size: 36px; }
  .section-heading { margin-bottom: 35px; align-items: flex-start; flex-direction: column; gap: 23px; }
  .section-note { font-size: 17px; }
  .home-hero {
    height: calc(100svh - var(--header));
    min-height: 700px;
    background: var(--forest);
    color: #fff;
  }
  .hero-slide { background: var(--forest); }
  .hero-slide .hero-media {
    width: 100%;
    height: 100%;
    inset: 0;
    object-position: center;
  }
  .hero-overlay {
    display: block;
    background:
      linear-gradient(90deg, rgba(5, 29, 21, .82) 0%, rgba(5, 29, 21, .52) 62%, rgba(5, 29, 21, .3) 100%),
      linear-gradient(0deg, rgba(5, 29, 21, .72) 0%, rgba(5, 29, 21, .08) 58%, rgba(5, 29, 21, .24) 100%);
  }
  .hero-inner {
    height: 100%;
    padding: 54px 21px 190px;
    justify-content: center;
  }
  .hero-slide-title {
    max-width: 340px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.052em;
  }
  .nf-brand-logo { width: 185px; }
  .hero-slide-title strong { color: #fff; }
  .hero-title-row small {
    margin: 5px 0 0;
    display: block;
    color: var(--lime);
    font-size: 13px;
  }
  .hero-description {
    max-width: 330px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
  }
  .hero-slider-controls {
    left: 21px;
    top: auto;
    bottom: 128px;
    gap: 11px;
    color: #fff;
  }
  .hero-slide-numbers { gap: 11px; }
  .hero-slide-numbers button { color: rgba(255,255,255,.55); font-size: 10px; }
  .hero-slide-numbers button[aria-current="true"] { color: #fff; }
  .hero-control-progress { width: 50px; background: rgba(255,255,255,.32); }
  .hero-control-progress i { background: #fff; }
  .hero-pause { color: #fff; font-size: 12px; }
  .hero-facts { left: 0; right: 0; }
  .hero-facts div { width: 33.333%; padding: 17px 11px; }
  .hero-facts div:first-child { width: 33.333%; }
  .hero-facts strong { font-size: 17px; }
  .hero-facts span { font-size: 7px; }
  .intro-copy > p { font-size: 18px; }
  .intro-details-body p { font-size: 16px; }
  .featured-video { height: 440px; }
  .video-copy { left: 22px; right: 22px; bottom: 22px; }
  .video-copy h3 { font-size: 21px; }
  .video-rail { display: block; }
  .video-card { grid-template-columns: 110px 1fr; }
  .video-card > img { width: 110px; height: 78px; }
  .video-control-row { margin-top: 15px; }
  .preview-card { display: block; }
  .preview-grid--four { grid-template-columns: 1fr; }
  .preview-card > img { height: 250px; min-height: 0; }
  .preview-card > div { min-height: 0; }
  .preview-card p { min-height: 0; }
  .insight-list > a { grid-template-columns: 1fr 26px; gap: 8px; }
  .insight-list > a span, .insight-list > a b { grid-column: 1; }
  .insight-list > a h3 { grid-column: 1; }
  .insight-list > a i { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .membership-banner { align-items: flex-start; flex-direction: column; }
  .product-heading-actions { justify-items: start; }
  .gallery-preview-grid { display: block; }
  .gallery-preview-grid figure { height: 350px; margin-bottom: 12px; }
  .global-cta { padding: 67px 21px; align-items: flex-start; flex-direction: column; gap: 35px; }
  .nf-footer { padding: 50px 21px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-nav { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .sub-hero { height: 600px; }
  .product-subhero { height: 500px; }
  .product-subhero h1 { font-size: 43px; }
  .product-subhero > div:last-child > p:last-child { font-size: 16px; }
  .product-top-hero { min-height: 350px; padding: 74px 21px; }
  .product-top-hero h1 { font-size: 49px; }
  .product-top-hero > p:last-child { font-size: 17px; }
  .product-detail-image { height: 230px; margin-top: 30px; }
  .product-detail-body h3 { font-size: 25px; }
  .product-detail-body p, .product-detail-body li { font-size: 16px; }
  .sub-hero > div:last-child { padding-inline: 21px; }
  .product-detail-body { grid-template-columns: 1fr; }
  .product-feature > img { min-height: 360px; }
  .product-feature > div { padding: 70px 21px; }
  .product-feature h2 { font-size: 43px; }
  .product-category-strip > img { min-height: 300px; max-height: 380px; }
  .product-category-strip > div { padding: 60px 21px; }
  .product-category-strip h2 { font-size: 42px; }
  .product-top-hero--compact { min-height: 190px; padding: 58px 21px 38px; }
  .product-category-content { padding: 60px 21px; }
  .product-category-content h2 { font-size: 42px; }
  .product-category-description { font-size: 17px; }
  .capability-grid article { min-height: 245px; padding: 28px; }
  .contact-hero, .gallery-hero { padding: 70px 21px 55px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .contact-details { padding: 30px 24px; }
  .gallery-filters { padding: 16px 21px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; overflow: visible; }
  .gallery-filters button { width: 100%; min-height: 48px; }
  .gallery-page-grid { padding: 8px; grid-template-columns: 1fr; grid-auto-rows: 300px; gap: 8px; }
  .gallery-lightbox { padding: 28px; }
  .page-title-band { padding: 62px 21px; }
  .page-content { padding: 55px 0 75px; }
}

/* Korean-first reading comfort: larger, calmer typography and unmistakable sections. */
html[lang="ko"] body { font-size: 17px; letter-spacing: -.028em; word-break: keep-all; }
html[lang="ko"] .nf-nav a { font-size: 16px; }
html[lang="ko"] .overline { font-size: 19px; letter-spacing: .035em; }
html[lang="ko"] .hero-inner h1:not(.hero-statement) { margin-bottom: 32px; line-height: 1.22; }
html[lang="ko"] .section h2,
html[lang="ko"] .global-cta h2,
html[lang="ko"] .sub-hero h1,
html[lang="ko"] .contact-hero h1,
html[lang="ko"] .gallery-hero h1 { letter-spacing: -.075em; line-height: 1.15; }
html[lang="ko"] .hero-inner > p:not(.overline),
html[lang="ko"] .intro-copy > p,
html[lang="ko"] .section-note { line-height: 1.85; }
html[lang="ko"] .section-note { font-size: 20px; }
html[lang="ko"] .insight-copy > p:not(.overline) { font-size: 19px; }
html[lang="ko"] .insight-list > a span { font-size: 14px; }
html[lang="ko"] .insight-list > a b { font-size: 13px; }
.language-switch a { padding: 4px; color: #8b958f; font-weight: 700; }
.language-switch a.active { color: var(--green); font-weight: 800; }

.insights-hero {
  min-height: 485px;
  padding: 100px max(8vw, calc((100vw - 1320px) / 2)) 78px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 54px;
  background: linear-gradient(120deg, #0b2f24, #1e5a3e);
  color: #fff;
}
.insights-hero h1 { margin: 0; font-size: clamp(48px, 5.5vw, 78px); line-height: 1.03; letter-spacing: -.065em; }
.insights-hero > p { max-width: 400px; margin: 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.8; }
.insights-contact-button { margin-top: 28px; }
.insights-page-section { background: var(--cream); }
.insights-page-heading { margin-bottom: 48px; display: flex; align-items: end; justify-content: space-between; gap: 34px; }
.insights-page-heading h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.12; letter-spacing: -.055em; }
.insights-access-note { max-width: 360px; margin: 0 0 7px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.insights-access-note p { margin: 0 0 14px; }
.insights-access-legend { display: flex; flex-wrap: wrap; gap: 8px; }
.insights-access-legend span { padding: 6px 9px; font-size: 11px; font-weight: 800; letter-spacing: .05em; }
.insights-access-legend .open { background: #e2f0c5; color: #31561c; }
.insights-access-legend .members { background: #153e30; color: var(--lime); }
.insights-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card { overflow: hidden; background: #fff; box-shadow: 0 10px 25px rgba(12,47,36,.06); }
.insight-card > a { display: block; height: 100%; }
.insight-card img { width: 100%; height: 220px; object-fit: cover; }
.insight-card > a > div { min-height: 265px; padding: 25px 26px 27px; display: flex; flex-direction: column; align-items: flex-start; }
.insight-access { display: inline-flex; margin-bottom: 15px; padding: 5px 8px; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.insight-access.open { background: #e2f0c5; color: #31561c; }
.insight-access.members { background: #153e30; color: var(--lime); }
.insight-card time { color: var(--muted); font-size: 11px; }
.insight-card h3 { margin: 9px 0 12px; font-size: 23px; line-height: 1.32; letter-spacing: -.035em; }
.insight-card p { margin: 0 0 20px; color: #5f6d66; font-size: 14px; line-height: 1.7; }
.insight-card b { margin-top: auto; color: var(--green); font-size: 12px; }
.insight-card b i { margin-left: 11px; font-style: normal; }
.insights-empty { display: grid; grid-template-columns: minmax(260px, .85fr) 1.15fr; background: #fff; }
.insights-empty img { width: 100%; height: 340px; object-fit: cover; }
.insights-empty > div { padding: 58px; }
.insights-empty h3 { margin: 0 0 16px; font-size: 32px; line-height: 1.28; letter-spacing: -.045em; }
.insights-empty p:last-child { color: var(--muted); line-height: 1.8; }
.member-explainer { padding: 92px max(8vw, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: var(--forest); color: #fff; }
.member-explainer h2 { margin: 0; font-size: clamp(40px, 4.5vw, 68px); line-height: 1.08; letter-spacing: -.065em; }
.member-explainer > div:last-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: end; }
.member-explainer > div:last-child p { max-width: 520px; margin: 0 0 28px; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.85; }
.shop-coming-soon { min-height: calc(100vh - var(--header)); display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.shop-coming-soon img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.shop-coming-soon > div { padding: 12vw 9vw; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.shop-coming-soon h1 { margin: 0 0 22px; font-size: clamp(45px, 5vw, 72px); line-height: 1.06; letter-spacing: -.065em; }
.shop-coming-soon p:not(.overline) { max-width: 400px; margin-bottom: 30px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.membership-hero { padding: 110px max(8vw, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; background: var(--forest); color: #fff; }
.membership-hero h1 { margin: 0 0 24px; font-size: clamp(48px, 5.4vw, 78px); line-height: 1.1; letter-spacing: -.07em; }
.membership-hero > div > p:not(.overline) { max-width: 680px; margin: 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.85; }
.membership-steps { border-top: 1px solid rgba(255,255,255,.24); }
.membership-steps span { padding: 20px 0; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.18); }
.membership-steps b { color: var(--lime); font-size: 11px; letter-spacing: .1em; }
.membership-steps em { font-style: normal; font-size: 16px; font-weight: 700; }
.membership-plan-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10vw; align-items: center; background: var(--cream); }
.membership-plan-copy h2 { margin: 0 0 32px; font-size: clamp(39px, 4.6vw, 66px); line-height: 1.13; letter-spacing: -.065em; }
.membership-plan-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.membership-plan-copy li { padding: 19px 4px 19px 28px; position: relative; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 650; }
.membership-plan-copy li::before { content: '✓'; position: absolute; left: 2px; color: var(--green); font-weight: 900; }
.membership-plan-card { padding: 48px; background: #fff; box-shadow: var(--shadow); }
.membership-plan-card > span { color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .17em; }
.membership-plan-card h3 { margin: 17px 0 28px; font-size: 32px; line-height: 1.22; letter-spacing: -.05em; }
.membership-plan-card strong { display: block; margin-bottom: 20px; font-size: 30px; line-height: 1.1; color: var(--forest); }
.membership-plan-card p { min-height: 78px; margin: 0 0 28px; color: var(--muted); font-size: 15px; line-height: 1.8; }

@media (max-width: 900px) {
  .insights-hero, .gallery-hero, .product-subhero { height: 460px; min-height: 460px; }
  .insights-hero { padding-inline: 5vw; }
  .insights-page-grid { grid-template-columns: repeat(2, 1fr); }
  .member-explainer { padding-inline: 5vw; gap: 50px; }
  .membership-hero, .membership-plan-section { padding-inline: 5vw; gap: 6vw; }
}
@media (max-width: 640px) {
  html[lang="ko"] body { font-size: 16px; }
  html[lang="ko"] .overline { font-size: 18px; }
  html[lang="ko"] .section-note,
  html[lang="ko"] .insight-copy > p:not(.overline) { font-size: 18px; }
  .insights-hero, .gallery-hero, .product-subhero { height: 430px; min-height: 430px; }
  .insights-hero { padding: 70px 21px 48px; display: block; }
  .insights-hero h1 { font-size: 46px; }
  .insights-hero > p { margin-top: 22px; font-size: 15px; }
  .insights-page-heading { display: block; }
  .insights-access-note { margin-top: 20px; }
  .insights-page-grid { grid-template-columns: 1fr; }
  .insight-card img { height: 235px; }
  .insights-empty { grid-template-columns: 1fr; }
  .insights-empty img { height: 260px; }
  .insights-empty > div { padding: 35px 26px; }
  .member-explainer { padding: 70px 21px; grid-template-columns: 1fr; gap: 35px; }
  .shop-coming-soon { grid-template-columns: 1fr; }
  .shop-coming-soon img { min-height: 280px; height: 280px; }
  .shop-coming-soon > div { padding: 65px 21px; }
  .membership-hero, .membership-plan-section { padding: 74px 21px; grid-template-columns: 1fr; gap: 42px; }
  .membership-hero h1 { font-size: 46px; }
  .membership-plan-card { padding: 31px 25px; }
}

/* Shared subpage hero: board, products, and gallery use one visual baseline. */
.subpage-hero,
.insights-hero.subpage-hero,
.gallery-hero.subpage-hero,
.product-subhero.subpage-hero {
  width: 100%;
  height: 520px;
  min-height: 520px;
  padding: 0;
  display: block;
  position: relative;
  background: linear-gradient(115deg, #0b3025 0%, #155139 100%);
  color: #fff;
}
.subpage-hero .subpage-hero-inner {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  padding-top: 150px;
  position: relative;
  box-sizing: border-box;
}
.subpage-hero .overline { margin-bottom: 22px; }
.subpage-hero h1,
.insights-hero.subpage-hero h1,
.gallery-hero.subpage-hero h1,
.product-subhero.subpage-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.065em;
}
.subpage-hero .subpage-hero-description {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.75;
}
.subpage-hero .insights-contact-button { margin-top: 18px; }

@media (max-width: 900px) {
  .subpage-hero,
  .insights-hero.subpage-hero,
  .gallery-hero.subpage-hero,
  .product-subhero.subpage-hero {
    height: 460px;
    min-height: 460px;
    padding: 0;
  }
  .subpage-hero .subpage-hero-inner { width: 90vw; padding-top: 115px; }
}

@media (max-width: 640px) {
  .subpage-hero,
  .insights-hero.subpage-hero,
  .gallery-hero.subpage-hero,
  .product-subhero.subpage-hero {
    height: 430px;
    min-height: 430px;
    padding: 0;
  }
  .subpage-hero .subpage-hero-inner { width: auto; padding: 76px 21px 0; }
  .subpage-hero h1,
  .insights-hero.subpage-hero h1,
  .gallery-hero.subpage-hero h1,
  .product-subhero.subpage-hero h1 { font-size: 42px; line-height: 1.12; }
  .subpage-hero .subpage-hero-description { margin-top: 22px; font-size: 15px; line-height: 1.7; }
}

/* 2026-08-13 document revision: video rails, board list and compact product rows. */
.video-carousel + .video-carousel { margin-top: 48px; }
.video-carousel-head { margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.video-carousel-head h3 { margin: 0; font-size: 20px; line-height: 1.3; }
.video-carousel-head div { display: flex; gap: 8px; }
.video-carousel-head button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 18px; cursor: pointer; }
.video-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 72px) / 4); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.video-carousel-track::-webkit-scrollbar { display: none; }
.video-tile { min-width: 0; position: relative; scroll-snap-align: start; }
.video-tile-image { aspect-ratio: 16 / 9; display: block; position: relative; overflow: hidden; background: var(--forest); }
.video-tile-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,31,23,.18), transparent 56%); }
.video-tile-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.video-tile:hover img { transform: scale(1.035); }
.video-tile-image i { width: 42px; height: 42px; position: absolute; z-index: 2; inset: 0; margin: auto; border-radius: 50%; background: rgba(255,255,255,.92); }
.video-tile-image i::after { content: ''; position: absolute; top: 13px; left: 17px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid var(--green); }
.video-tile em { margin-top: 13px; display: block; color: var(--green); font-size: 11px; font-weight: 800; font-style: normal; letter-spacing: .1em; }
.video-tile h4 { margin: 6px 32px 0 0; font-size: 16px; line-height: 1.45; letter-spacing: -.025em; }
.video-tile small { position: absolute; right: 0; bottom: 2px; color: #9aa49f; font-size: 10px; }

.insight-list > a { grid-template-columns: 150px 1fr 84px 92px 24px; }
.insight-thumb { width: 72px; height: 48px; overflow: hidden; }
.insight-thumb img { width: 100%; height: 100%; object-fit: cover; }

.board-list-section { background: #fff; }
.board-list-header { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.board-list-header h2 { margin: 22px 0 16px; font-size: clamp(40px, 4.2vw, 62px); line-height: 1.1; letter-spacing: -.06em; }
.board-list-header > div > p:last-child { margin: 0; color: var(--muted); font-size: 17px; }
.board-list-section { padding-top: 54px; }
.board-search { width: min(100%, 520px); margin: 0 0 22px auto; display: grid; grid-template-columns: 1fr auto; border: 1px solid var(--line); }
.board-list-header--compact { margin-bottom: 22px; align-items: center; }
.board-list-header--compact .board-search { margin: 0; }
.board-search input { min-width: 0; height: 58px; padding: 0 20px; border: 0; outline: 0; font-size: 16px; }
.board-search button { min-width: 100px; border: 0; background: var(--forest); color: #fff; font-weight: 750; cursor: pointer; }
.board-list { border-top: 1px solid var(--line); }
.board-row { min-height: 104px; padding: 18px 4px; display: grid; grid-template-columns: 155px minmax(0,1fr) 210px 96px 24px; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .2s ease, background .2s ease; }
.board-row:hover { padding-inline: 14px; background: #f7f9f5; }
.board-category { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .09em; }
.board-title { font-size: 21px; font-weight: 650; line-height: 1.4; }
.board-thumbnails { min-height: 54px; display: flex; justify-content: flex-end; gap: 6px; }
.board-thumbnails:empty { min-height: 0; }
.board-thumbnails img { width: 62px; height: 54px; object-fit: cover; }
.board-row b { justify-self: end; font-size: 12px; letter-spacing: .04em; }
.board-row b.general { color: #7e8983; }
.board-row b.premium { color: var(--green); }
.board-row i { font-style: normal; }
.board-empty { padding: 54px 0; color: var(--muted); text-align: center; }
.board-pagination { margin-top: 38px; }
.board-pagination ul { margin: 0; padding: 0; display: flex; justify-content: center; gap: 8px; list-style: none; }
.board-pagination a, .board-pagination span { min-width: 42px; height: 42px; padding: 0 12px; display: grid; place-items: center; border: 1px solid var(--line); }
.board-pagination .current { border-color: var(--forest); background: var(--forest); color: #fff; }
.insight-single-content { max-width: 980px; margin: 0 auto; }
.insight-single-meta { margin-bottom: 30px; color: var(--muted); font-size: 14px; }
.insight-single-cover { margin: 0 0 46px; }
.insight-single-cover img { width: 100%; max-height: 620px; object-fit: cover; }
.insight-single-body { color: #35483f; font-size: 18px; line-height: 1.9; }
.insight-single-body img { height: auto; margin-block: 34px; }
.insight-back-link { margin-top: 54px; }

.product-category-row { min-height: 390px; grid-template-columns: minmax(260px, 28%) minmax(0, 1fr); }
.product-category-media { min-height: 430px; overflow: hidden; background: var(--cream-2); }
.product-category-media img { width: 100%; height: 100%; min-height: 430px; max-height: none; margin: 0; object-fit: cover; transform: none; }
.product-category-row:hover .product-category-media img { transform: scale(1.025); }
.product-category-content { padding-block: 64px; }
.product-category-content > .overline { margin-bottom: 24px; font-size: 23px; letter-spacing: -.025em; }
.product-category-content ul { color: var(--ink); }
.product-category-content li { color: currentColor; font-size: 18px; font-weight: 650; }
.product-category-row--dark .product-category-content li { color: #fff; }

.subpage-hero,
.insights-hero.subpage-hero,
.gallery-hero.subpage-hero,
.product-subhero.subpage-hero,
.contact-subhero.subpage-hero,
.insight-single-hero.subpage-hero { height: 330px; min-height: 330px; }
.subpage-hero .subpage-hero-inner { padding-top: 82px; }
.insights-video-section { padding-top: 70px; padding-bottom: 76px; }

@media (max-width: 900px) {
  .video-carousel-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .board-row { grid-template-columns: 125px minmax(0,1fr) 150px 86px 20px; gap: 14px; }
  .board-thumbnails img { width: 44px; height: 44px; }
  .subpage-hero, .insights-hero.subpage-hero, .gallery-hero.subpage-hero, .product-subhero.subpage-hero, .contact-subhero.subpage-hero { height: 310px; min-height: 310px; }
  .subpage-hero .subpage-hero-inner { padding-top: 72px; }
}

@media (max-width: 640px) {
  .video-carousel-track { grid-auto-columns: 82%; gap: 16px; }
  .board-list-header { display: block; }
  .board-list-header .text-link { margin-top: 24px; }
  .board-row { padding-block: 22px; grid-template-columns: 1fr 70px 18px; gap: 10px; }
  .board-category, .board-title { grid-column: 1; }
  .board-category { font-size: 11px; }
  .board-title { font-size: 18px; }
  .board-thumbnails { grid-column: 1; justify-content: flex-start; }
  .board-row b { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .board-row i { grid-column: 3; grid-row: 1 / 4; }
  .product-category-media { min-height: 300px; max-height: 340px; }
  .product-category-media img { width: 100%; min-height: 300px; max-height: 340px; }
  .product-category-content > .overline { font-size: 20px; }
  .product-category-content li { font-size: 17px; }
  .subpage-hero, .insights-hero.subpage-hero, .gallery-hero.subpage-hero, .product-subhero.subpage-hero, .contact-subhero.subpage-hero { height: 280px; min-height: 280px; }
  .subpage-hero .subpage-hero-inner { padding-top: 58px; }
  .board-search { width: 100%; }
  .process-step ul { margin-top: 16px; font-size: 16px; line-height: 1.75; }
}

/* 2026 full identity update: preserve the supplied Newfia mark in its original color. */
.nf-header { grid-template-columns: 92px 1fr auto; }
.nf-brand { width: fit-content; min-width: 0; padding: 4px 6px; border-radius: 3px; background: rgba(255,255,255,.92); }
.nf-brand-logo { width: auto; height: 74px; max-width: 88px; object-fit: contain; }
.nf-brand-round,
.section-brand-mark {
  border-radius: 0;
  background-image: url("reference/logo.png?v=3.2.3");
}
.section-brand-mark { width: 38px; height: 38px; }
.footer-brand img { width: auto; height: 118px; max-width: 120px; object-fit: contain; }

@media (max-width: 1100px) {
  .nf-header { grid-template-columns: 82px 1fr auto; }
  .nf-brand-logo { width: auto; height: 66px; max-width: 78px; }
}

@media (max-width: 900px) {
  .nf-header { grid-template-columns: 1fr auto; }
  .nf-brand-logo { width: auto; height: 60px; max-width: 72px; }
  .product-category-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .board-list-header--compact { display: grid; gap: 22px; }
  .board-list-header--compact .board-search { width: 100%; }
  .footer-brand img { height: 102px; }
}

/* 2026-08-20 client revision: compact identity, consistent type scale and denser subpages. */
:root { --header: 76px; }

.nf-header {
  padding-inline: max(4vw, 28px);
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
}
.nf-brand {
  min-width: 0;
  padding: 0;
  background: transparent;
}
.nf-brand-logo {
  width: auto;
  height: 52px;
  max-width: 62px;
  transition: filter .25s ease, opacity .25s ease;
}

@media (min-width: 901px) {
  .nf-header--overlay:not(.scrolled) .nf-brand-logo { filter: brightness(0) invert(1); }
  .nf-header--overlay.scrolled .nf-brand-logo { filter: none; }
}

.home-section .section-kicker h2,
.home-section .process-heading h2,
.home-section .insight-copy h2,
.home-section .section-heading h2,
.global-cta h2 {
  font-size: var(--home-section-title-size);
  line-height: var(--home-section-title-line-height);
  letter-spacing: -.045em;
}
.intro-copy > p { font-size: clamp(20px, 1.55vw, 26px); }
.process-heading { margin-bottom: 48px; }
.process-step ul {
  width: 170px;
  min-width: 170px;
  margin: 14px auto 0;
  transform: translateX(10px);
  font-size: 16px;
  line-height: 1.75;
}

.global-cta {
  padding-block: 48px;
  align-items: center;
}
.nf-footer { padding-top: 36px; padding-bottom: 22px; }
.footer-brand img { width: auto; height: 72px; max-width: 80px; }
.footer-brand p { margin-top: 14px; font-size: 16px; }
.footer-bottom { margin-top: 28px; padding-top: 15px; }

.board-row { min-height: 78px; padding-block: 10px; }
.board-thumbnails { min-height: 46px; }
.board-thumbnails img { height: 46px; }

.product-category-list {
  padding: 56px 24px 72px;
  display: grid;
  gap: 28px;
  background: #f7f6f1;
}
.product-category-row,
.product-category-row.product-category-row--dark,
.product-category-row.product-category-row--light {
  width: min(100%, 960px);
  min-height: 0;
  margin: 0 auto;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(8, 47, 34, .08);
}
.product-category-media {
  width: 100%;
  height: 190px;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.product-category-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
}
.product-category-content { padding: 0; }
.product-category-content > .overline,
.product-category-row--dark .product-category-content > .overline {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 22px;
  letter-spacing: -.025em;
}
.product-category-content ul { margin: 0; padding: 0; list-style: none; color: var(--ink); }
.product-category-content li,
.product-category-row--dark .product-category-content li {
  padding: 5px 0;
  border: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}
.product-category-content li::before { content: '—  '; color: var(--green); }

.subpage-hero,
.insights-hero.subpage-hero,
.gallery-hero.subpage-hero,
.product-subhero.subpage-hero,
.contact-subhero.subpage-hero,
.insight-single-hero.subpage-hero {
  height: 180px;
  min-height: 180px;
}
.subpage-hero .subpage-hero-inner {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subpage-hero .overline { margin-bottom: 12px; font-size: 14px; }
.subpage-hero h1,
.insights-hero.subpage-hero h1,
.gallery-hero.subpage-hero h1,
.product-subhero.subpage-hero h1 {
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.subpage-hero .subpage-hero-description { margin-top: 14px; font-size: 15px; line-height: 1.65; }
.subpage-hero .insights-contact-button { margin-top: 12px; }

@media (max-width: 1100px) {
  .nf-header { grid-template-columns: 60px 1fr auto; }
  .nf-brand-logo { height: 50px; max-width: 60px; }
}

@media (max-width: 900px) {
  :root { --header: 72px; }
  .nf-header { padding-inline: 21px; grid-template-columns: 1fr auto; }
  .nf-brand-logo { height: 46px; max-width: 56px; filter: none; }
  .product-category-row,
  .product-category-row.product-category-row--dark,
  .product-category-row.product-category-row--light {
    grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
    gap: 36px;
  }
  .subpage-hero,
  .insights-hero.subpage-hero,
  .gallery-hero.subpage-hero,
  .product-subhero.subpage-hero,
  .contact-subhero.subpage-hero,
  .insight-single-hero.subpage-hero { height: 176px; min-height: 176px; }
  .subpage-hero .subpage-hero-inner { width: 90vw; padding-top: 0; }
}

@media (max-width: 640px) {
  :root {
    --home-section-title-size: 29px;
    --home-section-title-line-height: 1.15;
  }
  .home-section .section-kicker h2,
  .home-section .process-heading h2,
  .home-section .insight-copy h2,
  .home-section .section-heading h2,
  .global-cta h2 {
    font-size: var(--home-section-title-size);
    line-height: var(--home-section-title-line-height);
  }
  .process-step ul { width: 154px; min-width: 154px; transform: none; }
  .global-cta { padding: 42px 21px; }
  .nf-footer { padding: 34px 21px 20px; }
  .footer-brand img { height: 64px; max-width: 72px; }
  .footer-bottom { margin-top: 24px; }
  .board-row { min-height: 0; padding-block: 14px; }
  .product-category-list { padding: 32px 16px 48px; gap: 20px; }
  .product-category-row,
  .product-category-row.product-category-row--dark,
  .product-category-row.product-category-row--light {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 18px;
  }
  .product-category-media { height: 180px; min-height: 0; max-height: none; }
  .product-category-media img { min-height: 0; max-height: none; }
  .product-category-content > .overline,
  .product-category-row--dark .product-category-content > .overline { margin-bottom: 16px; font-size: 20px; }
  .product-category-content li,
  .product-category-row--dark .product-category-content li { font-size: 17px; }
  .subpage-hero,
  .insights-hero.subpage-hero,
  .gallery-hero.subpage-hero,
  .product-subhero.subpage-hero,
  .contact-subhero.subpage-hero,
  .insight-single-hero.subpage-hero { height: 172px; min-height: 172px; }
  .subpage-hero .subpage-hero-inner { width: auto; padding: 0 21px; }
  .subpage-hero h1,
  .insights-hero.subpage-hero h1,
  .gallery-hero.subpage-hero h1,
  .product-subhero.subpage-hero h1 { font-size: 32px; line-height: 1.16; }
  .subpage-hero .subpage-hero-description { margin-top: 10px; font-size: 14px; }
}

/* 2026-08-23 client revision: square product cards, compact gallery and complete footer identity. */
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand-lockup img {
  width: auto;
  height: 72px;
  max-width: 80px;
  flex: 0 0 auto;
}
.footer-brand-lockup > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand-lockup span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.3;
}
.footer-brand-lockup strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}
.footer-brand > p { max-width: 520px; }

.product-category-row,
.product-category-row.product-category-row--dark,
.product-category-row.product-category-row--light {
  border-radius: 0;
  box-shadow: none;
}
.product-category-media,
.product-category-media img { border-radius: 0; }

.gallery-page-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 16vw, 245px);
  gap: 12px;
}

.account-subhero { background: linear-gradient(115deg, #0b3025 0%, #155139 100%); }
.account-subhero .subpage-hero-description { max-width: 650px; }

@media (max-width: 1100px) {
  .gallery-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 230px; }
}

@media (max-width: 700px) {
  .footer-brand-lockup { gap: 13px; }
  .footer-brand-lockup img { height: 64px; max-width: 72px; }
  .footer-brand-lockup span { font-size: 12px; }
  .footer-brand-lockup strong { font-size: 16px; }
  .gallery-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 210px; }
}

@media (max-width: 420px) {
  .gallery-page-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}

/* 2026-09-02 document revision: home rhythm, board previews, gallery captions and CTA alignment. */
.section-intro .section-kicker h2,
.process-heading h2 {
  font-family: inherit;
  font-weight: 650;
}

.insight-list > a > span:first-child { grid-column: 1; }
.insight-list > a > h3 { grid-column: 2; }
.insight-list > a > .insight-thumb { grid-column: 3; }
.insight-list > a > b { grid-column: 4; }
.insight-list > a > i { grid-column: 5; }
.insight-thumb--empty { background: transparent; }

.gallery-page-grid figcaption {
  padding: 38px 18px 14px;
  background: linear-gradient(0deg, rgba(4, 30, 21, .58) 0%, rgba(4, 30, 21, .22) 50%, transparent 100%);
}
.gallery-page-grid figcaption small { margin-bottom: 5px; }
.gallery-page-grid figcaption span { right: 16px; bottom: 15px; }

.global-cta { align-items: center; }
.global-cta > div { flex: 1 1 auto; }
.global-cta .button { flex: 0 0 auto; align-self: center; }

@media (max-width: 900px) {
  .section-intro { gap: 24px; }
}

@media (max-width: 640px) {
  .insight-list > a {
    min-height: 0;
    padding: 18px 4px;
    grid-template-columns: minmax(0, 1fr) auto 20px;
    grid-template-rows: auto auto auto;
    gap: 7px 12px;
  }
  .insight-list > a > span:first-child { grid-column: 1; grid-row: 1; }
  .insight-list > a > h3 { grid-column: 1; grid-row: 2; font-size: 18px; }
  .insight-list > a > .insight-thumb { grid-column: 1; grid-row: 3; justify-self: start; margin-top: 3px; }
  .insight-list > a > .insight-thumb--empty { display: none; }
  .insight-list > a > b { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .insight-list > a > i { grid-column: 3; grid-row: 1 / 4; align-self: center; }
  .global-cta { align-items: flex-start; }
  .global-cta .button { align-self: flex-start; }
}


/* 3.6.5 — document revisions: shared lead, supporting copy and video titles. */
:root {
  --nf-lead-size: clamp(20px, 1.55vw, 26px);
  --nf-lead-weight: 400;
  --nf-lead-line: 1.7;
  --nf-lead-spacing: -.035em;
  --nf-lead-color: #405149;
  --nf-support-size: 16px;
  --nf-support-line: 1.75;
  --nf-video-title-size: 16px;
  --nf-video-title-weight: 400;
  --nf-video-title-line: 1.45;
  --nf-video-title-spacing: -.025em;
}
html[lang="ko"] { --nf-lead-line: 1.85; }
html .section-intro .intro-copy > p,
html .home-section .process-heading h2 {
  font-family: inherit;
  font-size: var(--nf-lead-size);
  font-weight: var(--nf-lead-weight);
  line-height: var(--nf-lead-line);
  letter-spacing: var(--nf-lead-spacing);
  color: var(--nf-lead-color);
}
.home-section .process-heading h2 em { color: var(--green); font-weight: inherit; }
.process-step ul {
  width: 100%;
  min-width: 0;
  transform: none;
  font-size: var(--nf-support-size);
  line-height: var(--nf-support-line);
}
.process-step li { text-align: center; }
.process-step li::before { content: none; }
.video-section .video-section-heading--compact { margin-bottom: 15px; }
.video-section-heading--compact .overline { margin-bottom: 8px; }
.video-section .video-tile h4 {
  margin: 12px 0 0;
  font-size: var(--nf-video-title-size);
  font-weight: var(--nf-video-title-weight);
  line-height: var(--nf-video-title-line);
  letter-spacing: var(--nf-video-title-spacing);
}
.insight-section { gap: 24px; }
.insight-copy h2 { margin-bottom: 0; }
.global-cta > div { min-width: 0; }


/* 3.6.6 — document spacing and a persistent transparent mobile home header. */
:root {
  --nf-action-weight: 750;
  --nf-heading-label-gap: 22px;
  --nf-heading-content-gap: 28px;
  --nf-home-padding: 44px;
  --nf-intro-padding-top: 21px;
  --nf-intro-padding-bottom: 16px;
}
.section-intro.home-section { padding-block: var(--nf-intro-padding-top) var(--nf-intro-padding-bottom); }
.video-section.home-section,
.insight-section.home-section,
.product-preview.home-section { padding-block: var(--nf-home-padding); }
.section-intro .section-kicker .overline,
.insight-copy .brand-overline { margin-bottom: var(--nf-heading-label-gap); }
.section-intro { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
.section-intro .intro-copy { margin-top: var(--nf-heading-content-gap); }
.section-intro .intro-copy > p { margin-bottom: 0; }
.section-intro .intro-details--aside { margin: 16px 0 0; align-self: flex-start; }
.intro-details summary { padding: 0 0 7px; border-bottom-width: 1px; font-weight: var(--nf-action-weight); gap: 32px; }
.insight-section { gap: var(--nf-heading-content-gap); }
.product-preview .section-heading { margin-bottom: var(--nf-heading-content-gap); }
.insight-copy h2 { margin-bottom: 0; }
@media (max-width: 900px) {
  :root { --nf-home-padding: 38px; --nf-intro-padding-top: 25px; --nf-intro-padding-bottom: 25px; }
  .nf-header { position: fixed; top: 0; left: 0; width: 100%; }
  .nf-header:not(.nf-header--overlay) + main { padding-top: var(--header); }
  .nf-header--overlay { position: fixed; top: 0; left: 0; width: 100%; color: #fff; background: linear-gradient(180deg, rgba(5,29,21,.4), rgba(5,29,21,0)); border-bottom-color: rgba(255,255,255,.2); backdrop-filter: none; }
  .nf-header--overlay:not(.scrolled) .nf-brand-logo { filter: brightness(0) invert(1); }
  .nf-header--overlay:not(.scrolled) .menu-toggle { background: transparent; border-color: rgba(255,255,255,.5); }
  .nf-header--overlay:not(.scrolled) .menu-toggle span { background: #fff; }
  .nf-header--overlay .nf-nav { color: var(--ink); }
  .nf-header--overlay.scrolled { color: var(--ink); background: rgba(255,255,255,.97); border-bottom-color: var(--line); backdrop-filter: blur(16px); }
  .admin-bar .nf-header { top: 32px; }
}
@media (max-width: 782px) { .admin-bar .nf-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .nf-header.scrolled { top: 0; } }
@media (max-width: 640px) {
  :root { --nf-home-padding: 32px; --nf-intro-padding-top: 22px; --nf-intro-padding-bottom: 22px; }
}
