:root {
  --ink: #252525;
  --soft-ink: #7d7d7d;
  --gold: #c9a063;
  --gold-deep: #8b5a2b;
  --line: #eeeeee;
  --paper: #ffffff;
  --mist: #f6f6f6;
  --charcoal: #2c2c2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.7;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  height: 98px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(201, 160, 99, .15), 0 8px 30px rgba(30, 20, 10, .06);
  border-bottom: none;
}

.header-inner {
  width: min(1200px, calc(100% - 48px));
  height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.brand {
  width: 172px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f10d16;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "M";
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 30px;
  font-style: italic;
  font-weight: 900;
  line-height: 48px;
  text-align: center;
}

.brand-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  color: #8b5a2b;
}

.shop-trigger {
  white-space: nowrap;
  height: 38px;
  margin-left: 142px;
  border: 1px solid #c9a063;
  color: #8b5a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: #fff;
  border-radius: 22px;
  cursor: pointer;
  padding: 7px 18px;
  font-size: 13px;
  transition: background .2s;
}

.shop-trigger:hover {
  background: #faf6f0;
  color: #6b4520;
}

.shop-trigger .caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #8b5a2b;
}

.main-nav {
  margin-left: auto;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 9px 18px;
  color: #3a2a18;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .5px;
  border-radius: 0;
  position: relative;
  transition: color .2s ease;
}

.nav-item:hover>.nav-link {
  color: #c9a063;
}

.nav-item.active>.nav-link,
.nav-link.active {
  color: #8b5a2b;
  font-weight: 600;
}

.nav-item.active .nav-link::after,
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a063, transparent);
}



.nav-dropdown {
  display: none;
  position: absolute;
  z-index: 20;
  left: 50%;
  top: calc(100% + 14px);
  width: 160px;
  padding: 12px 0;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 10px 30px rgba(75,40,15,.18);
  border-radius: 10px;
  border-top: 3px solid #c9a063;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: #4a2c1a;
  text-align: left;
  font-size: 13px;
  transition: all .2s;
}

.nav-dropdown a:hover {
  background: #faf6f0;
  color: #8b5a2b;
  padding-left: 20px;
}

.nav-dropdown a.active {
  background: #faf6f0;
  color: #8b5a2b;
  font-weight: 600;
}

.hotline {
  margin-left: auto;
  margin-right: 2px;
  position: absolute;
  top: 8px;
  right: max(calc((100% - 1200px) / 2), 24px);
  color: #8b7355;
  font-size: 13px;
}

.hotline p,
.hotline span {
  color: #8b7355;
}

.hotline strong {
  color: #c9a063;
  font-size: 19px;
  font-weight: 700;
  margin-left: 6px;
  letter-spacing: .5px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 7px;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #8b5a2b;
}

.shop-panel {
  display: none;
  position: absolute;
  z-index: 12;
  top: 76px;
  left: max(calc((100% - 1200px) / 2 + 172px), 196px);
  width: 350px;
  padding: 17px 22px;
  background: #fff;
  border: none;
  border-top: 3px solid #c9a063;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 32px rgba(75,40,15,.2);
}

.shop-panel.open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.shop-panel a {
  color: #4a2c1a;
  padding: 9px 18px;
  border-bottom: 1px solid #f0e8da;
  display: block;
  transition: all .2s;
}

.shop-panel a:hover {
  background: #faf6f0;
  color: #8b5a2b;
}

.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #d4d0ca url(../images/hero-main.jpg) center/cover no-repeat;
}

