@font-face {
  font-family: "Source Han Serif SC";
  src: url("../fonts/SourceHanSerifSC-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans SC";
  src: url("../fonts/SourceHanSansSC-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-nav: #00210e;
  --green-deep: #052a14;
  --green-title: #083a25;
  --gold: #c5a25d;
  --gold-line: #e4d593;
  --gold-btn: #f1d391;
  --gold-btn-2: #d4b56a;
  --cream: #fef6e8;
  --cream-2: #f9f4e9;
  --text-muted: #7a6a55;
  --text-sub: #5c715e;
  --white: #ffffff;
  --container: 1440px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--green-title);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--green-nav);
  border-bottom: 1px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 2000;
}

.header-inner {
  width: min(1760px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav a {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-btn);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-btn);
  border-radius: 1px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #f6e0a8 0%, #e4c478 100%);
  color: var(--green-nav);
  padding: 8px 20px 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy img {
  width: 22px;
  height: 22px;
}

.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-btn);
  margin: 5px auto;
  border-radius: 1px;
}

[data-include="header"] {
  display: block;
  min-height: 78px;
  background: var(--green-nav);
}

[data-include="footer"] {
  display: block;
  min-height: 180px;
  background: var(--green-deep);
}

/* Hero */
.hero {
  background: var(--green-nav);
  line-height: 0;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
}

.hero-copy {
  display: none;
}

/* Features：整块上移自身高度的一半，使 hero 底边对齐卖点条中线 */
.features {
  background: transparent;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.features-bar {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
  transform: translateY(-50%);
  background: var(--cream);
  border: 1px solid #e8d7b0;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px 12px;
  box-shadow: 0 8px 24px rgba(8, 58, 37, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 22px;
  border-right: 1px solid #dcc89a;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item img {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.feature-item h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 20px;
  color: var(--green-title);
  line-height: 1.3;
}

.feature-item p {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 4px;
}

/* Section title */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
}

.section-title h2 {
  font-family: "Source Han Serif SC", serif;
  font-size: 32px;
  color: var(--green-title);
  white-space: nowrap;
}

.title-deco {
  width: 180px;
  height: auto;
}

.title-deco-flip {
  transform: scaleX(-1);
}

/* Products */
.products {
  margin-top: -36px;
  padding: 0 0 20px;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(8, 58, 37, 0.12);
}

.product-photo {
  aspect-ratio: 409 / 239;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 24px;
  color: var(--green-title);
  margin: 18px 16px 8px;
  line-height: 1.4;
}

.product-card p {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 16px;
  margin-bottom: 16px;
}

.card-arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
}

.card-arrow img {
  width: 100%;
  height: 100%;
}

/* Why */
.why {
  background: var(--cream-2);
  padding: 0 0 0px;
  position: relative;
  overflow: hidden;
}

.why-leaf {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  pointer-events: none;
  opacity: 0.85;
}

.why-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.why-copy {
  flex: 0 1 320px;
}

.why-copy h2 {
  font-family: "Source Han Serif SC", serif;
  font-size: 34px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.why-copy p {
  font-size: 15px;
  color: var(--green-title);
  line-height: 1.9;
  margin-bottom: 28px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 10px 8px 22px;
  font-size: 15px;
  color: var(--green-title);
  background: transparent;
  transition: background 0.2s;
}

.btn-more img {
  width: 30px;
  height: 30px;
}

.btn-more:hover {
  background: rgba(197, 162, 93, 0.12);
}

.why-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.why-visual img {
  width: 75%;
  max-width: 100%;
  height: auto;
}

/* Journey */
.journey {
  background: var(--green-deep);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.journey-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.journey-leaf.leaf-l {
  left: 0;
  bottom: 0;
  width: 180px;
}

.journey-leaf.leaf-r {
  right: -24px;
  top: 0px;
  width: 220px;
}

.journey-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  padding: 0 160px 0 20px;
}

.journey-copy {
  flex: 0 0 250px;
}

.journey-copy h2 {
  font-family: "Source Han Serif SC", serif;
  font-size: 32px;
  color: var(--gold-btn);
  line-height: 1.4;
  margin-bottom: 12px;
}

.journey-copy p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.8;
}

