:root { --surface: #f7f6f2; --ink: #111111; --accent: #927d50; --muted: #555555; --rule: #cfcac0; --light-rule: #dedbd3; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  color: var(--ink);
}

.container {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.header {
  background: rgba(247, 246, 242, 0.97);
  border-bottom: 1px solid var(--light-rule);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  position: relative;
  width: 168px;
  aspect-ratio: 1110 / 320;
  overflow: hidden;
  flex-shrink: 0;
}

.logo img { display: block; width: 100%; height: auto; }
.header .logo img {
  mix-blend-mode: multiply;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
  flex: 1;
  margin-left: 60px;
}

.header nav {
  display: grid;
  grid-template-columns: 110px 150px 125px 170px 80px;
  align-items: center;
  justify-content: end;
}

.header nav a {
  position: relative;
  justify-self: stretch;
  text-align: center;
  margin: 0 4px;
  border: 1px solid var(--light-rule);
  transition: border-color 0.2s ease, color 0.2s ease;

  text-decoration: none;
  color: #151515;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;

  padding: 12px 4px;
  white-space: nowrap;
}
.header nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 5px;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: normal;
  min-width: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 5px 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;

  color: #707070;

  transition: color 0.2s ease;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  color: var(--accent);
  font-weight: 700;
}

.lang-separator {
  font-size: 11px;
  color: #c8c5bd;
}

/* =========================
   HERO
========================= */

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 27px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--ink);
  color: #ffffff;
}

/* =========================
   HERO IMAGE
========================= */

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 1000px) {

  .nav-right {
    gap: 20px;
    margin-left: 35px;
  }

  .header nav {
    gap: 18px;
  }

  .header nav a {
    font-size: 13px;
  }

}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 700px) {

  .container {
    width: 88%;
  }

  .nav {
    height: 75px;
  }

  .nav-right {
    margin-left: 20px;
    gap: 15px;
  }



.btn {
    width: 100%;
  }

  .language-switcher {
    margin-left: 0;
  }
}
.about-title-accent { display: block; color: var(--accent); margin-top: 5px; }

/* =========================
   ABOUT PAGE
========================= */

.about-page {
  padding: 110px 0 120px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.about-page-heading h1 {
  max-width: 760px;
  font-size: clamp(48px, 4vw, 66px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -2.5px;
}



.about-page-intro {
  padding-top: 45px;
}

.about-page-intro p {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.about-page-intro p + p {
  margin-top: 24px;
}

/* =========================
   ABOUT SERVICES
========================= */

.about-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-service {
  min-height: 255px;
  padding: 34px 34px 38px 0;
}

.about-service + .about-service {
  border-left: 1px solid var(--rule);
  padding-left: 34px;
}

.service-number {
  display: block;
  margin-bottom: 40px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
}

.about-service h2 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-service p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
}

/* =========================
   ACTIVE NAV LINK
========================= */

.header nav a.nav-active {
  color: var(--accent);
  border-color: var(--accent);
}

/* =========================
   ABOUT PAGE RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .about-page {
    padding: 85px 0 95px;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-page-intro {
    padding-top: 0;
  }

  .about-services {
    grid-template-columns: 1fr;
    margin-top: 75px;
  }

  .about-service {
    min-height: auto;
    padding: 30px 0;
  }

  .about-service + .about-service {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
  }

}

@media (max-width: 700px) {

  .about-page {
    padding: 65px 0 75px;
  }

  .about-page-heading h1 {
    font-size: 44px;
  }

  .about-page-intro p {
    font-size: 16px;
  }

  .about-services {
    margin-top: 60px;
  }

  .service-number {
    margin-bottom: 25px;
  }

}

/* =========================
   ACTIVITIES PAGE
========================= */

.activities-page {
  padding: 110px 0 120px;
}

.activities-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "eyebrow intro"
    "title intro";
  column-gap: 110px;
  row-gap: 28px;
  align-items: end;
}

.activities-heading .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
}

