/* ASO HONDA SHARED STYLES v4 */
@import url('/fonts/Titillium/titillium.css');


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0A0A0A; --white: #FAFAFA; --off-white: #F3F2EF; --warm-gray: #E8E5DF;
  --mid-gray: #8A857D; --light-gray: #B8B3AB; --red: #CC0000; --red-hover: #A30000;
  --pure-white: #FFFFFF;
  --card-radius: 8px;
  --font-primary: 'Titillium';
  --font: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gutter: clamp(1.5rem, 10vw, 10rem);
}
html { font-size: 22px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* LOADER */
.loader { position: fixed; inset: 0; z-index: 999; background: var(--white); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.loader__mark { height: 32px; } .loader__text { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(10,10,10,0.3); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 var(--gutter); height: 72px; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(250,250,250,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav.scrolled .nav__logo-mark--white { display: none; } .nav.scrolled .nav__logo-mark--default { display: block; }
.nav.scrolled .nav__logo-text { color: var(--black); } .nav.scrolled .nav__link { color: rgba(10,10,10,0.5); }
.nav.scrolled .nav__link:hover { color: var(--black); } .nav.scrolled .nav__burger span { background: var(--black); }
.nav__left { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo-mark--white { height: 24px; width: auto; opacity: 0; display: block; }
.nav__logo-mark--default { height: 24px; width: auto; display: none; }
.nav__logo-text { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; color: var(--white); transition: color 0.4s ease; line-height: 1.2; }
.nav__logo-text small { display: block; font-weight: 400; font-size: 0.5625rem; letter-spacing: 0.08em; opacity: 0.5; }
.nav__links { display: flex; gap: 2rem; align-items: center; opacity: 0; }
.nav__link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.3s ease; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--red); transition: width 0.3s ease; }
.nav__link:hover::after { width: 100%; } .nav__link:hover { color: var(--white); }
.nav__wa { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); background: var(--red); padding: 0.5rem 1rem; transition: background 0.3s ease; opacity: 0; border-radius: 4px; }
.nav__wa:hover { background: var(--red-hover); }
.nav__burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 201;
  position: relative;
  appearance: none;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, background 0.3s ease;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--black); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--black); }
.nav__burger:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 999px; }
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem) scale(0.985);
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.34s;
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}
.nav__mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(14px);
}
.nav__mobile.open a {
  animation: navMobileItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nav__mobile.open a:nth-of-type(1) { animation-delay: 0.02s; }
.nav__mobile.open a:nth-of-type(2) { animation-delay: 0.07s; }
.nav__mobile.open a:nth-of-type(3) { animation-delay: 0.12s; }
.nav__mobile.open a:nth-of-type(4) { animation-delay: 0.17s; }
.nav__mobile.open a:nth-of-type(5) { animation-delay: 0.22s; }
.nav__mobile a:hover { color: var(--red); }
.nav__mobile-close { position: absolute; top: 1.25rem; right: var(--gutter); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--black); background: none; border: 1px solid var(--warm-gray); border-radius: 4px; cursor: pointer; transition: all 0.3s ease; z-index: 201; }
.nav__mobile-close:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.nav__mobile-wa { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--red); color: var(--white) !important; padding: 0.875rem 2rem; margin-top: 1rem; display: inline-block; border-radius: 4px; }
.nav__mobile-wa:hover { background: var(--red-hover); color: var(--white) !important; }
.nav--white { background: rgba(250,250,250,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.nav--white .nav__logo-mark--white { display: none; } .nav--white .nav__logo-mark--default { display: block; opacity: 1; }
.nav--white .nav__logo-text { color: var(--black); } .nav--white .nav__link { color: rgba(10,10,10,0.5); }
.nav--white .nav__link:hover { color: var(--black); } .nav--white .nav__links { opacity: 1; } .nav--white .nav__wa { opacity: 1; }
.nav--white .nav__burger span { background: var(--black); }
@media (max-width: 900px) { .nav__links { display: none !important; } .nav__wa { display: none; } .nav__burger { display: flex; } }

@keyframes navMobileItemIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn { font-family: var(--font); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.875rem 1.75rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; cursor: pointer; border: none; border-radius: 4px; }
.btn-arrow { transition: transform 0.3s ease; } .btn:hover .btn-arrow { transform: translateX(4px); }
.btn--red { background: var(--red); color: var(--white); } .btn--red:hover { background: var(--red-hover); }
.btn--glass { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); } .btn--glass:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.btn--dark { background: var(--black); color: var(--white); } .btn--dark:hover { background: var(--red); }
.btn--outline { background: none; color: var(--black); border: 1px solid rgba(10,10,10,0.2); } .btn--outline:hover { background: var(--black); color: var(--white); }

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 6rem var(--gutter) 3.5rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; } .hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,0.5) 65%, rgba(10,10,10,0.9) 100%); }
.hero__content { position: relative; z-index: 2; max-width: min(1200px, calc(100vw - (var(--gutter) * 2))); }
.hero__title { font-size: clamp(1.1rem, 3.2vw, 2.1rem); font-weight: 700; line-height: 1.08; color: var(--white); margin-bottom: 1.25rem; }
.hero__title .line { width: max-content; max-width: none; overflow: hidden; white-space: nowrap; transform: translateY(110%); opacity: 0; }
.hero__title .thin { font-weight: 300; }
.hero__sub { font-size: clamp(0.875rem, 1.8vw, 1rem); font-weight: 300; line-height: 1.75; color: var(--light-gray); max-width: 700px; margin-bottom: 2rem; opacity: 0; }
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; opacity: 0; }

