/* ==========================================================================
   TRUMQ — STYLESHEET
   Bold Contemporary × Premium Lifestyle × Editorial
   ========================================================================== */

:root {
  --yellow: #FFCC00;
  --brown: #2B1D13;
  --black: var(--brown);
  --graphite: #222222;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --gray-line: #E4E4E4;

  --font-head: 'Anuphan', sans-serif;
  --font-body: 'Google Sans', 'Anuphan', sans-serif;

  --container: 1440px;
  --pad-desktop: 64px;
  --pad-tablet: 40px;
  --pad-mobile: 20px;
  --pad: var(--pad-desktop);

  --section-y: 120px;
  --section-y-lg: 160px;

  --radius-card: 16px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 280ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}
.section--dark .eyebrow,
.section--dark .eyebrow::before,
.section--yellow .eyebrow { color: inherit; }
.section--dark .eyebrow::before { background: var(--yellow); }

.section-head {
  max-width: inherit;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  margin-top: 16px;
}
.section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-top: 20px;
  max-width: inherit;
}
.section--dark .section-head p { color: #B9B9B9; }

section { position: relative; }

/* ---------------------------------- Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn svg, .btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--primary:hover { background: var(--black); color: var(--white); }

.btn--brand {
  background: var(--yellow);
  color: var(--black);
}
.btn--brand:hover { background: #fff; }

.btn--purchase {
  background: var(--yellow);
  color: var(--black);
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
}
.btn--purchase:hover { background: #ffd633; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 40%);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1px rgb(255 255 255);
}

.btn--line {
  background: #06C755;
  color: var(--white);
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
}
.btn--line i { font-size: 16px; }
.btn--line:hover { background: #05b34c; }

.shop-cta-btn {
  background: var(--black);
  color: var(--yellow);
  transition: all 0.5s ease;
}
.shop-cta-btn:hover {
  background: var(--white);
  color: var(--black);
}

/* ---------------------------------- Header ---------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.site-header .logo { display: flex; align-items: center; }
.site-header .logo img { height: 80px; width: auto; display: block; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header .nav-links {
  display: flex;
  gap: 36px;
}
.site-header .nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 4px;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.site-header.is-scrolled .nav-links a { color: var(--black); }
.site-header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--dur) var(--ease);
}
.site-header .nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  z-index: 210;
}
.hamburger span {
  position: absolute; left: 0; right: 0;
  height: 2px; background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled .hamburger span { background: var(--black); }
.is-nav-open .site-header .hamburger span { background: var(--white); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }
.is-nav-open .hamburger span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.is-nav-open .hamburger span:nth-child(2) { opacity: 0; }
.is-nav-open .hamburger span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 190;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-mobile);
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
}
.is-nav-open .mobile-nav { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 34px;
  color: var(--white);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 28px; }

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px var(--pad) 80px;
  box-sizing: border-box;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.55) 40%, rgba(17,17,17,0.1) 68%, rgba(17,17,17,0.3) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0) 24%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: inherit;
}
.hero-copy > * {
  opacity: 0;
  animation: fadeUp 600ms var(--ease) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 150ms; }
.hero-copy > *:nth-child(2) { animation-delay: 280ms; }
.hero-copy > *:nth-child(3) { animation-delay: 410ms; }
.hero-copy > *:nth-child(4) { animation-delay: 540ms; }
.hero-copy .eyebrow { color: var(--yellow); }
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 16px;
}
.hero-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-top: 18px;
  max-width: 460px;
}
.hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------- About ---------------------------------- */

.about {
  padding-block: var(--section-y-lg);
  background: var(--gray);
  overflow: hidden;
}

.about-head {
  margin-bottom: 64px;
}

.about-head-content {
  max-width: 850px;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--brown);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.about-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.about-title {
  color: var(--brown);
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.about-description {
  max-width: 680px;
  margin-top: 26px;
  color: #707070;
  font-size: 16px;
  line-height: 1.9;
}

/* ---- Bento grid ---- */

.about-bento {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(0, .775fr)
    minmax(0, .775fr);
  grid-template-rows:
    minmax(270px, 1fr)
    minmax(270px, 1fr);
  gap: 16px;
}

.about-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 29, 19, .15);
  box-shadow: 0 24px 60px rgba(43, 29, 19, .09);
}

