/* ═══════════════════════════════════════════════
   JADE CIRCLE — Shared Stylesheet
   Fonts: Playfair Display (headings) + Inter (body)
   ═══════════════════════════════════════════════ */

/* ─── BRAND TOKENS ─── */
:root {
  --jade:      #123C2E;
  --jade-dark: #0d2e22;
  --cream:     #F5F3EF;
  --charcoal:  #2B2B2B;
  --gold:      #B89A6A;
  --text:      #2B2B2B;
  --muted:     #8C8C8C; 
  --border:    rgba(18,60,46,0.12);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw; 
}

/* ─── TYPOGRAPHY ─── */ 
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}
p, li, label, input, textarea, select, button, a {
  font-family: 'Inter', sans-serif;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes growX  { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.anim-fade-up { animation: fadeUp 0.85s cubic-bezier(.22,.68,0,1.15) both; }
.anim-fade-in { animation: fadeIn 0.9s ease both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,.68,0,1.15);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.visible.d1 { transition-delay: 0.0s; }
.reveal.visible.d2 { transition-delay: 0.15s; }
.reveal.visible.d3 { transition-delay: 0.3s; }
.reveal.visible.d4 { transition-delay: 0.45s; }
.reveal.visible.d5 { transition-delay: 0.6s; }

/* ─── NAVBAR ─── */
.navbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  overflow: visible;
}
.navbar.scrolled {
  background: var(--cream) !important;
  border-bottom-color: rgba(18,60,46,0.18);
  box-shadow: 0 2px 24px rgba(18,60,46,0.07);
}

/* Push page content below fixed navbar — only for non-home pages */
body { padding-top: 64px; }
body.home-page { padding-top: 0; }

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: ;
  /* text-transform: uppercase; */
  color: var(--charcoal) !important;
  font-weight: 400;
  padding: 0.35rem 0.9rem !important;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: -2px;
  height: 1px; background: var(--jade);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--jade) !important; }
.nav-link:hover::after { transform: scaleX(1); }

/* ── Brands mobile-only item — hidden on desktop ── */
.brands-mobile-item { display: none; }
.nav-link.active { color: var(--jade) !important; font-weight: 500; }
.nav-link.active::after { transform: scaleX(1); }

/* ── Brands split: text link + arrow button ── */
.nav-item.dropdown {
  display: flex;
  align-items: center;
}
.brands-text-link {
  padding-right: 0.2rem !important;
}
.brands-text-link::after { left: 0.9rem; right: 0.2rem; }
.brands-arrow-btn {
  background: none;
  border: none;
  padding: 0.35rem 0.5rem 0.35rem 0.1rem !important;
  cursor: pointer;
  color: var(--charcoal) !important;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.brands-arrow-btn::after {
  content: '';
  display: inline-block;
  margin-left: 0.1em;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  border-bottom: 0;
  transition: transform 0.2s;
}
.brands-arrow-btn:hover { color: var(--jade) !important; }
.brands-arrow-btn.active { color: var(--jade) !important; }
.nav-item.dropdown.show .brands-arrow-btn::after { transform: rotate(180deg); }
.btn-nav-enquire {
  background: var(--jade);
  color: #fff !important;
  border-radius: 100px;
  font-size: 13px;
  padding: 0.58rem 1.4rem !important;
  border: 1px solid var(--jade);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.btn-nav-enquire:hover {
  background: transparent !important;
  color: var(--jade) !important;
  border-color: var(--jade) !important;
}
.btn-nav-enquire::after { display: none !important; }
.navbar-toggler {
  border: 1px solid var(--jade); border-radius: 0;
  padding: 6px 9px; background: transparent;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block; width: 20px; height: 1px;
  background: var(--jade); margin: 4px 0;
}

/* ─── HERO ─── */
.hero {
  background-color: var(--jade);
  padding: 0;
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; flex-direction: column;
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(18, 60, 46, 0.85);
}
.hero-plant { display: none; }
.hero-content {
  position: relative; z-index: 2;
  padding: 92px 0 76px;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-text-inner { padding-left: 8px; }
.hero-rule {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform-origin: left; z-index: 2;
  animation: growX 1.2s 0.5s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(245,243,239,0.40);
  font-weight: 400;
  margin-bottom: 0.9rem;
  display: block;
  white-space: nowrap;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size:clamp(2.9rem, 6.5vw, 3.8rem);
  line-height: 1.05; color: #fff;
  letter-spacing: 0.01em;
}
.hero h1 em { font-style: italic; font-weight: 400; }

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  /* letter-spacing: 0.28em; */
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.12; color: var(--jade);
  letter-spacing: 0.01em;
}
.gold-rule {
  width: 28px; height: 2px;
  background: var(--gold); margin: 1.3rem 0 1.7rem;
}

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 84px 0 96px; }

p{
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; line-height: 1.88;
  color: var(--muted);
  font-weight: 300;
}


.contact-intro{max-width:390px;}

.service-block {
  border-left: 1.5px solid var(--jade);
  padding: 0.9rem 1.3rem;
  background: transparent;
  margin-bottom: 0.85rem;
  transition: border-color 0.2s;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s cubic-bezier(.22,.68,0,1.15) forwards;
}
.service-block:nth-child(1) { animation-delay: 0.2s; }
.service-block:nth-child(2) { animation-delay: 0.45s; }
.service-block:hover { border-color: var(--jade-dark); }
.service-block h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--jade);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.service-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.68; margin: 0; font-weight: 300;
}

/* ─── FORM ─── */
.form-box { background: transparent; padding: 0; position: relative; }
.form-box::before { display: none; }
.form-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: ;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.57rem;
  letter-spacing:0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.form-label .req { color: var(--gold); }
.form-control, .form-select {
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0; background: transparent;
  padding: 0.52rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 300; color: var(--text);
  box-shadow: none !important; transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  border-bottom-color: var(--jade); background: transparent; outline: none;
}
.form-control::placeholder { color:#8C8C8C; }
textarea.form-control { resize: none; min-height: 90px; }
.form-select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%23123C2E' stroke-width='1' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
  cursor: pointer;
}
.btn-submit {
  background: var(--jade);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 1rem 2rem;
  width: 100%;
  transition: background 0.22s;
  cursor: pointer;
}
.btn-submit:hover { background: var(--jade-dark); }