.journey-steps {
  list-style: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.journey-steps li {
  text-align: center;
}

.journey-steps li img {
  width: 148px;
  height: 148px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.journey-steps h3 {
  font-family: "Source Han Serif SC", serif;
  color: var(--gold-btn);
  font-size: 20px;
  margin-bottom: 4px;
}

.journey-steps p {
  color: var(--gold-line);
  font-size: 16px;
}

.step-arrow {
  flex: 0 0 auto;
}

.step-arrow img {
  width: 18px !important;
  height: auto !important;
  margin: 0 0 36px !important;
}

/* Stores */
.stores {
  padding: 24px 0;
}

.store-grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.store-card {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 27px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.store-photo {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.store-info {
  padding: 8px 16px 8px;
}

.store-info h3 {
  font-size: 18px;
  color: var(--green-title);
  margin-bottom: 10px;
  line-height: 1.4;
}

.store-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5d4e;
  margin-top: 8px;
  line-height: 1.5;
}

.store-info p img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.store-card[data-store] {
  cursor: pointer;
}

.store-map {
  position: relative;
  z-index: 1;
  isolation: isolate;
  flex: 1.15 1 0;
  min-width: 280px;
  min-height: 248px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.store-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.store-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #f4efe4;
  font-family: inherit;
}

.store-map .leaflet-div-icon,
.store-pin-wrap {
  background: transparent;
  border: none;
}

.store-map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.store-pin {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--green-nav);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(8, 58, 37, 0.35);
}

.store-tooltip {
  background: var(--green-nav);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  box-shadow: none;
}

.store-tooltip::before {
  display: none;
}

.store-popup h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.store-popup p {
  font-size: 12px;
  color: #4a5d4e;
  margin-bottom: 8px;
  line-height: 1.5;
}

.store-popup a {
  color: var(--gold);
  font-size: 12px;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  padding: 48px 0 36px;
  color: var(--gold-line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  padding-left: 56px;
  padding-right: 56px;
  box-sizing: border-box;
}

.footer-brand {
  flex: 0 0 auto;
  margin-right: 80px;
}

.footer-brand img {
  width: 148px;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 60px;
  margin-right: auto;
}

.footer-contact {
  flex: 0 0 auto;
  margin-right: 80px;
}

.footer-qr {
  flex: 0 0 auto;
}

.footer-links h4 {
  color: var(--gold-btn);
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: var(--gold-line);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact p img {
  width: 28px;
  height: 28px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-qr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.footer-qr img {
  width: 92px;
  height: 92px;
  background: var(--white);
  padding: 4px;
  border-radius: 4px;
}

.footer-qr p {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gold-line);
}

/* Fresh fruit page */
.fresh-details {
  margin-top: -36px;
  padding: 0 0 28px;
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.detail-item {
  text-align: center;
  padding: 8px 28px 12px;
  border-right: 1px solid #e8d7b0;
}

.detail-item:last-child {
  border-right: 0;
}

.detail-item img {
  width: 148px;
  height: 128px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.detail-item h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 22px;
  color: var(--green-title);
  margin-bottom: 10px;
}

.detail-item p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
}

.fresh-highlight {
  background: var(--cream-2);
  padding: 0px;
}

.fresh-highlight img {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.fresh-enjoy {
  padding: 36px 0 56px;
  background: var(--white);
}

.enjoy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.enjoy-card {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
}

.enjoy-photo {
  aspect-ratio: 420 / 300;
  overflow: hidden;
  background: var(--white);
}

.enjoy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enjoy-card h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 22px;
  color: var(--green-title);
  margin: 16px 14px 8px;
}

.enjoy-card p {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 16px;
  line-height: 1.7;
}

/* Coffee page */
.coffee-features-bar .feature-item {
  padding: 10px 16px;
}

.coffee-features-bar .feature-item img {
  width: 64px;
}

.coffee-features-bar .feature-item h3 {
  font-size: 18px;
}

.coffee-features-bar .feature-item p {
  font-size: 12px;
  line-height: 1.65;
}

.coffee-points {
  margin-top: -36px;
  padding: 0 0 28px;
  background: var(--white);
}

.coffee-point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(0, 1.25fr);
  gap: 16px;
  align-items: stretch;
}

.coffee-point {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  text-align: center;
  padding: 18px 14px 20px;
}

.coffee-point img {
  width: 108px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.coffee-point h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 20px;
  color: var(--green-title);
  margin-bottom: 10px;
}

.coffee-point p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

.coffee-point-photo {
  border-radius: 16px;
  overflow: hidden;
  min-height: 100%;
}

.coffee-point-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-flavor {
  background: var(--cream-2);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.coffee-flavor img {
  height: calc(100vw * 284 / 1926);
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.coffee-flavor-main {
  flex: 1 1 auto;
  min-width: 0;
}

.coffee-serve {
  padding: 36px 0 56px;
  background: var(--white);
}

.coffee-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.coffee-serve-card {
  display: flex;
  align-items: stretch;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 148px;
}

.coffee-serve-copy {
  flex: 1 1 46%;
  padding: 16px 12px 16px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
}

.coffee-serve-copy img {
  width: 32px;
  height: auto;
}

.coffee-serve-copy h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 20px;
  color: var(--green-title);
  margin: 0;
}

.coffee-serve-copy p {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.coffee-serve-photo {
  flex: 1 1 54%;
  min-width: 0;
}

.coffee-serve-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ice cream page */
.ice-products {
  margin-top: -36px;
  padding: 0 0 28px;
  background: var(--white);
}

.ice-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ice-product {
  display: flex;
  align-items: stretch;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  overflow: hidden;
}

.ice-product-photo {
  flex: 0 0 46%;
  min-width: 0;
}

.ice-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ice-product-copy {
  flex: 1;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ice-product-copy h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.ice-product-copy p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 14px;
}

.ice-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 16px;
}

.ice-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green-title);
}

.ice-tags li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M4.7 8.6 2.2 6.1l.9-.9 1.6 1.6 4.2-4.2.9.9z'/%3E%3C/svg%3E") center / 10px no-repeat;
  flex-shrink: 0;
}

.ice-more {
  color: var(--gold);
  font-size: 14px;
  width: fit-content;
}

.ice-more:hover {
  color: var(--green-title);
}

.ice-why {
  padding: 28px 0 36px;
  background: var(--cream-2);
}

.ice-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ice-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-right: 1px solid #e8d7b0;
}

