/* ==========================================================================
   Growing Group — Design System
   Wellness · Innovation · Growth
   Reference canvas: 1366px. Content container: 1220px.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette — sampled from the approved design */
  --green: #2b463c;
  --green-deep: #223830;
  --green-soft: #3a5448;
  --sage: #d5dbc1;
  --sage-deep: #c6cead;
  --cream: #fffbf7;
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #3a3a3a;

  /* Type */
  --display: "Playfair Display", "Times New Roman", serif;
  --sans: "Lato", "Segoe UI", system-ui, -apple-system, sans-serif;
  --sans-italic: "Lato", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1220px;
  --container-wide: 1290px;
  --gutter: 24px;

  /* Type scale (desktop) */
  --fs-h1: 54px;
  --fs-h2: 54px;
  --fs-h3: 38px;
  --fs-h4: 34px;
  --fs-lead: 27px;
  --fs-body: 27px;
  --fs-sm: 20px;
  --fs-nav: 20px;
  --fs-stat: 140px;

  --lh-body: 1.37;

  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 300; /* body copy is Lato Light */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1.15em; }
blockquote, figure { margin: 0; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 1090px; }

.section { padding-block: clamp(31px, 6.07vw, 74px) clamp(28px, 5.49vw, 67px); }
.section--sage { background: var(--sage); }
.section--green { background: var(--green); color: var(--white); padding-block: clamp(38px, 7.38vw, 90px) clamp(45px, 8.69vw, 106px); }
.section--green h1,
.section--green h2,
.section--green h3 { color: var(--sage); }

.center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--green :focus-visible,
.cta-band :focus-visible { outline-color: var(--cream); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18.5px;
  line-height: 1;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--green {
  background: var(--green);
  color: var(--white);
  min-width: 183px;
}
.btn--green:hover { background: var(--green-deep); box-shadow: 0 10px 24px rgba(43, 70, 60, 0.28); }

.btn--cream {
  background: var(--cream);
  color: var(--ink);
  font-size: 26px;
  padding: 18px 52px;
  border-radius: 8px;
}
.btn--cream:hover { background: var(--white); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25); }

.btn--link {
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 11px 28px;
  border-radius: 8px;
}
.btn--link:hover { background: var(--green-deep); }

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  font-size: var(--fs-nav);
  padding: 13px 22px;
  border-radius: 10px;
  white-space: nowrap;
}
.btn--whatsapp:hover { background: var(--green-deep); box-shadow: 0 8px 20px rgba(43, 70, 60, 0.3); }
.btn--whatsapp svg { width: 26px; height: 26px; flex: none; }

