/* Wholesale — B2B trade path */
.ws-page { color: #2A2926; }

/* Centered hero composition */
.ws-page .about-hero {
  text-align: center;
  align-items: center;
}
.ws-page .about-hero h1 {
  margin-left: auto;
  margin-right: auto;
}
.ws-page .about-hero p {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}
.ws-hero-cta {
  position: relative;
  z-index: 1;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
}

.ws-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.ws-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/assets/images/stock/hero-glass.jpg?v=2") center / cover no-repeat;
}
.ws-hero__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(245, 242, 237, .94) 0%, rgba(245, 242, 237, .78) 46%, rgba(239, 235, 228, .45) 100%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(196, 176, 154, .5), transparent 60%);
  pointer-events: none;
}
.ws-hero__inner {
  width: min(72rem, 100%);
  margin: 0 auto;
  padding: 7rem 1.25rem 3.5rem;
}
@media (min-width: 640px) {
  .ws-hero__inner { padding: 8rem 1.5rem 4rem; }
}
.ws-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: .95;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2A2926;
  margin: 0 0 1rem;
  font-weight: 400;
}
.ws-headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: #5E7A68;
  letter-spacing: .04em;
  margin: 0 0 .75rem;
  max-width: 28rem;
}
.ws-lede {
  max-width: 28rem;
  color: #6F6B64;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}
.ws-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s, transform .35s;
}
.ws-btn:hover { transform: translateY(-1px); }
.ws-btn--primary {
  background: #2A2926;
  color: #F5F2ED;
}
.ws-btn--primary:hover { background: #5E7A68; color: #fff; }
.ws-btn--ghost {
  background: transparent;
  color: #2A2926;
  border-color: rgba(94, 122, 104,.45);
}
.ws-btn--ghost:hover {
  border-color: #5E7A68;
  color: #5E7A68;
}

.ws-section {
  width: min(72rem, 100%);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
@media (min-width: 640px) {
  .ws-section { padding: 4.5rem 1.5rem; }
}
.ws-eyebrow {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #5E7A68;
  margin: 0 0 .6rem;
}
.ws-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: .04em;
  color: #2A2926;
  margin: 0 0 .75rem;
}
.ws-sub {
  color: #6F6B64;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 0 2rem;
}

/* Tier radios — interactive selection surfaces */
.ws-tiers {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .ws-tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
.ws-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  cursor: pointer;
  margin: 0;
}
.ws-tier input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}
.ws-tier__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 11.5rem;
  box-sizing: border-box;
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid rgba(94, 122, 104,.28);
  background: #EEF1F0;
  transition: border-color .3s, background .3s, transform .35s;
}
.ws-tier:hover .ws-tier__body {
  border-color: rgba(94, 122, 104,.55);
  transform: translateY(-2px);
}
.ws-tier input:focus-visible + .ws-tier__body {
  outline: 2px solid #5E7A68;
  outline-offset: 2px;
}
.ws-tier input:checked + .ws-tier__body {
  border-color: #5E7A68;
  background: #fff;
}
.ws-tier__name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #2A2926;
  margin: 0 0 .35rem;
  letter-spacing: .04em;
}
.ws-tier__moq {
  display: block;
  font-size: .65rem;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5E7A68;
  margin: 0 0 .85rem;
}
.ws-tier__copy {
  display: block;
  font-size: .85rem;
  font-weight: 300;
  color: #6F6B64;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
}

.ws-points {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .ws-points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.ws-point h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #2A2926;
  margin: 0 0 .4rem;
  letter-spacing: .03em;
}
.ws-point p {
  margin: 0;
  font-size: .88rem;
  font-weight: 300;
  color: #6F6B64;
  line-height: 1.55;
}

.ws-apply {
  border-top: 1px solid rgba(94, 122, 104,.22);
  padding-top: 3rem;
}
.ws-apply .contact-left .ws-title { margin-bottom: .65rem; }
.ws-apply .ws-enquiry {
  margin-bottom: 1rem;
}
.ws-form {
  display: grid;
  gap: .75rem;
}
.ws-form label {
  display: block;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7A7168;
  margin-bottom: .35rem;
}
.ws-form input,
.ws-form select,
.ws-form textarea {
  width: 100%;
  background: #EEF1F0;
  border: 1px solid rgba(94, 122, 104,.3);
  color: #2A2926;
  padding: .75rem .9rem;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
}
.ws-form input:focus,
.ws-form select:focus,
.ws-form textarea:focus {
  border-color: #5E7A68;
}
.ws-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5E7A68 50%), linear-gradient(135deg, #5E7A68 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.ws-form textarea { min-height: 7rem; resize: vertical; }
.ws-form__row {
  display: grid;
  gap: .75rem;
}
@media (min-width: 640px) {
  .ws-form__row { grid-template-columns: 1fr 1fr; }
}
.ws-contact-lines {
  display: grid;
  gap: .35rem;
  margin-top: 1rem !important;
}
.ws-contact-lines a {
  color: #5E7A68;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 122, 104, .35);
}
.ws-contact-lines a:hover { border-bottom-color: #5E7A68; }

.ws-note {
  font-size: .75rem;
  color: #7A7168;
  font-weight: 300;
  margin: .25rem 0 0;
  line-height: 1.45;
}
.ws-alert {
  padding: .85rem 1rem;
  font-size: .85rem;
  margin-bottom: .5rem;
}
.ws-alert--ok {
  color: #86efac;
  border: 1px solid rgba(134,239,172,.35);
  background: rgba(16,185,129,.08);
}
.ws-alert--err {
  color: #fda4af;
  border: 1px solid rgba(253,164,175,.35);
  background: rgba(244,63,94,.08);
}

.ws-fade {
  opacity: 0;
  transform: translateY(18px);
  animation: wsFade .9s ease forwards;
}
.ws-fade--2 { animation-delay: .12s; }
.ws-fade--3 { animation-delay: .24s; }
@keyframes wsFade {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ws-fade { opacity: 1; transform: none; animation: none; }
  .ws-tier:hover .ws-tier__body,
  .ws-btn:hover { transform: none; }
}


.ws-enquiry {
  margin: 0 0 1.25rem;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(145deg, #fff, #EFEBE4);
  border: 1px solid rgba(42, 41, 38, 0.12);
  border-left: 3px solid #5E7A68;
}
.ws-enquiry__label {
  margin: 0 0 .35rem;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6F6B64;
}
.ws-enquiry__value {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #2A2926;
  letter-spacing: .02em;
  line-height: 1.25;
}
.ws-enquiry__hint {
  margin: .45rem 0 0;
  font-size: .78rem;
  font-weight: 300;
  color: #6F6B64;
}
.ws-enquiry__hint a {
  color: #5E7A68;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 122, 104, 0.4);
}


/* Mobile layout reset — tier + contact cards were right-packed with empty left */
@media (max-width: 768px) {
  .ws-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .ws-tiers,
  .ws-points,
  .contact-grid {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .ws-tier {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
  }
  .ws-tier__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .ws-tier__name,
  .ws-tier__moq,
  .ws-tier__copy {
    width: 100%;
    max-width: 100%;
    text-align: start;
    margin-left: 0;
    margin-right: 0;
  }
  .ws-apply .contact-layout,
  .ws-apply .contact-left,
  .ws-apply .contact-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .ws-apply .contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .ws-apply .contact-card > div {
    flex: 1 1 auto;
    min-width: 0;
    text-align: start;
  }
}
