/* ============================================================
   Social Sampling – Master Stylesheet  css/styles.css
   Covers: global, nav, hero, intro, services, carousel,
           lightbox, partners, footer, testimonials,
           retail sections, contact page
   ============================================================ */


/* ── RESET & CSS VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:     #3d1a6e;
  --purple-dark:#2a0f52;
  --red:        #C92236;
  --red-dark:   #a01e23;
  --white:      #ffffff;
  --off-white:  #f7f7f7;
  --text:       #222222;
  --gray:       #666666;
  --light-gray: #F2F2F2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

.center { text-align: center; }
h2 { font-family: 'Montserrat', sans-serif; }


/* ── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
}
.container.medium { max-width: 800px; }
.outer-container.lt-gray {
  background: var(--light-gray);
  max-width: none;
}


/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.btn:hover         { transform: translateY(-2px); }
.btn-red           { background: var(--red);    color: var(--white) !important; }
.btn-red:hover     { background: var(--red-dark); }
.btn-purple        { background: var(--purple); color: var(--white); }
.btn-purple:hover  { background: var(--purple-dark); }
.btn-outline       { background: none; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }


/* ── SECTION RULE ──────────────────────────────────────────── */
.section-rule {
  display: block;
  width: 70px;
  height: 6px;
  background: var(--red);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-rule.left { margin-left: 0; }


/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  border-radius: 8px;
  padding: 10px 20px;
  color: var(--white);
}
.card.red { 
    background: var(--red); 
    align-content: center; 
    padding: 30px 20px; 
}
.card.red p {
    color: var(--white);
}
.card.red.center { 
    padding: 50px; 
}
.card.gray {
    background: var(--light-gray);
    color: #333333;
    padding: 30px 20px; btn
}
.card.purple     { 
    background: var(--purple); 
    padding: 30px 20px;
}

.icon    { width: 80px; margin: 0 auto 10px auto; }
.callout { color: var(--white); font-size: 1.25rem; }

.intro-text p              { font-size: 1.4rem; font-weight: 200; }
.intro-text .container     { padding: 30px 60px; }


/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--purple);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links .btn    { padding: 8px 20px; font-size: 0.82rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background-color: var(--purple);
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}


/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--off-white);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
/* Fallback shown before image loads — no "placeholder" in the name */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: var(--off-white);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.4)  50%,
    rgba(255,255,255,0)    100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 800px;
}
.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--purple);
  margin-bottom: 14px;
}
.hero-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 625px;
}
.hero-text p sup { font-size: 0.7em; }

@media (max-width: 600px) {
  .hero         { min-height: 420px; }
  .hero-overlay { background: rgba(255,255,255,0.65); }
  .hero-inner   { padding: 60px 0; max-width: 100%; }
}


/* ── HERO VIDEO (services page) ────────────────────────────── */
/* The video fills the hero exactly the same way the bg image does */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* On mobile, pause-based fallback: respect user reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
  /* The poster image on the <video> tag acts as the static fallback */
  .hero-video-section { background-size: cover; background-position: center top; }
}


/* ── INTRO ─────────────────────────────────────────────────── */
.intro {
  text-align: center;
  padding: 60px 0;
  background: var(--white);
}
.intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 8px;
}
.intro p {
  font-family: 'Montserrat', sans-serif;
  margin: 16px auto 0;
  color: var(--gray);
  line-height: 1.7;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 200;
  max-width: 1000px;
}
.intro.purple                              { background-color: var(--purple); }
.intro.purple h2,
.intro.purple p,
.intro.purple .left-list                   { color: var(--white); }


/* ── SERVICES / GRID ROWS ──────────────────────────────────── */
.services {
  padding: 20px 0 60px;
  background: var(--white);
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
}
.row.one-column       { grid-template-columns: 1fr; }
.row.two-thirds       { grid-template-columns: 1fr 2fr; gap: 24px; }
.row.two-thirds.left  { grid-template-columns: 2fr 1fr; gap: 24px; }
.row.reverse          { direction: rtl; }
.row.reverse > *      { direction: ltr; }

.row-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
  padding: 40px 0;
  text-align: left;
}
.row-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 16px;
  padding: 40px 0;
  text-align: left;
}

/* Bullet list */
.left-list {
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 200;
  list-style: none;
  padding-left: 0;
}
.left-list li           { padding-left: 1.2em; position: relative; }
.left-list li::before   { content: '•'; position: absolute; left: 0; font-weight: 900; }
.services .left-list    { padding: 0 20px; }

.service-img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.samplebox .service-img {
  align-self: stretch;
}

