/* ===== Yukon Asian Market — Landing CSS ===== */
:root {
  --red: #c8102e;
  --red-dark: #a40d24;
  --gold: #c9a341;
  --gold-dark: #a78731;
  --cream: #fbf6ec;
  --cream-dark: #f4ecdb;
  --brown: #3d2817;
  --brown-dark: #251609;
  --ink: #2a1d12;
  --ink-soft: #6b5848;
  --line: #e8dfcb;
  --line-dark: rgba(255, 255, 255, 0.12);
  --bg: #fdf9f1;
  --card: #ffffff;
  --shadow-soft: 0 1px 2px rgba(45, 26, 12, 0.04), 0 4px 16px rgba(45, 26, 12, 0.06);
  --shadow-strong: 0 4px 12px rgba(45, 26, 12, 0.08), 0 18px 50px rgba(45, 26, 12, 0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --max-w: 1280px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(253, 249, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logo img {
  height: 40px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lg-line1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--red);
}
.lg-line2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--brown);
  margin-top: 3px;
}
.navmenu {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 14.5px;
}
.navmenu a {
  text-decoration: none;
  color: var(--brown);
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
}
.navmenu a:hover {
  opacity: 1;
  color: var(--red);
}
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: var(--brown);
}

/* ===== Buttons / CTAs ===== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.12s, border-color 0.12s, color 0.12s;
}
.cta:hover { transform: translateY(-1px); }
.cta-dark {
  background: var(--brown);
  color: #fff;
}
.cta-dark:hover { background: var(--brown-dark); }
.cta-pill {
  background: var(--red);
  color: #fff;
}
.cta-pill:hover { background: var(--red-dark); }
.cta-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.cta-ghost:hover { background: var(--brown); color: #fff; }
.cta.inline { margin-top: 8px; }
.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 13px;
}
.cta-dark .cta-arrow { background: var(--gold); color: var(--brown); }

/* ===== Hero ===== */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.badges {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brown);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.badge-dot.gold { background: var(--gold); }
.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-left h1 em {
  font-style: italic;
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  color: var(--ink);
}
.hero-left h1 .accent {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}
.hero-left h1 .ast {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 6px;
}
.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 460px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat-lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero right — floating cards composition */
.hero-right {
  position: relative;
  min-height: 600px;
}
.float-card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 18px 22px;
}
.card-hours {
  top: 0;
  left: 40px;
  z-index: 3;
  padding: 18px 24px;
  border-radius: var(--radius);
}
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tag-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.05); }
}
.card-h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.card-hero-img {
  top: 90px;
  right: 0;
  width: 320px;
  height: 420px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #d4534f, #c8102e 70%, #8e0d20);
  z-index: 2;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-wrap.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-img-wrap .img-fallback-content {
  display: none;
}
.hero-img-wrap.img-fallback .img-fallback-content {
  display: block;
}
.fb-emoji {
  font-size: 60px;
  margin-bottom: 12px;
}
.fb-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero-img-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}
.overlay-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.card-call {
  bottom: 130px;
  left: 0;
  z-index: 4;
  padding: 18px 22px;
  background: var(--brown);
  color: #fff;
  border-radius: var(--radius);
}
.phone-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.phone-sub {
  font-size: 12.5px;
  opacity: 0.7;
  margin-top: 4px;
}