.about-card--hero {
  grid-row: span 2;
  min-height: 556px;
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.about-card--hero:hover { border-color: var(--brown); }

.about-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.about-card--hero:hover .about-card-image { transform: scale(1.045); }

.about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43, 29, 19, .08) 20%, rgba(43, 29, 19, .18) 42%, rgba(43, 29, 19, .92) 100%);
}

.about-card-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: currentColor;
  opacity: .55;
}
.about-card--hero .about-card-label {
  position: absolute;
  top: 30px;
  left: 34px;
  color: var(--white);
}

.about-card-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.about-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--brown);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  transition: transform var(--dur) var(--ease);
}
.about-card--hero:hover .about-brand { transform: rotate(-6deg) scale(1.05); }

.about-card--hero h3 {
  max-width: 600px;
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.04em;
}
.about-card--hero p {
  max-width: 570px;
  margin-top: 16px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.8;
}

.about-card--small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px;
}

.about-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray-line);
  border-radius: 50%;
  font-size: 16px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.about-card:hover .about-card-arrow {
  transform: translate(3px, -3px);
  background: var(--yellow);
  border-color: var(--yellow);
}

.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-top: 35px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--gray);
  color: var(--brown);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  transition: transform var(--dur) var(--ease);
}
.about-card:hover .about-card-icon { transform: translateY(-3px); }

.about-card--small h4 {
  margin-bottom: 7px;
  color: var(--brown);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}
.about-card--small p {
  max-width: 270px;
  color: #777;
  font-size: 13px;
  line-height: 1.75;
}

.about-card--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}
.about-card--yellow:hover { border-color: var(--yellow); }
.about-card--yellow .about-card-icon { background: var(--brown); color: var(--yellow); }
.about-card--yellow .about-card-arrow { border-color: rgba(43,29,19,.18); }

@media (max-width: 1100px) {
  :root { --pad: var(--pad-tablet); }
  .about-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .about-card--hero {
    grid-column: span 2;
    grid-row: auto;
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  :root { --pad: var(--pad-mobile); }
  .about { padding-block: var(--section-y); }
  .about-head { margin-bottom: 40px; }
  .about-title { font-size: clamp(38px, 11vw, 52px); }
  .about-description { font-size: 14px; }
  .about-bento { grid-template-columns: 1fr; gap: 12px; }
  .about-card--hero { grid-column: auto; min-height: 480px; }
  .about-card--hero .about-card-content { right: 25px; bottom: 25px; left: 25px; }
  .about-card--hero .about-card-label { top: 25px; left: 25px; }
  .about-card--hero h3 { font-size: 34px; }
  .about-card--small { min-height: 230px; padding: 25px; }
}

/* ---------------------------------- Products (horizontal scroll) ---------------------------------- */

.products-scene {
  background: var(--brown);
  color: var(--white);
  padding: 80px 0 !important;
  overflow: hidden;
}
.products-scene .section-head { margin-bottom: 40px; padding: 0 var(--pad); }
.products-scene .section-head h2 { color: var(--white); }
.products-scene .section-head p { color: #B9B9B9; }

.category-track-wrap { overflow: hidden; max-width: 100%; margin: 0 auto; }
.category-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--pad) 8px;
  will-change: transform;
}
.category-card {
  flex: 0 0 clamp(260px, 32vw, 420px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  cursor: pointer;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 500ms var(--ease);
}
.category-card:hover img { transform: scale(1.05); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
}
.category-card .card-label {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  z-index: 2;
}
.category-card .card-label .eyebrow { color: var(--yellow); }
.category-card .card-label .eyebrow::before { background: var(--yellow); }
.category-card .card-label h3 { color: var(--white); font-size: 22px; margin-top: 8px; }

.scene-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--pad) 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: #888;
}
.scene-indicator .current { color: var(--yellow); }
.scene-indicator .bar { width: 120px; height: 2px; background: #333; position: relative; overflow: hidden; }
.scene-indicator .bar span { position: absolute; left: 0; top: 0; bottom: 0; background: var(--yellow); transition: width 300ms var(--ease); }

/* ---------------------------------- Featured (compact grid) ---------------------------------- */

.featured { padding: 0; background: var(--white); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.featured-card { display: flex; flex-direction: column; min-width: 0; }

.featured-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-card);
}
.featured-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
  transition: transform 400ms var(--ease);
  background: transparent;
}
.featured-card:hover .featured-media img { transform: scale(1.04); }

