:root {
  --ys-paper: #f4f1e8;
  --ys-paper-2: #e9e6dc;
  --ys-ink: #17211d;
  --ys-muted: #65706a;
  --ys-line: rgba(23, 33, 29, .16);
  --ys-acid: #a9ef3a;
  --ys-green: #0b633f;
  --ys-white: #fffef9;
  --ys-orange: #ff623f;
  --ys-radius: 26px;
}


html {
  scroll-behavior: smooth;
}

body.yishine-template {
  margin: 0;
  color: var(--ys-ink);
  background: var(--ys-paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.yishine-template a {
  color: inherit;
  text-decoration: none;
}

.yishine-template img {
  max-width: 100%;
}

.yishine-template button,
.yishine-template input,
.yishine-template textarea {
  font: inherit;
}

.yishine-template .l-wrap {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding-inline: 48px;
}

.ys-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ys-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.ys-eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.ys-button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.ys-button span {
  font-size: 18px;
}

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

.ys-button-dark {
  color: var(--ys-white);
  background: var(--ys-ink);
}

.ys-button-dark:hover {
  background: var(--ys-green);
}

.ys-button-plain {
  color: var(--ys-ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--ys-line);
}

/* Header */
.ys-site-header {
  position: relative;
  z-index: 50;
  color: var(--ys-ink);
  background: var(--ys-paper);
}

.ys-signal-bar {
  color: var(--ys-ink);
  background: var(--ys-acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.ys-signal-bar .l-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ys-signal-bar div div {
  display: flex;
  gap: 26px;
}

.ys-nav {
  border-bottom: 1px solid var(--ys-line);
}

.ys-nav > .l-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.ys-brand {
  display: block;
  width: 205px;
}

.ys-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.ys-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
}

.ys-menu > a,
.ys-menu-item > a {
  position: relative;
  padding: 34px 0;
  color: var(--ys-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ys-menu > a::after,
.ys-menu-item > a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 2px;
  background: var(--ys-green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.ys-menu > a:hover::after,
.ys-menu > a.is-current::after,
.ys-menu-item:hover > a::after,
.ys-menu-item > a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ys-menu-item {
  position: relative;
  display: inline-flex;
}

.ys-submenu {
  position: absolute;
  top: calc(100% - 14px);
  left: -22px;
  width: 230px;
  padding: 12px;
  border: 1px solid var(--ys-line);
  border-radius: 18px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  background: var(--ys-white);
  box-shadow: 0 24px 70px rgba(23, 33, 29, .14);
  transform: translateY(10px);
  transition: .2s ease;
}

.ys-submenu a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
}

.ys-submenu a:hover {
  background: var(--ys-paper);
}

.ys-menu-item:hover .ys-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ys-nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ys-language {
  position: relative;
}

.ys-language > button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ys-line);
  border-radius: 50%;
  color: var(--ys-ink);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.ys-language > div {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 150px;
  padding: 8px;
  border: 1px solid var(--ys-line);
  border-radius: 14px;
  display: none;
  background: var(--ys-white);
  box-shadow: 0 18px 50px rgba(23, 33, 29, .12);
}

.ys-language:hover > div,
.ys-language:focus-within > div {
  display: grid;
}

.ys-language > div a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.ys-language > div a:hover {
  background: var(--ys-paper);
}

.ys-quote {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ys-white);
  background: var(--ys-ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ys-quote span {
  color: var(--ys-acid);
  font-size: 16px;
}

.ys-menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ys-line);
  border-radius: 50%;
  display: none;
  place-items: center;
  background: transparent;
}

.ys-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ys-ink);
  transition: .2s ease;
}

.ys-menu-toggle span:first-child {
  transform: translateY(-4px);
}

.ys-menu-toggle span:last-child {
  transform: translateY(4px);
}

/* Homepage */
.ys-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 72px;
  background:
    radial-gradient(circle at 8% 20%, rgba(169, 239, 58, .2), transparent 28%),
    var(--ys-paper);
}

.ys-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -22vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid var(--ys-line);
  border-radius: 50%;
  content: "";
}

.ys-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 112px);
}

.ys-hero-copy {
  padding: 40px 0;
}

.ys-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Arial Narrow", Impact, "Segoe UI", sans-serif;
  font-size: clamp(64px, 6.6vw, 118px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .86;
  text-wrap: balance;
  text-transform: uppercase;
}