/* ─── FOOTER ─── */
footer {
  background: #123C2E !important;
  color: rgba(255,255,255,0.55);
  padding: 64px 0 28px;
}
.footer-logo-name {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
  width: 100%;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; color: rgba(255,255,255,0.32);
  line-height: 1.72; max-width: 230px; font-weight: 300;
}
.footer-col-head {
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.48rem; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.48); font-size: 0.82rem;
  text-decoration: none; transition: color 0.2s; font-weight: 300;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-contact-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
  line-height: 1.75; margin-bottom: 1.15rem; font-weight: 300;
}
.btn-touch {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size:0.7rem;
  /* letter-spacing: 0.16em; */
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  transition: all 0.22s;
}
.btn-touch:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff !important;
  background: #fff;
  color: var(--jade) !important;
}
.footer-divider { border-color:rgba(255,243,239,0.25); margin: 2.5rem 0 1.3rem; }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem; color: rgba(255,255,255,0.22); font-weight: 300;
}
.footer-copy a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-copy a:hover { color: rgba(255,255,255,0.6); }

/* ─── BRANDS DROPDOWN ─── */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(18,60,46,0.10);
  padding: 0.6rem 0;
  min-width: 200px;
  background: #fff;
  margin-top: 0.6rem !important;
}
.dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  transition: color 0.2s, background 0.2s;
}
.dropdown-item:hover {
  background: var(--cream);
  color: var(--jade);
}

/* ── Active Dropdown Item ── */
.dropdown-item.active,
.dropdown-item:active {
  background: var(--cream);
  color: var(--jade);
  font-weight: 500;
}

/* Desktop: down arrow, rotates on open */
.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  border-bottom: 0;
  transition: transform 0.2s;
}
.nav-item.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}
.dropdown-toggle:focus{outline:none; box-shadow:none;}

.navbar-brand img {
  width: 230px;
}

.navbar-brand {
  margin: 0 !important;
}

.footer-logo-col img {
  filter: brightness(0) invert(1);
  width: 40px;
}