.featured-copy { margin-top: 20px; }
.featured-copy .num { font-family: var(--font-head); font-weight: 700; color: #C9C9C9; font-size: 13px; }
.featured-copy h3 { font-size: 19px; margin-top: 8px; line-height: 1.3; min-height: 50px; }
.featured-copy .price { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 10px 0 14px; }
.featured-copy p.desc {
  font-size: 13px; line-height: 1.6; color: #777; margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-copy .btn { width: 100%; justify-content: center; }

/* ---------------------------------- Collection (grid + filter) ---------------------------------- */

.collection { padding: 0; background: var(--gray); }
.collection .section-head {
  max-width: inherit;
  margin-bottom: 24px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.filter-chip {
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  transition: all var(--dur) var(--ease);
}
.filter-chip.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.filter-chip:hover:not(.is-active) { border-color: var(--black); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { box-shadow: 0 10px 20px rgb(0 0 0 / 5%); }
.product-card:active { transform: scale(0.97); }
.category-card:active img { transform: scale(1.05); }
.filter-chip:active,
.location-item:active { transform: scale(0.98); }
.product-card .thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.product-card .thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 400ms var(--ease);
}
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 999;
}
.product-card .cat { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #999; font-family: var(--font-head); font-weight: 600; }
.product-card h4 { font-size: 16px; margin-top: 6px; line-height: 1.35; min-height: 44px; }
.product-card .desc { font-size: 13px; color: #777; line-height: 1.55; margin-top: 6px; min-height: 40px; }
.product-card .price { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: auto 0 14px; }
.product-card .btn { width: 100%; justify-content: center; }

.grid-empty { display: none; text-align: center; padding: 80px 0; color: #888; font-family: var(--font-head); }
.grid-empty.is-visible { display: block; }

/* ---------------------------------- Lifestyle scenes (compact grid) ---------------------------------- */

.lifestyle { background: var(--brown); padding: 0; }
.lifestyle .section-head h2 { color: var(--white); }
.lifestyle .section-head p { color: #B9B9B9; }
.lifestyle .eyebrow { color: var(--yellow); }
.lifestyle .eyebrow::before { background: var(--yellow); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.scene {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 18px;
}
.scene .scene-bg { position: absolute; inset: 0; background: var(--graphite); }
.scene .scene-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.7;
  transition: transform 500ms var(--ease);
}
.scene:hover .scene-bg img { transform: scale(1.05); }
.scene::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.scene-copy { position: relative; z-index: 2; color: var(--white); }
.scene-copy .eyebrow { color: var(--yellow); font-size: 10px; }
.scene-copy .eyebrow::before { background: var(--yellow); width: 16px; }
.scene-copy h3 { font-size: clamp(14px, 1.4vw, 17px); margin-top: 6px; }

.lifestyle-closing {
  text-align: center;
  padding-top: 56px;
  color: var(--white);
}
.lifestyle-closing h3 { font-size: clamp(22px, 2.6vw, 32px); }

/* ---------------------------------- Why TRUMQ ---------------------------------- */

/* Manifesto: oversized outline numerals beside full-width statement rows.
   Deliberately not a card grid (About/Featured/Collection), not an image
   mosaic (Products/Lifestyle), and not an accordion (old Why) — every
   pillar reads in full, no click required. */
.why {
  background: var(--white);
}
.why .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  width: max-content;
}
.why .section-head { max-width: inherit; margin-bottom: 0; flex-shrink: 0; }
.why .section-head h2 { color: var(--black); }
.why .section-head p {
  color: rgba(17, 17, 17, 0.68);
  max-width: 500px;
  margin-top: 18px;
}
.why .eyebrow { color: var(--yellow); }

.why-manifesto {
  flex: 1 1 auto;
  max-width: fit-content;
  border-top: 1px solid var(--gray-line);
}
.why-pillar {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-line);
}
.why-pillar-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  color: var(--yellow);
}
.why-pillar-copy h3 { font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; color: var(--black); }
.why-pillar-copy p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.72);
  margin: 8px 0 0;
  max-width: 420px;
}

/* ---------------------------------- Find TRUMQ ---------------------------------- */

.find { padding: 0; background: #2b1d1317; }
.find-layout {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.find-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--gray);
}
.find-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.find-map .map-todo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: #999; font-family: var(--font-head); font-weight: 600; font-size: 13px; text-align: center; padding: 24px;
}