/* --------------------------------------------------------------------------
   4. Site header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 2px 18px rgba(43, 70, 60, 0.12); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 210px;
  padding-block: 18px;
  transition: min-height 0.35s var(--ease);
}
.site-header.is-stuck .site-header__inner { min-height: 118px; }

.site-logo { flex: none; display: block; }
.site-logo img { width: 290px; height: auto; }

.primary-nav { margin-left: auto; }
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav__link {
  display: inline-block;
  font-size: var(--fs-nav);
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav__link:hover::after,
.primary-nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Dropdown — Our Brands */
.has-dropdown { position: relative; }
.has-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  font-size: var(--fs-nav);
  font-weight: 700;
  color: var(--green);
  font-family: var(--sans);
  white-space: nowrap;
}
.has-dropdown__toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}
.has-dropdown.is-open .has-dropdown__toggle svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 330px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(43, 70, 60, 0.18);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  padding: 13px 18px;
  border-radius: 9px;
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  line-height: 1.3;
}
.dropdown a:hover { background: var(--sage); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 8px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Hero banners
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1366 / 584;
  overflow: hidden;
  background: var(--sage);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero--home img { object-position: 50% 75%; }
.hero--partnerships { aspect-ratio: 1366 / 508; }

/* --------------------------------------------------------------------------
   6. Home — intro + stats
   -------------------------------------------------------------------------- */
.intro { text-align: center; }
.intro__lead {
  max-width: 1060px;
  margin: 34px auto 0;
  font-size: var(--fs-lead);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 47px;
}
.stat__num {
  font-family: var(--sans);
  font-size: var(--fs-stat);
  font-weight: 700;
  line-height: 0.92;
  color: var(--green);
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 12px;
  font-size: var(--fs-sm);
  color: var(--ink);
}

.intro__cta { margin-top: 75px; }

/* --------------------------------------------------------------------------
   7. Brand pillars
   -------------------------------------------------------------------------- */
.pillars { padding-block: clamp(35px, 6.89vw, 84px) clamp(40px, 7.87vw, 96px); }
.pillars__head { text-align: center; margin-bottom: 54px; }
.pillars__head p {
  margin-top: 48px;
  font-size: var(--fs-lead);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar { text-decoration: none; color: inherit; display: block; }
.pillar__media {
  aspect-ratio: 369 / 513;
  overflow: hidden;
  border-radius: 0 84px 0 0;
  background: var(--sage-deep);
}
.pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pillar:hover .pillar__media img { transform: scale(1.05); }

.pillar__title {
  font-size: var(--fs-h4);
  line-height: 1.02;
  text-align: center;
  margin-top: 23px;
}
.pillar__desc {
  margin-top: 14px;
  line-height: 1.5;
  font-size: var(--fs-sm);
  color: var(--ink);
}
.pillar:nth-child(1) .pillar__desc,
.pillar:nth-child(2) .pillar__desc { text-align: left; }
.pillar:nth-child(3) .pillar__desc { text-align: center; }

/* --------------------------------------------------------------------------
   8. Brand logo strip
   -------------------------------------------------------------------------- */
.logo-strip {
  padding-block: clamp(37px, 7.21vw, 88px) clamp(31px, 6.07vw, 74px);
  background: var(--white);
}
.logo-strip__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 40px;
}
.logo-strip__list img {
  max-height: 82px;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.logo-strip__list img:hover { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   9. Showroom / split content
   -------------------------------------------------------------------------- */
.showroom__head { text-align: center; padding-block: clamp(35px, 6.89vw, 84px) clamp(16px, 3.11vw, 38px); }
.showroom__head p { margin-top: 40px; font-size: var(--fs-lead); }

.showroom__banner {
  width: 100%;
  aspect-ratio: 1366 / 747;
  overflow: hidden;
}
.showroom__banner img { width: 100%; height: 100%; object-fit: cover; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}
.showroom .split { padding-block: clamp(31px, 6.07vw, 74px) clamp(34px, 6.72vw, 82px); margin-inline: calc(var(--gutter) * -1); }
.split__list-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--ink);
  margin-bottom: 8px;
}
.bullets { margin: 0; padding-left: 30px; }
.bullets li { margin-bottom: 0; }
.split p { margin-bottom: 1.32em; }
.split .split__list-title { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Distribution channels
   -------------------------------------------------------------------------- */
.channels__head { text-align: center; margin-bottom: 44px; }
.channels__head p {
  margin-top: 45px;
  font-size: var(--fs-lead);
  color: var(--white);
  max-width: 1000px;
  margin-inline: auto;
}
.section--green .container { max-width: 1270px; }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}
.channel__media {
  aspect-ratio: 231 / 239;
  border-radius: 14px;
  overflow: hidden;
}
.channel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.channel:hover .channel__media img { transform: scale(1.06); }
.channel__label {
  margin-top: 18px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   11. Testimonials
   -------------------------------------------------------------------------- */
.testimonials { padding-block: clamp(33px, 6.39vw, 78px) clamp(28px, 5.41vw, 66px); }
.testimonials__head { text-align: center; margin-bottom: 46px; }
.testimonials__head p { margin-top: 44px; font-size: var(--fs-lead); max-width: 1160px; margin-inline: auto; }

.testimonials .container { max-width: 1268px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}
.testimonial {
  background: var(--sage);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  font-size: var(--fs-sm);
  line-height: 1.3;
  box-shadow: 9px 9px 0 rgba(43, 70, 60, 0.12);
}
.testimonial__attr { margin-top: 1.3em; }

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  min-height: 519px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  font-size: 60px;
  letter-spacing: 0.02em;
  max-width: 12ch;
}
.cta-band p {
  margin-top: 18px;
  max-width: 760px;
  font-size: 26px;
  line-height: 1.19;
}
.cta-band .btn { margin-top: 34px; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--white);
  padding-block: clamp(35px, 6.89vw, 84px) clamp(29px, 5.74vw, 70px);
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.37;
  color: var(--green);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr 1.25fr 0.85fr;
  gap: 30px;
  align-items: start;
}
.site-footer__logo img { width: 160px; margin-inline: auto; }
.site-footer__block p { margin-bottom: 1.37em; }
.site-footer__block strong { font-weight: 400; display: block; }
.site-footer__block a { color: inherit; }
.site-footer__block a[href^="tel:"] { text-decoration: none; }
.site-footer__block a[href^="tel:"]:hover { text-decoration: underline; }
.site-footer__label {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 26px;
  display: block;
}
.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__row img {
  max-height: 72px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.site-footer__row a:hover img { transform: translateY(-3px) scale(1.04); }
.site-footer__row--social img { max-height: 56px; max-width: 56px; }

.footer-note {
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(43, 70, 60, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 17px;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   14. About page
   -------------------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 561fr 805fr;
  align-items: center;
  gap: 0;
  padding-block: clamp(16px, 3.03vw, 37px) clamp(18px, 3.61vw, 44px);
}
.about-intro__media {
  aspect-ratio: 561 / 588;
  overflow: hidden;
  border-radius: 0 12px 12px 0;
}
.about-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__body { padding: 40px 122px 40px 52px; }
.about-intro__body h1 { margin-bottom: 26px; }

.mv { padding-block: clamp(37px, 7.21vw, 88px) clamp(41px, 8.03vw, 98px); }
.mv__item + .mv__item { margin-top: 68px; }
.mv h2 { color: var(--white); font-size: 58px; margin-bottom: 18px; }
.mv p { max-width: 1090px; line-height: 1.48; }

.philosophy .container { max-width: 1290px; }
.philosophy__head { text-align: center; margin-bottom: 46px; }
.philosophy__head p { margin-top: 14px; font-size: var(--fs-lead); font-weight: 400; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.philosophy-card {
  background: var(--green);
  border-radius: 38px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.philosophy-card__media {
  aspect-ratio: 392 / 357;
  overflow: hidden;
  border-radius: 0 0 23% 47% / 0 0 27% 27%;
}
.philosophy-card__media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-card__body { padding: 30px 28px 36px; }
.philosophy-card h3 {
  color: var(--white);
  font-size: 33px;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 22px;
}
.philosophy-card p { font-size: 19px; line-height: 1.21; }

/* --------------------------------------------------------------------------
   15. Brand category pages
   -------------------------------------------------------------------------- */
.brand-page { background: var(--sage); padding-block: clamp(34px, 6.72vw, 82px) clamp(49px, 9.51vw, 116px); }
.brand-page__title { text-align: center; margin-bottom: 56px; }

.brand-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(36px, 6.97vw, 85px) clamp(20px, 3.6vw, 44px) clamp(42px, 8.20vw, 100px);
}
.brand-row {
  display: grid;
  grid-template-columns: 412px minmax(0, 590px);
  gap: 24px;
  justify-content: start;
  align-items: center;
}
.brand-row--flip { grid-template-columns: minmax(0, 590px) 412px; }
.brand-row + .brand-row { margin-top: 63px; }
.brand-row--flip .brand-row__media { order: 2; }
.brand-row--flip .brand-row__body { order: 1; }

.brand-row__media img {
  width: 100%;
  max-width: 390px;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}
.brand-row__body h2 {
  font-family: var(--sans-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 29.5px;
  line-height: 1.25;
  color: var(--green);
  margin-bottom: 26px;
  letter-spacing: 0;
}
.brand-row__body p { font-size: 20px; line-height: 1.4; }
.brand-row__body p:not(.range-title) { margin-bottom: 1.4em; }

.range-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  margin: 30px 0 14px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.chip {
  background: var(--sage);
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   16. Partnerships page
   -------------------------------------------------------------------------- */
.rule {
  width: 250px;
  height: 2px;
  background: currentColor;
  border: 0;
  margin: 22px auto 0;
  opacity: 0.85;
}
.section-head { text-align: center; margin-bottom: 66px; }
.section-head h2 { font-size: var(--fs-h3); }

.op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 70px;
  padding-left: 46px;
}
.op-card {
  position: relative;
  background: var(--sage);
  border-radius: 0 60px 80px 80px;
  padding: 22px 30px 20px 36px;
  text-align: center;
}
.op-card__num {
  position: absolute;
  top: -32px;
  left: -46px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.03em;
}
.op-card h3 {
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.op-card__sub {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 16px;
}
.op-card p { font-size: 19px; line-height: 1.42; color: var(--green); }

.why {
  display: grid;
  grid-template-columns: 478fr 888fr;
  gap: 0;
  align-items: center;
}
.why__media { aspect-ratio: 478 / 565; overflow: hidden; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__body { padding: 36px 46px 36px 50px; }
.why__item + .why__item { margin-top: 24px; }
.why__item h3 {
  font-size: 27px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.why__item p { font-size: 20px; line-height: 1.3; color: var(--white); }
.why__item strong { font-weight: 700; }

.who__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-left: 18px; }
.who h3 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.who ul { margin: 0; padding-left: 72px; }
.who li { margin-bottom: 0; font-size: var(--fs-body); line-height: 1.48; color: var(--green); }

.who-strip { width: 100%; aspect-ratio: 1366 / 215; overflow: hidden; }
.who-strip img { width: 100%; height: 100%; object-fit: cover; }

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner-logos li { display: grid; place-items: center; }
.partner-logos img {
  max-height: 150px;
  max-width: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.partner-logos li:hover img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   17. Contact page
   -------------------------------------------------------------------------- */
.contact { background: var(--sage); padding-block: clamp(42px, 8.20vw, 100px) clamp(19px, 3.77vw, 46px); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.86fr;
  gap: 36px;
}
.contact h1 { font-size: 86px; line-height: 0.96; margin-bottom: 46px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 34px;
}
.contact-item__icon {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
}
.contact-item__icon svg { width: 30px; height: 30px; fill: var(--white); }
.contact-item strong { display: block; font-weight: 700; font-size: 23px; }
.contact-item span,
.contact-item a { font-size: 19.5px; font-weight: 400; color: var(--ink); }
.contact-item a { text-decoration: none; }
.contact-item a:hover { text-decoration: underline; text-underline-offset: 3px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 25.5px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 10px;
}
.field--inline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}
.field--inline label { margin-bottom: 0; font-size: 25.5px; }

.input,
.select,
.textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.textarea { min-height: 285px; resize: vertical; }
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(43, 70, 60, 0.15);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232b463c'><path d='M12 16 4 8h16z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 26px;
  padding-right: 56px;
}
.contact__form .btn { font-size: 27px; letter-spacing: 0.06em; padding: 17px 30px; }
.form-status {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.form-status:empty { margin: 0; }

/* --------------------------------------------------------------------------
   17b. Page-level section rhythm
   -------------------------------------------------------------------------- */
.container-full {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* About */
.mv .container { max-width: 1138px; }
.philosophy { padding-block: clamp(35px, 6.89vw, 84px) clamp(40px, 7.87vw, 96px); }
.philosophy__head p a {
  color: var(--green);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Partnerships */
.bridging { padding-block: clamp(33px, 6.39vw, 78px) clamp(14px, 2.79vw, 34px); }
.bridging h2 { max-width: 900px; margin-inline: auto; }
.bridging__lead { margin: 30px auto 0; font-size: var(--fs-lead); max-width: 1150px; }
.op-pillars { padding-block: clamp(24px, 4.75vw, 58px) clamp(40px, 7.87vw, 96px); }
.why-section { padding-block: clamp(38px, 7.38vw, 90px) clamp(36px, 7.05vw, 86px); }
.why-section .section-head { margin-bottom: 43px; }
.why__media { border-radius: 0 60px 60px 0; }
.who { padding-block: clamp(37px, 7.21vw, 88px) clamp(18px, 3.61vw, 44px); }
.existing-partners { padding-block: clamp(36px, 7.05vw, 86px) clamp(40px, 7.87vw, 96px); }

/* --------------------------------------------------------------------------
   17c. Brand overview - all brands at a glance
   -------------------------------------------------------------------------- */
.brands-overview .brand-page__title { margin-bottom: 0; }
.brands-intro {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
  font-size: var(--fs-lead);
}
.brand-cat { margin-top: clamp(46px, 5.7vw, 70px); }
.brand-cat .section-head { margin-bottom: 34px; }
.brand-cat__sub { margin-top: 18px; font-size: var(--fs-sm); color: var(--green); }

.brand-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
}
.brand-tiles li { flex: 0 1 272px; display: flex; min-width: 0; }
.brand-tiles a {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px 28px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brand-tiles a:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(43, 70, 60, 0.16); }
.brand-tile__media { display: grid; place-items: center; height: 170px; margin-bottom: 16px; }
.brand-tile__media img { max-height: 170px; width: auto; object-fit: contain; }
.brand-tile__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.15;
  color: var(--green);
}
.brand-tile__desc { margin-top: 10px; font-size: 18px; line-height: 1.35; color: var(--ink); }

/* deep links from the overview should clear the sticky header */
.brand-row { scroll-margin-top: 150px; }

/* --------------------------------------------------------------------------
   18. Motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1300px) {
  .primary-nav__list { gap: 30px; }
  .site-logo img { width: 250px; }
  :root { --fs-nav: 18px; }
}

@media (max-width: 1120px) {
  :root {
    --fs-h1: 46px;
    --fs-h2: 46px;
    --fs-h3: 34px;
    --fs-h4: 30px;
    --fs-lead: 22px;
    --fs-body: 22px;
    --fs-sm: 20px;
    --fs-stat: 104px;
  }
  .about-intro__body { padding: 48px 40px; }
  .why__body { padding: 40px 40px 40px 36px; }
  .split { gap: 50px; }
  .channel-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-grid { gap: 34px; }
  .op-grid { gap: 46px 60px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .site-footer__logo img { margin-inline: 0; }
}

/* Compact navigation: the full nav bar stops fitting below ~1100px */
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .site-header__inner { min-height: 84px; gap: 16px; }
  .site-header.is-stuck .site-header__inner { min-height: 84px; }
  .site-logo img { width: 216px; }

  .primary-nav {
    position: fixed;
    inset: 84px 0 auto;
    background: var(--white);
    margin: 0;
    padding: 8px var(--gutter) 30px;
    box-shadow: 0 22px 40px rgba(43, 70, 60, 0.18);
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav__list > li { border-bottom: 1px solid rgba(43, 70, 60, 0.12); }
  .primary-nav__link,
  .has-dropdown__toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 17px 4px;
    font-size: 19px;
  }
  .primary-nav__link::after { display: none; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 12px 16px;
    display: none;
  }
  .has-dropdown.is-open .dropdown { display: block; transform: none; }
  .primary-nav .btn--whatsapp { margin-top: 20px; width: 100%; }
}

@media (max-width: 860px) {
  :root {
    --fs-h1: 38px;
    --fs-h2: 38px;
    --fs-h3: 29px;
    --fs-h4: 26px;
    --fs-lead: 19px;
    --fs-body: 19px;
    --fs-sm: 18px;
    --fs-stat: clamp(44px, 13vw, 78px);
    --gutter: 30px;
  }
  /* The headline is baked into the banner artwork, so show the full frame
     rather than cropping the words away. */
  .hero { aspect-ratio: 11 / 6; }
  .hero img,
  .hero--home img { object-position: center; }
  .hero--partnerships { aspect-ratio: 11 / 6; }

  .pillar-grid { grid-template-columns: 1fr; gap: 46px; }
  .pillar__media { aspect-ratio: 4 / 3; border-radius: 0 54px 0 0; }
  .pillar__desc { text-align: center !important; }

  .split { grid-template-columns: 1fr; gap: 34px; }
  .showroom .split { margin-inline: 0; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; gap: 28px; }

  .about-intro { grid-template-columns: 1fr; }
  .about-intro__media { aspect-ratio: 4 / 3; }
  .about-intro__body { padding: 40px var(--gutter) 0; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 26px; }
  .philosophy-card__media { aspect-ratio: 16 / 11; }

  .brand-card { padding: 34px 22px; border-radius: 16px; }
  .brand-tiles { gap: 16px; }
  .brand-tiles li { flex: 0 1 calc(50% - 8px); }
  .brand-tiles a { padding: 18px 14px 20px; }
  .brand-tile__media { height: 116px; margin-bottom: 12px; }
  .brand-tile__media img { max-height: 116px; }
  .brand-tile__name { font-size: 16px; }
  .brand-tiles a { padding: 18px 12px 20px; }
  .brand-tile__desc { font-size: 16px; margin-top: 8px; }
  .brand-row { scroll-margin-top: 100px; }
  .brand-row,
  .brand-row--flip .brand-row__media,
  .brand-row--flip .brand-row__body { grid-template-columns: 1fr; order: unset; }
  .brand-row { gap: 30px; }
  .brand-row__media img { max-width: 380px; }
  .brand-row + .brand-row { margin-top: 54px; }

  .op-grid { grid-template-columns: 1fr; padding-left: 34px; gap: 48px; }
  .op-card { padding: 38px 26px 38px 40px; border-radius: 0 44px 56px 56px; }
  .op-card__num { width: 72px; height: 72px; font-size: 30px; top: -26px; left: -34px; }

  .why { grid-template-columns: 1fr; }
  .why__media { aspect-ratio: 16 / 10; }
  .why__body { padding: 34px var(--gutter) 0; }
  .who__cols { grid-template-columns: 1fr; gap: 14px; padding-left: 0; }
  .who ul { padding-left: 26px; }
  .testimonial { padding: 28px 22px; }
  .philosophy-card__body { padding: 26px 22px 30px; }
  .who-strip { aspect-ratio: 16 / 7; }
  .partner-logos { gap: 30px 22px; }
  .partner-logos li { width: auto; max-width: 46%; }
  .partner-logos img { max-height: 84px; max-width: 100%; }

  .cta-band { min-height: 420px; padding-block: 60px; }
  .cta-band p { font-size: var(--fs-sm); }
  .field label,
  .field--inline label { font-size: 19px; }
  .contact__form .btn { font-size: 20px; }
  .brand-row__body h2 { font-size: 23px; }
  .cta-band h2 { font-size: 40px; max-width: none; }

  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .contact h1 { font-size: 48px; margin-bottom: 34px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .field--inline { grid-template-columns: 1fr; gap: 10px; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 42px; text-align: center; }
  .site-footer__logo img { margin-inline: auto; }
  .site-footer__block { text-align: center; }
  .footer-note { justify-content: center; text-align: center; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat__label { font-size: clamp(14px, 2.6vw, 18px); line-height: 1.3; margin-top: 6px; }
  .logo-strip__list { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .logo-strip__list img { max-height: 62px; }
}

@media (max-width: 520px) {
  .channel-grid { gap: 16px; }
  .rule { width: 180px; }
  .btn--cream { font-size: 20px; padding: 15px 26px; }
}

/* Very small phones: keep a readable measure */
@media (max-width: 359px) {
  :root { --gutter: 22px; }
}