.samplebox .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.service-num {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
/* Stacked image column */
.samplebox .row {
    align-items: start;
}
.sb-image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sb-image-stack img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.sb-image-stack img:first-child {
  /* Lifestyle unboxing shot — slightly taller */
  max-height: 450px;
  object-position: center center;
}
.sb-image-stack img:last-child {
  /* Box contents flat lay */
  max-height: 450px;
  object-position: center center;
}
.service-text h3,
h3,
.services h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: 6px;
}
.service-text p,
p {
  color: var(--gray);
  line-height: 1.7;
  margin: 14px 0 22px;
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 200;
}

@media (max-width: 680px) {
  .row,
  .row.reverse,
  .row-three-col,
  .row.two-thirds,
  .row.two-thirds.left { grid-template-columns: 1fr; direction: ltr; }
}


/* ── AMBASSADOR CAROUSEL ───────────────────────────────────── */
.ambassadors { padding: 60px 0; background: var(--off-white); }
.ambassadors h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.carousel-wrapper        { position: relative; margin-top: 32px; }
.carousel-track-outer    { overflow: hidden; border-radius: 8px; }
.carousel-track          { display: flex; transition: transform 0.4s ease; }

.carousel-slide {
  min-width: calc(33.333% - 10px);
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-gray);
  cursor: pointer;
  position: relative;
}
.carousel-slide::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.carousel-slide:hover::after             { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.carousel-slide:hover img                { filter: brightness(0.75); }
.carousel-slide img                      { transition: filter 0.25s; }

/* Replaces old .carousel-slide-placeholder */
.carousel-slide-img {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ddd, #bbb);
}
.carousel-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--purple-dark); }
.carousel-btn.prev  { left: -20px; }
.carousel-btn.next  { right: -20px; }

@media (max-width: 680px) {
  .carousel-slide { min-width: calc(100% - 10px); }
}


/* ── HOME PARTNER LOGOS ────────────────────────────────────── */
.partners { padding: 60px 0; background: var(--white); }
.partners h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 36px;
  align-items: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  min-height: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-logo:hover {
  border-color: var(--purple);
  box-shadow: 0 2px 12px rgba(61,26,110,0.1);
}
.partner-logo img { max-height: 90px; width: auto; }
.partners-cta     { text-align: center; margin-top: 36px; }

@media (max-width: 600px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── RETAIL SECTIONS (testimonials page) ───────────────────── */
.retail { padding: 60px 0; background: var(--white); }

.retail-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.retail-row.reverse     { direction: rtl; }
.retail-row.reverse > * { direction: ltr; }

.retail-row-image         { border-radius: 8px; overflow: hidden; }
.retail-row-image img     { width: 100%; object-fit: cover; border-radius: 8px; }

.retail-built-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 6px;
}
.retail-built-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 6px;
}

/* Retail bullet list — replaces .rp-built-list */
.retail-built-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.retail-built-list li {
  padding-left: 1.2em;
  position: relative;
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 200;
}
.retail-built-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 700px) {
  .retail-row,
  .retail-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}


/* ── TESTIMONIALS ──────────────────────────────────────────── */
.rp-testimonials {
  padding: 60px 0 70px;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card.hidden   { display: none; }
.testimonial-card.revealed { animation: card-fade-in 0.4s ease forwards; }

@keyframes card-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-logo img  { max-height: 100px; width: auto; margin: 0 auto; }
.testimonial-card blockquote {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}
.testimonial-author strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.testimonial-author span  { font-size: 1rem; color: var(--gray); }

.rp-load-more-wrap            { text-align: center; margin-top: 40px; }
.rp-load-more-wrap.all-loaded { display: none; }

@media (max-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .testimonial-grid { grid-template-columns: 1fr; } }


/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--light-gray);
  color: #333333;
  padding: 28px 0 10px;
  border-top: 8px solid var(--purple);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  align-items: start;
  padding-bottom: 0px;
  max-width: 860px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
}
.footer-address {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 4px;
  color: #555555;
}

/* Social icons row */
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #333333;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col ul li a {
  font-size: 0.78rem;
  color: #555555;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  text-transform: uppercase;
}
.footer-col ul li a:hover { opacity: 1; color: var(--purple); }

/* Social icon row — replaces text list */
.footer-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.footer-social-icons a:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.footer-social-icons svg { display: block; }

/* Copyright bar — purple background, white text */
.footer-bottom {
  text-align: center;
  padding: 14px 0;
  font-size: 0.78rem;
  color: var(--white);
  background-color: var(--purple);
}