/* SHOWCASE */
.showcase { padding: 5rem var(--gutter) 6rem; background: var(--off-white); overflow: hidden; }
.showcase__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.showcase__header > * { min-width: 0; }
.showcase__title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.15; max-width: 12ch; text-wrap: balance; } .showcase__title .thin { font-weight: 300; display: block; }
.showcase__tabs { display: flex; gap: 0.25rem; background: var(--warm-gray); padding: 4px; border-radius: 6px; flex-wrap: wrap; max-width: 100%; }
.showcase__filter { display: none; width: 100%; max-width: 420px; margin-left: auto; }
.showcase__tab { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.625rem 1.5rem; color: var(--mid-gray); transition: all 0.3s ease; border-radius: 4px; }
.showcase__tab.active { background: var(--black); color: var(--white); } .showcase__tab:hover:not(.active) { color: var(--black); }
.showcase__select,
.products__select {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(10,10,10,0.10);
  border-radius: 8px;
  padding: 0.9rem 1rem 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(10,10,10,0.04), inset 0 1px 0 rgba(255,255,255,0.42);
  cursor: pointer;
}
.showcase__select:focus,
.products__select:focus {
  outline: none;
  border-color: rgba(204,0,0,0.42);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.10), 0 10px 24px rgba(10,10,10,0.05), inset 0 1px 0 rgba(255,255,255,0.42);
}
.showcase__select-icon,
.products__select-icon {
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.9rem;
  line-height: 1;
}
.showcase__filter,
.products__filter {
  position: relative;
}
.showcase__menu,
.products__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(243,242,239,0.94));
  border: 1px solid rgba(10,10,10,0.10);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(10,10,10,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.showcase__menu[hidden],
.products__menu[hidden] {
  display: none !important;
}
.showcase__menu-item,
.products__menu-item {
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: transparent;
  border: none;
  padding: 0.8rem 0.9rem;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease;
}
.showcase__menu-item:hover,
.products__menu-item:hover {
  background: rgba(255,255,255,0.72);
  color: var(--black);
}
.showcase__menu-item.active,
.products__menu-item.active {
  background: var(--black);
  color: var(--white);
}
.showcase__carousel { position: relative; display: flex; align-items: center; gap: 1.5rem; }
.showcase__arrow { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(10,10,10,0.15); background: var(--white); font-size: 1.25rem; color: var(--black); transition: all 0.3s ease; flex-shrink: 0; border-radius: 6px; }
.showcase__arrow:hover { background: var(--black); color: var(--white); }
.showcase__track-wrapper { flex: 1; min-width: 0; overflow: hidden; }
.showcase__track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.25,0.1,0.25,1); }
.showcase__card { flex: 0 0 calc(33.333% - 1rem); min-width: 280px; background: var(--white); transition: transform 0.3s ease; border-radius: var(--card-radius); overflow: hidden; }
.showcase__card:hover { transform: translateY(-4px); }
.showcase__card { display: flex; flex-direction: column; height: 100%; }
.showcase__card-image { aspect-ratio: 4/3; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; padding: 1rem; }
.showcase__card-image img { width: 85%; height: auto; object-fit: contain; transition: transform 0.4s ease; }
.showcase__card:hover .showcase__card-image img { transform: scale(1.05); }
.showcase__card-badge { position: absolute; top: 0.75rem; left: 0.75rem; font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.375rem 0.625rem; background: var(--red); color: var(--white); border-radius: 4px; }
.showcase__card-body { padding: 1.25rem 1.25rem 0; display: flex; flex-direction: column; flex: 1; }
.showcase__card-category { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.375rem; }
.showcase__card-name { font-size: 1rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.5rem; }
.showcase__card-price { font-size: 0.9375rem; font-weight: 300; color: var(--red); margin-bottom: 1rem; white-space: nowrap; }
.showcase__card-price-small { font-size: 0.6875rem; color: var(--mid-gray); white-space: nowrap; }
.showcase__card-cta { display: block; width: calc(100% + 2.5rem); margin-top: auto; margin-left: -1.25rem; margin-right: -1.25rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem; background: var(--black); color: var(--white); text-align: center; transition: background 0.3s ease; border-radius: 0 0 var(--card-radius) var(--card-radius); }
.showcase__card-cta:hover { background: var(--red); }
.showcase__card.is-hidden { display: none !important; }
@media (max-width: 600px) { .showcase__card-cta-arrow { display: none; } }
@media (max-width: 900px) { .showcase__card { flex: 0 0 calc(50% - 0.75rem); min-width: 240px; } .showcase__arrow { width: 40px; height: 40px; } }
@media (max-width: 600px) {
  .showcase__tabs { display: none; }
  .showcase__filter { display: block; }
  .showcase { padding-top: 4.5rem; padding-bottom: 5rem; }
  .showcase__card { flex: 0 0 100%; min-width: 0; }
  .showcase__header { flex-direction: column; align-items: stretch; margin-bottom: 2rem; }
  .showcase__title { max-width: none; }
  .showcase__carousel { flex-wrap: wrap; justify-content: center; gap: 0.875rem; }
  .showcase__track-wrapper { order: 1; flex-basis: 100%; }
  .showcase__carousel > .showcase__arrow { order: 2; }
  .showcase__filter {
    max-width: none;
  }
  .showcase__menu,
  .products__menu {
    border-radius: 8px;
  }
}