.location-list {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  max-width: calc(100% - 48px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(43, 29, 19, 0.16);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: pointer;
}
.location-item.is-active { border-color: var(--brown); background: var(--brown); }
.location-item.is-active h4 { color: var(--white); }
.location-item .loc-num { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--yellow); }
.location-item h4 { font-size: 14px; }

.location-detail {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  width: 340px;
  max-width: calc(100% - 48px);
  padding: 24px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(43, 29, 19, 0.16);
}
.location-detail .loc-num { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--yellow); }
.location-detail h4 { font-size: 18px; margin-top: 4px; }
.location-detail p { font-size: 13px; color: #777; margin: 8px 0 0; padding: 0; }
.location-detail .loc-details { margin-top: 12px; }
.location-detail .todo-tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  color: #B8860B;
  background: #FFF4CC;
  padding: 3px 8px;
  border-radius: 6px;
}
.location-detail .loc-address { color: #555; line-height: 1.6; }
.location-detail .loc-hours {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.location-detail .loc-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #777;
  padding: 3px 0;
}
.location-detail .loc-hours li span:first-child { color: #333; font-weight: 600; }
.location-detail .loc-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-right: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  transition: color var(--dur) var(--ease);
}
.location-detail .loc-map-link i { color: var(--yellow); }
.location-detail .loc-map-link:hover { color: #555; }

.find-online {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.find-online h4 { font-size: 20px; }
.find-online p { font-size: 14px; color: #B9B9B9; margin-top: 6px; max-width: 380px; }

/* ---------------------------------- Shop TRUMQ (final CTA) ---------------------------------- */

.shop-cta {
  min-height: inherit;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px var(--pad);
}
.shop-cta-inner {
  position: relative;
  z-index: 2;
  max-width: inherit;
}
.shop-cta .eyebrow { justify-content: center; }
.shop-cta h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 18px; }
.shop-cta p { font-size: 16px; margin-top: 16px; color: rgba(17,17,17,0.75); }
.shop-cta .btn { margin-top: 32px; }
.shop-cta .disclaimer {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.55);
  margin: 24px 0 0;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
}
.shop-cta .edge-product {
  position: absolute;
  width: clamp(64px, 8vw, 120px);
  height: clamp(64px, 8vw, 120px);
  border-radius: 16px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  animation: floatIn 700ms var(--ease) both, floatIdle 6s ease-in-out infinite;
  animation-delay: var(--fd, 0ms), calc(var(--fd, 0ms) + 700ms);
}
.shop-cta .edge-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
}
#shopEdges { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.category-track-wrap { scrollbar-width: none; -ms-overflow-style: none; }
.category-track-wrap::-webkit-scrollbar { display: none; }

/* ---------------------------------- Footer ---------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  color: var(--white);
  padding: 0;
}
.site-footer > .container {
}
.site-footer > .container,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-top {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.footer-brand p { font-size: 14px; color: #B9B9B9; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-brand .footer-address,
.footer-brand .footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand .footer-address i,
.footer-brand .footer-hours i {
  flex-shrink: 0;
  margin-top: 4px;
  width: 14px;
  text-align: center;
  color: var(--yellow);
  font-size: 13px;
}
.footer-col h5 { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; color: #888; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--yellow); }

/* Contact list (phone / LINE / Facebook) */
.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #B9B9B9;
  transition: color var(--dur) var(--ease);
}
.footer-contact-list a:hover { color: var(--yellow); }
.footer-contact-list i {
  width: 16px;
  text-align: center;
  color: var(--yellow);
  font-size: 14px;
}

