:root {
  --gold: #c8923a;
  --gold-strong: #d9a447;
  --gold-soft: rgba(201, 146, 58, 0.16);
  --gold-border: rgba(201, 146, 58, 0.42);
  --ink: #2d2d2d;
  --ink-soft: #5a544d;
  --warm-light: #f4f1eb;
  --warm-panel: rgba(255, 251, 243, 0.78);
  --warm-panel-strong: rgba(255, 248, 238, 0.9);
  --dark: #171412;
  --dark-soft: rgba(22, 18, 16, 0.88);
  --shadow: 0 14px 38px rgba(19, 14, 10, 0.14);
  --shadow-strong: 0 22px 58px rgba(19, 14, 10, 0.22);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  --hero-bg-x: 50%;
  --hero-bg-y: 47%;
  --hero-lockup-left: 50%;
  --hero-lockup-top: 41.8%;
  --hero-lockup-width: min(700px, 58vw);
  --hero-o-left: 60.35%;
  --hero-o-top: 24.82%;
  --hero-o-size: 23.28%;
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 637;
  min-height: 220px;
  margin-bottom: 20px;
  background-image: url("assets/backgrounds/Banniere Background.png");
  background-position: var(--hero-bg-x) top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.hero-overlay {

}
.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 22px 24px 24px;
}

.hero-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
  width: 100%;
  flex-wrap: wrap;
}
.hero-kicker {
  flex: 0 1 auto;
  margin: 0;
  color: rgba(255, 244, 220, 0.9);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-nav {
  display: flex;
  align-items: center;
  gap: calc(20px * 0.85);
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}
.hero-nav a {
  color: rgba(255, 247, 233, 0.82);
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: calc(13px * 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.hero-nav a:hover {
  color: #fff4d5;
}

.brand-lockup {
  position: absolute;
  left: var(--hero-lockup-left);
  top: var(--hero-lockup-top);
  transform: translate(-50%, -50%);
  width: var(--hero-lockup-width);
  aspect-ratio: 980 / 440;
  height: auto;
}
.brand-lockup img {
  position: absolute;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.42));
}
.logo-mojit {
  left: 15%;
  top: 0;
  width: 50%;
}
.logo-o {
  left: var(--hero-o-left);
  top: var(--hero-o-top);
  width: var(--hero-o-size);
}
.logo-video {
  right: 2.5%;
  bottom: 16%;
  width: 33%;
}

.hero-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: clamp(30px, 4.5vw, 60px);
  z-index: 2;
}
.hero-statement {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 246, 228, 0.92);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  white-space: normal;
  padding-left: 18px;
  border-left: 2px solid rgba(217, 164, 71, 0.72);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-links {
  position: absolute;
  right: 24px;
  bottom: clamp(24px, 3.5vw, 48px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: none;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  background: none;
  filter: drop-shadow(0 0 12px rgba(255, 206, 117, 0.28));
}

.page-bg {
  background-color: var(--warm-light);
  background-image: url("assets/backgrounds/Page background.png");
  background-position: left top;
  background-size: auto;
  background-repeat: repeat;
  padding-top: 0;
  position:relative;
  top:-5px;
}

.divider {
  position: relative;
  height: 18px;
  overflow: visible;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(to right, rgba(201, 146, 58, 0.75), rgba(217, 164, 71, 0.82), rgba(255, 199, 68, 0.75));
}
.divider::after {
  content: none;
}
/* Raw PNG only — no CSS background/filter; pulled up to touch banner */
.divider--hero {
  margin: -16px 0 0;
  padding: 0;
  height: auto;
  line-height: 0;
  font-size: 0;
  background: none;
  overflow: visible;
}
.divider--hero::before,
.divider--hero::after {
  content: none;
}
.divider-hero__img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}
.divider--intro {
  margin: 18px 0 8px;
}
.divider-cat-link {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 30;
  margin-right:-20px;
  display: block;
  width: clamp(64px, 7.5vw, 102px);
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}
.divider-cat-link:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}
.divider-cat {
  width: 75%;
  height: auto;
  display: block;
}
.divider-bottom::before {
  transform: translateY(-50%);
}

.intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0 14px;
}

.intro h1 {
  width: auto;
  max-width: 1200px;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(18px, 1.4vw, 30px);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.intro-copy {
  margin-left: 28px;
}
.intro-accent img {
  width: 78px;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.12));
}
.intro-accent {
  justify-self: end;
  margin-right: 18px;
}

.portfolio-status {
  padding: 14px 0 28px;
}
.portfolio-status__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 44px 12px;
}
.portfolio-status__tab {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 14px;
  border: 3px solid var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.16);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 2vw, 44px);
  line-height: 1;
}
.portfolio-status__topics {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(26px, 2vw, 42px);
  line-height: 1.1;
}
.portfolio-status__message {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 30px);
  font-style: regular;
  line-height: 1.12;
}
.portfolio-status__message p {
  margin: 0 0 32px;
}
.portfolio-status__message--fr {
  margin-top: 58px;
}

.section {
  padding: 20px 0 18px;
}
.section-label {
  display: inline-block;
  border: 3px solid var(--gold);
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 2.4vw, 52px);
  font-weight: 400;
  line-height: 1;
  padding: 12px 22px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.18);
}
.section-label--dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 213, 134, 0.82);
}
.section#video {
  --video-offset: 76px;
}

.institutional-card {
  max-width: 880px;
  padding: 18px 22px 20px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.68), rgba(255, 248, 238, 0.88));
  box-shadow: 0 10px 26px rgba(40, 29, 20, 0.08);
}
.institutional-card--inline {
  margin-left: var(--video-offset);
}
.institutional-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.institutional-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.68;
}
.institutional-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 146, 58, 0.55);
}
.institutional-link:hover {
  color: var(--gold);
}
.section-note {
  margin: 10px 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  font-style: italic;
  max-width: 900px;
}
.section-note-wide {
  max-width: 920px;
  margin-left: var(--video-offset);
  font-size: clamp(20px, 1.9vw, 32px);
  line-height: 1.4;
}
.subsection {
  margin: 46px 0 78px;
}
.subsection h2 {
  margin: 0 24px 24px var(--video-offset);
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--gold);
  font-size: clamp(25px, 2.0vw, 40px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.media-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.74), rgba(255, 249, 240, 0.94));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(201, 146, 58, 0.68);
}
.media-card__visual {
  position: relative;
  overflow: hidden;
}
.media-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 18, 16, 0.28), rgba(24, 18, 16, 0));
  transition: opacity 180ms ease;
}
.media-card:hover .media-card__visual::after {
  opacity: 0.65;
}
.media-card img {
  width: 100%;
  aspect-ratio: 443 / 248;
  object-fit: cover;
}
.media-card__body {
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
}
.media-card__eyebrow {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.media-card__title {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.media-card__text {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.media-card__cta {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-link-note {
  margin: 18px 0 0;
  text-align: right;
  color: var(--ink-soft);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}
.section-link-note a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 146, 58, 0.6);
}
.section-link-note a:hover {
  color: var(--gold);
}

section.intro.container {
  margin-top:-32px;
  padding-top:38px;
  margin-bottom: 28px;
}


.placeholder-block {
  margin-top: 24px;
}
.showcase-card {
  min-height: 220px;
  padding: 24px 24px 26px;
  border: 1px solid var(--gold-border);
  background: var(--warm-panel);
  box-shadow: var(--shadow);
}
.showcase-card--dark {
  background: linear-gradient(180deg, rgba(26, 22, 20, 0.92), rgba(18, 15, 14, 0.96));
  color: rgba(255, 250, 242, 0.92);
}
.showcase-card__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.showcase-card h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.showcase-card p:last-child {
  margin: 0;
  color: inherit;
  line-height: 1.7;
}

.contact-section {
  background: linear-gradient(to bottom, rgba(28, 24, 22, 0.94), rgba(14, 12, 11, 0.98));
  color: #fff;
  padding: 64px 0 80px;
  margin-top: -10px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: start;
}
.contact-copy {
  margin: 0;
  color: rgba(255, 251, 244, 0.84);
  font-size: 18px;
  line-height: 1.72;
  max-width: 580px;
}
.contact-copy--muted {
  margin-top: 14px;
  color: rgba(255, 244, 224, 0.62);
}
.contact-actions {
  display: grid;
  gap: 16px;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 211, 128, 0.46);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.contact-button:hover {
  background: rgba(201, 146, 58, 0.12);
  border-color: rgba(255, 211, 128, 0.9);
  transform: translateY(-2px);
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.footer-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-inner p { margin: 0; }
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-inner a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}
.footer-inner a:hover {
  color: #fff0ca;
}

@media (min-width: 1800px) {
  .hero {
    --hero-bg-x: 49.8%;
    --hero-bg-y: 48.6%;
    --hero-lockup-left: 50.2%;
    --hero-lockup-top: 41.9%;
    --hero-lockup-width: min(760px, 42vw);
    --hero-o-left: 60.74%;
    --hero-o-top: 24.56%;
    --hero-o-size: 23.52%;
    min-height: 260px;
    max-height: none;
    height: clamp(260px, 20vw, 420px);
  }
  .hero-inner {
    min-height: 260px;
    height: clamp(260px, 20vw, 420px);
  }
  .hero-content {
    bottom: clamp(36px, 5vw, 68px);
  }
  .social-links {
    bottom: clamp(28px, 4vw, 56px);
  }
}

@media (max-width: 1220px) {
  .hero {
    --hero-bg-x: 50.2%;
    --hero-bg-y: 49%;
    --hero-lockup-left: 49.9%;
    --hero-lockup-top: 41.9%;
    --hero-lockup-width: 60vw;
  }
  .container {
    width: min(var(--max), calc(100% - 40px));
  }
  .section#video {
    --video-offset: 0px;
  }
  .institutional-card--inline,
  .section-note-wide,
  .subsection h2 { margin-left: 0; }
  .card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .divider-cat-link {
    right: clamp(10px, 1.5vw, 18px);
  }
  .portfolio-status__tabs {
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .hero {
    --hero-bg-x: 50.9%;
    --hero-bg-y: 49.1%;
    --hero-lockup-left: 49.5%;
    --hero-lockup-top: 42%;
    --hero-lockup-width: 64vw;
  }
  .intro h1 {
    font-size: clamp(28px, 3.5vw, 40px);
	pading-top: 28px;
  }
}

@media (max-width: 860px) {
  .hero {
    --hero-bg-x: 51.7%;
    --hero-bg-y: 49.3%;
    --hero-lockup-left: 49.3%;
    --hero-lockup-top: 42.1%;
    --hero-lockup-width: 72vw;
    min-height: 180px;
  }
  .container { width: min(var(--max), calc(100% - 32px)); }
  .hero-inner {
    padding: 12px 10px 14px;
  }
  .hero-topbar {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }
  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .hero-nav {
    flex-wrap: wrap;
    gap: calc(8px * 0.85) calc(12px * 0.85);
    max-width: min(100%, 72vw);
    margin-left: auto;
    justify-content: flex-end;
  }
  .hero-nav a {
    font-size: calc(11px * 0.85);
    letter-spacing: 0.04em;
  }
  .hero-content {
    left: 10px;
    right: 10px;
    bottom: clamp(26px, 5%, 36px);
  }
  .hero-statement {
    white-space: normal;
    padding-left: 10px;
    font-size: clamp(11px, 2.8vw, 14px);
    max-width: calc(100% - 148px);
  }
  .social-links {
    right: 8px;
    bottom: clamp(20px, 4%, 30px);
    gap: 5px;
  }
  .social-links a {
    width: 32px;
    height: 32px;
  }
  .social-links a img {
    width: 54%;
    height: auto;
    margin: 0 auto;
  }
  .intro {
    grid-template-columns: 1fr;
    padding: 18px 0 20px;
		position:relative;
  }
  .intro-copy {
    margin-left: 0px;
  }
  .intro-accent { display: none; }
  .portfolio-status {
    padding: 8px 0 24px;
  }
  .portfolio-status__tabs {
    gap: 12px;
    margin-bottom: 30px;
  }
  .portfolio-status__tab {
    min-height: 42px;
    font-size: 24px;
  }
  .portfolio-status__topics {
    font-size: 22px;
  }
  .portfolio-status__message {
    font-size: 15px;
    line-height: 1.2;
  }
  .portfolio-status__message--fr {
    margin-top: 34px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-grid--3 {
    grid-template-columns: 1fr;
  }
  .section-note-wide {
    font-size: 18px;
  }
  .subsection h2 {
    font-size: 30px;
  }
  .divider:not(.divider--hero) {
    height: 16px;
    right: -20px;
    bottom: 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    --hero-bg-x: 52.3%;
    --hero-bg-y: 49.5%;
    --hero-lockup-left: 49%;
    --hero-lockup-top: 42.2%;
    --hero-lockup-width: 78vw;
    min-height: 140px;
  }
  .hero-inner {
    padding: 8px 8px 10px;
  }
  .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.11em;
  }
  .hero-nav {
    gap: 6px 8px;
  }
  .hero-nav a {
    font-size: calc(9px * 0.85);
    letter-spacing: 0.05em;
  }
  .hero-content {
    left: 6px;
    right: 6px;
    bottom: clamp(22px, 5%, 30px);
  }
  .hero-statement {
    max-width: calc(100% - 120px);
    font-size: 10px;
    line-height: 1.3;
    white-space: normal;
    padding-left: 7px;
    border-left-width: 2px;
  }
  .social-links {
    right: 5px;
    bottom: clamp(18px, 4%, 26px);
    gap: 3px;
  }
  .social-links a {
    width: 26px;
    height: 26px;
  }
  .social-links a img {
    width: 52%;
  }
  .section-label {
    border-width: 3px;
    padding: 10px 18px;
  }
  .intro h1 {
    font-size: 18px;
  }
  .portfolio-status__tabs {
    gap: 10px;
  }
  .portfolio-status__tab {
    min-height: 38px;
    padding: 7px 12px;
    border-width: 2px;
    font-size: 18px;
  }
  .portfolio-status__topics {
    font-size: 18px;
  }
  .portfolio-status__message {
    font-size: 16px;
  }
  .footer-inner {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .divider--intro {
    margin: 12px 0 6px;
  }
  .divider-cat-link {
    width: 50px;
    right: 10px;
    bottom: 10px;
  }
}

/* --- Contact captcha --- */
.contact-captcha {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.captcha-label {
  margin: 0;
  color: rgba(255, 246, 228, 0.82);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.captcha-input {
  width: 72px;
  padding: 12px 10px;
  background: rgba(255, 248, 238, 0.08);
  border: 1px solid rgba(201, 146, 58, 0.5);
  color: #fff4d5;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.captcha-input:focus {
  border-color: var(--gold);
}
.captcha-btn {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(201, 146, 58, 0.6);
  color: rgba(255, 246, 228, 0.9);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms, color 160ms;
}
.captcha-btn:hover {
  border-color: var(--gold);
  color: #fff0ca;
}
.captcha-error {
  margin: 0;
  color: rgba(220, 80, 80, 0.9);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  min-height: 14px;
}
.contact-revealed {
  flex-direction: column;
  gap: 12px;
}