/* SPOTLIGHT CONFIGURATOR */
.spotlight { padding: 5rem var(--gutter); background: var(--white); }
.spotlight__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: calc(100vw - (var(--gutter) * 2));
  margin: 0 auto;
}
.spotlight__image-wrap { display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--off-white); border-radius: 8px; }
.spotlight__image { width: 100%; max-width: 500px; transition: opacity 0.25s ease; }
.spotlight__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.spotlight__name { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.12; margin-bottom: 0.5rem; }
.spotlight__name .thin { font-weight: 300; }
.spotlight__tagline { font-size: 0.9375rem; font-weight: 300; line-height: 1.6; color: var(--mid-gray); margin-bottom: 2rem; }
.spotlight__color-label { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.75rem; }
.spotlight__swatches { display: flex; gap: 0.625rem; margin-bottom: 0.5rem; }
.spotlight__swatch { width: 36px; height: 36px; border: 2px solid transparent; cursor: pointer; transition: all 0.3s ease; padding: 0; border-radius: 50%; }
.spotlight__swatch.active { border-color: var(--red); transform: scale(1.15); }
.spotlight__swatch:hover { transform: scale(1.1); }
.spotlight__color-name { font-size: 0.8125rem; font-weight: 500; color: var(--mid-gray); margin-bottom: 2rem; }
.spotlight__price-box { border: 1px solid var(--warm-gray); padding: 1.5rem; margin-bottom: 1.25rem; border-radius: 8px; }
.spotlight__price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.25rem; }
.spotlight__price-label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid-gray); }
.spotlight__price-value { font-size: 1.5rem; font-weight: 500; color: var(--black); }
.spotlight__cta { justify-content: center; }
.spotlight__detail-link { font-size: 0.75rem; font-weight: 500; color: var(--mid-gray); transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.25rem; }
.spotlight__detail-link:hover { color: var(--red); }
@media (max-width: 768px) {
  .spotlight__inner { grid-template-columns: 1fr; gap: 2rem; }
  .spotlight__info { display: contents; }
  .spotlight__intro { order: 1; }
  .spotlight__image-wrap { order: 2; }
  .spotlight__purchase { order: 3; }
  .spotlight__detail-link { order: 4; }
  .spotlight__image-wrap { padding: 1.5rem; }
  .spotlight__price-row { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}

/* FAQ */
.faq { padding: 5rem var(--gutter); background: var(--off-white); position: relative; overflow: hidden; }
.faq__grid-deco { position: absolute; inset: 0; z-index: 0; opacity: 0.04; background-image: linear-gradient(var(--warm-gray) 1px, transparent 1px), linear-gradient(90deg, var(--warm-gray) 1px, transparent 1px); background-size: 80px 80px; }
.faq__inner { position: relative; z-index: 1; display: grid; gap: 2rem; }
.faq__header { max-width: 620px; }
.faq__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.faq__title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.15; margin-bottom: 0.75rem; }
.faq__title .thin { font-weight: 300; }
.faq__intro { font-size: 0.9375rem; font-weight: 300; line-height: 1.75; color: var(--mid-gray); }
.faq__list { display: grid; gap: 1.25rem; }
.faq__item { background: var(--white); border: 1px solid rgba(10,10,10,0.08); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 0 rgba(10,10,10,0.03); will-change: box-shadow; }
.faq__question { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 2rem; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; line-height: 1.3; color: var(--black); cursor: pointer; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; flex-shrink: 0; font-size: 2.25rem; line-height: 1; font-weight: 400; color: var(--red); transition: transform 0.25s ease; }
.faq__item[open] .faq__question::after { content: '×'; transform: rotate(180deg); }
.faq__answer { padding: 0 2rem 1.75rem; overflow: hidden; transform-origin: top; will-change: height, opacity; }
.faq__answer p, .faq__answer li { max-width: 920px; padding-top: 1rem; font-size: clamp(1rem, 1.7vw, 1.125rem); font-weight: 300; line-height: 1.75; color: var(--mid-gray); will-change: transform, opacity; }
.faq__answer ol, .faq__answer ul { padding-left:15px; }
.faq__answer strong { font-weight: bold;}
.faq__answer img {border-radius: 8px;}
@media (max-width: 768px) {
  .faq__question { padding: 1.25rem 1.25rem; font-size: 1rem; border-radius: 1.25rem; }
  .faq__question::after { font-size: 1.75rem; }
  .faq__answer { padding: 0 1.25rem 1.25rem; }
  .faq__answer p { font-size: 0.9375rem; }
}

/* NEWS & PROMO */
.news { padding: 5rem var(--gutter); background: var(--white); }
.news__header { margin-bottom: 3rem; }
.news__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.news__title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.15; } .news__title .thin { font-weight: 300; }
.news__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