.footer-logo-col .d-flex {
  flex-wrap: wrap;
}




 /* ─── ABOUT PAGE SPECIFIC ─── */

    /* HERO */
    .about-hero {
      background-color: var(--jade);
      min-height: 320px;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .about-hero-img-wrap {
      position: absolute; inset: 0; z-index: 0;
    }
    .about-hero-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 40%;
    }
    .about-hero-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(10,28,20,0.58);
    }
    .about-hero-content {
      position: relative; z-index: 2;
      padding: 92px 0 72px;
      flex: 1; display: flex; align-items: center;
    }
    .about-hero-rule {
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: var(--gold); z-index: 2;
      transform-origin: left;
      animation: growX 1.2s 0.5s cubic-bezier(.22,.68,0,1.2) both;
    }

    /* ─── MISSION ─── */
    .mission-section {
      padding: 96px 0;
      background: var(--cream);
    }
    h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2rem, 4vw, 2.5rem);
      line-height: 1.15;
      color: var(--jade);
    }
    .mission-body p {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 1.4rem;
    }
    .mission-body p:last-child { margin-bottom: 0; }

    /* ─── QUOTE BANNER ─── */
    .quote-banner {
      background: var(--jade);
      padding: 16% 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .quote-banner-img {
      position: absolute; inset: 0; z-index: 0;
    }
    .quote-banner-img img {
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.35;
    }
.quote-banner blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: rgba(255,255,255,0.88);
  font-weight: 100;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

    /* ─── NEXT SECTION ─── */
    .next-section {
      background: var(--cream);
      padding: 90px 0;
    }
.next-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.4rem;
}
    .btn-next {
      display: inline-block;
      background: var(--jade);
      color: #fff !important;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 400;
      padding: 1rem 2.4rem;
      border-radius: 100px;
      transition: background 0.22s;
    }
    .btn-next:hover { background: var(--jade-dark); }

    /* ─── VALUES ─── */
    .values-section {
      padding: 100px 0;
      background: #fff;
    }
    .values-heading {
      margin-bottom: 3rem;
    }
    .value-row {
      display: grid;
      grid-template-columns: 48px 1fr 1fr;
      align-items: start;
      gap: 1rem 2.5rem;
      padding: 2rem 0;
      border-top: 1px solid rgba(43,43,43,0.1);
    }
    .value-row:last-child { border-bottom: 1px solid rgba(43,43,43,0.1); }
    .value-number {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: 0.1em;
      padding-top: 0.1rem;
    }
    .value-title {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--jade);
      font-family: 'Playfair Display', serif;
    }
    .value-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
      margin: 0;
    }

    /* ─── TEAM ─── */
    .team-section {
      padding: 100px 0;
      background: var(--cream);
    }
    .team-heading {
      margin-bottom: 3.5rem;
    }

    .team-img-wrap {
      overflow: hidden;
      margin-bottom: 1.4rem;
    }
    .team-card img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
      display: block;
      transition: transform 0.6s cubic-bezier(.22,.68,0,1.1);
    }
    .team-card:hover .team-img-wrap img {
      transform: scale(1.06);
    }

    .team-role {
      font-family: 'Inter', sans-serif;
      font-size: 0.70rem;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 400;
      margin-bottom: 0.3rem;
    }
    .team-name {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      text-transform: uppercase;
      color: var(--jade);
      font-weight: 500;
      margin-bottom: 0.6rem;
    }
    .team-rule {
      width: 24px; height: 1px;
      background: var(--jade);
      margin-bottom: 0.85rem;
    }
    .team-bio {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ─── PARTNERS ─── */
    .partners-section {
      padding: 96px 0;
      background: var(--jade);
      position: relative;
      overflow: hidden;
    }
    .partners-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.70rem;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      font-weight: 400;
      margin-bottom: 1.2rem;
    }
    .partners-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #fff;
      margin-bottom: 1.6rem;
    }
    .partners-body {
      margin-bottom:1rem;
    }
    .btn-partners {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.45);
      color: #fff !important;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 400;
      padding:1rem 2rem;
      border-radius: 100px;
      transition: all 0.22s;
      margin-top: 20px;
    }
    .btn-partners:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.7);
    }
    .partners-list {
      list-style: none;
      padding: 0; margin: 0;
      width: 100%;
    }
    .partners-list li {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      padding: 1.1rem 1.3rem;
      border-left: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.02);
      margin: 11px 0;
      transition: color 0.2s, background 0.2s;
    }
    .partners-list li:last-child {
      margin-bottom: 0;
    }
    .partners-list li:hover {
      color: rgba(255,255,255,0.9);
      background: rgba(255,255,255,0.09);
    }



     /* ═══ services ═══ */

    .services-hero {
      background: var(--jade);
      position: relative;
      overflow: hidden;
      min-height: 340px;
      display: flex;
      flex-direction: column;
    }
    .services-hero-img {
      position: absolute; inset: 0; z-index: 0;
    }
    .services-hero-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 40%;
      display: block;
    }
    .services-hero-img::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(18, 60, 46, 0.80);
    }
    .services-hero-content {
      position: relative; z-index: 2;
      padding: 88px 0 72px;
      flex: 1;
      display: flex; align-items: center;
    }
    .services-hero-rule {
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: var(--gold); z-index: 2;
      transform-origin: left;
      animation: growX 1.2s 0.5s cubic-bezier(.22,.68,0,1.2) both;
    }
    .services-hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2.8rem, 6vw, 4rem);
      color: #fff;
      line-height: 1.05;
    }
    .services-hero-sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: rgba(255,255,255,0.62);
      margin-top: 1.2rem;
      max-width: 380px;
      line-height: 1.75;
    }
    .services-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      font-weight: 400;
      margin-bottom: 1.1rem;
      display: block;
    }

    /* ═══ SERVICES LIST ═══ */
    .services-list-section {
      background: #fff;
      padding: 0 0 60px;
    }

    .service-row {
      display: grid;
      grid-template-columns: 60px 360px 1fr 300px;
      gap: 0 1.5rem;
      align-items: start;
      padding: 48px 0;
      border-top: 1px solid rgba(43,43,43,0.1);
    }
    .service-row:last-child {
      border-bottom: 1px solid rgba(43,43,43,0.1);
    }

    /* Number column */
    .svc-number {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: 0.08em;
      display: block;
      padding-top: 0.1rem;
    }

    /* Left column */
    .svc-left {}
    .svc-title {
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      color: var(--jade);
      display: block;
      margin-bottom: 0.5rem;
      font-family: 'Playfair Display', serif;
    }

    .svc-tagline {
      font-style: italic;
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }

    /* Middle column */
    .svc-desc {
      max-width: 480px;
    }

    /* Right column */
    .svc-points {
      list-style: none;
      padding: 0; margin: 0;
    }
    .svc-points li {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.6;
      padding: 0.32rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .svc-points li::before {
      content: '';
      display: inline-block;
      width: 13px;
      height: 1px;
      background: var(--jade);
      flex-shrink: 0;
    }

    /* ═══ QUOTE BANNER ═══ */
    .services-quote {
      background: var(--jade);
      padding: 13% 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .services-quote-img {
      position: absolute; inset: 0; z-index: 0;
    }
    .services-quote-img img {
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.28;
    }
    .services-quote blockquote {
      position: relative;
      z-index: 1;
      /* font-family: 'Playfair Display', serif; */
      /* font-style: italic; */
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: rgba(255,255,255,0.88);
      font-weight: 100;
      /* max-width: 820px; */
      margin: 0 auto;
      line-height: 1.55;
      text-transform: uppercase;
    }

    /* ═══ OUR CLIENTS ═══ */
    .clients-section {
      background: var(--cream);
      padding:60px 0;
    }
    .clients-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.58rem;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 400;
      margin-bottom: 1.3rem;
      display: block;
    }

    .clients-gold-rule {
      width: 28px; height: 1px;
      background: var(--jade);
      margin: 1.6rem 0 1.8rem;
    }
    .clients-body {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
      max-width: 400px;
      margin: 0;
    }

    /* Client type blocks — right side */
    .client-type {
      padding: 1.6rem 0;
      border-top: 1px solid rgba(43,43,43,0.1);
    }
    .client-type:last-child {
      border-bottom: 1px solid rgba(43,43,43,0.1);
    }
    .client-type-name {
      font-family: 'Inter', sans-serif;
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--jade);
      font-weight: 500;
      margin-bottom: 0.45rem;
      display: block;
    }
    .client-type-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.84rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    /* ═══ CTA SECTION ═══ */
    .services-cta {
      background: var(--jade);
      padding: 96px 0;
      text-align: center;
    }
    .services-cta h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #fff;
      margin-bottom: 1rem;
    }
    .services-cta p {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255,255,255,0.58);
      margin-bottom: 2.4rem;
    }
    .btn-cta-enquire {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.5);
      color: #fff !important;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 400;
      padding: 1rem 2.4rem;
      border-radius: 100px;
      transition: all 0.22s;
    }
    .btn-cta-enquire:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.8);
    }

/* ═══════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ═══════════════════════════════════════════════ */

/* ─── HERO ─── */
.privacy-hero {
  background: var(--jade);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.privacy-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 64px;
  flex: 1;
  display: flex; align-items: flex-end;
}
.privacy-hero-rule {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); z-index: 2;
  transform-origin: left;
  animation: growX 1.2s 0.5s cubic-bezier(.22,.68,0,1.2) both;
}
.privacy-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  margin-bottom: 0.9rem;
  display: block;
}
.privacy-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}
.privacy-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 420px;
  margin: 0;
}

/* ─── CONTENT BODY ─── */
.privacy-body-section {
  background: var(--cream);
  padding: 80px 0 96px;
}
.privacy-content {
  max-width: 620px;
  margin: 0 auto;
}
.privacy-block {
  margin-bottom: 2.8rem;
}
.privacy-block:last-of-type {
  margin-bottom: 0;
}
.privacy-block-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--jade);
  margin-bottom: 0.7rem;
  display: block;
  font-family: 'Playfair Display', serif;
}
.privacy-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.privacy-block a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.privacy-block a:hover {
  color: #000 !important;
}

/* Also see link */
.privacy-also-see {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.privacy-also-see p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
}
.privacy-also-see a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.privacy-also-see a:hover {
  color: #000 !important;
}
/* ─── CTA ─── */
.privacy-cta {
  background: var(--jade);
  padding: 96px 0;
  text-align: center;
}
.privacy-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 2rem;
}
.btn-privacy-touch {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  transition: all 0.22s;
}
.btn-privacy-touch:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}



.privacy-cta {
  border-bottom: 1px rgba(255,243,239,0.25) solid;
}