.card-note {
  bottom: 0;
  right: 40px;
  width: 260px;
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  z-index: 3;
}
.note-icon {
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.note-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.note-text {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Decorative dotted connectors on hero — subtle */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border: 1.5px dashed var(--line);
  border-radius: 60px;
  pointer-events: none;
}
.hero::before {
  top: 60px;
  right: 380px;
  width: 200px;
  height: 60px;
  border-bottom: 0;
  border-right: 0;
}

/* ===== Section base ===== */
.section {
  padding: 96px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-cream {
  background: var(--cream);
  max-width: 100%;
  padding-left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  padding-right: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
}
.section-dark {
  background: var(--brown-dark);
  max-width: 100%;
  padding-left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  padding-right: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  color: #f8eedb;
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.sec-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.sec-eyebrow.on-dark { color: var(--gold); }
.section h2,
.about-left h2,
.contact-left h2,
.visit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--ink);
}
.section h2.on-dark { color: #f8eedb; }
.sec-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0;
}
.accent { color: var(--red); font-style: italic; font-weight: 600; }
.accent-gold { color: var(--gold); }

/* ===== Categories ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 26px;
  border-radius: var(--radius);
  transition: transform 0.18s, box-shadow 0.18s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.cat-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cat-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.cat-1 { background: linear-gradient(160deg, #fff, #fff8ee); }
.cat-2 { background: linear-gradient(160deg, #fff, #f3ebe0); }
.cat-3 { background: linear-gradient(160deg, #fff, #fdf2f3); }
.cat-4 { background: linear-gradient(160deg, #fff, #fff5e6); }
.cat-5 { background: linear-gradient(160deg, #fff, #f0f5ec); }
.cat-6 { background: linear-gradient(160deg, #fff, #f4eef9); }

/* ===== About ===== */
.about-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-left p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #c19738, #a4791a);
  position: relative;
  box-shadow: var(--shadow-strong);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.about-img .img-fallback-content {
  display: none;
}
.about-img.img-fallback .img-fallback-content {
  display: block;
}

/* ===== Featured products ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.18s, box-shadow 0.18s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.feat-img {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feat-meta {
  padding: 16px 18px;
}
.feat-meta .label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.feat-meta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 2px;
}
.feat-meta p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Visit (dark section) ===== */
.visit-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.visit-info { color: #f8eedb; }
.info-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.info-row:first-of-type { margin-top: 40px; }
.info-icon {
  font-size: 22px;
  line-height: 1.1;
  flex-shrink: 0;
}
.info-title {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.info-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  text-decoration: none;
}
.info-text:hover { color: var(--gold); }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 1 / 1;
  border: 3px solid var(--gold);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Contact ===== */
.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.contact-other {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-link {
  text-decoration: none;
  color: var(--red);
  font-weight: 500;
  font-size: 15px;
}
.contact-link:hover { text-decoration: underline; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .opt {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 12.5px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--red); }
.hpot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-msg {
  margin-top: 14px;
  font-size: 14px;
  min-height: 1.5em;
}
.form-msg.ok { color: #16a34a; }
.form-msg.err { color: var(--red); }

/* ===== Footer ===== */
.footer {
  background: var(--brown-dark);
  color: #e7d9bf;
  padding: 60px 32px 28px;
}
.foot-cols {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.foot-brand .lg-line1 { color: var(--gold); font-size: 22px; }
.foot-brand .lg-line2 { color: #c2ad88; font-size: 11.5px; letter-spacing: 0.24em; margin-top: 4px; }
.foot-tag {
  font-size: 14px;
  line-height: 1.55;
  color: #c2ad88;
  margin: 4px 0 0;
  max-width: 280px;
}
.foot-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.foot-col a,
.foot-col span {
  display: block;
  font-size: 14.5px;
  color: #e7d9bf;
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.5;
}
.foot-col a:hover { color: #fff; }
.foot-bot {
  max-width: var(--max-w);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12.5px;
  color: #a08c6c;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .topbar { padding: 12px 20px; }
  .navmenu { display: none; }
  .hamburger { display: block; }
  .navmenu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px;
  }
  .navmenu.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .navmenu.open a:last-child { border-bottom: 0; }

  .hero {
    grid-template-columns: 1fr;
    padding: 56px 20px 40px;
    gap: 40px;
  }
  .hero-right { min-height: 540px; }
  .card-hero-img { width: 280px; height: 380px; }
  .card-call { bottom: 100px; }
  .hero-stats { gap: 24px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap,
  .visit-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section { padding: 60px 20px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .section-cream,
  .section-dark { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 560px) {
  .hero { padding: 40px 16px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cat-grid,
  .feat-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; gap: 28px; }
  .card-hero-img { width: 220px; height: 300px; right: 0; }
  .card-call { left: 0; bottom: 80px; padding: 12px 16px; }
  .phone-num { font-size: 16px; }
  .card-note { width: 200px; right: 0; }
  .hero-right { min-height: 460px; }
}