.ice-why-item:last-child {
  border-right: 0;
}

.ice-why-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.ice-why-item h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 20px;
  margin-bottom: 4px;
}

.ice-why-item p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

.ice-enjoy {
  padding: 36px 0 56px;
  background: var(--white);
}

.ice-enjoy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ice-enjoy-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

/* Stores page */
.stores-page {
  padding: 36px 0 28px;
  background: var(--white);
}

.stores-map-banner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  height: 320px;
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #f4efe4;
}

.stores-page-map,
.stores-map-banner .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
}

.stores-map-banner .leaflet-div-icon {
  background: transparent;
  border: none;
}

.stores-map-banner .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.78);
}

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

.stores-page-card .store-photo {
  height: 168px;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.store-tags span {
  background: #f3e4c4;
  color: var(--green-title);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

.stores-env {
  padding: 28px 0 36px;
  background: var(--cream-2);
}

.stores-env-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.stores-env-grid img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
}

.stores-service {
  padding: 28px 0 56px;
  background: var(--white);
}

.stores-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stores-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  padding: 22px 20px;
}

.stores-service-card img {
  width: 88px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.stores-service-card h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.stores-service-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Contact page */
.contact-ways {
  padding: 40px 0 28px;
  background: var(--white);
}

.contact-way-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-way {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  text-align: center;
  padding: 28px 16px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.contact-way:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(8, 58, 37, 0.1);
}

.contact-way img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.contact-way h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-way p {
  font-size: 14px;
  color: var(--text-sub);
}

.contact-body {
  padding: 20px 0 40px;
  background: var(--cream-2);
}

.contact-body-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.7fr);
  gap: 28px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  padding: 32px 36px;
}

.contact-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-form-head img {
  width: 52px;
  height: auto;
}

.contact-form-head h2 {
  font-family: "Source Han Serif SC", serif;
  font-size: 28px;
}

.contact-form-lead {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 12px;
  font: inherit;
  color: var(--green-title);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: linear-gradient(180deg, #f6e0a8 0%, #e4c478 100%);
  color: var(--green-nav);
  padding: 10px 22px;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

.contact-submit img {
  width: 18px;
  height: auto;
  filter: brightness(0);
}

.contact-form-ok {
  margin-top: 12px;
  font-size: 14px;
  color: var(--green-title);
}

.contact-visual {
  display: flex;
  justify-content: center;
}

.contact-visual-frame {
  position: relative;
  width: 70%;
  max-width: 340px;
}

.contact-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.contact-visual-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 14px 16px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(254, 246, 232, 0.92) 42%, var(--cream) 100%);
  border-radius: 0 0 18px 18px;
}

.contact-visual-copy h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.contact-visual-copy p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

.contact-more {
  padding: 28px 0 56px;
  background: var(--white);
}

.contact-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  padding: 22px 20px;
}

.contact-more-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-more-card h3 {
  font-family: "Source Han Serif SC", serif;
  font-size: 20px;
  margin-bottom: 6px;
}