/* ═══════════════════════════════════════════════
   LEGAL PAGE
   ═══════════════════════════════════════════════ */

.legal-hero {
  background: var(--jade);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.legal-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 64px;
  flex: 1;
  display: flex; align-items: flex-end;
}
.legal-hero-rule {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); z-index: 2;
  transform-origin: left;
  animation: growX 1.2s 0.5s cubic-bezier(.22,.68,0,1.2) both;
}
.legal-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  margin-bottom: 0.9rem;
  display: block;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}
.legal-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 440px;
  margin: 0;
}

/* ─── CONTENT BODY ─── */
.legal-body-section {
  background: var(--cream);
  padding: 80px 0 96px;
}
.legal-content {
  max-width: 620px;
  margin: 0 auto;
}
.legal-block {
  margin-bottom: 2.8rem;
}
.legal-block:last-of-type {
  margin-bottom: 0;
}
.legal-block-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  display: block;
}
.legal-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.legal-block a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-block a:hover { color: var(--jade-dark); }


/* ═══════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════ */

/* ─── HERO ─── */
.home-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  background: var(--jade);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Slides */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(18, 60, 46, 0.58);
}

/* Hero bottom bar */
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding-bottom: 2rem;
}
.hero-bottom-inner {
  display: flex;
  align-items: center;
  position: relative;
}

/* Dots — left aligned with container */
.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  flex-shrink: 0;
}
.hero-dot.active {
  background: rgba(255,255,255,0.9);
  width: 28px;
  border-radius: 4px;
}

/* Scroll indicator — absolute center of container */
.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.home-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 80px;
}
  position: relative; z-index: 2;
  padding: 80px 0 60px;
}
.home-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: block;
}
.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1rem;
  max-width: 560px;
}
.home-hero h1 em { font-style: italic; }
.home-hero-rule {
  width: 28px; height: 1px;
  background: #fff;
  margin-bottom: 1.6rem;
}
.home-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.4rem;
}
.home-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.btn-hero-primary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.65);
}
.btn-hero-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.25s;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff !important;
}
/* Scroll indicator text/line styles */
.hero-scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.7; }
}

/* ─── COMPANY INTRO ─── */
.home-intro {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.home-intro-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.6rem;
  display: block;
}
.home-intro h2 {
  margin: 0 auto 1rem;
}
.home-intro-rule {
  width: 28px; height: 1px;
  background: var(--gold);
  margin: 1.6rem auto;
}
.home-intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 530px;
  margin: 0 auto 2.2rem;
}
.btn-intro-story {
  display: inline-block;
  border: 1px solid var(--jade);
  color: var(--jade) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: all 0.22s;
}
.btn-intro-story:hover {
  background: var(--jade);
  color: #fff !important;
}

/* ─── BRANDS ─── */
.home-brands {
  background: #fff;
  padding: 96px 0 110px;
}
.home-brands-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.home-brands-header-left {}
.home-brands-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size:0.70rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.6rem;
  display: block;
}

.btn-view-all {
  display: inline-block;
  border: 1px solid #123C2E;
  color: var(--jade) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  /* letter-spacing: 0.1em; */
  font-weight: 400;
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  transition: all 0.22s;
  white-space: nowrap;
  margin-top: 0.3rem;
}
.btn-view-all:hover {
  border-color: var(--jade);
  color: #fff !important;
  background: var(--jade);
}

/* Brand cards */
.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--jade-dark);
  cursor: pointer;
}
.brand-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.22,.68,0,1.1);
}
.brand-card:hover img { transform: scale(1.05); }
.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 60, 46,0.88) 0%, rgba(10,28,20,0.15) 55%, transparent 100%);
}
.brand-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem;
  z-index: 2;
}
.brand-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  display: block;
  margin-bottom: 0.4rem;
}
.brand-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.brand-card-explore {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.brand-card-explore::after {
  content: '→';
  font-size: 0.70rem;
  position: relative;
  top: -1px;
}
.brand-card-explore:hover { color: #fff; }

/* ─── PHILOSOPHY ─── */
.home-philosophy {
  background: var(--jade);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.home-philosophy-bg {
  position: absolute; inset: 0; z-index: 0;
}
.home-philosophy-bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12;
}
.home-philosophy-inner { position: relative; z-index: 1; }
.home-philosophy-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: block;
  text-align: center;
}
.home-philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.5;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.philosophy-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2rem 1.8rem 2.2rem;
}
.philosophy-num {
  font-family: 'Inter', sans-serif;
  font-size:0.70rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.2rem;
}
.philosophy-gold-rule {
  width: 24px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}
.philosophy-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.philosophy-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ─── BLOSSOM FEATURE ─── */
.home-blossom {
  background: var(--cream);
  overflow: hidden;
  padding: 96px 0;
}
.blossom-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size:0.70rem;
  /* letter-spacing: 0.28em; */
  text-transform: uppercase;
  color: #8C7B6B;
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: block;
}
.blossom-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0;
}
.blossom-gold-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem 0 1.6rem;
}
.blossom-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #8C7B6B;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.4rem;
}
.blossom-parts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.6rem;
}
.blossom-part {
  padding: 0.1rem 0 0.1rem 1rem;
  border-left: 1.5px solid #8C7B6B;
  margin-bottom: 1rem;
}
.blossom-part-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  text-transform: uppercase;
  color: #7A4E2D;
  font-weight: 400;
  display: block;
  margin-bottom: 0.25rem;
}
.blossom-part-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: #8C7B6B;
}
.btn-blossom {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.22s;
}
.btn-blossom:hover {
  background: var(--jade);
  border-color: var(--jade);
  color: #fff !important;
}

/* Left content col padding */
.blossom-left-col {
  padding: 100px 60px 100px 100px;
}
/* Right image — rounded corners like screenshot */
.blossom-img-col {
  padding: 0 !important;
}
.blossom-img-wrap {
  height: 100%;
  min-height: 580px;
}
.blossom-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .blossom-left-col { padding: 80px 40px 80px 60px; }
}
@media (max-width: 991px) {
  .blossom-left-col { padding: 64px 24px; }
  .blossom-img-wrap { min-height: 400px; }
}

/* Right image — full height, no padding */
.blossom-img-col {
  padding: 0 !important;
}
.blossom-img-wrap {
  height: 100%;
  min-height: 580px;
}
.blossom-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  border-radius: 14px;
}