/* news detail */
.article-list { background: var(--white);}
.article-list__items { display: grid; }
.article-detail { padding: 7rem var(--gutter) 5rem; margin-top: 0; background: var(--white); }
.article-detail__hero { max-width: 820px; margin: 0 auto 2.5rem; text-align: center; }
.article-detail__crumb { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.5rem; transition: color 0.3s ease; }
.article-detail__crumb:hover { color: var(--black); }
.article-detail__eyebrow { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.875rem; }
.article-detail__title { font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; max-width: 760px; margin: 0 auto 1rem; }
.article-detail__preview-title-link {
  color: inherit;
  transition: color 0.3s ease;
}
.article-detail__preview-title-link:hover {
  color: var(--red);
}
.article-detail__subtitle { font-size: clamp(0.95rem, 1.8vw, 1.05rem); font-weight: 300; line-height: 1.75; color: var(--mid-gray); max-width: 520px; margin: 0 auto 1rem; }
.article-detail__meta { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-gray); }
.article-detail__media { max-width: min(1180px, calc(100vw - (var(--gutter) * 2))); margin: 0 auto 3.5rem; overflow: hidden; border-radius: 8px; background: var(--off-white); box-shadow: 0 20px 50px rgba(10,10,10,0.08); }
.article-detail__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-detail__media-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--off-white), #ece6dd); }
.article-detail__content { max-width: 720px; margin: 0 auto; }
.article-detail__content ol, .article-detail__content ul {padding-left: 20px;}
.article-detail__content img {border-radius: 8px;}
.article-detail__content > * { margin: 0; padding: 0; }
.article-detail__content > * + * { margin-top: 1rem; }

.article-detail__link-wrap {
  max-width: 720px;
  margin: 1.25rem auto 0;
  padding: 0;
}

.article-detail__link {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.article-detail__link:hover { color: var(--red-hover); }

.article-detail__preview {  
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* left: featured slideshow */
.news__featured { position: relative; overflow: hidden; background: var(--off-white); align-self: stretch; }
.news__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.news__slide.active { opacity: 1; }
.news__slide img { width: 100%; height: 100%; object-fit: cover; }
.news__slide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8) 100%); }
.news__slide-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; z-index: 1; }
.news__slide-tag { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.news__slide-title { font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1.3; }

/* right: 5 headlines list */
.news__list { display: flex; flex-direction: column; }
.news__item { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: start; padding: 1.25rem 0; border-bottom: 1px solid var(--warm-gray); cursor: pointer; transition: background 0.2s ease; }
.news__item:first-child { padding-top: 0; }
.news__item:hover { background: var(--off-white); margin: 0 -0.5rem; padding-left: 0.5rem; padding-right: 0.5rem; }
.news__item.active .news__item-number { color: var(--red); }
.news__item-number { font-size: 1.5rem; font-weight: 800; color: var(--warm-gray); line-height: 1; min-width: 32px; transition: color 0.3s ease; }
.news__item-text h4 { font-size: 0.8125rem; font-weight: 600; color: var(--black); line-height: 1.35; margin-bottom: 0.25rem; }
.news__item-text p { font-size: 0.75rem; font-weight: 300; color: var(--mid-gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news__item-img { width: 64px; height: 64px; overflow: hidden; flex-shrink: 0; }
.news__item-img img { width: 100%; height: 100%; object-fit: cover; }

.news__more { text-align: center; margin-top: 3rem; }

@media (max-width: 768px) {
  .news__inner { grid-template-columns: 1fr; }
  .news__featured { aspect-ratio: 16/10; }
  .news__item-img { width: 48px; height: 48px; }
  .article-detail { padding-top: 6rem; padding-bottom: 4rem; margin-top:0; }
  .article-detail__hero { margin-bottom: 2rem; }
  .article-detail__media { margin-bottom: 2.5rem; border-radius: 12px; }
  .article-detail__media img { aspect-ratio: 4/3; }
  .article-detail__media-placeholder { aspect-ratio: 4/3; }
  .article-detail__section p { font-size: 0.9375rem; line-height: 1.8; }
}

/* SERVICES */
.services { padding: 6rem var(--gutter); background: var(--white); }
.services__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; opacity: 0; }
.services__header { max-width: 600px; margin-bottom: 4rem; }
.services__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.12; margin-bottom: 1rem; opacity: 0; } .services__title .thin { font-weight: 300; }
.services__intro { font-size: 0.9375rem; font-weight: 300; line-height: 1.75; color: var(--mid-gray); opacity: 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services__card { position: relative; overflow: hidden; aspect-ratio: 3/2; opacity: 0; transform: translateY(30px); border-radius: 8px; }
.services__card-img { position: absolute; inset: 0; } .services__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.services__card:hover .services__card-img img { transform: scale(1.06); }
.services__card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%); z-index: 1; }
.services__card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 2; }
.services__card-number { font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 0.375rem; }
.services__card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.375rem; }
.services__card p { font-size: 0.75rem; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.6); }
.services__card-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-top: 0.75rem; transition: color 0.3s ease; }
.services__card-link:hover { color: var(--red); } .services__card-link .arr { transition: transform 0.3s ease; } .services__card-link:hover .arr { transform: translateX(4px); }
@media (max-width: 768px) { .services__grid { grid-template-columns: 1fr; gap: 1rem; } .services__card { aspect-ratio: 16/9; } }

