/* ====== CSS Variables ====== */
:root {
  --color-primary: #8B2E2E;
  --color-primary-dark: #6B1D1D;
  --color-accent: #C77D43;
  --color-accent-light: #E8C9A0;
  --color-dark: #1A1A1A;
  --color-text: #3D3226;
  --color-text-light: #7A6E60;
  --color-bg: #FAF7F2;
  --color-card: #FFFFFF;
  --color-decor: #E8D5B7;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-success: #4A7C59;
  --color-error: #B33A3A;
  --font-title: "STSong", "SimSun", "Noto Serif SC", "Songti SC", serif;
  --font-body: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --max-width: 1100px;
  --nav-height: 160px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

/* ====== Reset & Base ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.section-subtitle.center {
  text-align: center;
}

/* ====== Navigation ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  transition: color var(--transition);
}

.navbar.scrolled .nav-brand {
  color: var(--color-dark);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #1C0F0A 0%, #2D1810 25%, #1F1410 50%, #1A0F0E 75%, #0D0806 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

/* Decorative moon */
.hero-moon {
  position: absolute;
  top: 12%;
  right: 15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(232, 213, 183, 0.12) 0%,
    rgba(199, 125, 67, 0.06) 40%,
    transparent 70%
  );
  box-shadow:
    0 0 80px rgba(199, 125, 67, 0.08),
    0 0 200px rgba(199, 125, 67, 0.04);
  animation: moonGlow 8s ease-in-out infinite;
}

@keyframes moonGlow {
  0%, 100% { box-shadow: 0 0 80px rgba(199, 125, 67, 0.08), 0 0 200px rgba(199, 125, 67, 0.04); }
  50% { box-shadow: 0 0 120px rgba(199, 125, 67, 0.14), 0 0 260px rgba(199, 125, 67, 0.07); }
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Floating decorative circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199, 125, 67, 0.12);
}

.hero-circle-1 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 8%;
  animation: floatCircle 12s ease-in-out infinite;
}

.hero-circle-2 {
  width: 180px;
  height: 180px;
  top: 20%;
  left: 5%;
  border-color: rgba(199, 125, 67, 0.07);
  animation: floatCircle 16s ease-in-out infinite reverse;
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(-10px) rotate(240deg); }
}

/* Ornament above subtitle */
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.ornament-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 125, 67, 0.5), transparent);
}

.ornament-dot {
  color: rgba(199, 125, 67, 0.6);
  font-size: 10px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-accent);
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "LXGW WenKai TC", "LXGW WenKai", "STKaiti", "KaiTi", var(--font-title);
  font-size: 80px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 44px;
  letter-spacing: 4px;
}

/* Hero English */
.hero-subtitle-en {
  font-size: 15px;
  color: rgba(199, 125, 67, 0.7);
  letter-spacing: 2px;
  margin-top: -8px;
  margin-bottom: 28px;
  font-style: italic;
}