.activities-heading h1 {
  grid-area: title;
  max-width: 760px;
  font-size: clamp(48px, 4vw, 66px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -2.5px;
}

.activities-title-accent {
  display: block;
  color: var(--accent);
  margin-top: 5px;
}

.activities-intro {
  grid-area: intro;
  align-self: end;
  max-width: 570px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  padding-bottom: 5px;
}


/* =========================
   ACTIVITIES LIST
========================= */

.activities-list {
  margin-top: 100px;
  border-top: 1px solid var(--rule);
}

.activity-row {
  display: grid;
  grid-template-columns: 70px 0.9fr 1.4fr;
  gap: 40px;
  align-items: start;

  padding: 38px 0;
  border-bottom: 1px solid var(--rule);
}

.activity-number {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  padding-top: 5px;
}

.activity-row h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.activity-row p {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
  color: #666666;
}


/* =========================
   ACTIVITIES RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .activities-page {
    padding: 85px 0 95px;
  }

  .activities-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "intro";
    gap: 28px;
  }

  .activities-heading h1 {
    max-width: 720px;
  }

  .activities-intro {
    max-width: 650px;
    padding-bottom: 0;
  }

  .activities-list {
    margin-top: 70px;
  }

  .activity-row {
    grid-template-columns: 55px 1fr;
    gap: 20px 30px;
  }

  .activity-row p {
    grid-column: 2;
  }

}

@media (max-width: 700px) {

  .activities-page {
    padding: 65px 0 75px;
  }

  .activities-heading h1 {
    font-size: clamp(38px, 8vw, 44px);
  }

  .activities-intro {
    font-size: 16px;
  }

  .activities-list {
    margin-top: 55px;
  }

  .activity-row {
    grid-template-columns: 42px 1fr;
    padding: 30px 0;
  }

  .activity-row h2 {
    font-size: 21px;
  }

  .activity-row p {
    font-size: 14px;
  }

}

/* =========================
   SHARED FOOTER
========================= */

.site-footer {
  --footer-text: var(--surface);
  --footer-muted: #b5b2a9;
  --footer-accent: #b6a173;
  background: var(--ink);
  color: var(--footer-text);
  padding: 82px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 64px;
  padding-bottom: 76px;
}

.footer-logo {
  width: 210px;
}

.footer-logo img {
  mix-blend-mode: screen;
}

.footer-signature {
  margin-top: 36px;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.6px;
}

.footer-signature span {
  display: block;
}

.footer-description {
  max-width: 290px;
  margin-top: 20px;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-label {
  color: var(--footer-accent);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
}

.footer-nav li:first-child a {
  padding-top: 0;
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--footer-accent);
}

.site-footer a:focus-visible {
  outline-color: var(--footer-accent);
}

.footer-contact p {
  max-width: 270px;
  color: var(--footer-muted);
  font-size: 16px;
  line-height: 1.7;
}

.footer-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 23px;
  padding: 8px 0;
  border-bottom: 1px solid #665b43;
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer-email span {
  color: var(--footer-accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  justify-content: space-between;
  border-top: 1px solid #34332e;
  padding: 25px 0 29px;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* The desktop navigation keeps its fixed bilingual columns.
   On tablets, a second row avoids the existing header overflow. */
@media (min-width: 701px) and (max-width: 1100px) {
  .nav {
    position: relative;
    height: auto;
    padding-top: 22px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .nav-right {
    width: 100%;
    flex: auto;
    margin-left: 0;
    padding-bottom: 20px;
  }

  .header nav {
    width: 100%;
    grid-template-columns: 1fr 1.5fr 1.2fr 1.7fr 1fr;
    gap: 0;
  }

  .language-switcher {
    position: absolute;
    top: 30px;
    right: 0;
  }
}

@media (max-width: 1000px) {
.footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .footer-identity {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
.site-footer {
    padding-top: 56px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    padding-bottom: 46px;
  }

  .footer-signature {
    margin-top: 28px;
    font-size: 25px;
  }

  .footer-label {
    margin-bottom: 18px;
  }

  .footer-nav a,
  .footer-nav li:first-child a {
    padding: 11px 0;
  }

  .footer-email {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
  }
}

/* =========================
   PARTNER PAGE
========================= */

.partners-page {
  --partner-rule: var(--rule);
  --partner-accent: var(--accent);
  --partner-muted: var(--muted);
}

.partner-hero {
  padding-top: 110px;
  padding-bottom: 84px;
}

.partner-hero h1 {
  max-width: 970px;
  font-size: clamp(48px, 4.6vw, 66px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2.5px;
}

.partner-title-accent {
  display: block;
  color: var(--partner-accent);
  margin-top: 5px;
}

.partner-hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 38px;
}

.partner-lead {
  max-width: 690px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--partner-muted);
}

.partner-text-link {
  display: inline-flex;
  flex-shrink: 0;
  gap: 28px;
  align-items: center;
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--partner-accent, var(--accent));
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.partner-text-link span:last-child {
  color: var(--partner-accent, var(--accent));
  font-size: 20px;
}

.partner-text-link:hover {
  color: var(--partner-accent, var(--accent));
}

.partner-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
  border-top: 1px solid var(--partner-rule);
  padding-top: 76px;
  padding-bottom: 84px;
}

.partners-page h2 {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -1.3px;
}

.partner-section-heading h2 {
  max-width: 440px;
}

.partner-body,
.partner-criterion p,
.partner-steps p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--partner-muted);
}

.partner-section-heading .partner-body {
  max-width: 440px;
  margin-top: 28px;
}

.partner-criterion {
  padding: 28px 0;
}

.partner-criterion:first-child {
  padding-top: 0;
}

.partner-criterion:last-child {
  padding-bottom: 0;
}

.partner-criterion + .partner-criterion {
  border-top: 1px solid var(--partner-rule);
}

.partner-criterion h3,
.partner-steps h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}

