/* WHITELIGHT TRADING — warm cream + charcoal + gold accent (distinct from prior output sites) */

:root {
  --wl-bg: #faf7f2;
  --wl-ink: #1a1a1e;
  --wl-muted: #5c5c62;
  --wl-gold: #c9a227;
  --wl-gold-soft: rgba(201, 162, 39, 0.18);
  --wl-card: #ffffff;
  --wl-line: rgba(26, 26, 30, 0.08);
  --wl-dark: #121214;
  --wl-radius: 14px;
  --wl-max: 1180px;
  --wl-font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wl-font);
  color: var(--wl-ink);
  background: var(--wl-bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.wl-skip {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--wl-ink);
  color: #fff;
  z-index: 100;
}
.wl-skip:focus {
  left: 0.5rem;
}

/* Header */
.wl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  border-bottom: 1px solid var(--wl-line);
  backdrop-filter: blur(12px);
}

.wl-header__inner {
  max-width: var(--wl-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wl-logo img {
  height: 44px;
  width: auto;
}

.wl-menu-btn {
  display: none;
  border: 1px solid var(--wl-line);
  background: var(--wl-card);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--wl-ink);
}

.wl-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.wl-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wl-muted);
}
.wl-nav a:hover,
.wl-nav a.is-active {
  color: var(--wl-ink);
}
.wl-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--wl-gold);
}

@media (max-width: 768px) {
  .wl-menu-btn {
    display: inline-flex;
  }
  .wl-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 6px);
    background: var(--wl-card);
    border: 1px solid var(--wl-line);
    border-radius: var(--wl-radius);
    padding: 0.75rem;
    min-width: 200px;
    display: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  }
  .wl-nav.is-open {
    display: block;
  }
  .wl-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

.wl-main {
  max-width: var(--wl-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3.5rem;
}

/* Hero carousel */
.wl-hero {
  position: relative;
  min-height: min(700px, 90vh);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 2.75rem;
}

.wl-hero__slides {
  position: absolute;
  inset: 0;
}

.wl-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms ease;
}
.wl-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.wl-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(201, 162, 39, 0.22), transparent 55%),
    linear-gradient(105deg, rgba(18, 18, 20, 0.78) 0%, rgba(18, 18, 20, 0.35) 48%, rgba(18, 18, 20, 0.72) 100%);
}

.wl-hero__inner {
  position: relative;
  z-index: 3;
  padding: clamp(2.75rem, 6vw, 5rem);
  color: #fff;
  max-width: 52rem;
}

.wl-hero__pane {
  display: none;
}
.wl-hero__pane.is-active {
  display: block;
}

.wl-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 0.75rem;
}

.wl-hero__pane h1,
.wl-hero__pane h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 750;
}

.wl-lead {
  margin: 0 0 1.75rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.9);
}

.wl-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.wl-btn:hover {
  transform: translateY(-1px);
}

.wl-btn--gold {
  background: var(--wl-gold);
  color: #121214;
}
.wl-btn--gold:hover {
  background: #ddb22e;
}

.wl-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.wl-hero__prev,
.wl-hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.wl-hero__prev {
  left: 1rem;
}
.wl-hero__next {
  right: 1rem;
}

.wl-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wl-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}
.wl-hero__dot.is-active {
  background: var(--wl-gold);
  transform: scale(1.12);
}

@media (max-width: 720px) {
  .wl-hero {
    border-radius: 16px;
    min-height: min(620px, 88vh);
  }
  .wl-hero__prev,
  .wl-hero__next {
    display: none;
  }
}

/* Sections */
.wl-section {
  margin-bottom: 3rem;
}

.wl-section__head {
  margin-bottom: 1.5rem;
}
.wl-section__head h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}

/* Product grid — fixed 4 columns, equal card height */
.wl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.wl-card {
  background: var(--wl-card);
  border: 1px solid var(--wl-line);
  border-radius: var(--wl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.wl-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ece8e0;
}

.wl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-card__body {
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wl-card__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.wl-card__body p {
  margin: 0;
  color: var(--wl-muted);
  font-size: 0.92rem;
  flex: 1;
}

@media (max-width: 1024px) {
  .wl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .wl-grid {
    grid-template-columns: 1fr;
  }
}

/* About band on home */
.wl-about-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--wl-card);
  border: 1px solid var(--wl-line);
  border-radius: 22px;
  padding: 1.25rem;
}