@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 420px) { .footer-inner { grid-template-columns: 1fr; } }


/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 6, 40, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lb-fade-in 0.25s ease;
}
.lightbox-overlay.active { display: flex; }

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-box {
  position: relative;
  max-width: 860px;
  width: 100%;
  animation: lb-pop-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lb-pop-in {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-box img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
/* Replaces .lightbox-placeholder */
.lightbox-fallback {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #3d1a6e, #2a0f52);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.15s;
  z-index: 10;
}
.lightbox-close:hover { background: var(--red-dark); transform: scale(1.1); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.lightbox-nav:hover   { background: rgba(255,255,255,0.28); }
.lightbox-nav.lb-prev { left: -60px; }
.lightbox-nav.lb-next { right: -60px; }

.lightbox-counter {
  text-align: center;
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

@media (max-width: 680px) {
  .lightbox-nav.lb-prev { left: 4px; }
  .lightbox-nav.lb-next { right: 4px; }
  .lightbox-close       { top: -12px; right: -4px; }
}


/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-hero {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: var(--light-gray);
}
.contact-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.contact-section  { padding: 70px 0 80px; background: var(--white); }
.contact-grid     { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

.contact-info-card {
  background: var(--purple);
  color: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-item  { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contact-info-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.88rem; opacity: 0.85; line-height: 1.6; }

.contact-form-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 28px;
  color: var(--text);
}
.contact-form  { display: flex; flex-direction: column; gap: 16px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa; }
.form-field input:focus,
.form-field textarea:focus         { border-color: var(--purple); background: var(--white); }
.form-field input.error,
.form-field textarea.error         { border-color: var(--red); }

.btn-submit {
  align-self: flex-start;
  padding: 14px 48px;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 8px;
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success                { background: #edfaf1; color: #1a7a3c; border: 1px solid #b2e4c4; }
.form-error                  { background: #fdf0f0; color: var(--red-dark); border: 1px solid #f5c0c0; }
.form-success.visible,
.form-error.visible          { display: flex; }

@media (max-width: 820px) {
  .contact-grid      { grid-template-columns: 1fr; }
  .contact-info-card { flex-direction: row; flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 520px) {
  .form-row          { grid-template-columns: 1fr; }
  .contact-info-card { flex-direction: column; }
  .btn-submit        { width: 100%; text-align: center; }
}


/* ── SCROLL REVEAL ANIMATIONS ──────────────────────────────── */

/* Base state: hidden and shifted down */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* Triggered state: fully visible */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grouped items (applied inline or via nth-child) */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Respect user's reduced-motion preference — skip animation entirely */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ── ALCOHOL SAMPLING PAGE ─────────────────────────────────────────── */

    /* Stats band */
    .alc-band {
      background: var(--purple);
      padding: 36px 0;
    }
    .alc-band .container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .alc-stat {
      padding: 8px 24px;
      border-left: 1px solid rgba(255,255,255,0.15);
      color: var(--white);
    }
    .alc-stat:first-child { border-left: none; }
    .alc-stat .n {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .alc-stat .l {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
      margin-top: 6px;
      line-height: 1.4;
    }
    .alc-band-note {
      text-align: center;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.4);
      padding: 10px 0 0;
    }

    /* Pour card — compliance visual */
    .pour-card {
      background: linear-gradient(160deg, var(--purple-dark), var(--purple));
      color: var(--white);
      border-radius: 12px;
      padding: 28px;
      box-shadow: 0 24px 48px rgba(0,0,0,0.25);
    }
    .pour-card .pc-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #e8c97a;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .pour-card .pc-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .pour-card .pc-sub {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 18px;
    }
    .pour {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .glass {
      position: relative;
      height: 44px;
      width: 32px;
      margin: 0 auto;
      border: 2px solid rgba(255,255,255,0.3);
      border-top: none;
      border-radius: 3px 3px 8px 8px;
      overflow: hidden;
      background: rgba(255,255,255,0.04);
    }
    .glass .fill {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      background: linear-gradient(#e8c97a, #c2872e);
      opacity: 0.9;
    }
    .glass.wine .fill  { height: 30%; }
    .glass.spirit .fill { height: 14%; }
    .glass.beer { width: 28px; }
    .glass.beer .fill  { height: 78%; }
    .pour .who {
      font-weight: 700;
      font-size: 0.9rem;
    }
    .pour .who span {
      display: block;
      font-weight: 400;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }
    .pour .amt {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: #e8c97a;
      white-space: nowrap;
    }
    .pour-note {
      margin-top: 16px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
    }

    /* Hero two-column for this page */
    .alc-hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 48px;
      align-items: center;
      padding: 80px 0 70px;
    }
    .alc-hero-text h1 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 4.5vw, 3rem);
      color: var(--purple);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .alc-hero-text h1 em {
      font-style: italic;
      color: var(--red);
    }
    .alc-hero-text .lede {
      font-size: 1.05rem;
      color: var(--gray);
      max-width: 40ch;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .alc-hero-foot {
      margin-top: 20px;
      font-size: 0.85rem;
      color: var(--gray);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .alc-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    /* Section label */
    .alc-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 10px;
    }
    .alc-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--red);
      display: inline-block;
    }
    .alc-eyebrow.on-dark { color: var(--white); }
    .alc-eyebrow.on-dark::before { background: var(--white); }

    /* Difference tiles */
    .alc-tiles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 32px;
    }
    .alc-tile {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      padding: 24px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .alc-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(61,26,110,0.1);
    }
    .alc-tile.wide { grid-column: 1 / -1; }
    .alc-tile .num {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--red);
      margin-bottom: 6px;
      display: block;
    }
    .alc-tile h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: var(--purple);
      margin-bottom: 8px;
    }
    .alc-tile p { font-size: 0.9rem; color: var(--gray); margin: 0; }

    /* Compliance split */
    .alc-compliance-section { background: var(--off-white); padding: 70px 0; }
    .alc-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .alc-feat {
      display: flex;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--light-gray);
    }
    .alc-feat:last-child { border-bottom: none; }
    .alc-feat-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--light-gray);
      display: grid;
      place-items: center;
      color: var(--purple);
      font-size: 1rem;
    }
    .alc-feat h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 4px;
    }
    .alc-feat p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.6; }

    /* Process steps */
    .alc-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 40px;
      counter-reset: step;
    }
    .alc-step {
      position: relative;
      padding: 0 16px 0 0;
      counter-increment: step;
    }
    .alc-step::before {
      content: counter(step, decimal-leading-zero);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      font-weight: 900;
      color: var(--white);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--purple);
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }
    .alc-step::after {
      content: '';
      position: absolute;
      top: 19px;
      left: 38px;
      right: 0;
      height: 2px;
      background: var(--light-gray);
    }
    .alc-step:last-child::after { display: none; }
    .alc-step h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      color: var(--text);
      margin-bottom: 6px;
    }
    .alc-step p { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.5; }

    /* Retail chips */
    .alc-retail { background: var(--purple); padding: 60px 0; }
    .alc-retail h2, .alc-retail p { color: var(--white); }
    .alc-retail p { color: rgba(255,255,255,0.72); }
    .alc-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }
    .alc-chip {
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      border-radius: 999px;
      padding: 8px 18px;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.9);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }
    .alc-chip.lead { border-color: #e8c97a; color: #fff; background: rgba(194,135,46,0.18); }
    .alc-chip .note {
      font-size: 0.64rem;
      font-weight: 700;
      color: #e8c97a;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-left: 6px;
      padding-left: 8px;
      border-left: 1px solid rgba(255,255,255,0.25);
    }

    /* Reporting tiers */
    .alc-tiers {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 32px;
    }
    .alc-tier {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      padding: 22px;
      position: relative;
      overflow: hidden;
    }
    .alc-tier::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--purple), var(--red));
    }
    .alc-tier .t {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: var(--purple);
      margin-bottom: 8px;
    }
    .alc-tier p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.6; }

    /* FAQ */
    .alc-faq { background: var(--off-white); padding: 70px 0; }
    .alc-faq-inner { max-width: 820px; margin: 0 auto; }
    details {
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      background: var(--white);
      margin-bottom: 10px;
      overflow: hidden;
    }
    details[open] { border-color: #c9b8e0; box-shadow: 0 8px 24px rgba(61,26,110,0.08); }
    summary {
      cursor: pointer;
      list-style: none;
      padding: 18px 22px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    summary::-webkit-details-marker { display: none; }
    .faq-plus {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      position: relative;
    }
    .faq-plus::before,
    .faq-plus::after {
      content: '';
      position: absolute;
      background: var(--purple);
      border-radius: 2px;
      transition: opacity 0.2s;
    }
    .faq-plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
    .faq-plus::after  { left: 10px; top: 2px; bottom: 2px; width: 2px; }
    details[open] .faq-plus::after { opacity: 0; }
    .faq-body {
      padding: 0 22px 18px;
      font-size: 0.92rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* Ambassador cards — reuse .about-value-card pattern */
    .alc-amb-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 32px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .alc-hero-grid  { grid-template-columns: 1fr; }
      .alc-tiles      { grid-template-columns: repeat(2, 1fr); }
      .alc-tile.wide  { grid-column: auto; }
      .alc-split      { grid-template-columns: 1fr; gap: 32px; }
      .alc-steps      { grid-template-columns: 1fr; }
      .alc-step::after { display: none; }
      .alc-tiers      { grid-template-columns: repeat(2, 1fr); }
      .alc-amb-grid   { grid-template-columns: 1fr; }
      .alc-band .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }
    @media (max-width: 560px) {
      .alc-tiles  { grid-template-columns: 1fr; }
      .alc-tiers  { grid-template-columns: 1fr; }
      .alc-band .container { grid-template-columns: 1fr; }
    }

   /* ── LEGAL PAGE STYLES ─────────────────────────────────── */
    .legal-hero {
      background: var(--purple);
      color: var(--white);
      padding: 60px 0 50px;
    }
    .legal-hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      margin-bottom: 10px;
    }
    .legal-hero .meta {
      font-size: 0.85rem;
      opacity: 0.7;
      margin-top: 8px;
      color: var(--white);
    }

    .legal-body {
      padding: 60px 0 80px;
      background: var(--white);
    }
    .legal-inner {
      max-width: 820px;
      margin: 0 auto;
    }

    /* Section headings */
    .legal-inner h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--purple);
      margin: 40px 0 12px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--light-gray);
    }
    .legal-inner h2:first-child { margin-top: 0; }

    /* Body text */
    .legal-inner p {
      font-size: 0.95rem;
      color: var(--gray);
      line-height: 1.8;
      margin: 0 0 14px;
    }

    /* Bullet lists */
    .legal-inner ul {
      margin: 10px 0 16px 0;
      padding-left: 0;
      list-style: none;
    }
    .legal-inner ul li {
      font-size: 0.95rem;
      color: var(--gray);
      line-height: 1.8;
      padding-left: 1.3em;
      position: relative;
      margin-bottom: 6px;
    }
    .legal-inner ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 900;
    }

    /* Table */
    .legal-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0 24px;
      font-size: 0.9rem;
    }
    .legal-table th {
      background: var(--purple);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      text-align: left;
      padding: 10px 14px;
    }
    .legal-table td {
      padding: 10px 14px;
      color: var(--gray);
      border-bottom: 1px solid var(--light-gray);
      vertical-align: top;
      line-height: 1.6;
    }
    .legal-table tr:last-child td { border-bottom: none; }
    .legal-table tr:nth-child(even) td { background: var(--off-white); }

    /* Notice box */
    .legal-notice {
      background: var(--off-white);
      border-left: 4px solid var(--purple);
      border-radius: 0 6px 6px 0;
      padding: 14px 18px;
      margin: 16px 0 24px;
      font-size: 0.88rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* Contact block */
    .legal-contact {
      background: var(--light-gray);
      border-radius: 8px;
      padding: 20px 24px;
      margin-top: 16px;
      font-size: 0.92rem;
      color: var(--text);
      line-height: 1.8;
    }
    .legal-contact strong {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: var(--purple);
      display: block;
      margin-bottom: 4px;
    }



/* ── ABOUT US PAGE ─────────────────────────────────────────── */

/* Values section */
.about-values {
  padding: 20px 0 60px;
  background: var(--white);
}

.about-value-card {
  padding: 32px 24px;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.about-value-card:hover {
  box-shadow: 0 8px 28px rgba(38, 8, 89, 0.1);
  transform: translateY(-4px);
}

.about-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.about-value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 14px 0 0;
}

/* Team section */
.about-team {
  padding: 60px 0 70px;
  background: var(--off-white);
}

.about-team h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  text-align: center;
  margin-bottom: 8px;
}

.about-team-intro {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 16px auto 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
/* Top row: photo left + name/title right */
.team-card-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 12px;
}

/* Photo — small square in top-left */
.team-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-gray);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e0f4, #d4c8ec);
  color: var(--purple);
  opacity: 0.6;
}

/* Name + title sit beside the photo */
.team-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4px;
}
.team-header-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 4px;
}
.team-header-text .team-title {
  font-size: 0.75rem;
  margin: 0;
}

/* Bio and LinkedIn below the header row */
.team-info {
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--light-gray);
  margin: 0 16px;
  padding-top: 12px;
}
/* Remove old h3 and team-title from team-info — they move to header */
.team-info > h3,
.team-info > .team-title,
.team-info > .section-rule { 
  display: none; 
}

.team-info p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; }
}