.ys-hero-copy > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ys-muted);
  font-size: clamp(16px, 1.25vw, 20px);
}

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

.ys-hero-proof {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--ys-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ys-hero-proof div {
  display: grid;
  gap: 2px;
}

.ys-hero-proof strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: -.04em;
  line-height: 1;
}

.ys-hero-proof span {
  color: var(--ys-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ys-hero-visual {
  position: relative;
  min-height: 670px;
}

.ys-hero-number {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  color: rgba(23, 33, 29, .08);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(160px, 17vw, 285px);
  letter-spacing: -.08em;
  line-height: .75;
}

.ys-hero-image {
  position: absolute;
  top: 44px;
  right: 32px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 180px 28px 28px 28px;
  background: #d8d9d0;
  box-shadow: 0 40px 90px rgba(23, 33, 29, .13);
}

.ys-hero-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: inherit;
  content: "";
}

.ys-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ys-hero-tag {
  position: absolute;
  right: 0;
  bottom: 48px;
  z-index: 3;
  min-width: 190px;
  padding: 20px 24px;
  border-radius: 20px 0 0 20px;
  display: grid;
  color: var(--ys-ink);
  background: var(--ys-acid);
  box-shadow: 0 18px 45px rgba(23, 33, 29, .18);
}

.ys-hero-tag span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ys-hero-tag strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 38px;
  letter-spacing: .02em;
  line-height: 1.1;
}

.ys-ticker {
  overflow: hidden;
  padding: 17px 0;
  color: var(--ys-white);
  background: var(--ys-ink);
}

.ys-ticker > div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ys-ticker i {
  color: var(--ys-acid);
  font-size: 8px;
  font-style: normal;
}

.ys-section {
  padding: 120px 0;
}

.ys-section-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  align-items: end;
  gap: 60px;
}

.ys-section-head h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Arial Narrow", Impact, "Segoe UI", sans-serif;
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .96;
  text-transform: uppercase;
}

.ys-section-head p {
  margin: 0;
  color: var(--ys-muted);
  font-size: 17px;
}

.ys-family-grid {
  display: grid;
  grid-template-columns: 1.3fr .85fr;
  grid-template-rows: repeat(2, 330px);
  gap: 18px;
}

.ys-family {
  position: relative;
  overflow: hidden;
  border-radius: var(--ys-radius);
  color: var(--ys-white);
  background: var(--ys-ink);
}

.ys-family-main {
  grid-row: 1 / 3;
}

.ys-family::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 15, .04) 25%, rgba(11, 18, 15, .82) 100%);
  content: "";
}

.ys-family img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.ys-family:hover img {
  transform: scale(1.045);
}

.ys-family > span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.ys-family > div {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
}

.ys-family small {
  color: var(--ys-acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ys-family h3 {
  margin: 5px 0 0;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -.04em;
  line-height: 1;
}

.ys-family b {
  position: absolute;
  right: 0;
  bottom: 3px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ys-catalog {
  color: var(--ys-white);
  background: var(--ys-ink);
}

.ys-section-head-light .ys-eyebrow {
  color: var(--ys-acid);
}

.ys-section-head-light > a {
  justify-self: end;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.ys-product-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  display: block;
  background: #202c27;
  transition: background .25s ease, transform .25s ease;
}

.ys-product-card:hover {
  color: var(--ys-ink);
  background: var(--ys-acid);
  transform: translateY(-5px);
}

.ys-product-card-top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ys-product-card:hover .ys-product-card-top {
  color: rgba(23, 33, 29, .6);
}

.ys-product-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ys-paper-2);
}

.ys-product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ys-product-card h3 {
  margin: 22px 0 8px;
  font-size: 24px;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.ys-product-card p {
  min-height: 50px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.ys-product-card:hover p {
  color: rgba(23, 33, 29, .7);
}

.ys-card-link {
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ys-product-card:hover .ys-card-link {
  border-top-color: rgba(23, 33, 29, .18);
}

.ys-terrain {
  padding: 120px 0;
  background:
    linear-gradient(115deg, rgba(169, 239, 58, .16), transparent 44%),
    var(--ys-paper-2);
}

.ys-terrain-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 9vw;
}

.ys-terrain-title {
  position: sticky;
  top: 40px;
  align-self: start;
}

.ys-terrain h2 {
  max-width: 580px;
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(54px, 6vw, 92px);
  letter-spacing: -.06em;
  line-height: .9;
  text-transform: uppercase;
}

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

.ys-terrain-list article {
  padding: 30px 0;
  border-bottom: 1px solid var(--ys-line);
  display: grid;
  grid-template-columns: 50px minmax(180px, .7fr) 1fr;
  gap: 24px;
}

.ys-terrain-list article > span {
  color: var(--ys-green);
  font-size: 11px;
  font-weight: 800;
}

.ys-terrain-list h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.025em;
}

.ys-terrain-list p {
  margin: 0;
  color: var(--ys-muted);
  font-size: 14px;
}

.ys-factory-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.ys-factory-image {
  position: relative;
}

.ys-factory-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 28px 120px 28px 28px;
  display: block;
  object-fit: cover;
}

.ys-factory-image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ys-white);
  background: rgba(23, 33, 29, .84);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ys-factory-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(48px, 5vw, 78px);
  letter-spacing: -.055em;
  line-height: .93;
  text-transform: uppercase;
}