.contact-more-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-grid,
  .enjoy-grid,
  .detail-grid,
  .coffee-serve-grid,
  .ice-product-grid,
  .stores-list,
  .contact-way-grid,
  .contact-more-grid,
  .stores-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ice-enjoy-grid,
  .stores-env-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ice-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ice-why-item {
    border-right: 0;
    border-bottom: 1px solid #e8d7b0;
    padding: 16px;
  }

  .ice-why-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-body-inner {
    grid-template-columns: 1fr;
  }

  .coffee-point-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coffee-point-photo {
    grid-column: 1 / -1;
    height: 260px;
  }

  .detail-item {
    border-right: 0;
    border-bottom: 1px solid #e8d7b0;
    padding: 20px 24px;
  }

  .detail-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .store-grid {
    flex-wrap: wrap;
  }

  .store-card {
    flex: 1 1 calc((100% - 20px) / 2);
  }

  .store-map {
    flex: 1 1 100%;
    min-height: 320px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 32px 0;
  }

  .footer-brand,
  .footer-contact {
    margin-right: 28px;
  }

  .footer-links {
    margin-right: 40px;
  }

  .footer-qr {
    grid-column: 1 / -1;
    justify-content: start;
    max-width: 280px;
  }

  .why-inner {
    gap: 16px;
  }

  .why-copy {
    flex-basis: 260px;
  }

  .journey-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .container,
  .features-bar {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    width: calc(100% - 24px);
    flex-wrap: wrap;
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    margin-left: 8px;
  }

  .btn-buy {
    order: 2;
    margin-left: auto;
    padding: 7px 14px 7px 10px;
    font-size: 13px;
  }

  .nav {
    display: none;
    order: 4;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-bottom: 16px;
  }

  .hero {
    min-height: 460px;
    display: flex;
    align-items: center;
  }

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

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 20, 8, 0.82) 0%, rgba(0, 20, 8, 0.45) 48%, rgba(0, 20, 8, 0.12) 100%);
    pointer-events: none;
  }

  .hero-copy {
    display: block;
    position: relative;
    z-index: 1;
    padding: 48px 24px 88px;
    line-height: 1.4;
    max-width: 360px;
  }

  .hero-copy h1 {
    font-family: "Source Han Serif SC", serif;
    font-size: 28px;
    color: var(--gold-btn);
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hero-en {
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--gold-line);
    margin-bottom: 10px;
  }

  .hero-crown {
    display: block;
    width: 72px;
    height: 1px;
    background: var(--gold);
    margin: 12px 0;
    position: relative;
  }

  .hero-crown::before {
    content: "♛";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: var(--gold-btn);
    font-size: 12px;
    padding: 0 6px;
    line-height: 1;
  }

  .hero-desc {
    font-size: 13px;
    color: var(--gold-line);
    line-height: 1.7;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(228, 213, 147, 0.2);
  }

  .features-bar {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item {
    padding: 12px 16px;
  }

  .why-inner {
    flex-direction: column;
    text-align: center;
  }

  .why-copy {
    flex-basis: auto;
  }

  .journey-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-arrow {
    display: none;
  }

  .journey-steps li img {
    width: 100px;
    height: 100px;
  }

  .title-deco {
    width: 90px;
  }

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

  .coffee-flavor-deco {
    display: none;
  }

  .coffee-flavor img {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .store-grid,
  .features-bar,
  .enjoy-grid,
  .detail-grid,
  .coffee-point-grid,
  .coffee-serve-grid,
  .ice-product-grid,
  .ice-why-grid,
  .ice-enjoy-grid,
  .stores-list,
  .stores-env-grid,
  .stores-service-grid,
  .contact-way-grid,
  .contact-more-grid {
    grid-template-columns: 1fr;
  }

  .ice-product {
    flex-direction: column;
  }

  .ice-product-photo {
    flex: none;
    height: 220px;
  }

  .ice-why-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e8d7b0;
  }

  .ice-why-item:last-child {
    border-bottom: 0;
  }

  .ice-enjoy-grid img,
  .stores-env-grid img {
    height: 200px;
  }

  .coffee-point-photo {
    grid-column: auto;
    height: 220px;
  }

  .detail-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e8d7b0;
  }

  .detail-item:last-child {
    border-bottom: 0;
  }

  .store-card,
  .store-map {
    flex: 1 1 100%;
  }

  .store-map {
    min-height: 280px;
  }

  .stores-map-banner {
    height: 260px;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid #dcc89a;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .footer-inner,
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-qr {
    margin-right: 0;
  }

  .logo img {
    height: 40px;
  }

  .why-copy h2,
  .journey-copy h2 {
    font-size: 26px;
  }
}