/* SERVICE PAGE */
.service-hero { padding: 5.5rem var(--gutter) 2.5rem; background: var(--white); }
.service-hero__frame { position: relative; min-height: min(760px, calc(100svh - 8rem)); overflow: hidden; border-radius: 8px; background: var(--black); }
.service-hero__media { position: absolute; inset: 0; }
.service-hero__slider { position: relative; height: 100%; overflow: hidden; touch-action: pan-y; user-select: none; cursor: grab; }
.service-hero__track { display: flex; height: 100%; transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1); will-change: transform; }
.service-hero__slider.is-dragging { cursor: grabbing; }
.service-hero__slider.is-dragging .service-hero__track { transition: none; }
.service-hero__slide { flex: 0 0 100%; min-width: 100%; height: 100%; position: relative; overflow: hidden; }
.service-hero__slide-image { width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.service-hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.58) 24%, rgba(10,10,10,0) 48%),
  linear-gradient(180deg, rgba(10,10,10,0) 58%, rgba(10,10,10,0.18) 78%, rgba(10,10,10,0.58) 100%);
  pointer-events: none;
}
.service-hero__dots { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.25rem; z-index: 2; display: flex; justify-content: center; align-items: center; gap: 0.4rem; }
.service-hero__dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.35); transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease; }
.service-hero__dot.is-active { width: 30px; background: var(--white); }
.service-hero__dot:hover { transform: scale(1.08); }
.service-hero__content { position: relative; z-index: 1; min-height: inherit; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; max-width: min(1200px, calc(100vw - (var(--gutter) * 2))); padding: clamp(2rem, 4vw, 3rem); pointer-events: none; }
.service-hero__title { font-size: clamp(1.575rem, 4.55vw, 2.975rem); font-weight: 700; line-height: 1.08; color: var(--white); max-width: 700px; margin-bottom: 1.25rem; opacity: 0; transform: translateY(32px); }
.service-hero__text { font-size: clamp(0.875rem, 1.8vw, 1rem); font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.78); max-width: 700px; margin-bottom: 2rem; opacity: 0; }
.service-hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; opacity: 0; pointer-events: auto; }
.service-hero__cta { display: inline-flex; align-items: center; justify-content: center; min-width: 180px; padding: 0.95rem 1.5rem; font-size: 0.8125rem; font-weight: 600; color: var(--black); background: var(--white); border-radius: 8px; transition: transform 0.3s ease, background 0.3s ease; }
.service-hero__cta:hover { transform: translateY(-2px); background: var(--off-white); }