.ys-factory-copy > p {
  margin: 26px 0 34px;
  color: var(--ys-muted);
}

.ys-factory dl {
  margin: 0 0 34px;
}

.ys-factory dl > div {
  padding: 18px 0;
  border-top: 1px solid var(--ys-line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

.ys-factory dt {
  color: var(--ys-green);
  font-size: 11px;
  font-weight: 800;
}

.ys-factory dd {
  margin: 0;
  display: grid;
}

.ys-factory dd strong {
  font-size: 16px;
}

.ys-factory dd span {
  color: var(--ys-muted);
  font-size: 13px;
}

.ys-final {
  padding: 100px 0;
  color: var(--ys-white);
  background: var(--ys-green);
}

.ys-final .l-wrap {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.ys-final .l-wrap > span {
  color: var(--ys-acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ys-final h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(48px, 5vw, 82px);
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}

.ys-final-button {
  width: 164px;
  height: 164px;
  padding: 22px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ys-ink);
  background: var(--ys-acid);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform .25s ease;
}

.ys-final-button:hover {
  transform: rotate(-6deg) scale(1.04);
}

.ys-final-button b {
  font-size: 28px;
}

/* Footer */
.ys-site-footer {
  position: relative;
  overflow: hidden;
  color: var(--ys-white);
  background: #101713;
}

.ys-footer-top {
  position: relative;
  z-index: 2;
  padding-top: 74px;
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(350px, 1.4fr) .6fr .8fr;
  gap: 80px;
}

.ys-footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ys-footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.ys-footer-brand div {
  display: grid;
}

.ys-footer-brand strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 34px;
  letter-spacing: .04em;
  line-height: 1;
}

.ys-footer-brand span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ys-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ys-footer-column h3 {
  margin: 0 0 12px;
  color: var(--ys-acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ys-footer-column a,
.ys-footer-column span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.ys-footer-column a:hover {
  color: var(--ys-white);
}

.ys-footer-word {
  margin: 0 -1vw -4.8vw;
  color: rgba(255, 255, 255, .055);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 23vw;
  letter-spacing: -.055em;
  line-height: .72;
  text-align: center;
  pointer-events: none;
}

.ys-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.ys-footer-bottom .l-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .44);
  font-size: 11px;
}

.ys-footer-bottom button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .7);
  background: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Inner pages: visual restyle over the shared template structure */
.yishine-template .rm-site-header,
.yishine-template .rm-topbar,
.yishine-template .rm-nav {
  display: none !important;
}

.yishine-template .rm-inner {
  overflow: hidden;
  background: var(--ys-paper);
}

.yishine-template .rm-inner-hero,
.yishine-template .rm-product-hero {
  min-height: 390px;
  padding: 88px 0;
  display: flex;
  align-items: center;
  color: var(--ys-white);
  background:
    linear-gradient(90deg, rgba(16, 23, 19, .95), rgba(16, 23, 19, .68)),
    url("../images/yishine/factory-production.webp") center / cover no-repeat;
}

.yishine-template .rm-inner-hero span,
.yishine-template .rm-product-hero .rm-section-label {
  color: var(--ys-acid);
}

.yishine-template .rm-inner-hero h1,
.yishine-template .rm-product-hero h1 {
  max-width: 1000px;
  margin: 12px 0 18px;
  color: var(--ys-white);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(50px, 6vw, 92px);
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}

.yishine-template .rm-inner-hero p,
.yishine-template .rm-product-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.yishine-template .rm-page-titlebar {
  padding: 0;
  border: 0;
  background: var(--ys-acid);
}

.yishine-template .rm-page-titlebar .l-wrap {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yishine-template .rm-page-titlebar h1 {
  margin: 0;
  color: var(--ys-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.yishine-template .rm-page-path {
  color: rgba(23, 33, 29, .62);
  font-size: 11px;
}

.yishine-template .rm-page-path a,
.yishine-template .rm-page-path em {
  color: inherit;
  font-style: normal;
}

.yishine-template .rm-inner-section,
.yishine-template .rm-product-main {
  padding: 90px 0;
  background: var(--ys-paper);
}

.yishine-template .rm-catalog-layout,
.yishine-template .rm-product-detail-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 48px;
}

.yishine-template .rm-product-sidebar {
  width: auto;
}

.yishine-template .rm-side-block {
  margin: 0 0 16px;
  padding: 24px;
  border: 1px solid var(--ys-line);
  border-radius: 20px;
  background: rgba(255, 254, 249, .55);
  box-shadow: none;
}

.yishine-template .rm-side-block h2 {
  margin: 0 0 18px;
  color: var(--ys-ink);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yishine-template .rm-side-block a:not(.rm-btn) {
  padding: 11px 0;
  border-bottom: 1px solid var(--ys-line);
  display: block;
  color: var(--ys-muted);
  font-size: 13px;
}

.yishine-template .rm-side-block a:not(.rm-btn):hover,
.yishine-template .rm-side-block a.active {
  color: var(--ys-green);
}

.yishine-template .rm-side-quote {
  color: var(--ys-white);
  background: var(--ys-green);
}

.yishine-template .rm-side-quote h2 {
  color: var(--ys-white);
}

.yishine-template .rm-side-quote p {
  color: rgba(255, 255, 255, .68);
}

.yishine-template .rm-btn {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ys-ink);
  background: var(--ys-acid);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yishine-template .rm-btn-primary:hover {
  color: var(--ys-white);
  background: var(--ys-ink);
}

.yishine-template .rm-btn-dark {
  color: var(--ys-white);
  background: var(--ys-ink);
}

.yishine-template .rm-catalog-toolbar,
.yishine-template .rm-section-head {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.yishine-template .rm-catalog-toolbar h2,
.yishine-template .rm-section-head h2 {
  margin: 0;
  color: var(--ys-ink);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -.05em;
  line-height: .95;
  text-transform: uppercase;
}

.yishine-template .rm-section-label {
  color: var(--ys-green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.yishine-template .rm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.yishine-template .rm-product {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--ys-line);
  border-radius: 20px;
  display: block;
  background: rgba(255, 254, 249, .58);
  box-shadow: none;
  transition: transform .25s ease, background .25s ease;
}

.yishine-template .rm-product:hover {
  background: var(--ys-white);
  transform: translateY(-5px);
}

.yishine-template .rm-product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 13px;
  background: var(--ys-paper-2);
}

.yishine-template .rm-product-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.yishine-template .rm-product > strong {
  margin-top: 18px;
  display: block;
  color: var(--ys-ink);
  font-size: 20px;
  line-height: 1.2;
}

.yishine-template .rm-product > p {
  margin: 9px 0 16px;
  color: var(--ys-muted);
  font-size: 13px;
}

.yishine-template .rm-product > span {
  color: var(--ys-green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.yishine-template .rm-news-grid,
.yishine-template .rm-case-grid,
.yishine-template .rm-video-grid,
.yishine-template .rm-download-grid {
  gap: 18px;
}

.yishine-template .rm-news-card,
.yishine-template .rm-case-card,
.yishine-template .rm-video-card,
.yishine-template .rm-download-card {
  border: 1px solid var(--ys-line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ys-white);
  box-shadow: none;
}

.yishine-template .rm-news-img img,
.yishine-template .rm-case-card img,
.yishine-template .rm-video-card img {
  width: 100%;
  object-fit: cover;
}

.yishine-template .rm-pages a,
.yishine-template .rm-pages span {
  border-radius: 50%;
}

.yishine-template .rm-product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: end;
  gap: 70px;
}

.yishine-template .rm-detail-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yishine-template .rm-detail-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yishine-template .rm-detail-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.yishine-template .rm-hero-spec-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  display: grid;
  color: var(--ys-white);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.yishine-template .rm-hero-spec-card em {
  color: var(--ys-acid);
  font-style: normal;
}

.yishine-template .rm-product-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: 48px;
}

.yishine-template .rm-product-main-image {
  overflow: hidden;
  border-radius: 26px;
  background: var(--ys-white);
}

.yishine-template .rm-product-main-image img,
.yishine-template .rm-product-main-image video {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.yishine-template .rm-product-summary,
.yishine-template .rm-product-section,
.yishine-template .rm-product-story {
  padding: 30px;
  border: 1px solid var(--ys-line);
  border-radius: 22px;
  background: var(--ys-white);
  box-shadow: none;
}

.yishine-template .rm-product-summary h2 {
  color: var(--ys-ink);
  font-size: 28px;
  letter-spacing: -.03em;
}

.yishine-template .rm-summary-list > div,
.yishine-template .rm-parameter-table > div {
  border-color: var(--ys-line);
}

.yishine-template .rm-inquiry-modal {
  background: rgba(16, 23, 19, .72);
  backdrop-filter: blur(12px);
}

.yishine-template .rm-inquiry-dialog {
  border-radius: 26px;
  background: var(--ys-paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .3);
}

.yishine-template .rm-inquiry-form input,
.yishine-template .rm-inquiry-form textarea {
  border: 1px solid var(--ys-line);
  border-radius: 12px;
  background: var(--ys-white);
}

@media (max-width: 1180px) {
  .yishine-template .l-wrap {
    padding-inline: 28px;
  }

  .ys-nav > .l-wrap {
    grid-template-columns: 185px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .ys-brand {
    width: 178px;
  }

  .ys-menu {
    gap: 16px;
  }

  .ys-menu > a,
  .ys-menu-item > a {
    font-size: 10px;
  }

  .ys-hero-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
  }

  .ys-hero-visual {
    min-height: 580px;
  }

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

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

@media (max-width: 960px) {
  .ys-signal-bar div div,
  .ys-language,
  .ys-quote {
    display: none;
  }

  .ys-nav > .l-wrap {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .ys-brand {
    width: 174px;
  }

  .ys-menu-toggle {
    position: relative;
    display: grid;
  }

  .ys-menu-toggle.is-open span:first-child {
    transform: rotate(45deg);
  }

  .ys-menu-toggle.is-open span:last-child {
    transform: rotate(-45deg);
  }

  .ys-menu {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    padding: 34px 28px 80px;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: var(--ys-paper);
  }

  .ys-menu.is-open {
    display: flex;
  }

  .ys-menu > a,
  .ys-menu-item > a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--ys-line);
    display: block;
    font-size: 18px;
  }

  .ys-menu > a::after,
  .ys-menu-item > a::after {
    display: none;
  }

  .ys-menu-item {
    display: block;
  }

  .ys-submenu {
    position: static;
    width: auto;
    padding: 6px 0 12px 18px;
    border: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .ys-menu-item.is-open .ys-submenu {
    display: grid;
  }

  .ys-hero {
    padding-top: 30px;
  }

  .ys-hero-grid {
    grid-template-columns: 1fr;
  }

  .ys-hero-copy {
    padding-bottom: 0;
  }

  .ys-hero-visual {
    min-height: 600px;
  }

  .ys-section {
    padding: 88px 0;
  }

  .ys-section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ys-family-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 320px;
  }

  .ys-family-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .ys-terrain-grid,
  .ys-factory-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .ys-terrain-title {
    position: static;
  }

  .ys-final .l-wrap {
    grid-template-columns: 1fr auto;
  }

  .ys-final .l-wrap > span {
    grid-column: 1 / 3;
  }

  .ys-footer-top {
    grid-template-columns: 1.2fr .8fr;
  }

  .ys-footer-column:last-child {
    grid-column: 1 / 3;
  }

  .yishine-template .rm-catalog-layout,
  .yishine-template .rm-product-detail-layout {
    grid-template-columns: 1fr;
  }

  .yishine-template .rm-product-sidebar {
    order: 2;
  }

  .yishine-template .rm-product-hero-grid,
  .yishine-template .rm-product-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .yishine-template .l-wrap {
    padding-inline: 18px;
  }

  .ys-signal-bar .l-wrap {
    min-height: 30px;
    justify-content: center;
    text-align: center;
  }

  .ys-signal-bar {
    font-size: 9px;
  }

  .ys-menu {
    top: 106px;
    padding-inline: 18px;
  }

  .ys-hero {
    padding-bottom: 50px;
  }

  .ys-hero h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .ys-hero-copy > p {
    margin-top: 22px;
  }

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

  .ys-button {
    width: 100%;
  }

  .ys-hero-proof {
    margin-top: 36px;
  }

  .ys-hero-visual {
    min-height: 430px;
  }

  .ys-hero-image {
    top: 24px;
    right: 0;
    border-radius: 90px 20px 20px 20px;
  }

  .ys-hero-tag {
    bottom: 24px;
    min-width: 145px;
    padding: 14px 18px;
  }

  .ys-hero-tag strong {
    font-size: 30px;
  }

  .ys-ticker > div {
    justify-content: flex-start;
    padding-left: 18px;
  }

  .ys-section,
  .ys-terrain {
    padding: 70px 0;
  }

  .ys-section-head h2,
  .ys-terrain h2,
  .ys-factory-copy h2,
  .ys-final h2 {
    font-size: 46px;
  }

  .ys-family-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 380px);
  }

  .ys-family-main {
    grid-column: auto;
  }

  .ys-family b {
    position: static;
    margin-top: 12px;
    display: block;
  }

  .ys-product-grid {
    grid-template-columns: 1fr;
  }

  .ys-terrain-list article {
    grid-template-columns: 38px 1fr;
  }

  .ys-terrain-list p {
    grid-column: 2;
  }

  .ys-factory-image img {
    border-radius: 20px 72px 20px 20px;
  }

  .ys-final .l-wrap {
    grid-template-columns: 1fr;
  }

  .ys-final .l-wrap > span {
    grid-column: auto;
  }

  .ys-final-button {
    width: 130px;
    height: 130px;
  }

  .ys-footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ys-footer-column:last-child {
    grid-column: auto;
  }

  .ys-footer-bottom .l-wrap {
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .yishine-template .rm-inner-hero,
  .yishine-template .rm-product-hero {
    min-height: 330px;
    padding: 64px 0;
  }

  .yishine-template .rm-inner-section,
  .yishine-template .rm-product-main {
    padding: 62px 0;
  }

  .yishine-template .rm-page-titlebar h1 {
    display: none;
  }

  .yishine-template .rm-product-grid {
    grid-template-columns: 1fr;
  }

  .yishine-template .rm-catalog-toolbar,
  .yishine-template .rm-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .yishine-template .rm-product-summary,
  .yishine-template .rm-product-section,
  .yishine-template .rm-product-story {
    padding: 20px;
  }
}

/* =====================================================================
   YISHINE V2 — calm industrial / centered editorial layout
   ===================================================================== */
:root {
  --ys-paper: #f5f1e8;
  --ys-paper-2: #ebe5da;
  --ys-ink: #17241f;
  --ys-muted: #66716b;
  --ys-line: rgba(23, 36, 31, .14);
  --ys-acid: #b85b3f;
  --ys-green: #183f32;
  --ys-white: #fffdf8;
  --ys-orange: #b85b3f;
  --ys-radius: 18px;
}

body.yishine-template,
.yishine-template button,
.yishine-template input,
.yishine-template textarea {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-stretch: normal;
}

body.yishine-template {
  background: var(--ys-paper);
  color: var(--ys-ink);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

.yishine-template .l-wrap {
  width: 100%;
  max-width: 1240px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 32px;
  padding-left: 32px;
}

.ys-eyebrow {
  margin-bottom: 16px;
  color: var(--ys-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.ys-eyebrow::before {
  width: 20px;
  height: 1px;
}

.ys-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
}

.ys-button-dark {
  background: var(--ys-green);
}

.ys-button-dark:hover {
  background: #245443;
}

.ys-button-plain {
  background: rgba(255, 253, 248, .55);
}

/* Header */
.ys-site-header {
  background: rgba(245, 241, 232, .97);
}

.ys-signal-bar {
  color: rgba(255, 253, 248, .78);
  background: var(--ys-green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.ys-signal-bar .l-wrap {
  min-height: 32px;
}

.ys-nav {
  border-bottom-color: rgba(23, 36, 31, .11);
}

.ys-nav > .l-wrap {
  min-height: 84px;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 26px;
}

.ys-brand {
  width: 188px;
}

.ys-menu {
  gap: clamp(18px, 2.2vw, 32px);
}

.ys-menu > a,
.ys-menu-item > a {
  padding: 30px 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
}

.ys-menu > a::after,
.ys-menu-item > a::after {
  bottom: 23px;
  height: 1px;
  background: var(--ys-orange);
}

.ys-language > button {
  border-radius: 6px;
}

.ys-quote {
  min-height: 42px;
  border-radius: 6px;
  background: var(--ys-green);
}

.ys-quote span {
  color: #d58a6e;
}

/* Hero */
.ys-hero {
  padding: 72px 0 76px;
  background: var(--ys-paper);
}

.ys-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 140px);
  width: 1px;
  background: rgba(23, 36, 31, .08);
  content: "";
}

.ys-hero::after {
  top: 38px;
  right: max(22px, calc((100vw - 1320px) / 2 + 32px));
  bottom: auto;
  width: 84px;
  height: 84px;
  border-color: rgba(184, 91, 63, .35);
}

.ys-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(56px, 7vw, 104px);
}

.ys-hero-copy {
  padding: 20px 0;
}

.ys-hero h1,
.ys-section-head h2,
.ys-terrain h2,
.ys-factory-copy h2,
.ys-final h2,
.yishine-template .rm-inner-hero h1,
.yishine-template .rm-product-hero h1 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-stretch: normal;
  font-weight: 650;
  letter-spacing: -.045em;
  text-transform: none;
}

.ys-hero h1 {
  max-width: 610px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.03;
}

.ys-hero-copy > p {
  max-width: 545px;
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.75;
}

.ys-hero-actions {
  margin-top: 30px;
}

.ys-hero-proof {
  max-width: 560px;
  margin-top: 48px;
  padding-top: 22px;
  gap: 26px;
}

.ys-hero-proof strong,
.ys-hero-tag strong,
.ys-footer-brand strong,
.ys-footer-word {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-stretch: normal;
}

.ys-hero-proof strong {
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 600;
  letter-spacing: -.03em;
}

.ys-hero-proof span {
  font-size: 10px;
  font-weight: 650;
}

.ys-hero-visual {
  min-height: 590px;
}

.ys-hero-number {
  top: 10px;
  right: auto;
  left: -22px;
  color: var(--ys-orange);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}

.ys-hero-image {
  top: 0;
  right: 0;
  bottom: 0;
  left: 20px;
  border-radius: 10px;
  background: #d8d1c5;
  box-shadow: 0 28px 70px rgba(35, 48, 41, .14);
}

.ys-hero-image::after {
  border-color: rgba(255, 255, 255, .38);
}

.ys-hero-image img {
  object-position: center 58%;
}

.ys-hero-tag {
  right: -10px;
  bottom: 34px;
  min-width: 172px;
  padding: 17px 20px;
  border: 0;
  border-radius: 6px;
  color: var(--ys-white);
  background: var(--ys-orange);
  box-shadow: 0 16px 34px rgba(65, 33, 23, .19);
}

.ys-hero-tag strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.ys-ticker {
  padding: 15px 0;
  background: var(--ys-green);
}

.ys-ticker > div {
  gap: 34px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
}

.ys-ticker i {
  color: #c8785d;
  font-size: 9px;
}

/* Main sections */
.ys-section,
.ys-terrain {
  padding: 104px 0;
}

.ys-section-head {
  margin-bottom: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 64px;
}

.ys-section-head h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.04;
}

.ys-section-head p {
  font-size: 16px;
  line-height: 1.75;
}

.ys-family-grid {
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: repeat(2, 292px);
  gap: 16px;
}

.ys-family {
  border-radius: 10px;
}

.ys-family::after {
  background: linear-gradient(180deg, transparent 34%, rgba(14, 25, 20, .82) 100%);
}

.ys-family > span {
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  font-size: 10px;
}

.ys-family > div {
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.ys-family small {
  color: #e8a08a;
}

.ys-family h3 {
  font-size: clamp(27px, 2.6vw, 40px);
  font-weight: 600;
  letter-spacing: -.035em;
}

.ys-catalog {
  background: #172b24;
}

.ys-section-head-light .ys-eyebrow {
  color: #df8a6e;
}

.ys-product-grid {
  gap: 16px;
}

.ys-product-card {
  padding: 15px;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: #20372f;
}

.ys-product-card:hover {
  color: var(--ys-ink);
  background: #f1e9dd;
}

.ys-product-card-image {
  border-radius: 6px;
}

.ys-product-card h3 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 600;
}

.ys-terrain {
  background: var(--ys-paper-2);
}

.ys-terrain-grid {
  grid-template-columns: .86fr 1.14fr;
  gap: 9vw;
}

.ys-terrain h2 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02;
}

.ys-terrain-list article {
  padding: 25px 0;
  grid-template-columns: 44px minmax(170px, .7fr) 1fr;
}

.ys-terrain-list article > span,
.ys-factory dt {
  color: var(--ys-orange);
}

.ys-terrain-list h3 {
  font-size: 21px;
  font-weight: 600;
}

.ys-factory-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(48px, 7vw, 94px);
}

.ys-factory-image img {
  border-radius: 10px;
}

.ys-factory-copy h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.03;
}

.ys-final {
  padding: 82px 0;
  background: var(--ys-green);
}

.ys-final .l-wrap {
  grid-template-columns: 96px minmax(0, 1fr) auto;
}

.ys-final .l-wrap > span {
  color: #df8a6e;
}

.ys-final h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.02;
}