.hero-scene,
.hero-pot,
.hero-dish,
.hero-petal {
  display: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  background: linear-gradient(106deg, #393938 0 24%, #d8c6a5 24% 48%, #5f5646 48% 68%, #c6a889 68% 100%);
}

.hero-dish {
  position: absolute;
  width: 525px;
  height: 525px;
  border-radius: 50%;
  left: calc(50% - 270px);
  top: -25px;
  border: 24px solid #90918d;
  background: radial-gradient(circle at 39% 31%, #f3edcf 0 20%, transparent 20.5%), radial-gradient(circle at 63% 43%, #668f4f 0 18%, transparent 18.5%), radial-gradient(circle at 38% 65%, #c3d17c 0 15%, transparent 15.5%), radial-gradient(circle at 62% 70%, #ab6948 0 18%, transparent 18.5%), #d6bd89;
  box-shadow: 0 3px 17px rgba(0, 0, 0, .45);
}

.hero-pot {
  position: absolute;
  width: 355px;
  height: 355px;
  left: -92px;
  top: 75px;
  border-radius: 50%;
  border: 22px solid #2b2b2b;
  background: radial-gradient(circle at 50% 45%, #e4a446 0 25%, #ab672f 26% 53%, #5e3b23 54%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .55);
}

.hero-pot::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 110px;
  right: -70px;
  top: 95px;
  border: 12px solid #303030;
  border-left: 0;
  border-radius: 0 60px 60px 0;
}

.hero-petal {
  position: absolute;
  right: -55px;
  top: 10px;
  width: 290px;
  height: 485px;
  background: radial-gradient(ellipse at 27% 20%, #e8d5b0 0 11%, transparent 11.5%), radial-gradient(ellipse at 50% 14%, #e8d5b0 0 13%, transparent 13.5%), radial-gradient(ellipse at 76% 22%, #d4af37 0 15%, transparent 15.5%), radial-gradient(ellipse at 31% 45%, #d4af37 0 14%, transparent 14.5%), radial-gradient(ellipse at 65% 51%, #f1e5c7 0 16%, transparent 16.5%), radial-gradient(ellipse at 39% 76%, #c9a063 0 15%, transparent 15.5%), radial-gradient(ellipse at 79% 82%, #f1e5c7 0 16%, transparent 16.5%);
  opacity: .95;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 70px;
  transform: translateY(-50%);
  border: 0;
  color: #fff;
  background: rgba(232, 213, 176, .5);
  font-size: 52px;
  line-height: 55px;
  cursor: pointer;
}

.hero-arrow.prev {
  left: 0;
}

.hero-arrow.next {
  right: 0;
}

.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots span, .hero-dot {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .4s ease;
}

.hero-dots span.active, .hero-dot.active {
  width: 50px;
  background: linear-gradient(90deg, #c9a063, #f1d48a);
  border-radius: 2px;
}

.section-title {
  padding-top: 55px;
  text-align: center;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  color: #d4af37;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.25;
}

.section-title p {
  margin: 3px 0 0;
  color: #999;
  font-size: 20px;
  letter-spacing: .2px;
}

.join-steps {
  background: #fff;
  padding-bottom: 57px;
}

.join-step-tabs {
  width: min(1090px, calc(100% - 48px));
  margin: 33px auto 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.join-step-tab {
  position: relative;
  min-height: 96px;
  padding: 0 6px;
  border: 0;
  color: #8b8b8b;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.join-step-tab:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: -4px;
  right: -12px;
  color: #bebebe;
  font-size: 44px;
  line-height: 1;
}

.join-step-tab b {
  display: block;
  color: #b9b9b9;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.join-step-tab span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  white-space: nowrap;
}

.join-step-tab.active b,
.join-step-tab.active span {
  color: #c9a063;
}

.join-step-tab.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #c9a063;
}

.join-gallery {
  width: min(1200px, 100%);
  height: 330px;
  margin: 31px auto 0;
  overflow: hidden;
  position: relative;
}

.join-gallery-track {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.25, .6, .25, 1);
}

.join-gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.join-gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(0, 0, 0, .12));
}

.consultation {
  background: url(../images/join-step-1.jpg) center/cover no-repeat;
}

.location {
  background: url(../images/join-step-2.jpg) center/cover no-repeat;
}

.contract {
  background: url(../images/join-step-3.jpg) center/cover no-repeat;
}

.design {
  background: url(../images/join-step-4.jpg) center/cover no-repeat;
}

.equipment {
  background: url(../images/join-step-5.jpg) center/cover no-repeat;
}

.training {
  background: url(../images/join-step-6.jpg) center/cover no-repeat;
}

.supply {
  background: url(../images/join-step-7.jpg) center/cover no-repeat;
}

.opening {
  background: url(../images/join-step-8.jpg) center/cover no-repeat;
}

.join-gallery-slide>div {
  position: relative;
  z-index: 1;
  width: min(540px, 72vw);
  height: 235px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}

.join-gallery-slide b,
.join-gallery-slide strong {
  position: absolute;
  color: #695c55;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2px;
}

.join-scene-card {
  padding: 42px 47px;
}

.join-scene-card i {
  display: block;
  width: 74%;
  height: 12px;
  margin-bottom: 18px;
  background: #e8d5b0;
}

.join-scene-card i:nth-child(2) {
  width: 58%;
  background: #bfcfb3;
}

.join-scene-card i:nth-child(3) {
  width: 66%;
  background: #e8d5ac;
}

.join-scene-card strong {
  right: 45px;
  bottom: 34px;
}

.join-scene-map {
  background: linear-gradient(135deg, #dce9d1 0 49%, #f5efd9 49% 52%, #b2d0df 52%);
}

.join-scene-map i {
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #b8941f;
  box-shadow: 0 0 0 8px rgba(184, 148, 31, .2);
}

.join-scene-map i:nth-child(1) {
  left: 24%;
  top: 32%;
}

.join-scene-map i:nth-child(2) {
  left: 63%;
  top: 48%;
}

.join-scene-map i:nth-child(3) {
  left: 47%;
  top: 68%;
}

.join-scene-map b {
  right: 35px;
  bottom: 25px;
}

.join-scene-contract {
  padding: 32px 45px;
  transform: rotate(-3deg);
}

.join-scene-contract i {
  display: block;
  height: 8px;
  margin: 14px 0;
  background: #b9c2c9;
}

.join-scene-contract i:nth-child(2) {
  width: 74%;
}

.join-scene-contract b {
  right: 42px;
  bottom: 26px;
}

.join-scene-design {
  background: linear-gradient(90deg, #f5efdb 0 50%, #bf987d 50%);
}

.join-scene-design i {
  position: absolute;
  border: 2px solid #94979c;
}

.join-scene-design i:nth-child(1) {
  left: 52px;
  top: 48px;
  width: 180px;
  height: 108px;
}

.join-scene-design i:nth-child(2) {
  right: 52px;
  top: 48px;
  width: 120px;
  height: 150px;
}

.join-scene-design i:nth-child(3) {
  left: 65px;
  bottom: 35px;
  width: 280px;
  height: 2px;
  border: 0;
  background: #c9a063;
}

.join-scene-design b,
.join-scene-equipment b,
.join-scene-training b,
.join-scene-supply b,
.join-scene-opening b {
  left: 43px;
  bottom: 25px;
}

.join-scene-equipment {
  background: linear-gradient(100deg, #e9e5d9 0 46%, #829190 46%);
}

.join-scene-equipment i {
  position: absolute;
  width: 110px;
  height: 120px;
  border: 10px solid #6c7772;
  background: #cdd5c5;
}

.join-scene-equipment i:nth-child(1) {
  left: 90px;
  top: 47px;
}

.join-scene-equipment i:nth-child(2) {
  right: 100px;
  top: 57px;
  background: #e9c281;
}

.join-scene-training {
  background: linear-gradient(135deg, #faf6f0 0 59%, #92b4a0 59%);
}

.join-scene-training i {
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 160px;
  border-radius: 50px 50px 0 0;
  background: #7e654e;
}

.join-scene-training i:nth-child(1) {
  left: 35%;
}

.join-scene-training i:nth-child(2) {
  right: 29%;
  background: #d59a7a;
}

.join-scene-supply {
  background: linear-gradient(90deg, #c89e6a, #f1dcc2 42%, #78926e);
}

.join-scene-supply i {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #d9b17c;
  border: 5px solid #fff4df;
}

.join-scene-supply i:nth-child(1) {
  left: 17%;
  top: 35px;
}

.join-scene-supply i:nth-child(2) {
  left: 39%;
  top: 80px;
  background: #c9674d;
}

.join-scene-supply i:nth-child(3) {
  left: 61%;
  top: 36px;
  background: #77934f;
}

.join-scene-opening {
  background: linear-gradient(90deg, #6e5042 0 26%, #e2b780 26% 74%, #6e5042 74%);
}

.join-scene-opening i {
  position: absolute;
  top: 0;
  width: 38px;
  height: 100%;
  background: #8b5a2b;
}

.join-scene-opening i:nth-child(1) {
  left: 18%;
}

.join-scene-opening i:nth-child(2) {
  right: 18%;
}

.join-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.join-gallery-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d7d7d7;
  cursor: pointer;
}

.join-gallery-dots button.active {
  background: #c9a063;
}

.image-strip {
  height: 535px;
  display: grid;
  grid-template-columns: 19% 61% 20%;
  overflow: hidden;
}

.strip-side,
.strip-main {
  min-height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.strip-side {
  background-image: linear-gradient(180deg, rgba(13, 13, 13, .06), rgba(13, 13, 13, .28)), url(../images/strip-side.jpg);
}

.strip-main {
  background-image: url(../images/strip-main.jpg);
  position: relative;
  overflow: hidden;
}

.strip-main::before {
  display: none;
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 44% 34%, #f5e6c8 0 11%, transparent 11.5%), radial-gradient(circle at 65% 60%, #176aa5 0 10%, transparent 10.5%), linear-gradient(145deg, transparent 46%, #245370 47% 50%, transparent 51%);
  bottom: -88px;
  left: calc(50% - 230px);
  transform: rotate(21deg);
  opacity: .92;
}

.home-products,
.home-shop,
.home-news {
  background: var(--mist);
  padding-bottom: 80px;
}

.home-products .section-title {
  padding-bottom: 48px;
}

.product-grid {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  overflow: hidden;
}

.product-thumb {
  aspect-ratio: 1 / .78;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #e0c0a6;
  position: relative;
  overflow: hidden;
}

.product-thumb::before {
  display: none;
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff2c5 0 21%, transparent 22%), radial-gradient(circle at 30% 62%, #c76441 0 18%, transparent 19%), radial-gradient(circle at 69% 66%, #669547 0 18%, transparent 19%), #f4f0df;
  left: 13%;
  top: 9%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
}

.product-copy {
  padding: 12px 15px 16px;
  text-align: center;
}

.product-copy h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.product-copy p {
  margin: 4px 0 0;
  color: #999;
  font-size: 12px;
}

.home-about {
  min-height: 526px;
  background: url(../images/home-about-bg.jpg) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.home-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 31, 25, .55), rgba(24, 30, 22, .28));
}

.about-home-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 65px;
  position: relative;
}

.home-about-heading {
  text-align: center;
}

.about-home-inner h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.25;
  margin: 0;
}

.about-home-inner h3 {
  color: #fff;
  margin: 1px 0 0;
  font-size: 24px;
  font-weight: 400;
}

.home-about-main {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 62px;
  margin-top: 45px;
}

.about-home-copy {
  padding: 0 20px 0 28px;
}

.about-home-copy p {
  margin: 0 0 25px;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}

.about-more {
  display: inline-block;
  min-width: 156px;
  padding: 10px 32px;
  color: #fff;
  background: #c9a063;
  border-radius: 24px;
  text-align: center;
  font-size: 14px;
  transition: background .2s ease;
}

.about-more:hover {
  background: #8b5a2b;
}

.about-photo {
  height: 270px;
  display: block;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 25px rgba(0, 0, 0, .22);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .3);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.about-photo:hover img {
  transform: scale(1.035);
}

.shop-grid {
  width: min(1200px, calc(100% - 48px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shop-card {
  background: #fff;
}

.shop-thumb {
  height: 210px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #d6b285;
  position: relative;
}

.shop-thumb::after {
  display: none;
}

.shop-card p {
  margin: 0;
  padding: 12px 16px;
  text-align: center;
}

.news-list-home {
  width: min(920px, calc(100% - 48px));
  margin: 42px auto 0;
}

.news-row {
  display: grid;
  grid-template-columns: 115px 1fr 80px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
  padding: 16px 0;
}

.news-date {
  color: #b7b7b7;
  font-size: 15px;
}

.news-row h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.news-row p {
  color: #999;
  margin: 3px 0 0;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-row .more {
  color: #c9a063;
  font-size: 12px;
  text-align: right;
}

.page-hero {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #766b5c url(../images/page-hero.jpg) center/cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 24, 22, .6), rgba(26, 24, 22, .2));
}

.page-hero-inner {
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.page-hero h1 {
  margin: 0;
  font-size: 35px;
  letter-spacing: 1px;
}

.page-hero p {
  margin: 1px 0 0;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .75);
}

.about-banner {
  height: 270px;
  position: relative;
  overflow: hidden;
  background: url(../images/about-banner.jpg) center/cover no-repeat;
}

.about-banner::before,
.about-banner-food,
.about-banner-sprout {
  display: none;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(111deg, rgba(255, 255, 255, .3) 0 12px, rgba(255, 255, 255, 0) 12px 80px);
  opacity: .6;
}

.about-banner-food {
  position: absolute;
  z-index: 1;
  border-radius: 50% 48% 45% 53%;
  background: radial-gradient(circle at 34% 27%, rgba(255, 255, 255, .75) 0 5%, transparent 5.5%), linear-gradient(145deg, #e8d5b0, #d8c6a5);
  box-shadow: 0 5px 12px rgba(77, 46, 34, .18);
  transform: rotate(-18deg);
}

.about-banner-food-one {
  width: 310px;
  height: 143px;
  left: 5%;
  top: 82px;
}

.about-banner-food-two {
  width: 335px;
  height: 155px;
  left: 34%;
  top: 34px;
  transform: rotate(18deg);
  background: radial-gradient(circle at 55% 24%, #f7d64b 0 7%, transparent 7.5%), linear-gradient(145deg, #e8d5b0, #c9a063);
}

.about-banner-food-three {
  width: 312px;
  height: 140px;
  right: 7%;
  top: 79px;
  transform: rotate(-5deg);
}

.about-banner-sprout {
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 70px;
  border-radius: 100% 0 100% 0;
  background: #4e9652;
  transform: rotate(20deg);
  opacity: .9;
}

.about-banner-sprout::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 43px;
  right: -39px;
  bottom: -26px;
  border-radius: 100% 0 100% 0;
  background: #72ae61;
  transform: rotate(55deg);
}

.about-banner-sprout-one {
  left: 14%;
  top: 24px;
}

.about-banner-sprout-two {
  right: 22%;
  top: 25px;
  transform: rotate(88deg) scale(.8);
}

.about-reference-main {
  width: min(1200px, calc(100% - 48px));
  min-height: 510px;
  margin: 0 auto;
  padding: 64px 0 88px;
}

.about-crumb-wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
}

.about-crumb-title {
  min-height: 69px;
  border-left: 5px solid #b0b0b0;
  padding: 0 0 0 20px;
}

.about-crumb-title strong,
.about-crumb-title span {
  display: block;
}

.about-crumb-title strong {
  color: #333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.about-crumb-title span {
  color: #aaa;
  font-size: 19px;
  margin-top: 4px;
}

.about-crumb-side {
  text-align: right;
  color: #777;
}

.about-crumb-side p {
  margin: 0 0 22px;
  font-size: 13px;
}

.about-crumb-side p span {
  color: #c9a063;
}

.about-crumb-side nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.about-crumb-side a {
  color: #777;
  border-bottom: 1px solid #b8941f;
  padding-bottom: 7px;
  transition: color .2s ease;
}

.about-crumb-side a:hover {
  color: #8b5a2b;
}

.about-article {
  padding-top: 59px;
}

.about-article .content-title {
  display: none;
}

.about-article p {
  padding-left: 9%;
  margin: 0 0 29px;
  color: #333;
  line-height: 30px;
}

.page-main {
  width: min(1200px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  padding: 54px 0 80px;
}

.breadcrumb {
  border-bottom: 1px solid #ededed;
  padding-bottom: 17px;
  color: #999;
  font-size: 13px;
}

.breadcrumb span {
  color: #c9a063;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  padding-top: 30px;
}

.side-nav h2 {
  margin: 0 0 10px;
  color: #c9a063;
  font-size: 23px;
  font-weight: 400;
}

.side-nav a {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  color: #777;
}

.side-nav a:hover,
.side-nav a.active {
  color: #fff;
  background: #c9a063;
}

.content {
  min-width: 0;
}

.content-title {
  margin: 0 0 25px;
  font-size: 25px;
  font-weight: 400;
}

.content p {
  color: #666;
  margin: 0 0 14px;
  line-height: 2;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-list .product-card {
  border: 1px solid #efefef;
}

.product-list .product-thumb {
  aspect-ratio: 1/.72;
}

.empty-state {
  padding: 84px 10px;
  color: #999;
  text-align: center;
  border: 1px solid #eee;
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 35px;
  justify-content: center;
}

.pagination span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #999;
  border: 1px solid #eee;
}

.pagination span.active {
  background: #c9a063;
  border-color: #c9a063;
  color: #fff;
}

.timeline {
  border-left: 1px solid #ddd;
  margin-left: 26px;
  padding: 0 0 0 50px;
}

.timeline-year {
  position: relative;
  margin: 0 0 27px;
  color: #c9a063;
  font-size: 32px;
  font-weight: 700;
}

.timeline-year::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c9a063;
  left: -57px;
  top: 15px;
}

.timeline-item {
  margin: 0 0 12px;
  color: #777;
}

.timeline-item strong {
  display: inline-block;
  width: 90px;
  color: #444;
  font-weight: 400;
}

.join-block {
  margin: 0 0 46px;
  padding-left: 76px;
  position: relative;
}

.join-block .join-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.join-block h2 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 400;
}

.join-block p {
  margin: 0;
}

.shop-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.shop-list .shop-card {
  border: 1px solid #eee;
}

.shop-list .shop-thumb {
  height: 232px;
}

.shop-card .shop-info {
  padding: 14px 17px 18px;
}

.shop-info h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
}

.shop-info p {
  padding: 0;
  margin: 4px 0;
  color: #999;
  font-size: 13px;
  text-align: left;
}

.shop-info a {
  color: #b8941f;
  font-size: 12px;
}

.news-list .article-row {
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  align-items: center;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid #eee;
}

.article-date {
  text-align: center;
  color: #bbb;
  font-size: 15px;
}

.article-date strong {
  display: block;
  color: #c9a063;
  font-size: 30px;
  line-height: 1;
}

.article-row h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.article-row p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.article-row a {
  color: #b8941f;
  font-size: 12px;
  text-align: right;
}

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

.article h1 {
  margin: 0;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
}

.article-meta {
  margin: 12px 0 30px;
  text-align: center;
  color: #aaa;
  font-size: 12px;
}

.article p {
  text-indent: 2em;
  line-height: 2.1;
}

.article-nav {
  border-top: 1px solid #eee;
  margin-top: 35px;
  padding-top: 18px;
  color: #999;
}

.article-nav a {
  color: #b8941f;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 70px;
  align-items: center;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 11px 0;
  border-bottom: 1px solid #eee;
  color: #777;
}

.contact-list strong {
  display: inline-block;
  width: 94px;
  color: #444;
  font-weight: 400;
}

.qr-placeholder {
  height: 220px;
  background: url(../images/qr-code.jpg) center/contain no-repeat, #fff;
  position: relative;
  border: 1px solid #eee;
}

.qr-placeholder::after {
  content: "关注我们";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -31px;
  text-align: center;
  color: #888;
}

.job-list details {
  border-bottom: 1px solid #eee;
}

.job-list summary {
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
}

.job-list summary::after {
  content: "+";
  color: #c9a063;
}

.job-list details[open] summary::after {
  content: "−";
}

.job-list p {
  padding: 0 20px 18px 0;
  margin: 0;
}

.message-form {
  max-width: 710px;
}

.form-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}

.form-row label {
  color: #666;
  text-align: right;
}

.form-row.required label::before {
  content: "* ";
  color: #8b5a2b;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #e4e4e4;
  background: #fff;
  outline: none;
}

.form-row textarea {
  min-height: 128px;
  resize: vertical;
}

.submit-button {
  margin-left: 102px;
  width: 120px;
  border: 0;
  padding: 10px 0;
  color: #fff;
  background: #c9a063;
  cursor: pointer;
}

.submit-button:hover {
  background: #b8941f;
}

.site-footer {
  background: #292929;
  color: #c7c7c7;
  padding: 49px 0 28px;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 150px 250px;
  gap: 45px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.footer-nav a {
  font-size: 13px;
  color: #d1d1d1;
}

.footer-nav a:hover {
  color: #b8941f;
}

.copyright {
  margin: 22px 0 0;
  color: #8f8f8f;
  font-size: 12px;
}

.footer-qr {
  width: 86px;
  height: 86px;
  background: url(../images/qr-code.jpg) center/contain no-repeat, #fff;
  border: 1px solid #555;
}

.footer-qr-wrap {
  text-align: center;
  font-size: 12px;
}

.footer-hotline {
  border-left: 1px solid #505050;
  padding-left: 35px;
}

.footer-hotline p {
  margin: 0 0 4px;
  color: #a3a3a3;
}

.footer-hotline strong {
  color: #c9a063;
  font-size: 27px;
  font-weight: 700;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 28px;
  width: 43px;
  height: 43px;
  border: 0;
  color: #fff;
  background: rgba(201, 160, 99, .83);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}


@keyframes header-enter {
  from {
    transform: translateY(-16px);
  }

  to {
    transform: translateY(0);
  }
}

.motion-ready .site-header {
  animation: header-enter .58s ease both;
}

.motion-ready .motion-up,
.motion-ready .motion-left,
.motion-ready .motion-right {
  opacity: 0;
  transition: opacity .68s ease var(--motion-delay, 0ms), transform .68s cubic-bezier(.2, .7, .25, 1) var(--motion-delay, 0ms);
}

.motion-ready .motion-up {
  transform: translateY(30px);
}

.motion-ready .motion-left {
  transform: translateX(-34px);
}

.motion-ready .motion-right {
  transform: translateX(34px);
}

.motion-ready .motion-up.in-view,
.motion-ready .motion-left.in-view,
.motion-ready .motion-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.motion-ready .hero-scene,
.motion-ready .hero-pot,
.motion-ready .hero-dish,
.motion-ready .hero-petal {
  animation-fill-mode: both;
}

.motion-ready .hero-scene {
  animation: hero-fade .7s ease both;
}

.motion-ready .hero-pot {
  animation: hero-slide-left .8s .08s ease both;
}

.motion-ready .hero-dish {
  animation: hero-rise .85s .14s ease both;
}

.motion-ready .hero-petal {
  animation: hero-slide-right .8s .18s ease both;
}

@keyframes hero-fade {
  from {
    filter: brightness(.94);
  }

  to {
    filter: brightness(1);
  }
}

@keyframes hero-slide-left {
  from {
    transform: translateX(-70px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-slide-right {
  from {
    transform: translateX(70px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-rise {
  from {
    transform: translateY(42px) scale(.96);
  }

  to {
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) and (min-width: 768px) {

  .shop-trigger,
  .nav-link,
  .footer-nav a,
  .more-link,
  .about-more,
  .article-row a,
  .shop-info a {
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
  }

  .shop-trigger:hover {
    color: #fff;
    border-color: #c9a063;
    background: #c9a063;
  }

  .shop-trigger:hover .caret {
    border-top-color: #fff;
  }

  .join-step-tab {
    transition: color .25s ease, transform .25s ease;
  }

  .join-step-tab:hover {
    transform: translateY(-4px);
  }

  .join-step-tab:hover b,
  .join-step-tab:hover span {
    color: #c9a063;
  }

  .product-card,
  .shop-card {
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .product-card .product-thumb::before {
    transition: transform .45s ease;
  }

  .product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 24px rgba(39, 32, 28, .15);
  }

  .product-card:hover .product-thumb::before {
    transform: scale(1.055);
  }

  .shop-card {
    overflow: hidden;
  }

  .shop-thumb {
    transition: transform .45s ease, filter .3s ease;
  }

  .shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(36, 30, 26, .15);
  }

  .shop-card:hover .shop-thumb {
    transform: scale(1.035);
    filter: saturate(1.08);
  }

  .news-row,
  .article-row {
    transition: background .28s ease, padding-left .28s ease, padding-right .28s ease;
  }

  .news-row:hover,
  .article-row:hover {
    background: #c9a063;
    padding-left: 15px;
    padding-right: 15px;
  }

  .news-row:hover,
  .news-row:hover h3 a,
  .news-row:hover p,
  .news-row:hover .news-date,
  .news-row:hover .more,
  .article-row:hover,
  .article-row:hover h2 a,
  .article-row:hover p,
  .article-row:hover .article-date,
  .article-row:hover a {
    color: #fff;
  }

  .about-photo {
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .about-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, .28);
  }

  .join-gallery {
    transition: box-shadow .3s ease;
  }

  .join-gallery:hover {
    box-shadow: 0 12px 26px rgba(55, 41, 33, .15);
  }

  .back-top:hover {
    background: #8b5a2b;
    transform: translateY(-4px);
  }

  .footer-qr {
    transition: transform .3s ease;
  }

  .footer-qr:hover {
    transform: scale(1.05);
  }
}


.join-steps .section-title {
  padding-top: 64px;
}

.join-step-tabs {
  margin-top: 42px;
}

.join-gallery {
  margin-top: 30px;
}

.join-gallery-dots {
  margin-top: 18px;
}

.home-products .section-title {
  padding-top: 66px;
  padding-bottom: 56px;
}

.product-grid {
  gap: 26px;
}

.home-about {
  margin-top: 0;
}

.about-home-inner {
  padding-top: 66px;
  padding-bottom: 76px;
}

.home-about-main {
  margin-top: 56px;
  gap: 78px;
}

.about-home-copy {
  padding-left: 40px;
  padding-right: 30px;
}

.about-home-copy p {
  margin-bottom: 32px;
}

.about-photo {
  height: 286px;
}

@media (max-width: 900px) {
  .join-steps .section-title {
    padding-top: 48px;
  }

  .join-step-tabs {
    margin-top: 30px;
  }

  .join-gallery {
    margin-top: 24px;
  }

  .join-gallery-dots {
    margin-top: 13px;
  }

  .home-products .section-title {
    padding-top: 50px;
    padding-bottom: 38px;
  }

  .product-grid {
    gap: 18px;
  }

  .about-home-inner {
    padding-top: 49px;
    padding-bottom: 58px;
  }

  .home-about-main {
    margin-top: 38px;
    gap: 30px;
  }

  .about-home-copy {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-home-copy p {
    margin-bottom: 22px;
  }

  .about-photo {
    height: 226px;
  }
}

@media (max-width: 1199px) {
  .header-inner {
    width: calc(100% - 36px);
  }

  .shop-trigger {
    margin-left: 40px;
  }

  .main-nav {
    gap: 18px;
  }

  .hotline {
    display: none;
  }

  .hero {
    height: 410px;
  }

  .hero-dish {
    width: 440px;
    height: 440px;
    left: calc(50% - 220px);
  }

  .hero-pot {
    transform: scale(.86);
    transform-origin: left center;
  }

  .image-strip {
    height: 420px;
  }

  .page-main {
    width: calc(100% - 48px);
  }

  .page-hero-inner {
    width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {

  .site-header,
  .header-inner {
    height: 70px;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .shop-trigger,
  .hotline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    margin-top: 0;
    display: none;
    position: absolute;
    z-index: 21;
    left: 0;
    top: 70px;
    width: 100%;
    padding: 10px 22px 17px;
    background: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, .1);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .nav-item {
    position: static;
  }

  .nav-link {
    padding: 8px 4px;
    text-align: center;
  }

  .nav-item.active>.nav-link::after,
  .nav-item:hover>.nav-link::after {
    display: none;
  }

  .nav-dropdown {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown a {
    display: none;
    padding: 5px 2px;
    color: #999;
    font-size: 11px;
  }

  .main-nav.open .nav-dropdown a {
    display: block;
  }

  .nav-dropdown a:hover {
    color: #b8941f;
    background: transparent;
  }

  .main-nav.open .nav-dropdown a.active {
    color: #b8941f;
    background: transparent;
  }

  .join-step-tabs {
    width: calc(100% - 30px);
    grid-template-columns: repeat(4, 1fr);
    row-gap: 22px;
  }

  .join-step-tab {
    min-height: 58px;
  }

  .join-step-tab:not(:last-child)::after {
    display: none;
  }

  .join-step-tab b {
    font-size: 32px;
  }

  .join-step-tab span {
    margin-top: 4px;
    white-space: normal;
    font-size: 12px;
    line-height: 1.45;
  }

  .join-step-tab.active::before {
    bottom: -9px;
  }

  .join-gallery {
    height: 260px;
    margin-top: 14px;
  }

  .join-gallery-slide>div {
    height: 185px;
  }

  .join-gallery-slide b,
  .join-gallery-slide strong {
    font-size: 20px;
  }

  .join-scene-card {
    padding: 30px 32px;
  }

  .join-scene-card i {
    height: 9px;
    margin-bottom: 13px;
  }

  .join-scene-contract {
    padding: 22px 31px;
  }

  .join-scene-contract i {
    height: 6px;
    margin: 10px 0;
  }

  .join-scene-design i:nth-child(1) {
    left: 33px;
    top: 34px;
    width: 130px;
    height: 80px;
  }

  .join-scene-design i:nth-child(2) {
    right: 33px;
    top: 34px;
    width: 88px;
    height: 112px;
  }

  .join-scene-equipment i {
    width: 78px;
    height: 87px;
    border-width: 7px;
  }

  .join-scene-equipment i:nth-child(1) {
    left: 55px;
    top: 39px;
  }

  .join-scene-equipment i:nth-child(2) {
    right: 55px;
    top: 45px;
  }

  .join-scene-training i {
    width: 75px;
    height: 125px;
  }

  .join-scene-supply i {
    width: 66px;
    height: 66px;
  }

  .join-gallery-dots {
    margin-top: 9px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }

  .site-header,
  .header-inner {
    height: 70px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    width: auto;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-mark::after {
    font-size: 26px;
    line-height: 41px;
  }

  .brand-name {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .shop-trigger {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    margin-top: 0;
    display: none;
    position: absolute;
    z-index: 11;
    left: 0;
    top: 70px;
    width: 100%;
    padding: 10px 22px 17px;
    background: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, .1);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .nav-item {
    position: static;
  }

  .nav-link {
    padding: 8px 4px;
    text-align: center;
  }

  .nav-item.active>.nav-link::after,
  .nav-item:hover>.nav-link::after {
    display: none;
  }

  .nav-dropdown {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown a {
    display: none;
    padding: 5px 2px;
    color: #999;
    font-size: 11px;
  }

  .main-nav.open .nav-dropdown a {
    display: block;
  }

  .nav-dropdown a:hover {
    color: #b8941f;
    background: transparent;
  }

  .main-nav.open .nav-dropdown a.active {
    color: #b8941f;
    background: transparent;
  }

  .shop-panel {
    display: none !important;
  }

  .hero {
    height: 285px;
  }

  .hero-dish {
    width: 300px;
    height: 300px;
    top: -4px;
    left: calc(50% - 148px);
    border-width: 14px;
  }

  .hero-pot {
    width: 230px;
    height: 230px;
    left: -78px;
    top: 68px;
    border-width: 14px;
  }

  .hero-pot::after {
    display: none;
  }

  .hero-petal {
    transform: scale(.68);
    transform-origin: top right;
  }

  .hero-arrow {
    width: 28px;
    height: 51px;
    font-size: 38px;
    line-height: 38px;
  }

  .hero-dots {
    bottom: 9px;
  }

  .hero-dots span, .hero-dot {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .4s ease;
}

  .section-title {
    padding-top: 38px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 29px;
  }

  .section-title p {
    font-size: 15px;
  }

  .join-steps {
    min-height: 0;
    padding-bottom: 35px;
  }

  .join-gallery {
    height: 218px;
  }

  .join-gallery-slide>div {
    height: 166px;
  }

  .image-strip {
    height: 270px;
    grid-template-columns: 18% 64% 18%;
  }

  .strip-main::before {
    width: 260px;
    height: 260px;
    left: calc(50% - 130px);
    bottom: -40px;
  }

  .product-grid {
    width: calc(100% - 30px);
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }

  .product-copy {
    padding: 8px 7px 11px;
  }

  .product-copy h3 {
    font-size: 13px;
  }

  .product-copy p {
    font-size: 11px;
  }

  .home-products,
  .home-shop,
  .home-news {
    padding-bottom: 46px;
  }

  .home-products .section-title {
    padding-bottom: 28px;
  }

  .about-home-inner {
    width: calc(100% - 30px);
    padding: 39px 0 46px;
  }

  .about-home-inner h2 {
    font-size: 29px;
  }

  .about-home-inner h3 {
    font-size: 16px;
  }

  .home-about-main {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 25px;
  }

  .about-home-copy {
    padding: 0;
  }

  .about-home-copy p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 24px;
  }

  .about-more {
    min-width: 124px;
    padding: 8px 25px;
    font-size: 12px;
  }

  .about-photo {
    height: 192px;
  }

  .shop-grid {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .news-list-home {
    width: calc(100% - 30px);
    margin-top: 28px;
  }

  .news-row {
    grid-template-columns: 79px 1fr;
    gap: 10px;
  }

  .news-row .more {
    display: none;
  }

  .news-row p {
    white-space: normal;
  }

  .page-hero {
    height: 142px;
  }

  .page-hero-inner {
    width: calc(100% - 30px);
  }

  .page-hero h1 {
    font-size: 27px;
  }

  .page-main {
    width: calc(100% - 30px);
    padding: 32px 0 52px;
  }

  .page-layout {
    display: block;
    padding-top: 20px;
  }

  .side-nav {
    margin-bottom: 28px;
  }

  .side-nav h2 {
    font-size: 21px;
  }

  .side-nav nav {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
  }

  .side-nav a {
    padding: 8px 12px;
    border: 0;
  }

  .content-title {
    font-size: 22px;
    margin-bottom: 17px;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }

  .product-list .product-copy {
    font-size: 12px;
  }

  .timeline {
    margin-left: 12px;
    padding-left: 28px;
  }

  .timeline-year::before {
    left: -35px;
  }

  .timeline-item strong {
    width: 66px;
  }

  .join-block {
    padding-left: 55px;
    margin-bottom: 31px;
  }

  .join-block .join-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

  .shop-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-list .shop-thumb {
    height: 192px;
  }

  .news-list .article-row {
    grid-template-columns: 56px 1fr;
    gap: 11px;
  }

  .article-row a {
    display: none;
  }

  .article-date strong {
    font-size: 22px;
  }

  .article-row h2 {
    font-size: 16px;
  }

  .article-row p {
    font-size: 12px;
  }

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

  .article p {
    font-size: 13px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .qr-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 68px 1fr;
  }

  .submit-button {
    margin-left: 78px;
  }

  .footer-inner {
    width: calc(100% - 30px);
    display: block;
  }

  .footer-nav {
    gap: 5px 12px;
  }

  .footer-qr-wrap {
    margin: 24px 0;
  }

  .footer-qr {
    margin: 0 auto;
  }

  .footer-hotline {
    border: 0;
    padding: 0;
    text-align: center;
  }

  .footer-hotline strong {
    font-size: 23px;
  }

  .back-top {
    width: 38px;
    height: 38px;
    right: 13px;
    bottom: 13px;
  }

  .about-banner {
    height: 160px;
  }

  .about-banner-food-one {
    width: 175px;
    height: 80px;
    left: 2%;
    top: 58px;
  }

  .about-banner-food-two {
    width: 174px;
    height: 81px;
    left: 37%;
    top: 21px;
  }

  .about-banner-food-three {
    width: 166px;
    height: 75px;
    right: 0;
    top: 60px;
  }

  .about-banner-sprout {
    transform: scale(.5);
  }

  .about-reference-main {
    width: calc(100% - 30px);
    min-height: 0;
    padding: 35px 0 51px;
  }

  .about-crumb-wrap {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .about-crumb-title {
    min-height: 50px;
    border-left-width: 3px;
    padding-left: 13px;
  }

  .about-crumb-title strong {
    font-size: 23px;
  }

  .about-crumb-title span {
    font-size: 15px;
  }

  .about-crumb-side {
    text-align: left;
  }

  .about-crumb-side p {
    margin-bottom: 11px;
  }

  .about-crumb-side nav {
    justify-content: flex-start;
    gap: 16px;
  }

  .about-article {
    padding-top: 37px;
  }

  .about-article p {
    padding-left: 0;
    margin-bottom: 20px;
    line-height: 1.95;
  }
}


.reference-banner {
  height: 262px;
  position: relative;
  overflow: hidden;
  background: url(../images/reference-banner-new.jpg) center/cover no-repeat;
}

.reference-banner::before,
.reference-banner-plate,
.reference-banner-piece,
.reference-banner-leaf {
  display: none;
}

.reference-banner-plate {
  position: absolute;
  width: 850px;
  height: 420px;
  left: calc(50% - 425px);
  top: -80px;
  border: 28px solid rgba(255, 255, 255, .84);
  border-radius: 50%;
  background: radial-gradient(ellipse at 44% 55%, #e6efce 0 9%, transparent 9.5%), radial-gradient(ellipse at 62% 43%, #dc7e60 0 9%, transparent 9.5%), radial-gradient(ellipse at 56% 66%, #f1c74e 0 10%, transparent 10.5%), radial-gradient(ellipse at 36% 37%, #70a04f 0 8%, transparent 8.5%), #f5ead3;
  box-shadow: 0 14px 26px rgba(64, 43, 33, .18);
}

.reference-banner-piece {
  position: absolute;
  z-index: 2;
  width: 190px;
  height: 83px;
  border-radius: 50% 43% 50% 43%;
  background: linear-gradient(145deg, #e8d5b0, #c9a063);
  box-shadow: 0 5px 12px rgba(76, 43, 37, .2);
}

.reference-banner-piece-one {
  left: 9%;
  top: 103px;
  transform: rotate(-24deg);
}

.reference-banner-piece-two {
  left: 68%;
  top: 67px;
  transform: rotate(28deg);
}

.reference-banner-piece-three {
  right: 5%;
  top: 145px;
  transform: rotate(-17deg);
}

.reference-banner-leaf {
  position: absolute;
  z-index: 3;
  width: 102px;
  height: 52px;
  background: #4f994e;
  border-radius: 100% 0 100% 0;
}

.reference-banner-leaf-one {
  left: 24%;
  top: 53px;
  transform: rotate(34deg);
}

.reference-banner-leaf-two {
  right: 25%;
  top: 144px;
  transform: rotate(132deg);
}

.reference-crumb {
  color: #999;
  font-size: 13px;
  text-align: right;
}

.reference-crumb a {
  color: #777;
}

.reference-crumb span {
  color: #c9a063;
}

.join-reference {
  overflow: hidden;
  padding-bottom: 100px;
}

.join-reference-top {
  width: min(1200px, calc(100% - 48px));
  min-height: 190px;
  margin: 0 auto;
  padding-top: 37px;
  position: relative;
}

.join-ribbon {
  width: 520px;
  height: 104px;
  margin: 12px auto 0;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(90deg, #8b5a2b, #e8d5b0 50%, #8b5a2b);
  clip-path: polygon(0 22%, 12% 22%, 16% 0, 18% 22%, 82% 22%, 84% 0, 88% 22%, 100% 22%, 94% 50%, 100% 78%, 88% 78%, 84% 100%, 82% 78%, 18% 78%, 16% 100%, 12% 78%, 0 78%, 6% 50%);
}

.join-ribbon::before,
.join-ribbon::after {
  content: "✦";
  position: absolute;
  top: 32px;
  z-index: 1;
  font-size: 32px;
}

.join-ribbon::before {
  left: 104px;
}

.join-ribbon::after {
  right: 104px;
}

.join-ribbon span {
  position: relative;
  z-index: 2;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 6px;
}

.join-advantages {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.join-advantage {
  min-height: 390px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 64px;
}

.join-advantage.is-reversed {
  grid-template-columns: 58% 42%;
}

.join-advantage.is-reversed .join-advantage-visual {
  grid-column: 2;
}

.join-advantage.is-reversed .join-advantage-copy {
  grid-column: 1;
  grid-row: 1;
}

.join-advantage-visual {
  width: min(100%, 305px);
  aspect-ratio: 1;
  justify-self: center;
  position: relative;
  overflow: hidden;
  border: 11px solid #fff;
  border-radius: 50%;
  background: #d7a37d center/cover no-repeat;
  box-shadow: 0 5px 19px rgba(35, 30, 26, .18);
}

.join-advantage-visual::before,
.join-advantage-visual::after,
.join-advantage-visual span,
.join-advantage-visual i,
.join-advantage-visual b {
  display: none !important;
}

.join-visual-1 {
  background-image: url(../images/join-adv-1.jpg);
}

.join-visual-2 {
  background-image: url(../images/join-adv-2.jpg);
}

.join-visual-3 {
  background-image: url(../images/join-adv-3.jpg);
}

.join-visual-4 {
  background-image: url(../images/join-adv-4.jpg);
}

.join-visual-5 {
  background-image: url(../images/join-adv-5.jpg);
}

.join-advantage-copy h2 {
  margin: 0 0 24px;
  color: #262626;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.join-advantage-copy h2 em {
  display: inline-block;
  margin-right: 17px;
  color: #d4af37;
  font-size: 78px;
  font-style: italic;
  font-weight: 400;
  line-height: .7;
  vertical-align: middle;
}

.join-advantage-copy p {
  max-width: 620px;
  margin: 0;
  color: #777;
  font-size: 16px;
  line-height: 2;
}

.join-section-heading {
  margin: 0 auto;
  text-align: center;
}

.join-section-heading span {
  display: block;
  color: #333;
  font-size: 30px;
}

.join-section-heading small {
  display: block;
  margin-top: 9px;
  color: #b8941f;
  font-size: 12px;
  letter-spacing: 2px;
}

.join-conditions {
  margin-top: 54px;
  padding: 70px 0 82px;
  background: #f8f8f8;
}

.join-condition-layout {
  width: min(980px, calc(100% - 48px));
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.join-condition-orbit {
  width: 300px;
  aspect-ratio: 1;
  justify-self: center;
  position: relative;
  border: 1px solid #e8d5b0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 23%, transparent 23.5%), radial-gradient(circle at 50% 50%, transparent 0 49%, #d4af37 49.5% 50%, transparent 50.5%);
}

.join-condition-orbit::before {
  content: "鍚堜綔";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #555;
  font-size: 25px;
}

.join-condition-orbit i {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 0 9px #fff;
}

.join-condition-orbit i:nth-child(1) {
  left: 8%;
  top: 20%;
}

.join-condition-orbit i:nth-child(2) {
  right: 7%;
  top: 24%;
  background: #ecc889;
}

.join-condition-orbit i:nth-child(3) {
  left: 42%;
  bottom: 3%;
  background: #9aac7b;
}

.join-condition-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-condition-layout li {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 59px;
  border-bottom: 1px solid #e6e6e6;
  color: #666;
  font-size: 15px;
}

.join-condition-layout li b {
  color: #c9a063;
  font-size: 25px;
  font-weight: 400;
}

.join-process {
  width: min(1200px, calc(100% - 48px));
  margin: 90px auto 0;
}

.join-process ol {
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.join-process li {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 175px;
  text-align: center;
}

.join-process li:not(:nth-child(4n))::after {
  content: "›";
  position: absolute;
  right: -8px;
  top: 26px;
  color: #e8d5b0;
  font-size: 42px;
}

.join-process li b {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid #e8d5b0;
  border-radius: 50%;
  color: #c9a063;
  font-size: 26px;
  font-weight: 400;
}

.join-process li i {
  width: 1px;
  height: 24px;
  margin: 10px 0;
  background: #e8d5b0;
}

.join-process li span {
  color: #555;
  font-size: 15px;
}

.join-faq {
  width: min(980px, calc(100% - 48px));
  margin: 25px auto 0;
  padding-top: 74px;
}

.join-faq-list {
  margin-top: 43px;
  border-top: 1px solid #e6e6e6;
}

.join-faq details {
  border-bottom: 1px solid #e6e6e6;
}

.join-faq summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #555;
  list-style: none;
}

.join-faq summary::-webkit-details-marker {
  display: none;
}

.join-faq summary b,
.join-faq p b {
  color: #8b5a2b;
  font-size: 20px;
  font-weight: 400;
}

.join-faq summary::after {
  content: "+";
  margin-left: auto;
  color: #8b5a2b;
  font-size: 22px;
}

.join-faq details[open] summary::after {
  content: "−";
}

.join-faq p {
  margin: 0;
  padding: 0 28px 22px 33px;
  color: #777;
  line-height: 1.9;
}

.join-faq p b {
  margin-right: 12px;
}

.shop-reference {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 39px 0 92px;
}

.shop-reference-heading {
  min-height: 83px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 20px 0;
}

.shop-reference-heading>div {
  min-height: 68px;
  padding-left: 20px;
  border-left: 6px solid #c9a063;
}

.shop-reference-heading>div>strong,
.shop-reference-heading>div>span {
  display: block;
}

.shop-reference-heading>div>strong {
  color: #4a2c1a;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 600;
}

.shop-reference-heading>div>span {
  margin-top: 10px;
  color: #a08870;
  font-size: 18px;
}

.shop-reference-heading .reference-crumb {
  padding-top: 13px;
  white-space: nowrap;
}

.shop-reference-grid {
  margin-top: 72px;
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
}

@media (min-width: 1101px) {
  .shop-reference-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .shop-reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shop-reference-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(80, 50, 20, .08);
  transition: all .4s ease;
  color: #555;
}

.shop-reference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(80, 50, 20, .15);
}

.shop-reference-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--shop-img, #c9a063) center/cover no-repeat;
  border-radius: 0;
  transition: transform .6s ease;
}

.shop-reference-image::before,
.shop-reference-image::after,
.shop-reference-image i,
.shop-reference-image b,
.shop-reference-image span {
  display: none !important;
}

.shop-reference-card:hover .shop-reference-image {
  transform: scale(1.05);
}

.shop-reference-meta {
  padding: 22px 24px 26px;
}

.shop-reference-meta h3 {
  font-size: 20px;
  color: #4a2c1a;
  font-weight: 600;
  margin: 0 0 10px;
}

.shop-reference-meta p {
  font-size: 13px;
  color: #8b7355;
  margin: 0 0 8px;
  line-height: 1.6;
}

.shop-reference-meta .view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 20px;
  background: #c9a063;
  color: #fff;
  border-radius: 24px;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s;
}

.shop-reference-meta .view-btn:hover {
  background: #8b5a2b;
}

.shop-reference-pagination {
  margin-top: 64px;
}

@media (hover: hover) and (min-width: 768px) {
  .join-advantage-visual {
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .join-advantage:hover .join-advantage-visual {
    transform: translateY(-7px) scale(1.025);
    box-shadow: 0 16px 26px rgba(35, 30, 26, .2);
  }
}

@media (max-width: 900px) {
  .reference-banner {
    height: 194px;
  }

  .reference-banner-plate {
    width: 610px;
    height: 320px;
    left: calc(50% - 305px);
    top: -63px;
    border-width: 19px;
  }

  .reference-banner-piece {
    transform: scale(.72);
  }

  .reference-banner-piece-one {
    left: -2%;
    top: 79px;
  }

  .reference-banner-piece-two {
    left: 64%;
    top: 34px;
  }

  .reference-banner-piece-three {
    right: -5%;
    top: 118px;
  }

  .join-advantage,
  .join-advantage.is-reversed {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid #eee;
  }

  .join-advantage.is-reversed .join-advantage-visual,
  .join-advantage.is-reversed .join-advantage-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .join-advantage-visual {
    width: min(100%, 240px);
  }

  .join-advantage-copy {
    text-align: center;
  }

  .join-advantage-copy h2 {
    font-size: 32px;
  }

  .join-advantage-copy h2 em {
    font-size: 59px;
  }

  .join-advantage-copy p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    text-align: left;
  }

  .join-condition-layout {
    grid-template-columns: 36% 64%;
  }

  .join-condition-orbit {
    width: 240px;
  }

  .shop-reference-grid {
    gap: 28px 24px;
  }
}

@media (max-width: 767px) {
  .reference-banner {
    height: 145px;
  }

  .reference-banner-plate {
    width: 430px;
    height: 220px;
    left: calc(50% - 215px);
    top: -41px;
    border-width: 13px;
  }

  .reference-banner-piece {
    transform: scale(.48);
  }

  .reference-banner-piece-one {
    left: -9%;
    top: 67px;
  }

  .reference-banner-piece-two {
    left: 62%;
    top: 20px;
  }

  .reference-banner-piece-three {
    right: -16%;
    top: 98px;
  }

  .reference-banner-leaf {
    transform: scale(.52);
  }

  .reference-banner-leaf-one {
    left: 21%;
    top: 23px;
  }

  .reference-banner-leaf-two {
    right: 21%;
    top: 81px;
  }

  .join-reference {
    padding-bottom: 55px;
  }

  .join-reference-top {
    width: calc(100% - 30px);
    min-height: 130px;
    padding-top: 20px;
  }

  .reference-crumb {
    font-size: 12px;
  }

  .join-ribbon {
    width: min(320px, 100%);
    height: 74px;
    margin-top: 14px;
  }

  .join-ribbon::before,
  .join-ribbon::after {
    top: 23px;
    font-size: 20px;
  }

  .join-ribbon::before {
    left: 63px;
  }

  .join-ribbon::after {
    right: 63px;
  }

  .join-ribbon span {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .join-advantages {
    width: calc(100% - 30px);
  }

  .join-advantage,
  .join-advantage.is-reversed {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 31px 0;
    border-bottom: 1px solid #eee;
  }

  .join-advantage.is-reversed .join-advantage-visual,
  .join-advantage.is-reversed .join-advantage-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .join-advantage.is-reversed .join-advantage-visual {
    order: 0;
  }

  .join-advantage-visual {
    width: min(212px, 70vw);
  }

  .join-advantage-copy {
    text-align: center;
  }

  .join-advantage-copy h2 {
    margin-bottom: 14px;
    font-size: 25px;
  }

  .join-advantage-copy h2 em {
    margin-right: 9px;
    font-size: 50px;
  }

  .join-advantage-copy p {
    font-size: 13px;
    line-height: 1.85;
    text-align: left;
  }

  .join-section-heading span {
    font-size: 25px;
  }

  .join-conditions {
    margin-top: 25px;
    padding: 49px 0 54px;
  }

  .join-condition-layout {
    width: calc(100% - 30px);
    margin-top: 31px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .join-condition-orbit {
    width: 207px;
  }

  .join-condition-layout li {
    min-height: 51px;
    gap: 11px;
    font-size: 13px;
  }

  .join-condition-layout li b {
    font-size: 21px;
  }

  .join-process {
    width: calc(100% - 30px);
    margin-top: 55px;
  }

  .join-process ol {
    margin-top: 35px;
    grid-template-columns: repeat(2, 1fr);
  }

  .join-process li {
    min-height: 142px;
  }

  .join-process li:not(:nth-child(4n))::after {
    display: none;
  }

  .join-process li b {
    width: 65px;
    height: 65px;
    font-size: 21px;
  }

  .join-process li i {
    height: 17px;
    margin: 8px 0;
  }

  .join-process li span {
    font-size: 13px;
  }

  .join-faq {
    width: calc(100% - 30px);
    margin-top: 0;
    padding-top: 50px;
  }

  .join-faq-list {
    margin-top: 29px;
  }

  .join-faq summary {
    min-height: 53px;
    font-size: 13px;
  }

  .join-faq p {
    padding: 0 8px 18px 25px;
    font-size: 13px;
  }

  .shop-reference {
    width: calc(100% - 30px);
    padding: 28px 0 57px;
  }

  .shop-reference-heading {
    min-height: 108px;
    display: block;
    padding: 10px 0;
  }

  .shop-reference-heading>div {
    min-height: 52px;
    padding-left: 12px;
    border-left-width: 4px;
  }

  .shop-reference-heading strong {
    font-size: 23px;
  }

  .shop-reference-heading span {
    margin-top: 6px;
    font-size: 15px;
  }

  .shop-reference-heading .reference-crumb {
    padding-top: 19px;
    text-align: left;
  }

  .shop-reference-grid {
    margin-top: 24px;
    padding-top: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .shop-reference-meta {
    padding: 16px 18px 20px;
  }

  .shop-reference-meta h3 {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .shop-reference-meta p {
    font-size: 12px;
    margin: 0 0 6px;
  }

  .shop-reference-meta .view-btn {
    margin-top: 10px;
    padding: 6px 16px;
    font-size: 12px;
  }

  .shop-reference-pagination {
    margin-top: 38px;
  }
}


.shop-show-reference {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 39px 0 88px;
}

.shop-show-reference .shop-reference-heading .reference-crumb {
  white-space: nowrap;
}

.shop-show-panel {
  margin-top: 57px;
  padding: 66px 75px;
  position: relative;
  background: linear-gradient(135deg, #fff 0 88%, #faf6f0 88%);
}

.shop-show-layout {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
}

.shop-show-image {
  min-height: 440px;
  overflow: hidden;
  position: relative;
  background: url(../images/shop-show.jpg) center/cover no-repeat;
}

.shop-show-image::before,
.shop-show-image::after,
.shop-show-ceiling,
.shop-show-counter,
.shop-show-table,
.shop-show-plant {
  display: none;
}

.shop-show-image::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 9%;
  height: 38%;
  border: 13px solid #452c26;
  background: repeating-linear-gradient(90deg, #8f6045 0 36px, #412b26 36px 49px, #b98a60 49px 79px);
}

.shop-show-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(90deg, #b67a50 0 45%, #d6bd8d 45% 55%, #7c4b38 55%);
}

.shop-show-ceiling {
  position: absolute;
  z-index: 2;
  left: 47%;
  top: 24%;
  width: 21%;
  height: 76%;
  background: linear-gradient(90deg, #4e2c25 0 25%, #c08d61 25% 42%, #3c2824 42% 67%, #ba8258 67%);
}

.shop-show-counter {
  position: absolute;
  z-index: 3;
  left: 18%;
  bottom: 11%;
  width: 42%;
  height: 22%;
  border: 8px solid #eadcc5;
  background: #3f312c;
  box-shadow: 146px -15px 0 -9px #e7d8bd, 151px -15px 0 0 #4c362d;
}

.shop-show-table {
  position: absolute;
  z-index: 4;
  width: 65px;
  height: 65px;
  border: 7px solid #f0e4cf;
  background: #47342d;
}

.shop-show-table::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 58px;
  width: 14px;
  height: 54px;
  background: #493128;
}

.shop-show-table-one {
  left: 20%;
  bottom: 12%;
}

.shop-show-table-two {
  right: 19%;
  bottom: 21%;
}

.shop-show-plant {
  position: absolute;
  z-index: 5;
  right: 12%;
  bottom: 8%;
  width: 15%;
  height: 29%;
  border-radius: 50% 50% 7% 7%;
  background: #366344;
}

.shop-show-copy {
  padding: 0 0 0 11%;
}

.shop-show-title {
  margin-bottom: 42px;
  padding-bottom: 23px;
  position: relative;
}

.shop-show-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #c9a063;
}

.shop-show-title h1 {
  margin: 0;
  color: #333;
  font-size: 25px;
  font-weight: 400;
}

.shop-show-copy p {
  padding-left: 84px;
  position: relative;
  margin: 0 0 22px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.shop-show-copy p b {
  position: absolute;
  left: 0;
  color: #333;
  font-weight: 400;
}

.shop-show-copy p a {
  color: #555;
}

.shop-show-copy .shop-show-note {
  padding: 24px 0 0;
  margin-top: 11px;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 14px;
  line-height: 1.95;
}

.shop-show-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 40px;
  height: 76px;
  margin-top: -38px;
  display: grid;
  place-items: center;
  color: #9f9f9f;
  font-size: 56px;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}

.shop-show-arrow-prev {
  left: -59px;
}

.shop-show-arrow-next {
  right: -59px;
}

.shop-show-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.shop-show-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 37px;
}

.shop-show-bottom nav a,
.shop-show-bottom nav span {
  color: #777;
  font-size: 13px;
}

.shop-show-back {
  color: #777;
  font-size: 13px;
}

.shop-show-back i {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-left: 8px;
  place-items: center;
  border: 1px solid #c9a063;
  color: #8b5a2b;
  font-style: normal;
  vertical-align: middle;
}

@media (hover: hover) and (min-width: 768px) {
  .shop-show-arrow:hover {
    color: #8b5a2b;
    transform: translateX(-4px);
  }

  .shop-show-arrow-next:hover {
    transform: translateX(4px);
  }

  .shop-show-copy p a:hover,
  .shop-show-bottom nav a:hover,
  .shop-show-back:hover {
    color: #8b5a2b;
  }
}

@media (max-width: 900px) {
  .shop-show-panel {
    padding: 45px 42px;
  }

  .shop-show-image {
    min-height: 340px;
  }

  .shop-show-copy {
    padding-left: 8%;
  }

  .shop-show-copy p {
    padding-left: 71px;
    font-size: 14px;
  }

  .shop-show-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .shop-show-reference {
    width: calc(100% - 30px);
    padding: 28px 0 55px;
  }

  .shop-show-reference .shop-reference-heading {
    min-height: 120px;
  }

  .shop-show-reference .shop-reference-heading .reference-crumb {
    white-space: normal;
  }

  .shop-show-panel {
    margin-top: 22px;
    padding: 15px;
    background: #fff;
  }

  .shop-show-layout {
    grid-template-columns: 1fr;
  }

  .shop-show-image {
    min-height: 250px;
  }

  .shop-show-image::before {
    border-width: 8px;
  }

  .shop-show-counter {
    border-width: 5px;
  }

  .shop-show-table {
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .shop-show-table::after {
    left: 13px;
    top: 34px;
    width: 9px;
    height: 34px;
  }

  .shop-show-copy {
    padding: 25px 0 5px;
  }

  .shop-show-title {
    margin-bottom: 23px;
    padding-bottom: 14px;
  }

  .shop-show-title h1 {
    font-size: 21px;
  }

  .shop-show-copy p {
    padding-left: 69px;
    margin-bottom: 13px;
    font-size: 13px;
  }

  .shop-show-copy .shop-show-note {
    padding-top: 18px;
    font-size: 13px;
  }

  .shop-show-bottom {
    display: block;
    margin-top: 20px;
  }

  .shop-show-bottom nav {
    display: grid;
    gap: 8px;
  }

  .shop-show-back {
    display: inline-block;
    margin-top: 18px;
  }
}


.motion-ready .motion-up,
.motion-ready .motion-left,
.motion-ready .motion-right {
  opacity: 1;
  transform: none;
}


:root {
  --gold: #c9a063;
  --gold-deep: #8b5a2b;
  --mist: #faf6f0;
}



.section-title {
  padding-top: 65px;
}

.section-title h1,
.section-title h2 {
  color: #8b5a2b;
  font-size: 42px;
  line-height: 1.24;
}

.section-title p {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.3;
}

.home-products,
.home-news {
  background: #f7f7f7;
}

.home-shop {
  background: #fff;
}

.home-products .section-title {
  padding-bottom: 56px;
}

.product-card {
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.product-copy {
  padding: 18px 16px 20px;
}

.product-copy h3 {
  color: #333;
  font-size: 18px;
  line-height: 1.45;
}

.product-copy p {
  margin-top: 5px;
  color: #8b5a2b;
  font-size: 13px;
}





.page-main {
  padding-top: 62px;
  padding-bottom: 90px;
}

.side-nav h2 {
  color: #8b5a2b;
  font-size: 25px;
}

.side-nav a {
  border-left: 3px solid transparent;
  padding: 11px 14px;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.side-nav a:hover,
.side-nav a.active {
  border-left-color: #c9a063;
  background: #c9a063;
}

@media (hover: hover) and (min-width: 768px) {
  .product-thumb {
    transition: transform .45s ease;
  }

  .product-card:hover,
  .shop-card:hover {
    border-color: #e8d5b0;
    box-shadow: 0 12px 25px rgba(44, 33, 29, .12);
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card:hover .product-thumb {
    transform: scale(1.035);
  }
}

@media (max-width: 767px) {
  .section-title {
    padding-top: 40px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 16px;
  }

  .home-products .section-title {
    padding-bottom: 30px;
  }

  .product-copy {
    padding: 11px 9px 13px;
  }

  .product-copy h3 {
    font-size: 14px;
  }

  .product-copy p {
    font-size: 11px;
  }





  .page-main {
    padding-top: 38px;
    padding-bottom: 58px;
  }
}






.shop-list {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.shop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(80, 50, 20, .08);
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
  border: none;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(80, 50, 20, .14);
  border-color: transparent;
}

.shop-thumb {
  aspect-ratio: 16/11;
  background: var(--shop-img, #c9a063) center/cover no-repeat;
  transition: transform .6s ease;
  height: auto;
}

.shop-card:hover .shop-thumb {
  transform: scale(1.05);
}

.shop-info {
  padding: 22px 24px 28px;
}

.shop-info h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #4a2c1a;
  font-weight: 600;
}

.shop-info p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #8b7355;
  line-height: 1.7;
}

.shop-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 9px 22px;
  background: #c9a063;
  color: #fff;
  border-radius: 24px;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s;
}

.shop-info a:hover {
  background: #8b5a2b;
}

@media (max-width: 900px) {
  .shop-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .shop-list {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 30px);
    padding: 24px 0 50px;
  }
}

@media (max-width: 600px) {
  .shop-info {
    padding: 16px 18px 22px;
  }

  .shop-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .shop-info p {
    font-size: 12px;
  }

  .shop-info a {
    margin-top: 12px;
    padding: 7px 18px;
    font-size: 12px;
  }
}

.home-shop .shop-grid {
  width: min(1200px, calc(100% - 48px));
  margin: 48px auto 0;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-shop .shop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(80, 50, 20, .08);
  transition: all .4s ease;
  display: block;
  color: inherit;
  text-decoration: none;
  border: none;
}

.home-shop .shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(80, 50, 20, .14);
  border-color: transparent;
}

.home-shop .shop-thumb {
  aspect-ratio: 16/11;
  background: var(--shop-img, #c9a063) center/cover no-repeat;
  transition: transform .6s ease;
  height: auto;
}

.home-shop .shop-card:hover .shop-thumb {
  transform: scale(1.05);
}

.home-shop .shop-card p {
  margin: 0;
  padding: 18px 20px 22px;
  font-size: 17px;
  color: #4a2c1a;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 900px) {
  .home-shop .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .home-shop .shop-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 30px);
    padding-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .home-shop .shop-card p {
    padding: 14px 16px 18px;
    font-size: 15px;
  }
}



.spec-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c9a063 0%, #b8941f 50%, #8b5a2b 100%);
  color: #fff !important;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(139, 90, 43, .35), inset 0 1px 0 rgba(255,255,255,.25);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.spec-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 90, 43, .45), inset 0 1px 0 rgba(255,255,255,.3);
  background: linear-gradient(135deg, #d4af37 0%, #c9a063 50%, #9c672e 100%);
}
.spec-btn:active { transform: translateY(0); }
.spec-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transition: left .7s ease;
}
.spec-btn:hover::before { left: 130%; }


.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s ease, transform .9s cubic-bezier(.22,.8,.2,1);
  will-change: transform, opacity;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.is-visible, 
.reveal-left.is-visible, 
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}


.spotlight-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(80, 50, 20, .08);
  transition: transform .4s ease, box-shadow .4s ease;
  isolation: isolate;
}
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(201, 160, 99, .18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    250px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(201, 160, 99, .7),
    transparent 35%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(80, 50, 20, .16);
}
.spotlight-card:hover::before,
.spotlight-card:hover::after { opacity: 1; }


.gradient-heading {
  background: linear-gradient(90deg, #6b4520 0%, #c9a063 40%, #d4af37 50%, #c9a063 60%, #6b4520 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  font-weight: 700;
}
@keyframes shine {
  to { background-position: 200% center; }
}


.stats-row {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat-card {
  position: relative;
  padding: 36px 20px 32px;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, #faf6f0 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(80, 50, 20, .08);
  border: 1px solid rgba(201, 160, 99, .18);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #8b5a2b, #c9a063, #d4af37, #c9a063, #8b5a2b);
}
.stat-num {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5a2b, #c9a063);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.stat-unit { font-size: 20px; font-weight: 600; color: #c9a063; margin-left: 2px; }
.stat-label { margin-top: 10px; font-size: 15px; color: #8b7355; letter-spacing: 1px; }
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 40px 0 10px; }
  .stat-num { font-size: 38px; }
}
@media (max-width: 600px) {
  .stats-row { width: calc(100% - 30px); grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 26px 10px 24px; border-radius: 14px; }
  .stat-num { font-size: 30px; }
  .stat-label { font-size: 12px; }
}


.brand-hero-strip {
  margin-top: 0;
  padding: 60px 0;
  background:
    linear-gradient(135deg, rgba(74, 44, 26, .88), rgba(107, 69, 32, .78)),
    url("../images/home-about-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.brand-hero-strip h2 {
  font-size: 36px;
  margin: 0 0 14px;
  letter-spacing: 3px;
  color: #fff;
  font-weight: 600;
}
.brand-hero-strip h2 em {
  font-style: normal;
  color: #f1d48a;
  margin: 0 8px;
}
.brand-hero-strip p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: rgba(255,244,223,.85);
  line-height: 2;
}
@media (max-width: 767px) {
  .brand-hero-strip { padding: 40px 20px; }
  .brand-hero-strip h2 { font-size: 24px; letter-spacing: 2px; }
  .brand-hero-strip p { font-size: 13px; }
}


@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-left 45s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex: 0 0 220px;
  width: 220px;
  height: 220px; 
  border-radius: 14px;
  overflow: hidden;
  transition: transform .4s ease;
}
.marquee-item:hover {
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .marquee-item { flex: 0 0 160px; width: 160px; height: 160px; }
  .marquee-track { gap: 14px; }
}


@media (max-width: 800px) {
  .support-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .support-grid { grid-template-columns: 1fr !important; }
  .reveal-up, .reveal-left, .reveal-right { transform: none !important; }
}
@media (max-width: 900px) {
  section[style*="grid-template-columns:repeat(4,1fr);gap:20px"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.page-layout.no-sidebar {
  grid-template-columns: 1fr;
}
.page-layout.no-sidebar .content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
.page-layout.has-sidebar {
  grid-template-columns: 220px minmax(0, 1fr);
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr !important; }
  .page-layout .side-nav { max-width: 100%; }
}