.service-list { padding: 6rem var(--gutter); background: var(--white); }
.service-list__header { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.service-list__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; opacity: 0; }
.service-list__title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.08; margin-bottom: 0.85rem; opacity: 0; }
.service-list__intro { font-size: 0.9375rem; font-weight: 300; line-height: 1.75; color: var(--mid-gray); opacity: 0; }
.service-list__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.service-list__card { border: 1px solid rgba(10,10,10,0.08); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 18px 40px rgba(10,10,10,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; opacity: 0; transform: translateY(30px); }
.service-list__card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(10,10,10,0.08); }
.service-list__image { aspect-ratio: 1.2 / 0.82; overflow: hidden; background: var(--off-white); }
.service-list__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-list__card:hover .service-list__image img { transform: scale(1.05); }
.service-list__body { padding: 1.25rem 1.15rem 1.4rem; }
.service-list__number { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.service-list__body h3 { font-size: 1rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.5rem; }
.service-list__body p:last-child { font-size: 0.8125rem; font-weight: 300; line-height: 1.7; color: var(--mid-gray); }

.service-support { padding: 0 var(--gutter) 6rem; background: var(--white); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr); gap: 1.5rem; }
.service-support__panel { background: var(--off-white); padding: 2rem; border-radius: 12px; opacity: 0; transform: translateY(24px); }
.service-support__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.service-support__title { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; max-width: 620px; }
.service-support__items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-support__item { background: var(--white); border: 1px solid rgba(10,10,10,0.08); padding: 1.25rem; border-radius: 10px; opacity: 0; transform: translateY(20px); }
.service-support__item h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.45rem; }
.service-support__item p { font-size: 0.78125rem; font-weight: 300; line-height: 1.7; color: var(--mid-gray); }
.service-support__cta { background: var(--black); color: var(--white); padding: 2rem; border-radius: 12px; display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; opacity: 0; transform: translateY(24px); }
.service-support__cta-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.service-support__cta h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 0.75rem; }
.service-support__cta p { font-size: 0.875rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; }
.service-support__cta .btn { align-self: flex-start; }
@media (max-width: 1024px) {
  .service-list__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-support { grid-template-columns: 1fr; }
  .service-support__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .service-hero { padding-top: 5.5rem; }
  .service-hero__frame { min-height: 620px; border-radius: 20px; }
  .service-list { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .service-list__grid { grid-template-columns: 1fr; }
  .service-support { padding-bottom: 4.5rem; }
  .service-support__panel, .service-support__cta { padding: 1.5rem; }
  .service-support__items { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .service-hero__actions { flex-direction: column; }
  .service-hero__cta { width: 100%; }
}

/* TESTIMONIALS */
.testimonials { padding: 6rem var(--gutter); background: var(--off-white); overflow: hidden; }
.testimonials__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.testimonials__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.testimonials__title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.15; } .testimonials__title .thin { font-weight: 300; }
.testimonials__nav { display: flex; align-items: flex-end; gap: 1.5rem; }
.testimonials__rating { text-align: right; }
.testimonials__stars { font-size: 1.25rem; color: var(--red); letter-spacing: 0.15em; margin-bottom: 0.25rem; }
.testimonials__rating-text { font-size: 0.6875rem; font-weight: 500; color: var(--mid-gray); }
.testimonials__arrows { display: flex; gap: 0.375rem; }
.testimonials__carousel { position: relative; } .testimonials__track-wrapper { overflow: hidden; }
.testimonials__track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.25,0.1,0.25,1); }
.testimonials__card { flex: 0 0 calc(33.333% - 1rem); min-width: 300px; background: var(--white); padding: 2rem; position: relative; opacity: 0; transform: translateY(20px); border-radius: 8px; display: flex; flex-direction: column; }
.testimonials__card-text { font-size: 0.9375rem; font-weight: 300; line-height: 1.7; color: var(--black); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonials__card-author { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.testimonials__card-avatar { width: 40px; height: 40px; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--mid-gray); border-radius: 50%; }
.testimonials__card-name { font-size: 0.8125rem; font-weight: 600; color: var(--black); }
.testimonials__card-role { font-size: 0.6875rem; font-weight: 400; color: var(--mid-gray); }
@media (max-width: 900px) { .testimonials__card { flex: 0 0 calc(50% - 0.75rem); min-width: 280px; } }
@media (max-width: 600px) { .testimonials__card { flex: 0 0 85%; min-width: 0; } .testimonials__header { flex-direction: column; align-items: flex-start; } .testimonials__nav { flex-direction: column; align-items: flex-start; gap: 1rem; } .testimonials__rating { text-align: left; } }

/* LOCATION */
.location { padding: 5rem var(--gutter); background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.location__map { min-height: 400px; background: var(--warm-gray); border-radius: 8px; overflow: hidden; }
.location__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location__map iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) contrast(1.05); transition: filter 0.4s ease; }
.location__map:hover iframe { filter: grayscale(0); }
.location__info { display: flex; flex-direction: column; justify-content: center; }
.location__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.location__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.15; margin-bottom: 2rem; } .location__title .thin { font-weight: 300; }
.location__details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.location__detail { display: flex; gap: 1rem; align-items: flex-start; }
.location__detail-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--off-white); border-radius: 6px; }
.location__detail-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.location__detail h4 { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.25rem; }
.location__detail p { font-size: 0.9375rem; font-weight: 400; color: var(--black); line-height: 1.5; }
.location__detail a { transition: color 0.3s ease; } .location__detail a:hover { color: var(--red); }
@media (max-width: 768px) { .location { grid-template-columns: 1fr; } .location__map { min-height: 280px; } }

/* FOOTER */
.footer { background: var(--white); padding: 4rem var(--gutter) 2rem; border-top: 1px solid var(--warm-gray); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--warm-gray); }
.footer__brand-mark { height: 28px; margin-bottom: 1rem; }
.footer__brand-name { font-size: 0.875rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.footer__brand-desc { font-size: 0.8125rem; font-weight: 300; color: var(--mid-gray); line-height: 1.6; max-width: 280px; }
.footer__col-title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; } .footer__col li { margin-bottom: 0.75rem; }
.footer__col a { font-size: 0.8125rem; font-weight: 300; color: rgba(10,10,10,0.45); transition: color 0.3s ease; } .footer__col a:hover { color: var(--black); }
.footer__contact-item { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; }
.footer__contact-icon { width: 16px; height: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.footer__contact-icon svg { width: 14px; height: 14px; }
.footer__contact-item a { font-size: 0.8125rem; font-weight: 300; color: rgba(10,10,10,0.45); transition: color 0.3s ease; }
.footer__contact-item a:hover { color: var(--black); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.6875rem; font-weight: 300; color: rgba(10,10,10,0.25); }
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { text-align: center; } }

/* FLOATING WA */
.fab-wa { position: fixed; right: 0.75rem; bottom: 0.75rem; z-index: 90; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: linear-gradient(135deg, #2eea77 0%, #25D366 55%, #1fb95a 100%); border-radius: 8px; box-shadow: 0 14px 32px rgba(37,211,102,0.28); transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease; opacity: 0; visibility: hidden; transform: translateY(20px); overflow: hidden; }
.fab-wa::before { content: ''; position: absolute; inset: -20%; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0.12) 55%, transparent 70%); transform: translateX(-160%) skewX(-18deg); transition: transform 0.6s ease; pointer-events: none; }
.fab-wa:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 22px 42px rgba(37,211,102,0.38); filter: saturate(1.08) brightness(1.03); }
.fab-wa:hover::before { transform: translateX(160%) skewX(-18deg); }
.fab-wa__icon { width: 28px; height: 28px; flex-shrink: 0; position: relative; z-index: 1; transition: transform 0.3s ease; }
.fab-wa:hover .fab-wa__icon { transform: scale(1.06); }
.fab-wa__icon svg { width: 100%; height: 100%; fill: var(--white); }
@media (max-width: 600px) { .fab-wa { right: 0.5rem; bottom: 0.5rem; width: 52px; height: 52px; } .fab-wa__icon { width: 26px; height: 26px; } }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero__title .line { width: auto; white-space: normal; }
}
@media (max-width: 480px) { .hero__actions { flex-direction: column; } .hero__actions .btn { width: 100%; justify-content: center; } }