/* ─── SERVICES OVERVIEW ─── */
.home-services {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.home-services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.home-services-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size:0.70rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.6rem;
  display: block;
}

.btn-all-services {
  display: inline-block;
  border: 1px solid rgba(43,43,43,0.25);
  color: var(--charcoal) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-all-services:hover {
  border-color: var(--jade);
  color: var(--jade) !important;
}
.svc-list-item {
  display: flex;
  align-items: center;
  padding: 1.55rem 0;
  border-top: 1px solid rgba(43,43,43,0.09);
  text-decoration: none;
  transition: padding-left 0.25s ease;
  cursor: default;
}
.svc-list-item:last-child { border-bottom: 1px solid rgba(43,43,43,0.09); }
.svc-list-num {
  font-family: 'Inter', sans-serif;
  font-size:0.70rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  width: 44px;
  flex-shrink: 0;
}
.svc-list-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--jade);
  flex: 1;
}
.svc-list-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.22s;
}
.svc-list-item:hover .svc-list-arrow { opacity: 1; }
.svc-list-item:hover .svc-list-name { color: var(--charcoal); }

/* ─── CTA ─── */
.home-cta {
  background: #2B2B2B;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: block;
}
.home-cta h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1.4rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.22;
}
.home-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 2.6rem;
}
.btn-cta-begin {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  transition: all 0.25s;
}
.btn-cta-begin:hover {
  background: #fff;
  border-color: #282828;
  color: #282828 !important;
}

/* ─── HOME PAGE NAVBAR TRANSPARENT ─── */
.navbar-hero {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.navbar-hero .nav-link:not(.btn-nav-enquire) {
  color: rgba(255,255,255,0.88) !important;
  transition: color 0.45s ease;
}
.navbar-hero .nav-link:not(.btn-nav-enquire):hover {
  color: #fff !important;
}
.navbar-hero .nav-link.active:not(.btn-nav-enquire) {
  color: #fff !important;
  font-weight: 500;
}
.navbar-hero .nav-link::after {
  background: #fff;
}
/* White arrow button on home hero navbar */
.navbar-hero .brands-arrow-btn {
  color: rgba(255,255,255,0.88) !important;
}
.navbar-hero .brands-arrow-btn:hover {
  color: #fff !important;
}
.navbar-hero .brands-arrow-btn::after {
  border-top: 0.3em solid !important;
  border-right: 0.3em solid transparent !important;
  border-left: 0.3em solid transparent !important;
  border-bottom: 0 !important;
}
.navbar-hero .navbar-brand img {
  filter: brightness(0) invert(1);
  transition: filter 0.45s ease;
}
.navbar-hero .btn-nav-enquire {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6) !important;
  transition: background 0.45s ease, border-color 0.45s ease, color 0.45s ease;
}
.navbar-hero .btn-nav-enquire:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
}
.navbar-hero .navbar-collapse.show,
.navbar-hero .navbar-collapse.collapsing {
  background: var(--cream);
  margin: 0 -12px;
  padding: 0.5rem 1.2rem 1rem;
  border-top: 1px solid var(--border);
}
.navbar-hero .navbar-collapse.show .nav-link:not(.btn-nav-enquire),
.navbar-hero .navbar-collapse.collapsing .nav-link:not(.btn-nav-enquire) {
  color: var(--charcoal) !important;
  padding: 0.55rem 0.4rem !important;
}
.navbar-hero .navbar-collapse.show .nav-link:not(.btn-nav-enquire):hover,
.navbar-hero .navbar-collapse.collapsing .nav-link:not(.btn-nav-enquire):hover {
  color: var(--jade) !important;
}
.navbar-hero .navbar-collapse.show .btn-nav-enquire,
.navbar-hero .navbar-collapse.collapsing .btn-nav-enquire {
  background: var(--jade) !important;
  color: #fff !important;
  border-color: var(--jade) !important;
  margin-top: 10px;
  display: inline-block;
}


/* ─── HERO TICKER ─── */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  padding: 0.85rem 0;
}
.hero-ticker-track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.hero-ticker-track span {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-ticker-track .ticker-dot {
  color: rgba(255,255,255,0.22);
  letter-spacing: 0;
  font-size: 0.7rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-ticker:hover .hero-ticker-track {
  animation-play-state: paused;
}


.home-hero-content .home-hero-eyebrow {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
  display: block;
}
.home-hero-btns a.btn-hero-primary {
  color: var(--jade) !important;
  background: #fff;
}
.home-hero-btns a.btn-hero-primary:hover {
  background: transparent;
  color: #fff !important;
}

.home-brands .brand-card {
  border-radius: 14px;
  background: transparent;
}

.btn-all {
  display: inline-block;
  border: 1px solid var(--jade);
  color: var(--jade) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.22s;
}
.btn-all:hover {
  background: var(--jade);
  color: #fff !important;
}

.navbar-hero .navbar-toggler .toggler-bar {
  background: #fff;
}

.navbar-hero .navbar-toggler {
  border-color: #fff;
}

/* ═══════════════════════════════════════════════
   SU-MAN BRAND PAGE
   ═══════════════════════════════════════════════ */

/* ─── HERO — dark charcoal split ─── */
.suman-hero {
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
  /*padding-top: 80px;*/
  padding:80px 0 60px;
}
.suman-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.suman-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size:0.7rem;
  letter-spacing:0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: block;
}
.suman-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.suman-hero-rule {
  width: 28px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.6rem;
}
.suman-hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.suman-hero-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
}

/* Left text column — vertically centered, bottom padding */
.suman-hero-text {
  /*padding-bottom:80px;*/
}
.suman-hero-text-inner {
  max-width: 460px;
}

/* Right image column — flush bottom */
.suman-hero-img-col {
  padding: 0 !important;
  display: flex;
  align-items: flex-end;
}
.suman-hero-img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.suman-hero-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  max-height: 550px;
}

/* ─── FACIALIST SECTION ─── */
.suman-facialist {
  background: var(--cream);
  padding: 96px 0;
}
.suman-facialist-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size:0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}

.suman-facialist-rule {
  width: 24px; height: 1px;
  background: var(--gold);
  margin: 1.2rem 0 0;
}
.suman-facialist-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.suman-facialist-body:last-child { margin-bottom: 0; }