.ys-final-button {
  width: 142px;
  height: 142px;
  color: var(--ys-white);
  background: var(--ys-orange);
  font-weight: 700;
}

/* Footer */
.ys-site-footer {
  background: #111c18;
}

.ys-footer-top {
  padding-top: 68px;
  padding-bottom: 50px;
  grid-template-columns: minmax(330px, 1.35fr) .65fr .8fr;
}

.ys-footer-brand strong {
  font-size: 28px;
  font-weight: 600;
}

.ys-footer-column h3 {
  color: #d78367;
}

.ys-footer-word {
  margin-bottom: -3.8vw;
  font-size: 20vw;
  font-weight: 650;
  letter-spacing: -.065em;
}

/* Inner pages */
.yishine-template .rm-inner-hero,
.yishine-template .rm-product-hero {
  color: var(--ys-white);
  background:
    linear-gradient(90deg, rgba(17, 28, 24, .94), rgba(17, 28, 24, .54)),
    url("../images/yishine/factory-production.webp") center / cover no-repeat;
}

.yishine-template .rm-inner-hero span,
.yishine-template .rm-product-hero .rm-section-label {
  color: #df8a6e;
}

.yishine-template .rm-inner-hero h1,
.yishine-template .rm-product-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.03;
}

.yishine-template .rm-product-card,
.yishine-template .rm-product-summary,
.yishine-template .rm-product-section,
.yishine-template .rm-product-story {
  border-radius: 10px;
}