/* PRODUCT LISTING PAGE */
.products { padding: 7rem var(--gutter) 4rem; background: var(--white); }
.products__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.products__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.products__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.1; } .products__title .thin { font-weight: 300; }
.products__count { font-size: 0.8125rem; font-weight: 300; color: var(--mid-gray); margin-top: 0.5rem; }
.products__tabs {
  display: flex;
  gap: 0.25rem;
  background: var(--warm-gray);
  padding: 4px;
  border-radius: 6px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  margin-left: auto;
}
.products__filter { display: none; width: 100%; max-width: 420px; margin-left: auto; }
.products__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-block: clamp(0.5rem, min(1.2vw, 1.2vh), 0.625rem);
  padding-inline: clamp(0.9rem, min(2.4vw, 2.4vh), 1.5rem);
  color: var(--mid-gray);
  transition: all 0.3s ease;
  border-radius: 4px;
}
.products__tab.active {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10,10,10,0.12);
}
.products__tab:hover:not(.active) { color: var(--black); background: rgba(255,255,255,0.35); }
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.products__grid .showcase__card { flex: unset; min-width: unset; }
/* align card height + keep CTA aligned */
.products__grid .showcase__card { display: flex; flex-direction: column; height: 100%; }
.products__grid .showcase__card-body { display: flex; flex-direction: column; flex: 1; }
.products__grid .showcase__card-cta { margin-top: auto; }
.products__grid .showcase__card.is-hidden { display: none !important; }

/* keep natural proportions on desktop */
@media (min-width: 901px) {
  .products__tabs { width: fit-content; }
}

@media (max-width: 900px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .products__grid .showcase__card-image { padding: 0.75rem; }
  .products__grid .showcase__card-body { padding: 0.875rem; }
  .products__grid .showcase__card-cta { width: calc(100% + 1.75rem); margin-left: -0.875rem; margin-right: -0.875rem; border-radius: 0 0 var(--card-radius) var(--card-radius); }
  .products__header { flex-direction: column; align-items: flex-start; }
  .products__tabs { display: none; }
  .products__filter { display: block; margin-left: 0; max-width: none; }
  .showcase__select,
  .products__select { font-size: 0.6875rem; border-radius: 8px; }
}

/* PRODUCT DETAIL PAGE (unified) */
.pdp { padding: 4rem var(--gutter) 0; background: var(--off-white); }
.pdp__top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; padding-bottom: 3rem; }
.pdp__image-wrap { background: var(--white); border-radius: 8px; padding: 2rem; display: flex; align-items: center; justify-content: center; position: sticky; top: 6rem; }
.pdp__image { width: 100%; max-width: 480px; transition: opacity 0.25s ease; }
.pdp__info { padding-top: 1rem; }
.pdp__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.pdp__title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 0.75rem; } .pdp__title .thin { font-weight: 300; }
.pdp__price { font-size: 1.5rem; font-weight: 500; color: var(--black); margin-bottom: 0.5rem; }
.pdp__price-note { font-size: 0.75rem; font-weight: 300; color: var(--mid-gray); margin-bottom: 0.25rem; }
.pdp__colors { margin-bottom: 2rem; }
.pdp__colors-label { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.75rem; }
.pdp__swatches { display: flex; gap: 0.625rem; margin-bottom: 0.5rem; }
.pdp__swatch { width: 36px; height: 36px; border: 2px solid transparent; cursor: pointer; transition: all 0.3s ease; padding: 0; border-radius: 50%; }
.pdp__swatch.active { border-color: var(--red); transform: scale(1.15); } .pdp__swatch:hover { transform: scale(1.1); }
.pdp__color-name { font-size: 0.8125rem; font-weight: 500; color: var(--mid-gray); }
.pdp__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pdp__cta { flex: 1; justify-content: center; }

.pdp__preview360 { background: var(--pure-white); margin: 0 calc(var(--gutter) * -1); padding: 3.5rem var(--gutter); text-align: center; }
.pdp__preview360-title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.5rem; }
.pdp__preview360-media { max-width: 960px; margin: 0 auto; display: flex; justify-content: center; }
.pdp__preview360-image { width: 100%; max-width: 840px; height: auto; display: block; object-fit: contain; }

/* specs inside pdp */
.pdp__specs { padding: 3rem 0 4rem; margin-top: 1rem; }
.pdp__specs-title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.5rem; }
.pdp__specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--warm-gray); border-radius: 8px; overflow: hidden; }
.pdp__spec { background: var(--white); padding: 1.25rem; }
.pdp__spec dt { font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.25rem; }
.pdp__spec dd { font-size: 0.9375rem; font-weight: 700; color: var(--black); }