/* LINE QR card */
.footer-line-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.footer-line-card:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.footer-line-qr {
  flex-shrink: 0;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  padding: 4px;
}
.footer-line-qr img { display: block; width: 72px; height: 72px; }
.footer-line-text { display: flex; flex-direction: column; gap: 4px; }
.footer-line-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 14px; color: var(--white); }
.footer-line-title i { color: #06C755; font-size: 16px; }
.footer-line-text span { font-size: 12px; color: #999; line-height: 1.5; }

.footer-wordmark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(100px, 20vw, 320px);
  color: #ffffff1c;
  opacity: 0.1;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px var(--pad);
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* ---------------------------------- Reveal utility ---------------------------------- */

.reveal { opacity: 0; transform: translateY(40px); }
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 1199px) {
  :root { --pad: var(--pad-tablet); --section-y: 96px; --section-y-lg: 120px; }
  .why .container { flex-direction: column; gap: 40px; width: 100%; }
  .why .section-head { max-width: none; }
  .why-manifesto { max-width: none; width: 100%; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .scene { aspect-ratio: 3/4; }
  .scene-copy h3 { font-size: 18px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .find-layout { min-height: 0; border-radius: 0; overflow: visible; }
  .find-map { position: static; aspect-ratio: 16/9; border-radius: var(--radius-card); }
  .location-list {
    position: static;
    max-width: none;
    justify-content: flex-start;
    margin-top: 16px;
  }
  .location-detail {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }
  .location-item { box-shadow: none; }
  .footer-top { flex-wrap: wrap; row-gap: 40px; }
}

@media (max-width: 767px) {
  :root { --pad: var(--pad-mobile); --section-y: 72px; --section-y-lg: 88px; }
  .site-header .nav-links { display: none; }
  .site-header .desktop-cta { display: none; }
  .hamburger { display: block; }
  .hero { height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; padding: 120px var(--pad) 56px; align-items: flex-end; }
  .hero-bg img { object-position: 70% center; }
  .hero-bg::after {
    background:
      linear-gradient(0deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.15) 75%),
      linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0) 24%);
  }
  .hero-copy { max-width: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card { padding: 14px; }
  .product-card h4 { min-height: 0; }
  .product-card .desc { display: none; }
  .featured-grid { gap: 16px; }
  .featured-copy h3 { min-height: 0; }
  .featured-copy .desc { display: none; }
  .product-card .btn, .featured-copy .btn, .location-item .loc-map-link {
    white-space: normal;
    text-align: center;
  }
  .product-card .btn, .featured-copy .btn {
    height: auto;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12.5px;
    line-height: 1.3;
  }
  .footer-top { flex-direction: column; gap: 40px; }
  .lifestyle-grid { gap: 12px; }
  .scene { aspect-ratio: 1/1; padding: 16px; }
  .scene-copy h3 { font-size: 15px; }
  .category-card { flex-basis: 78vw; }
  .why-pillar { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .why-pillar-num { font-size: 44px; opacity: 0.3; }
  .find-online { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .shop-cta .edge-product {
    animation: none;
    opacity: 1;
    transform: none;
    translate: none;
  }
  * { scroll-behavior: auto !important; }
}