@media (max-width: 1180px) {
  .yishine-template .l-wrap {
    padding-right: 26px;
    padding-left: 26px;
  }

  .ys-hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    gap: 44px;
  }

  .ys-hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 960px) {
  .ys-nav > .l-wrap {
    min-height: 74px;
  }

  .ys-menu {
    background: var(--ys-paper);
  }

  .ys-hero::before {
    display: none;
  }

  .ys-hero-grid {
    grid-template-columns: 1fr;
  }

  .ys-hero-copy {
    max-width: 720px;
  }

  .ys-hero-visual {
    min-height: 570px;
  }

  .ys-hero-image {
    left: 0;
  }

  .ys-family-grid {
    grid-template-rows: 500px 300px;
  }
}

@media (max-width: 680px) {
  .yishine-template .l-wrap {
    padding-right: 18px;
    padding-left: 18px;
  }

  .ys-hero {
    padding: 52px 0 54px;
  }

  .ys-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
    line-height: 1.05;
  }

  .ys-hero-visual {
    min-height: 420px;
  }

  .ys-hero-image {
    border-radius: 8px;
  }

  .ys-section,
  .ys-terrain {
    padding: 72px 0;
  }

  .ys-section-head h2,
  .ys-terrain h2,
  .ys-factory-copy h2,
  .ys-final h2 {
    font-size: 38px;
  }

  .ys-family-grid {
    grid-template-rows: repeat(3, 350px);
  }

  .ys-final-button {
    width: 122px;
    height: 122px;
  }
}