/* ─── RANGE SECTION ─── */
.suman-range {
  background: #fff;
  padding: 96px 0 110px;
}
.suman-range-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size:0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}
.suman-range h2 {
  margin-bottom: 3rem;
}
.suman-product-card {
  text-align: center;
  padding: 0 0.5rem;
  margin-bottom: 2.5rem;
}
.suman-product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin-bottom: 0.9rem;
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.1);
}
.suman-product-card:hover .suman-product-img {
  transform: translateY(-6px);
}
.suman-product-name {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

/* ─── CTA STRIP ─── */
.suman-cta {
  background: #2a2a2a;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.suman-cta-inner {
  position: relative;
  z-index: 1;
}
.suman-cta-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-suman-next {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.25s;
  background: rgba(255,255,255,0.08);
}
.btn-suman-next:hover {
  background: #fff;
  border-color: rgba(255,255,255,0.7);
  color: #282828 !important;
}
.btn-suman-enquire {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.25s;
}

.btn-suman-enquire:hover {
  background: #fff;
  border-color: rgba(255,255,255,0.7);
  color: #282828 !important;
}

.suman-facialist .col-lg-7.reveal.d2 {
  padding-left: 140px;
}
/* ═══════════════════════════════════════════
   SODASHI BRAND PAGE
═══════════════════════════════════════════ */

/* ─── SODASHI HERO OVERRIDE — jade green bg ─── */
.sodashi-hero {
  background: var(--jade) !important;
}
.sodashi-hero .suman-hero-eyebrow {
  color: rgba(255,255,255,0.45);
}
.sodashi-hero .suman-hero-body {
  color: rgba(255,255,255,0.45);
}
.sodashi-hero .suman-hero-quote {
  color: rgba(255,255,255,0.6);
}
.sodashi-hero .suman-hero-text-inner {
  padding-right: 2.5rem;
}
.sodashi-hero .suman-hero-img-wrap img {
  object-position: center center;
  max-width: 500px;
  float: right;
  border-radius: 14px;
}

/* ─── SODASHI CTA — cream bg, outlined buttons ─── */
.sodashi-cta {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.sodashi-cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn-sodashi-next {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  border: 1px solid rgba(43,43,43,0.35);
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}
.btn-sodashi-next:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.btn-sodashi-enquire {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--jade);
  border: 1px solid var(--jade);
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-sodashi-enquire:hover {
  background: var(--jade-dark);
  border-color: var(--jade-dark);
  color: #fff;
}

/* ═══════════════════════════════════════════
   BRANDS PAGE
═══════════════════════════════════════════ */

/* ─── HERO ─── */
.brands-hero {
  background-image: url('../img/hero-brands.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.brands-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 44, 0.90);
  z-index: 0;
}
.brands-hero .container {
  position: relative;
  z-index: 1;
}
.brands-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}
.brands-hero-inner {
  max-width: 640px;
}
.brands-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-weight: 400;
  display: block;
  margin-bottom: 1.2rem;
}
.brands-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.brands-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 520px;
  margin: 0;
}

/* ─── BRAND SECTIONS ─── */
.brand-section {
  padding: 90px 0;
}
.brand-section--light {
  background: #fff;
}
.brand-section--cream {
  background: var(--cream);
}

/* Text col */
.brand-section-text {
  padding: 0 3rem 0 0;
}
.flex-lg-row-reverse .brand-section-text {
  padding: 0 0 0 3rem;
}
.brand-section-text-inner {
  max-width: 480px;
}
.brand-section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 1.1rem;
}
.brand-section-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.brand-section-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}
.brand-section-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  opacity: 0.75;
}
.brand-section-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.btn-brand-explore {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  background: var(--jade);
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  transition: background 0.25s ease;
}
.btn-brand-explore:hover {
  background: var(--jade-dark);
  color: #fff;
}

/* Image col */
.brand-section-img-col {
  padding: 0 !important;
}
.brand-section-img-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.brand-section-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.brand-section-img-wrap--placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-section-img-wrap--placeholder img {
  object-fit: contain;
  padding: 2rem;
  aspect-ratio: auto;
  max-height: 300px;
  width: auto;
  margin: auto;
}


.brand-section.brand-section--cream .brand-section-text-inner {
  float: right;
}

 .blossom-hero {
      background: var(--cream);
      padding-top: 80px;
      overflow: hidden;
    }
    .blossom-hero-inner {
      display: flex;
      align-items: stretch;
      min-height: 560px;
    }
    .blossom-hero-text-col {
      flex: 0 0 50%;
      display: flex;
      align-items: center;
      padding: 60px 56px 60px 0;
    }
    .blossom-hero-text-inner { max-width: 440px; }
    .blossom-hero-logo {
      width: 110px;
      margin-bottom: 1.6rem;
      opacity: 0.85;
    }
    .blossom-hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 400;
      display: block;
      margin-bottom: 1.4rem;
    }
    .blossom-hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      color: var(--charcoal);
      line-height: 1.1;
      margin-bottom: 0.9rem;
    }
    .blossom-hero-rule {
      width: 28px; height: 1px;
      background: var(--gold);
      margin-bottom: 1.6rem;
    }
    .blossom-hero-body {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 2rem;
    }
    .btn-blossom-hero {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--charcoal) !important;
      border: 1px solid rgba(43,43,43,0.5);
      border-radius: 50px;
      padding: 0.7rem 1.8rem;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-blossom-hero:hover {
      background: var(--charcoal);
      border-color: var(--charcoal);
      color: #fff !important;
    }
    .blossom-hero-img-col {
      flex: 0 0 50%;
      overflow: hidden;
    }

    .blossom-hero-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      border-radius: 14px;
    }


    .blossom-philosophy {
      background: #fff;
      padding: 96px 0;
    }
    /* LEFT: square image, no border-radius, with gradient quote at bottom */