.wl-about-band__visual {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.wl-about-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-about-band__text h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.wl-about-band__text p {
  margin: 0 0 0.65rem;
  color: var(--wl-muted);
  font-size: 0.98rem;
}

@media (max-width: 860px) {
  .wl-about-band {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.wl-testimonials {
  background: var(--wl-dark);
  color: #f4f1ea;
  border-radius: 22px;
  padding: 2rem 1.25rem;
}

.wl-testimonials .wl-section__head h2 {
  color: #fff;
}
.wl-testimonials .wl-kicker {
  color: rgba(255, 255, 255, 0.65);
}

.wl-tgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.wl-tcard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--wl-radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wl-tcard__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wl-tcard__top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.45);
}

.wl-tcard__meta strong {
  display: block;
  font-size: 0.95rem;
}
.wl-tcard__meta span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

.wl-stars {
  color: var(--wl-gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.wl-tcard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .wl-tgrid {
    grid-template-columns: 1fr;
  }
}

/* Message split */
.wl-message {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border: 1px solid var(--wl-line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--wl-card);
}

.wl-message__visual {
  min-height: 320px;
}

.wl-message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-message__form-wrap {
  padding: 1.5rem 1.35rem;
}

.wl-message__form-wrap h2 {
  margin: 0 0 0.35rem;
}

.wl-message__form-wrap > p {
  margin: 0 0 1rem;
  color: var(--wl-muted);
  font-size: 0.95rem;
}

.wl-form label {
  display: block;
  font-weight: 650;
  font-size: 0.85rem;
  margin: 0.65rem 0 0.35rem;
}

.wl-form input,
.wl-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--wl-line);
  font: inherit;
  background: #fff;
}

.wl-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wl-form button {
  margin-top: 1rem;
  border: 0;
}

@media (max-width: 860px) {
  .wl-message {
    grid-template-columns: 1fr;
  }
  .wl-message__visual {
    min-height: 220px;
  }
}

/* Footer */
.wl-footer {
  background: var(--wl-dark);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1rem;
}

.wl-footer__inner {
  max-width: var(--wl-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.wl-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 0.65rem;
}

.wl-footer__brand p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 34ch;
}

.wl-footer h3 {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.wl-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wl-footer li {
  margin-bottom: 0.45rem;
}

.wl-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}
.wl-footer a:hover {
  text-decoration: underline;
}

.wl-footer address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.55;
}

.wl-social {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.wl-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.wl-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wl-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--wl-max);
  margin: 0 auto;
  padding: 1rem 1.25rem 1.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .wl-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .wl-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* About page */
.wl-about-page {
  max-width: var(--wl-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.wl-about-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wl-about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wl-about-hero__grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--wl-line);
}

.wl-about-hero__grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.wl-prose {
  background: var(--wl-card);
  border: 1px solid var(--wl-line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
}

.wl-prose h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.wl-prose p {
  margin: 0 0 0.75rem;
  color: var(--wl-muted);
}

@media (max-width: 720px) {
  .wl-about-hero__grid {
    grid-template-columns: 1fr;
  }
  .wl-about-hero__grid img {
    height: 220px;
  }
}

/* Contact page */
.wl-contact-page {
  max-width: var(--wl-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.wl-contact-banner {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--wl-line);
  margin-bottom: 1.5rem;
  max-height: 360px;
}

.wl-contact-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.wl-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.wl-contact-split__img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--wl-line);
  min-height: 320px;
}

.wl-contact-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-contact-card {
  background: var(--wl-card);
  border: 1px solid var(--wl-line);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
}

.wl-contact-card h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.wl-contact-card p {
  margin: 0 0 1rem;
  color: var(--wl-muted);
}

.wl-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wl-contact-list li {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--wl-line);
}
.wl-contact-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.wl-contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wl-muted);
  margin-bottom: 0.25rem;
}

@media (max-width: 860px) {
  .wl-contact-split {
    grid-template-columns: 1fr;
  }
}