@media (max-width: 768px) {
  .pdp__top { grid-template-columns: 1fr; gap: 2rem; }
  .pdp__image-wrap { position: static; }
  .pdp__preview360 { margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .pdp__specs-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp__actions { flex-direction: column; }
  .pdp__actions .btn { width: 100%; justify-content: center; }
}
.recs { padding: 7rem var(--gutter) 4rem; background: var(--white); }
.recs__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.recs__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.1; margin-bottom: 3rem; }
.recs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.recs__grid .showcase__card { flex: unset; min-width: unset; display: flex; flex-direction: column; height: 100%; }
.recs__grid .showcase__card-body { display: flex; flex-direction: column; flex: 1; }
.recs__grid .showcase__card-cta { margin-top: auto; }
.recs__card { background: var(--white); transition: transform 0.3s ease; } .recs__card:hover { transform: translateY(-4px); }
.recs__card-image { aspect-ratio: 4/3; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 1rem; overflow: hidden; }
.recs__card-image img { width: 85%; height: auto; object-fit: contain; }
.recs__card-body { padding: 1rem; } .recs__card-name { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.recs__card-price { font-size: 0.8125rem; font-weight: 300; color: var(--red); }
@media (max-width: 900px) { .recs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .recs__grid { grid-template-columns: repeat(2, 1fr); }
  .recs__grid { gap: 0.5rem; }
  .recs__grid .showcase__card-image { padding: 0.75rem; }
  .recs__grid .showcase__card-body { padding: 0.875rem; }
  .recs__grid .showcase__card-cta { width: calc(100% + 1.75rem); margin-left: -0.875rem; margin-right: -0.875rem; border-radius: 0 0 var(--card-radius) var(--card-radius); }
}

/* PRODUCT HERO ABOVE CURRENT IMPLEMENTATION */
.pdp-hero { padding: 5.5rem var(--gutter) 2.5rem; background: var(--white); }
.pdp-hero__frame {
  position: relative;
  min-height: min(760px, calc(100svh - 8rem));
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}
.pdp-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
}
.pdp-hero__slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.pdp-hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.pdp-hero__slider.is-dragging {
  cursor: grabbing;
}
.pdp-hero__slider.is-dragging .pdp-hero__track {
  transition: none;
}
.pdp-hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pdp-hero__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.pdp-hero__slide-caption {
  display: none;
}
.pdp-hero__dots {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0;
}
.pdp-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 0;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.pdp-hero__dot.is-active {
  width: 30px;
  background: var(--white);
}
.pdp-hero__dot:hover {
  transform: scale(1.08);
}

.pdp__specs { padding: 3rem 0 4rem; margin-top: 1rem; }
.pdp__specs-title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.25rem; }
.pdp__tabs { display: grid; gap: 0.85rem; }
.pdp__tablist {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  scrollbar-width: none;
}
.pdp__tablist::-webkit-scrollbar { display: none; }
.pdp__tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0.35rem 0;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(10,10,10,0.52);
  transition: color 0.2s ease;
}
.pdp__tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 4px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}
.pdp__tab.is-active {
  color: var(--black);
}
.pdp__tab.is-active::after {
  transform: scaleX(1);
}
.pdp__tabpanel-wrap {
  background: #ededed;
  border-radius: 0 0 0 0;
  overflow: hidden;
}
.pdp__tabpanel {
  padding: 2rem 2.25rem;
}
.pdp__tabpanel[hidden] { display: none; }
.pdp__specgrid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}
.pdp__specgrid table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.pdp__specgrid table tbody {
  display: grid;
  gap: 0.55rem;
}
.pdp__specgrid table tr {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
  align-items: start;
  padding: 0.1rem 0;
}
.pdp__specgrid table td {
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(10,10,10,0.56);
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.pdp__specgrid table td:first-child {
  font-weight: 700;
  line-height: 1.45;
  color: rgba(10,10,10,0.54);
}
.pdp__specrow {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
  align-items: start;
  padding: 0.1rem 0;
}
.pdp__specrow dt {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(10,10,10,0.54);
}
.pdp__specrow dd {
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(10,10,10,0.56);
  margin: 0;
}
.pdp__specs-image-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(10,10,10,0.05);
}
.pdp__specs-image {
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .pdp-hero__frame { min-height: 620px; }
}

@media (max-width: 768px) {
  .pdp-hero { padding-top: 5.5rem; }
  .pdp-hero__frame { min-height: 620px; border-radius: 20px; }
  .pdp-hero__dots { left: 1rem; right: 1rem; bottom: 1rem; }
  .pdp-hero__slide-caption { left: 1rem; bottom: 4rem; }
  .pdp__tabpanel { padding: 1.5rem; }
  .pdp__specgrid table tr { grid-template-columns: 1fr; gap: 0.35rem; }
  .pdp__specrow { grid-template-columns: 1fr; gap: 0.35rem; }
}

@media (max-width: 480px) {
  .pdp-hero__frame { min-height: 520px; }
  .pdp__tablist { gap: 1rem; }
}