.blossom-phil-img-wrap {
  position: relative;
  line-height: 0;
  overflow: hidden;
  border-radius: 14px;
}
.blossom-phil-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}
    .blossom-phil-img-quote {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2.5rem 2rem 1.8rem;
      background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 100%);
    }
    .blossom-phil-img-quote p {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: rgba(255,255,255,0.93);
      line-height: 1.6;
      margin: 0;
    }
    /* RIGHT content */
    .blossom-phil-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size:0.7rem;
      text-transform: uppercase;
      color: #8C7B6B;
      font-weight: 400;
      display: block;
      margin-bottom: 1rem;
    }
    .blossom-phil-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(1.5rem, 2.8vw, 2.1rem);
      color: var(--charcoal);
      margin-bottom: 0.8rem;
    }
    .blossom-phil-rule {
      width: 24px; height: 1px;
      background: var(--gold);
      margin-bottom: 1.5rem;
    }
    .blossom-phil-body {
      margin-bottom: 2rem;
      color:#8C7B6B;
    }
    /* Bullet list pillars — exactly like PDF */
    .blossom-pillars {
      list-style: none;
      padding: 0; margin: 0;
    }
    .blossom-pillar-item {
      display: flex;
      gap: 0.9rem;
      margin-bottom: 1.4rem;
    }
    .blossom-pillar-item:last-child { margin-bottom: 0; }
    .blossom-pillar-dot {
      flex-shrink: 0;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #7A4E2D;
      margin-top:0.25rem;
    }
    .blossom-pillar-content {}
    .blossom-pillar-title {
      font-family: 'Inter', sans-serif;
      font-size: 0.52rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #7A4E2D;
      margin-bottom: 0.35rem;
      display: block;
    }
    .blossom-pillar-title .gold { color: var(--gold); margin: 0 0.25rem; }
    .blossom-pillar-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 300;
      color: #8C7B6B;
      line-height: 1.8;
      margin: 0;
    }

    .blossom-collection {
      background: var(--cream);
      padding: 96px 0 110px;
    }
  .blossom-col-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
    display: block;
    margin-bottom: 0.9rem;
  }
    .blossom-col-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--charcoal);
      margin-bottom: 2.4rem;
    }

    /* Horizontal scroll strip — top row */
    .blossom-img-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 0;
    }
    

    .blossom-strip-item {
      scroll-snap-align: start;
    }
    .blossom-strip-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }
    .blossom-strip-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.5rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 400;
      display: block;
      padding: 0.7rem 0 0;
    }

    /* Bottom 4-col grid */
    .blossom-grid-row {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: nowrap;
    }
    .blossom-grid-item {
      flex: 1 1 25%;
      min-width: 0;
    }
    .blossom-grid-item img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }
.blossom-grid-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  display: block;
  padding: 0.7rem 0 0;
  font-family: 'Playfair Display', serif;
}

/* ── Full Collection Table ── */
.blossom-full-collection {
  padding: 80px 0 90px;
  background: #fff;
}
.blossom-fc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blossom-fc-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.blossom-fc-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
}
.blossom-fc-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: right;
  white-space: nowrap;
}
.blossom-fc-dot { margin: 0 0.5rem; }

.blossom-fc-table {
  border-top: 1px solid var(--border);
}
.blossom-fc-row {
  display: grid;
  grid-template-columns: 36px 180px 1fr;
  align-items: baseline;
  gap: 0 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.blossom-fc-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.blossom-fc-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blossom-fc-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2rem;
}
.blossom-fc-products span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

.btn-hero-secondary:hover {
  color: var(--jade) !important;
  background: #fff;
}
    
.partners-section p.partners-body {
  color: rgba(255,255,255,0.55);
}
.partners-section .partners-list {
  padding-left: 80px;
}

.partners-section h3 {
  color: #fff;
  margin-bottom: 30px;
  padding-left: 80px;
}
/* ─── BRANDS INTRO / ME SECTION ─── */
.brands-intro-section {
  background: var(--cream);
  padding: 80px 0 50px;
  /* border-bottom: 1px solid var(--border); */
}
.brands-intro-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.brands-intro-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 1.2rem;
}
.brands-intro-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.brands-intro-heading em {
  font-style: italic;
  color: var(--jade);
}
.brands-intro-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
}
.brands-intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1rem;
}
.brands-intro-body:last-of-type {
  margin-bottom: 2.8rem;
}
.brands-intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.brands-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.brands-intro-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--jade);
  line-height: 1;
}
.brands-intro-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 400;
}
.brands-intro-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
@media (max-width: 575px) {
  .brands-intro-stats {
    gap: 1.4rem;
  }
  .brands-intro-divider {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   WHOLE PLANT PHILOSOPHY SECTION
══════════════════════════════════════════════ */
.wpp-section {
  background: #faf8f4;
  padding: 90px 0 80px;
  border-top: 1px solid var(--border);
}

/* Header */
.wpp-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.wpp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 1rem;
}
.wpp-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.wpp-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
}
.wpp-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
}

/* Botanical Architecture label */
.wpp-arch-label {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  /* letter-spacing: 0.15em; */
  color: var(--gold);
  font-weight: 400;
  margin-bottom: .5rem;
}

/* Diagram wrap — plant image in centre, cards around */
.wpp-diagram-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  max-width: 1060px;
  margin: 0 auto 60px;
}

/* Plant centre — spans 2 rows in middle column */
.wpp-plant-centre {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wpp-plant-centre img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.07));
}
.wpp-plant-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(250,248,244,0.88);
  border: 1px solid rgba(180,155,110,0.3);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.3rem;
}
.wpp-plant-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.wpp-plant-badge-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.6rem;
  color: var(--jade);
  line-height: 1.2;
}

/* Cards */
.wpp-cards-grid {
  display: contents;
}
.wpp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem 1.3rem;
  transition: box-shadow 0.25s ease;
}
.wpp-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.wpp-card--tl { grid-column: 1; grid-row: 1; text-align: right; }
.wpp-card--tr { grid-column: 3; grid-row: 1; text-align: left; }
.wpp-card--bl { grid-column: 1; grid-row: 2; text-align: right; }
.wpp-card--br { grid-column: 3; grid-row: 2; text-align: left; }

.wpp-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.2rem;
}
.wpp-card-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--jade);
  display: block;
  margin-bottom: 0.6rem;
}
.wpp-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Bottom two boxes */
.wpp-bottom-row {
  margin-top: 0;
}
.wpp-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  height: 100%;
}
.wpp-box--dark {
  background: var(--jade);
  border-color: var(--jade);
}
.wpp-box-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 0.8rem;
}
.wpp-box-eyebrow--light { color: rgba(255,255,255,0.55); }
.wpp-box-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.wpp-box-heading--light { color: #fff; }
.wpp-box-rule {
  width: 24px;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.2rem;
}
.wpp-box-rule--gold { background: var(--gold); }
.wpp-box-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.79rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}
.wpp-box-body--light { color: rgba(255,255,255,0.72); margin-bottom: 0; }