.partner-process {
  border-top: 1px solid var(--partner-rule);
  padding-top: 76px;
  padding-bottom: 84px;
}

.partner-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: 90px;
}

.partner-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}

.partner-steps li {
  padding-right: 36px;
}

.partner-steps li + li {
  border-left: 1px solid var(--partner-rule);
  padding-left: 36px;
}

.partner-steps li:last-child {
  padding-right: 0;
}

.partner-step-number {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--partner-accent);
  margin-bottom: 28px;
}

.partner-conversation {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 90px;
  border-top: 1px solid var(--partner-accent);
  padding-top: 64px;
  padding-bottom: 110px;
  scroll-margin-top: 32px;
}

.partner-conversation h2 {
  max-width: 560px;
}

.partner-contact-action {
  padding-top: 4px;
}

.partner-contact-action .btn {
  margin-top: 28px;
}

.partner-email {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 8px 0;
  color: var(--partner-muted);
  font-size: 14px;
  line-height: 1.6;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.partner-email:hover {
  color: var(--ink);
}

@media (max-width: 1000px) {
  .partner-hero {
    padding-top: 85px;
    padding-bottom: 64px;
  }

  .partner-hero-bottom {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .partner-fit {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .partner-section-heading h2,
  .partner-section-heading .partner-body {
    max-width: 660px;
  }

  .partner-process-heading,
  .partner-conversation {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .partner-process {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .partner-process-heading .partner-body,
  .partner-contact-action .partner-body {
    max-width: 660px;
  }

  .partner-steps li {
    padding-right: 24px;
  }

  .partner-steps li + li {
    padding-left: 24px;
  }

  .partner-conversation {
    padding-top: 54px;
    padding-bottom: 85px;
  }
}

@media (max-width: 700px) {
  .partner-hero {
    padding-top: 65px;
    padding-bottom: 50px;
  }

  .partners-page .eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .partner-hero h1 {
    font-size: clamp(38px, 8vw, 44px);
    letter-spacing: -1.6px;
  }

  .partner-hero-bottom {
    margin-top: 28px;
  }

  .partner-lead {
    font-size: 16px;
  }

  .partner-fit,
  .partner-process {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .partner-steps {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 36px;
  }

  .partner-steps li,
  .partner-steps li + li {
    border-left: none;
    border-top: 1px solid var(--partner-rule);
    padding: 26px 0;
  }

  .partner-steps li:last-child {
    padding-bottom: 0;
  }

  .partner-step-number {
    margin-bottom: 18px;
  }

  .partner-conversation {
    padding-top: 46px;
    padding-bottom: 65px;
  }
}

/* =========================
   EDITORIAL PHOTOGRAPHY
========================= */
.editorial-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.about-photo {
  margin-top: 64px;
}
.about-photo img {
  aspect-ratio: 2.2;
  object-fit: cover;
  object-position: center 42%;
}
.about-photo + .about-services {
  margin-top: 64px;
}
.partner-photo {
  margin-top: 32px;
}

/* =========================
   PARTNER ENQUIRY FORM
========================= */
.partner-form-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
}
.partner-form-intro .partner-body {
  margin-top: 28px;
  max-width: 410px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.form-field-wide {
  grid-column: 1 / -1;
}
.form-field label {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid #b8b2a6;
  border-radius: 0;
  background: transparent;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}
.form-field textarea {
  resize: vertical;
}
.form-field select {
  padding-right: 6px;
}
.form-hint,
.form-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.form-field .form-hint {
  margin-bottom: 12px;
}
.form-note {
  margin-top: 24px;
}
#partner-form button {
  cursor: pointer;
  font-family: inherit;
}
#partner-form button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-heading {
  padding-top: 110px;
  padding-bottom: 76px;
}
.contact-heading h1 {
  max-width: 1000px;
  font-size: clamp(48px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2.5px;
}
.contact-title-accent {
  display: block;
  color: var(--accent);
  margin-top: 5px;
}
.contact-lead {
  max-width: 650px;
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 90px;
  padding-top: 66px;
  padding-bottom: 110px;
  border-top: 1px solid var(--rule);
}
.contact-main-email {
  display: inline-block;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.5;
  letter-spacing: -0.6px;
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent);
  overflow-wrap: anywhere;
}
.contact-main-email span,
.contact-main-email:hover {
  color: var(--accent);
}
.contact-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.contact-email-block .contact-body {
  margin-top: 26px;
  max-width: 440px;
}
@media (max-width: 1000px) {
  .partner-photo {
    max-width: 660px;
  }
  .partner-form-section,
  .contact-details {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .contact-heading {
    padding-top: 85px;
    padding-bottom: 64px;
  }
  .contact-details {
    padding-top: 54px;
    padding-bottom: 85px;
  }
}
@media (max-width: 700px) {
  .about-photo,
  .about-photo + .about-services {
    margin-top: 40px;
  }
  .about-photo img {
    aspect-ratio: auto;
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .contact-heading {
    padding-top: 65px;
    padding-bottom: 46px;
  }
  .contact-heading h1 {
    font-size: clamp(38px, 8vw, 44px);
    letter-spacing: -1.6px;
  }
  .contact-lead {
    font-size: 16px;
  }
  .contact-details {
    padding-top: 46px;
    padding-bottom: 65px;
  }
}

/* Contact services: general contact first, specialist details on demand. */
.contact-services-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 32px;
}
.contact-service-group + .contact-service-group {
  margin-top: 36px;
}
.contact-service-group h3 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #76643e;
  margin-bottom: 14px;
}
.contact-service {
  border-bottom: 1px solid var(--rule);
}
.contact-service summary {
  cursor: pointer;
  font-size: 18px;
  line-height: 1.5;
  padding: 18px 0;
}
.contact-service summary::marker {
  color: var(--accent);
  font-size: 13px;
}
.contact-service[open] summary {
  color: #76643e;
}
.contact-service-content {
  padding-bottom: 24px;
}
.contact-service-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 14px;
  padding: 8px 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}
.contact-service-more {
  display: block;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  text-underline-offset: 4px;
}
.contact-service-content a:hover {
  color: #76643e;
}

/* Contact and logistics photographs */
.contact-office-photo {
  margin-top: 38px;
}
.activities-port-photo {
  margin-top: 58px;
}
.activities-port-photo img {
  aspect-ratio: 2.2;
  object-fit: cover;
  object-position: center 55%;
}
.activities-port-photo + .activities-list {
  margin-top: 64px;
}
.activities-distribution-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.activities-distribution-photos img {
  height: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}
.activities-products-photo img {
  object-position: 65% center;
}
@media (max-width: 700px) {
  .contact-office-photo {
    margin-top: 28px;
  }
  .activities-port-photo,
  .activities-port-photo + .activities-list,
  .activities-distribution-photos {
    margin-top: 40px;
  }
  .activities-distribution-photos {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .activities-port-photo img,
  .activities-distribution-photos img {
    height: auto;
    aspect-ratio: auto;
  }
}
:root { color-scheme: light; }
[hidden] { display: none !important; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 10; padding: 14px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.menu-toggle { display: none; }
.lang-btn { position: relative; }
@media (hover: hover) and (pointer: fine) and (min-width: 701px) {
  .lang-btn::after { content: ''; position: absolute; width: 26px; height: 13px; top: calc(100% + 3px); left: 50%; transform: translateX(-50%); background-size: contain; opacity: 0; pointer-events: none; }
  .lang-btn[data-lang='fr']::after { background-image: url('images/language-fr.svg'); }
  .lang-btn[data-lang='en']::after { background-image: url('images/language-en.svg'); }
  .lang-btn:hover::after, .lang-btn:focus-visible::after { opacity: 1; }
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer-legal a, .footer-legal button { color: var(--footer-muted); }
.footer-legal button { background: none; border: 0; font: inherit; cursor: pointer; }
.form-privacy a, .legal-content a { color: inherit; text-underline-offset: 4px; }
.legal-page { padding: 90px 0 100px; }
.legal-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 90px; }
.legal-heading h1 { font-size: clamp(38px, 4vw, 58px); font-weight: 500; line-height: 1.08; letter-spacing: -1.6px; overflow-wrap: anywhere; }
.legal-content { max-width: 740px; }
.legal-content section + section { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rule); }
.legal-content h2 { font-size: 23px; font-weight: 500; line-height: 1.3; margin-bottom: 16px; }
.legal-content p { font-size: 16px; line-height: 1.8; color: var(--muted); overflow-wrap: anywhere; }
.legal-content p + p, .legal-related { margin-top: 18px; }
@media (max-width: 1000px) {
  .legal-layout { grid-template-columns: minmax(0, 1fr); gap: 44px; }
}

/* Mobile navigation is available without JavaScript; JS progressively collapses it. */
@media (max-width: 700px) {
  .nav { height: auto; min-height: 75px; flex-wrap: wrap; padding: 14px 0; }
  .header .logo { width: 140px; }
  .nav-right { display: contents; }
  .language-switcher { order: 2; margin-left: auto; margin-right: 10px; gap: 3px; }
  .lang-btn { min-height: 40px; }
  .menu-toggle:not([hidden]) { order: 3; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 40px; height: 40px; border: 1px solid var(--light-rule); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 18px; height: 1px; background: var(--ink); }
  .menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .header nav { order: 4; display: grid; grid-template-columns: 1fr; width: 100%; gap: 8px; padding: 16px 0 4px; }
  .header nav a { margin: 0; padding: 15px 10px; line-height: 1.2; }
  .header.mobile-menu-ready nav { display: none; }
  .header.mobile-menu-ready.menu-open nav { display: grid; }
.legal-page { padding: 58px 0 65px; }
}
/* Editorial homepage — existing ivory / black / bronze palette. */
.home-page h1, .home-page h2, .home-page h3 { font-weight: 500; }
.home-page h2 { font-size: clamp(32px, 3.25vw, 48px); line-height: 1.12; letter-spacing: -1.5px; }
.home-page .bronze { color: var(--accent); }
.film-heading { display: flex; justify-content: space-between; align-items: end; gap: 36px; padding-top: 48px; padding-bottom: 34px; }
.film-heading .eyebrow { margin-bottom: 20px; font-size: 11px; letter-spacing: 2.5px; }
.film-heading h1 { font-size: clamp(40px, 4.4vw, 64px); line-height: 1.04; letter-spacing: -2px; }
.film-heading h1 span { display: block; }
.editorial-link { display: inline-flex; align-items: center; gap: 22px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 14px; line-height: 1.5; color: var(--ink); text-decoration: none; width: fit-content; }
.editorial-link span:last-child { color: var(--accent); transition: transform .25s ease; }
.editorial-link:hover span:last-child { transform: translate(3px, -3px); }
.editorial-link:hover { border-color: var(--accent); }
.film-heading > .editorial-link { flex-shrink: 0; }
.film-stage { position: relative; aspect-ratio: 2.4; overflow: hidden; background: #24291e; }
.film-stage video, .film-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.film-stage video { opacity: 0; transition: opacity .4s ease; }
.film-stage.is-playing video, .film-stage.has-played video { opacity: 1; }
.film-control { position: absolute; bottom: 22px; right: 22px; padding: 12px 17px; border: 1px solid #ffffff80; color: white; background: #111d; font: inherit; font-size: 12px; cursor: pointer; min-height: 44px; }
.film-control:focus-visible { outline-color: white; }
.editorial-section { padding-top: 100px; padding-bottom: 100px; }
.home-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 110px; }
.editorial-copy p, .section-intro, .home-partner p:not(.eyebrow) { font-size: 17px; color: var(--muted); line-height: 1.8; }
.editorial-copy p + p { margin-top: 24px; }
.editorial-copy .editorial-link { margin-top: 24px; }
.market-section { background: #efede6; }
.market-section h2 { max-width: 760px; }
.market-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px; margin-top: 60px; }
.market-stat { border-top: 1px solid #bfb8a9; padding-top: 28px; display: grid; grid-template-rows: subgrid; grid-row: span 2; row-gap: 0; }
.stat-value { display: block; font-size: clamp(34px, 3.45vw, 53px); letter-spacing: -2px; line-height: 1.1; font-variant-numeric: tabular-nums; white-space: normal; }
.stat-currency, .stat-value[data-value="60"] { white-space: nowrap; }
.market-stat p { max-width: 270px; font-size: 14px; line-height: 1.75; color: var(--muted); margin-top: 26px; }
.market-sources { margin-top: 45px; font-size: 11px; color: var(--muted); line-height: 1.7; }
.market-sources > div { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 8px; }
.market-sources .editorial-link { font-size: 11px; gap: 8px; padding: 4px 0; }
.section-heading-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 28px 60px; }
.section-heading-row .eyebrow { flex-basis: 100%; margin-bottom: -8px; }
.section-heading-row h2 { max-width: 680px; }
.section-intro { max-width: 480px; }
.role-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px; margin-top: 52px; list-style: none; }
.role-list li { border-top: 1px solid var(--rule); padding-top: 22px; }
.role-number { font-size: 11px; letter-spacing: 2px; color: var(--accent); }
.role-list h3 { margin: 28px 0 18px; font-size: 23px; line-height: 1.2; letter-spacing: -.5px; }
.role-list p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.immersive-sequence { position: relative; height: clamp(400px, 48vw, 660px); overflow: hidden; background: #302c21; }
.immersive-photo { position: absolute; inset: -18px 0; }
.immersive-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transform: translateY(var(--image-shift, 0px)) scale(1.025); }
.immersive-sequence::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, #000c); pointer-events: none; }
.immersive-caption { position: absolute; z-index: 1; bottom: 50px; left: 0; right: 0; color: white; }
.immersive-caption h2 { max-width: 640px; }
.immersive-caption .eyebrow { color: #e0d0ae; margin-bottom: 20px; }
.universe-composition { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 90px; margin-top: 50px; align-items: center; }
.universe-images { display: grid; grid-template-columns: 1fr .7fr; gap: 18px; align-items: end; }
.universe-images > figure:first-child { aspect-ratio: .85; overflow: hidden; }
.universe-images > figure:first-child img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
/* Crop the existing still life to the produce only, excluding the branded container. */
.universe-fresh { aspect-ratio: 400 / 225; position: relative; overflow: hidden; margin-bottom: 36px; }
.universe-fresh img { position: absolute; width: 384%; height: 455.1111%; max-width: none; left: -147.5%; top: -288.8889%; }
.universe-list { list-style: none; }
.universe-list li { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.universe-list li:first-child { border-top: 1px solid var(--rule); }
.universe-list h3 { font-size: 19px; line-height: 1.4; }
.universe-note { margin-top: 28px; font-size: 12px; line-height: 1.7; color: var(--muted); max-width: 760px; }
.home-partner { border-top: 1px solid var(--rule); }
.home-partner .editorial-section { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.home-partner h2 { max-width: 740px; }
.home-partner p:not(.eyebrow) { max-width: 670px; margin-top: 24px; }
.home-partner .btn { flex-shrink: 0; gap: 20px; }
.btn { transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease; }
.btn:not(:disabled):hover { transform: translateY(-2px); }
.footer-socials { display: flex; gap: 16px; margin-top: 26px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--footer-muted); cursor: default; }
.legal-date { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 28px; }
.form-email-action { margin-top: 16px; }
.header nav a:focus-visible { border-color: var(--accent); }
/* The bronze palette is preserved; small text uses a darker tone for contrast. */
.eyebrow, .lang-btn.active, .header nav a.nav-active, .header nav a:hover { color: #78653e; }
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready { opacity: 0; transform: translateY(15px); transition: opacity .65s ease, transform .65s ease; }
  .reveal-ready.is-visible { opacity: 1; transform: none; }
}
@media (max-width: 1100px) {
  .home-intro { gap: 60px; }
  .market-stats, .role-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .stat-value { font-size: 49px; }
  .universe-composition { gap: 44px; }
}
@media (max-width: 700px) {
  .film-heading { display: block; padding-top: 34px; padding-bottom: 26px; }
  .film-heading h1 { font-size: clamp(34px, 8.6vw, 47px); letter-spacing: -1.5px; }
  .film-heading .eyebrow { font-size: 10px; line-height: 1.7; letter-spacing: 1.5px; }
  .film-heading > .editorial-link { margin-top: 16px; }
  .film-stage { aspect-ratio: 16 / 10; }
  .film-control { bottom: 12px; right: 12px; }
  .editorial-section { padding-top: 60px; padding-bottom: 60px; }
  .home-intro, .universe-composition { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .home-page h2 { font-size: 34px; letter-spacing: -1px; }
  .home-page .eyebrow { font-size: 11px; line-height: 1.7; letter-spacing: 2.2px; margin-bottom: 22px; }
  .home-page .section-heading-row .eyebrow { margin-bottom: -6px; }
  .editorial-copy p, .section-intro, .home-partner p:not(.eyebrow) { font-size: 16px; }
  .market-stats, .role-list { gap: 30px 24px; margin-top: 36px; }
  .stat-value { font-size: clamp(26px, 7.4vw, 43px); letter-spacing: -1.5px; }
  .market-stat p { font-size: 13px; margin-top: 16px; }
  .role-list h3 { font-size: 21px; }
  .immersive-sequence { height: 430px; }
  .immersive-caption { bottom: 34px; }
  .immersive-photo img { object-position: 45% center; }
  .home-partner .editorial-section { display: block; }
  .home-partner .btn { margin-top: 30px; }
}
@media (max-width: 360px) {
  .role-list { grid-template-columns: minmax(0, 1fr); }
  .market-stats { gap: 30px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready { opacity: 1; transform: none; }
  .immersive-photo img { transform: none; }
  .btn:not(:disabled):hover, .editorial-link:hover span:last-child { transform: none; }
}
/* Keep small bronze labels and interactive text readable on ivory. */
.role-number, .activity-number, .service-number, .partner-step-number,
.partner-text-link:hover { color: #78653e; }
.btn-primary:hover { background: #78653e; border-color: #78653e; }

/* Homepage hero: film and editorial content form a single composition. */
.film-hero .film-stage { width: 100%; max-width: none; height: clamp(540px, 76svh, 820px); aspect-ratio: auto; }
.film-hero .film-stage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0003, transparent 78%), linear-gradient(0deg, #000b, #0004 36%, transparent 70%); pointer-events: none; }
.film-hero .film-heading { position: absolute; z-index: 2; left: 0; right: 0; bottom: 60px; display: block; padding: 0; color: var(--surface); }
.film-hero .film-heading > div { max-width: 800px; }
.film-hero .film-heading h1 { font-size: clamp(40px, 4.2vw, 62px); line-height: 1.08; letter-spacing: -1.8px; }
.film-hero .film-heading .eyebrow { color: var(--surface); font-size: 11px; letter-spacing: 2.5px; margin-bottom: 22px; line-height: 1.7; }
.film-hero .film-heading .bronze { color: #d6c29a; }
.film-hero .film-heading > .editorial-link { margin-top: 26px; color: var(--surface); border-color: #d6c29a99; gap: 30px; min-height: 46px; }
.film-hero .film-heading > .editorial-link span:last-child { color: #d6c29a; }
.film-hero .film-heading > .editorial-link:focus-visible { outline-color: var(--surface); }
.film-hero .film-control { z-index: 3; bottom: 30px; right: 5%; }
.film-hero .film-stage.is-loop-transition video { opacity: 0; }
@media (max-width: 700px) {
  .film-hero .film-stage { height: clamp(500px, 76svh, 660px); }
  .film-hero .film-stage video, .film-hero .film-poster { object-position: 48% center; }
  .film-hero .film-heading { bottom: 88px; width: 88%; }
  .film-hero .film-heading h1 { font-size: clamp(29px, 7.5vw, 43px); letter-spacing: -1px; max-width: 510px; }
  .film-hero .film-heading .eyebrow { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 18px; max-width: 300px; }
  .film-hero .film-heading > .editorial-link { margin-top: 20px; font-size: 14px; }
  .film-hero .film-control { bottom: 22px; right: 6%; }
}
@media (prefers-reduced-motion: reduce) {
  .film-hero .film-stage video { transition: none; }
}