.hero-title-en {
  font-family: var(--font-body);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 4px;
  margin-top: -6px;
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-desc-en {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -34px;
  margin-bottom: 50px;
  letter-spacing: 1px;
  font-style: italic;
}

/* Button English subtitle */
.btn-en {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Chinese text inside English titles */
.title-cn {
  display: block;
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 2px;
}

.about-role-cn {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: -4px;
  margin-bottom: 20px;
}

.label-cn {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

.section-subtitle-cn {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: -40px;
  margin-bottom: 48px;
}

.section-subtitle-cn.center {
  text-align: center;
}

.name-cn {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--color-text-light);
  margin-left: 8px;
  letter-spacing: 1px;
}

.price-en {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 2px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 46, 46, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 46, 46, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-product {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 16px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-product:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

/* ====== About ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-img-placeholder,
.about-img {
  width: 320px;
  height: 380px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--color-decor), #D4C5B2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
  letter-spacing: 2px;
}

.about-img {
  object-fit: contain;
  background: var(--color-bg);
}

.about-role {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.about-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin-bottom: 24px;
}

.about-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 32px;
}

.about-highlights {
  display: flex;
  gap: 36px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-num {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 600;
}

.highlight-label {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* ====== Products ====== */
.products {
  background: #F3EFE8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-placeholder,
.product-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-gallery-track::-webkit-scrollbar { display: none; }
.product-gallery-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 320px;
  object-fit: contain;
  background: var(--color-bg);
  padding: 20px;
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-decor);
  cursor: pointer;
  transition: background var(--transition);
}
.gallery-dot.active {
  background: var(--color-primary);
}
.product-img {
  width: 100%;
  height: 320px;
  padding: 20px;
}

.product-img-placeholder {
  background: linear-gradient(135deg, #E8D5B7, #D5C8B5, #C8BFB0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
  letter-spacing: 2px;
}

.product-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-gallery-track::-webkit-scrollbar { display: none; }
.product-gallery-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 320px;
  object-fit: contain;
  background: var(--color-bg);
  padding: 20px;
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-decor);
  cursor: pointer;
  transition: background var(--transition);
}
.gallery-dot.active {
  background: var(--color-primary);
}
.product-img {
  object-fit: contain;
  background: var(--color-bg);
}

.product-info {
  padding: 24px;
}

.product-name {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.product-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  font-size: 12px;
  padding: 3px 10px;
  background: var(--color-bg);
  color: var(--color-text-light);
  border-radius: 20px;
  letter-spacing: 1px;
}

.product-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ====== Gallery ====== */
.gallery {
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 3 / 4;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ====== Video ====== */
.video {
  background: #F3EFE8;
}

.video-wrap {
  max-width: 800px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ====== Testimonials ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--color-decor);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 20px;
  padding-top: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.author-tag {
  font-size: 12px;
  color: var(--color-text-light);
}

.author-tag::before {
  content: '· ';
}

/* ====== Contact ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--color-card);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 500;
}

.required {
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D8CC;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(199, 125, 67, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B8AEA0;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.form-success,
.form-error {
  display: none;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.form-success.show,
.form-error.show {
  display: block;
}

.form-success {
  background: #EDF5F0;
  color: var(--color-success);
}

.form-error {
  background: #FDEDED;
  color: var(--color-error);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 260px;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-link-card .icon {
  flex-shrink: 0;
}

.contact-link-card span {
  font-weight: 600;
  font-size: 15px;
}

.contact-link-card small {
  margin-left: auto;
  font-size: 12px;
  opacity: 0.85;
}

.contact-link-card.wa {
  background: #25D366;
}

.contact-link-card.email {
  background: #4285F4;
}

.contact-link-card.yt {
  background: #FF0000;
}

.contact-qr {
  text-align: center;
}

.qr-placeholder {
  width: 180px;
  height: 180px;
  background: var(--color-decor);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.contact-qr p {
  font-size: 13px;
  color: var(--color-text-light);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text);
}

.contact-phone .icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ====== Footer ====== */
.footer {
  background: var(--color-dark);
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ====== Scroll Reveal ====== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  :root {
    --nav-height: 140px;
  }

  .section {
    padding: 72px 0;
  }

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

  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 80px 32px 32px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links .nav-link {
    color: var(--color-text);
    font-size: 17px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-decor);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span {
    background: var(--color-dark);
  }

  /* Hero */
  .hero-title {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .hero-subtitle {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .hero-desc {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-subtitle-en {
    font-size: 12px;
  }

  .hero-title-en {
    font-size: 17px;
  }

  .hero-desc-en {
    font-size: 12px;
  }

  .hero-bg {
    background-image: url('../images/hero-mobile.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-moon {
    width: 180px;
    height: 180px;
    top: 8%;
    right: 5%;
  }

  .hero-circle-1 {
    width: 80px;
    height: 80px;
  }

  .hero-circle-2 {
    width: 120px;
    height: 120px;
  }

  .hero-ornament {
    gap: 12px;
    margin-bottom: 20px;
  }

  .ornament-line {
    width: 30px;
  }

  .btn {
    padding: 12px 32px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-img-placeholder,
  .about-img {
    width: 240px;
    height: 300px;
  }

  .about-highlights {
    gap: 24px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    gap: 40px;
  }

  .hero-title {
    font-size: 56px;
  }
}