/* System list */
.wpp-system-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wpp-system-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--charcoal);
}
.wpp-sys-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.wpp-intro.botanical-text {
  text-align: center;
  margin-bottom: 32px;
}


/* ══════════════════════════════════════
   SERVICES — CAPABILITIES INTRO
══════════════════════════════════════ */
.svc-capabilities-intro {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.svc-cap-inner {
  max-width: 530px;
  margin: 0 auto;
  text-align: center;
}
.svc-cap-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 1.1rem;
}
.svc-cap-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.svc-cap-heading em {
  font-style: italic;
  color: var(--jade);
}
.svc-cap-rule {
  width: 28px;
  height: 1px;
  background: var(--jade);
  margin: 20px auto 1.6rem;
}
.svc-cap-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 0.8rem;
}
.svc-cap-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.svc-cap-pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--jade);
  border: 1px solid rgba(45,95,70,0.25);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   SERVICES — CLOSING BAR
══════════════════════════════════════ */
.svc-closing-bar {
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding: 2.8rem 0 0;
  text-align: center;
}
.svc-closing-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PARTNERS PAGE
══════════════════════════════════════ */
.partner-detail-section {
  padding: 90px 0 80px;
  background: #fff;
}
.partner-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.partner-detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.partner-detail-region {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 0.6rem;
}
.partner-detail-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.partner-detail-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.partner-detail-lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.partner-detail-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 0;
}
/* Capabilities box */
.partner-capabilities-box {
  background: var(--jade);
  border-radius: 10px;
  padding: 2.2rem 2rem;
}
.partner-cap-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.partner-cap-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.partner-cap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.partner-cap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
}
.partner-cap-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.partner-cap-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 1.4rem;
}
.partner-cap-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin: 0;
  font-style: italic;
}
/* Row 2 boxes */
.partner-detail-row2 {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.partner-info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  height: 100%;
}
.partner-info-box--cream { background: var(--cream); }
.partner-info-box-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-bottom: 0.8rem;
}
.partner-info-box-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.partner-cap-list--dark li { color: var(--charcoal); }
.partner-cap-dot--gold { background: var(--gold) !important; }
.partner-info-box-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
/* Leadership */
.partner-leadership-row {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.partner-leadership-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.partner-leader-img-wrap--lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}
.partner-leader-img-wrap--lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.partner-leader-name--lg {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.25rem;
}
.partner-leader-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.partner-leader-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.79rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.partner-closing-statement {
  background: var(--jade);
  border-radius: 10px;
  padding: 2rem 1.8rem;
}
.partner-closing-statement p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #fff;
  line-height: 1.75;
  margin: 0;
  opacity: 0.9;
}

/* ═══ PARTNERS PAGE — brands theme extensions ═══ */

/* Hero override — use hero-brands bg if available, else dark jade */
.partners-hero {
  background-image: url('../img/hero-brands.png');
}

/* Image card with name overlay */
.partner-img-card {
  position: relative;
  overflow: hidden;
}
.partner-img-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.partner-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30,58,44,0.92) 0%, transparent 100%);
  padding: 2rem 1.6rem 1.6rem;
}
.partner-img-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}
.partner-img-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* Inline capabilities list within brand text col */
.partner-inline-caps {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.partner-inline-caps-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.partner-inline-caps-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.partner-inline-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.partner-inline-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--charcoal);
}
.partner-inline-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.partner-inline-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* Bio card for right col of cream section */
.partner-bio-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.partner-bio-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.partner-bio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.partner-bio-body {
  padding: 1.6rem;
}
.partner-bio-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.6rem;
}
.partner-bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.25rem;
}
.partner-bio-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.6;
  display: block;
}
.partner-bio-rule {
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}
.partner-bio-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.77rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}

/* Closing section */
.partners-closing {
  padding: 70px 0 !important;
}
.partners-closing-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.partners-closing-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* ═══ CAREERS PAGE ═══ */
.careers-hero {
  background-image: url('../img/hero-brands.png');
}
.careers-culture-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.careers-culture-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal);
}
.careers-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.careers-contact-block {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.careers-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 400;
}
.careers-email {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--jade);
  text-decoration: none;
  font-style: italic;
}
.careers-email:hover { text-decoration: underline; }

/* ── Bio link on team cards ── */
.team-bio-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #b0924c);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.team-bio-link:hover { opacity: 0.65; color: var(--gold, #b0924c); }

.team-section .col-lg-12 img {
  height: 700px;
  object-position: top;
}

/* ═══ BRANDS CAROUSEL ═══ */

/* Outer wrapper: extra horizontal padding to give arrows space */
.brands-carousel-outer {
  position: relative;
  padding: 0 54px;
}

.brands-carousel-wrapper {
  position: relative;
  overflow: hidden;   /* clips the sliding track only */
}

.brands-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Each slide = exactly 1/3 of the visible wrapper width */
.brands-carousel-slide {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  padding: 0 8px;
  box-sizing: border-box;
}

/* Arrow buttons — sit inside .brands-carousel-outer, outside .wrapper */
.brands-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);   /* slightly above center to align with cards */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2d5a4e;
  background: #fff;
  color: #2d5a4e;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.brands-carousel-btn:hover {
  background: #2d5a4e;
  color: #fff;
}
.brands-carousel-prev { left: 0; }
.brands-carousel-next { right: 0; }
.brands-carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* Dots */
.brands-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.brands-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.brands-carousel-dots button.active {
  background: var(--jade, #2d5a4e);
  transform: scale(1.3);
}

.region-map-section .region-map-header.reveal.d1.visible {
	width: 100%;
	margin: 0 auto 68px;
	text-align: center;
}

.values-section.region-section-office {
	background: var(--cream);
	padding-top: 80px;
}

/* Tablet: 2 cards visible (769px – 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .brands-carousel-slide {
    flex: 0 0 calc(100% / 2);
    min-width: calc(100% / 2);
  }
}

/* Mobile: 1 card visible (<=768px) */
@media (max-width: 768px) {
  .brands-carousel-outer { padding: 0 40px; }
  .brands-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.footer-logo-col span img {
  width: 160px;
}

.home-brands .brand-card img {
  object-position: right;
  display: block;
}

.suman-hero.sodashi-hero .row {
  align-items: center;
}

