:root {
  --black: #000000;
  --white: #ffffff;
  --text-dark: #050505;
  --muted-dark: rgba(5, 5, 5, .58);
  --muted-light: rgba(255, 255, 255, .62);
  --line-dark: rgba(5, 5, 5, .12);
  --line-light: rgba(255, 255, 255, .13);
  --red: #d71920;
  --green: #70ba45;
  --gold: #b89b5e;
  --font: "Montserrat", "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: var(--font);
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
button, input, textarea, select { font-family: inherit; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 78px);
  color: #fff;
  transition: color .35s ease, background .35s ease, border-color .35s ease;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.56), transparent);
  opacity: 1;
  transition: opacity .35s ease;
}
.topbar.is-light {
  color: #050505;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(5,5,5,.08);
  backdrop-filter: blur(18px);
}
.topbar.is-light::before { opacity: 0; }

.topbar.is-light .main-nav > a,
.topbar.is-light .main-nav > .dropdown > .nav-link,
body.subpage .main-nav > a,
body.subpage .main-nav > .dropdown > .nav-link {
  color: var(--gold);
  opacity: 1;
}

.topbar.is-light .dropdown-toggle::after,
body.subpage .dropdown-toggle::after {
  border-right-color: var(--gold);
  border-bottom-color: var(--gold);
}

.topbar.is-light .dropdown-menu a,
body.subpage .dropdown-menu a {
  color: #050505;
}

.brand,
.main-nav,
.nav-toggle { position: relative; z-index: 2; }
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: auto;
  height: clamp(32px, 4vw, 46px);
  transition: filter .35s ease, opacity .35s ease, transform .25s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
}
.topbar.is-light .brand-logo {
  filter: invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.main-nav > a,
.main-nav > .dropdown > .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  opacity: .9;
  transition: opacity .25s ease, color .25s ease;
}
.main-nav > a:hover,
.main-nav > .dropdown > .nav-link:hover,
.main-nav > .dropdown.is-open > .nav-link {
  opacity: 1;
}
.main-nav > a::after,
.main-nav > .dropdown > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav > a:hover::after,
.main-nav > .dropdown:hover > .nav-link::after,
.main-nav > .dropdown:focus-within > .nav-link::after,
.main-nav > .dropdown.is-open > .nav-link::after {
  transform: scaleX(1);
}
.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.nav-dropdown {
  position: relative;
}
.dropdown-toggle {
  gap: 8px;
}
.dropdown-toggle::before {
  content: "";
  position: absolute;
}
.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}
.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown:focus-within .dropdown-toggle::after,
.nav-dropdown.is-open .dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(10,10,10,.96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.topbar.is-light .dropdown-menu,
body.subpage .dropdown-menu {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(5,5,5,.1);
  box-shadow: 0 18px 48px rgba(5,5,5,.12);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  opacity: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.dropdown-menu a::after {
  display: none;
}
.dropdown-menu a:hover {
  background: rgba(184,155,94,.12);
  color: var(--gold);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
}

.section {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  opacity: .42;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.88) 28%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.52) 100%),
    radial-gradient(ellipse at 74% 48%, rgba(255,255,255,.02) 0 24%, rgba(0,0,0,.26) 54%, rgba(0,0,0,.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px clamp(24px, 5vw, 78px) 90px;
}
.hero-copy {
  width: min(620px, 58vw);
}
.eyebrow,
.section-label {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 800;
}
.eyebrow { color: rgba(255,255,255,.58); }
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 5.8vw, 104px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 .title-gold {
  color: #b89b5e;
}
.lead {
  margin: 0;
  max-width: 880px;
  white-space: nowrap;
  color: var(--muted-light);
  font-size: clamp(20px, 2.15vw, 31px);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn {
  --hover-color: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(12,12,14,.72);
  color: rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.btn:hover {
  transform: translateY(-2px);
  color: #050505;
  background: var(--hover-color);
  border-color: var(--hover-color);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--hover-color) 28%, transparent);
}
.btn-agroline { --hover-color: #ff7a1a; }
.btn-defence { --hover-color: #c7a14a; }
.btn-it { --hover-color: #70d8ff; }

.hero-media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: clamp(18px, 2.4vw, 48px);
  bottom: 0;
  width: min(50vw, 860px);
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  -webkit-mask-image: radial-gradient(ellipse at 58% 50%, #000 0 68%, rgba(0,0,0,.92) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0 68%, rgba(0,0,0,.92) 82%, transparent 100%);
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  filter: brightness(1.16) contrast(1.08) saturate(1.02);
  transform: scale(1.08) translateX(12%);
  transform-origin: right center;
}

.white-section {
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
}
.white-inner {
  width: 100%;
  padding: 128px clamp(24px, 5vw, 78px) 80px;
}
.section-label {
  color: rgba(5,5,5,.48);
}
.white-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 76px);
}
.white-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 7.4vw, 118px);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 900;
}
.white-heading p {
  margin: 0;
  max-width: 330px;
  color: var(--muted-dark);
  line-height: 1.55;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.system-card {
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--line-dark);
  background: #fff;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.system-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  opacity: .035;
}
.system-card:hover {
  transform: translateY(-7px);
  border-color: rgba(5,5,5,.28);
  background: #f7f7f7;
}
.system-card.agro { --accent: var(--green); }
.system-card.defence { --accent: var(--red); }
.card-number {
  color: rgba(5,5,5,.38);
  font-size: 12px;
  font-weight: 900;
}
.card-kicker {
  margin: 0 0 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 800;
}
.system-card h3 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
  font-weight: 900;
}
.system-card p:not(.card-kicker) {
  max-width: 390px;
  color: var(--muted-dark);
  line-height: 1.6;
  margin: 0;
}
.card-link {
  align-self: flex-start;
  border: 1px solid rgba(5,5,5,.16);
  border-radius: 999px;
  padding: 12px 18px;
  color: rgba(5,5,5,.68);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 800;
}
.contact-strip {
  margin-top: 42px;
  min-height: 84px;
  border-top: 1px solid rgba(5,5,5,.12);
  border-bottom: 1px solid rgba(5,5,5,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
}
.contact-strip span { color: rgba(5,5,5,.42); }
.contact-strip a {
  font-size: clamp(16px, 2vw, 26px);
  letter-spacing: -.02em;
  text-transform: none;
}


.about-section {
  background: #fff;
  color: #050505;
}
.about-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: start;
  padding-top: clamp(18px, 3vw, 44px);
}
.about-title h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(54px, 8vw, 130px);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 900;
}
.about-content {
  max-width: 980px;
  padding-top: clamp(4px, 1vw, 18px);
}
.about-content p {
  margin: 0;
  color: rgba(5,5,5,.74);
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.55;
  letter-spacing: -.02em;
}
.about-content p + p {
  margin-top: 28px;
}
.about-actions {
  margin-top: clamp(34px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(5,5,5,.12);
  padding-top: 28px;
}
.about-btn {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid rgba(184,155,94,.65);
  color: #050505;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.about-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(5,5,5,.58);
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
  opacity: .9;
}
.social-icon-link svg {
  width: 100%;
  height: 100%;
  display: block;
}
.social-icon-link:hover {
  color: var(--gold);
  transform: translateY(-1px) scale(1.06);
  opacity: 1;
}

@media (max-width: 1040px) {
  html {  }
  .hero-copy { width: min(680px, 100%); }
  .hero-media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: clamp(18px, 2.4vw, 48px);
  bottom: 0;
  width: min(50vw, 860px);
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  -webkit-mask-image: radial-gradient(ellipse at 58% 50%, #000 0 62%, rgba(0,0,0,.94) 76%, transparent 98%);
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0 62%, rgba(0,0,0,.94) 76%, transparent 98%);
}
  .white-heading,
  .system-grid,
  .about-layout { grid-template-columns: 1fr; }
  .white-heading { display: block; }
  .white-heading p { margin-top: 18px; }
  .about-content { max-width: 100%; padding-top: 0; }
  .system-grid { display: grid; }
}

@media (max-width: 760px) {
  .topbar { height: 74px; padding: 0 18px; }
  .brand-logo { max-width: min(54vw, 220px); height: auto; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(0,0,0,.94);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .22s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a,
  .main-nav > .dropdown > .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 15px;
  }
  .main-nav > a::after,
  .main-nav > .dropdown > .nav-link::after {
    display: none;
  }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0;
    padding: 0 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav-dropdown.is-open .dropdown-menu {
    max-height: 220px;
    padding: 0 0 10px 10px;
  }
  .dropdown-menu a {
    padding: 12px 14px;
    color: rgba(255,255,255,.82);
  }
  .hero-inner { padding: 110px 18px 74px; }
  .hero h1 { font-size: clamp(42px, 12vw, 68px); }
  .hero-media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: clamp(18px, 2.4vw, 48px);
  bottom: 0;
  width: min(50vw, 860px);
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  -webkit-mask-image: radial-gradient(ellipse at 58% 50%, #000 0 62%, rgba(0,0,0,.94) 76%, transparent 98%);
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0 62%, rgba(0,0,0,.94) 76%, transparent 98%);
}
  .scroll-hint { display: none; }
  .white-inner { padding: 104px 18px 64px; }
  .white-heading h2 { font-size: clamp(46px, 14vw, 74px); }
  .system-card { min-height: 260px; }
  .contact-strip { align-items: flex-start; flex-direction: column; justify-content: center; }
  .about-actions { align-items: flex-start; flex-direction: column; }
  .social-links { flex-wrap: wrap; }
}

@media (max-width: 460px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
}



/* Page-to-page transition: smooth no-glitch fade */
.page-transition-panel {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(184,155,94,.16), transparent 32%),
    #050505;
  transform: translateZ(0);
  will-change: opacity;
  backface-visibility: hidden;
}

.page-transition-panel.is-visible {
  visibility: visible;
}

.page-transition-panel.is-leave {
  visibility: visible;
  opacity: 1;
  transition: opacity .26s ease;
}

.page-transition-panel.is-enter {
  visibility: visible;
  opacity: 0;
  transition: opacity .34s ease;
}

body.page-transitioning {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-panel {
    transition: none !important;
  }
}

body.subpage {
  background: #fff;
  color: #050505;
}
body.subpage .topbar {
  color: #050505;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(5,5,5,.08);
  backdrop-filter: blur(18px);
}
body.subpage .topbar::before { opacity: 0; }
body.subpage .brand-logo { filter: invert(1); }

.subpage-main {
  background: #fff;
  color: #050505;
}
.subpage-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px clamp(24px, 5vw, 78px) 80px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -26vw;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(184,155,94,.08);
  pointer-events: none;
}
.subpage-kicker {
  color: rgba(5,5,5,.48);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 22px;
}
.subpage-hero h1 {
  margin: 0;
  max-width: 980px;
  color: var(--gold);
  font-size: clamp(58px, 10vw, 150px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 900;
}
.subpage-hero p {
  margin: clamp(28px, 4vw, 54px) 0 0;
  max-width: 980px;
  color: rgba(5,5,5,.72);
  font-size: clamp(22px, 2.3vw, 38px);
  line-height: 1.35;
  letter-spacing: -.035em;
}
.subpage-content {
  padding: 84px clamp(24px, 5vw, 78px) 96px;
  border-top: 1px solid rgba(5,5,5,.10);
}
.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.subpage-grid article {
  min-height: 300px;
  border: 1px solid rgba(5,5,5,.12);
  padding: clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}
.subpage-grid article span {
  color: rgba(5,5,5,.38);
  font-size: 12px;
  font-weight: 900;
}
.subpage-grid h2 {
  margin: 36px 0 16px;
  max-width: 360px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 900;
}
.subpage-grid p {
  margin: 0;
  color: rgba(5,5,5,.62);
  font-size: 16px;
  line-height: 1.65;
}
.subpage-actions {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(5,5,5,.12);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about-btn.filled {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 1040px) {
  .subpage-grid { grid-template-columns: 1fr; }
  .subpage-grid article { min-height: 240px; }
}
@media (max-width: 760px) {
  .subpage-hero { padding: 112px 18px 72px; }
  .subpage-content { padding: 64px 18px 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html { scroll-snap-type: none; }
}


.site-footer {
  background: #050505;
  color: #fff;
  padding: clamp(34px, 4.5vw, 58px) clamp(24px, 5vw, 56px) 14px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(250px, .62fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.footer-brand img {
  display: block;
  width: clamp(145px, 14vw, 210px);
  height: auto;
}
.footer-text {
  max-width: 440px;
  margin: 18px 0 18px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
  opacity: .9;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}
.footer-social-link svg { width: 100%; height: 100%; display: block; }
.footer-social-link:hover { color: var(--gold); transform: translateY(-1px) scale(1.06); opacity: 1; }
.footer-links-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: clamp(18px, 3vw, 44px);
}
.footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  transition: color .22s ease, transform .22s ease;
}
.footer-col a:hover { color: var(--gold); transform: translateX(2px); }
.footer-bottom {
  max-width: 1120px;
  margin: clamp(22px, 3.5vw, 34px) auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.16);
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: 12px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .site-footer { padding-left: 18px; padding-right: 18px; }
  .footer-links-col { grid-template-columns: 1fr; gap: 28px; }
  .footer-text, .footer-col a { font-size: 14px; }
}


/* Native scroll optimisation: no JS wheel hijacking */
[data-section] {
  scroll-margin-top: 0;
  backface-visibility: hidden;
}
.hero-media,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  filter: brightness(1.16) contrast(1.08) saturate(1.02);
  transform: scale(1.08) translateX(12%);
  transform-origin: right center;
}
@media (max-width: 860px) {
  html { scroll-snap-type: none; }
}

/* Native scroll optimization */
html {
  scroll-behavior: smooth;
}
body {
  overscroll-behavior-y: auto;
}
.section,
.site-footer {
  min-height: auto;
}
.hero,
.white-section {
  min-height: 100vh;
}
.site-footer {
  min-height: auto;
}


/* Redesigned About Us page */
.about-page {
  background: #fff;
  color: #050505;
}

.about-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050505;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.78) contrast(1.04) saturate(.92);
  transform: scale(1.01);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,.08) 100%),
    linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.08) 56%);
}

.about-hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(70px, 10vh, 116px);
  color: #fff;
}

.about-hero-content h1 {
  margin: 10px 0 18px;
  font-size: clamp(62px, 10vw, 152px);
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.about-hero-content p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 2vw, 29px);
  line-height: 1.45;
}

.about-story-section {
  padding: clamp(78px, 10vw, 140px) clamp(24px, 5vw, 56px);
  background: #fff;
}

.about-story-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(68px, 7vw, 112px);
  align-items: start;
}

.about-story-grid h2,
.values-header h2 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: .96;
  letter-spacing: -.052em;
  text-transform: uppercase;
}

.about-story-heading,
.about-story-text {
  min-width: 0;
}

.about-story-heading h2 {
  width: 100%;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.about-story-image {
  margin: clamp(34px, 4.5vw, 64px) 0 0;
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  border-radius: 34px;
  background: #f1f1f1;
}

.about-story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 34px;
}

.about-story-text {
  display: grid;
  gap: 22px;
  padding-top: clamp(26px, 2.2vw, 34px);
}

.about-story-text p {
  margin: 0;
  color: rgba(5,5,5,.68);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.about-mission-section {
  padding: clamp(78px, 9vw, 128px) clamp(24px, 5vw, 56px);
  background:
    radial-gradient(circle at 20% 20%, rgba(184,155,94,.18), transparent 34%),
    #050505;
  color: #fff;
}

.about-mission-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

.mission-card {
  min-height: 360px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.mission-card.large {
  min-height: 460px;
}

.mission-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mission-card h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4.4vw, 68px);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.mission-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.68;
}

.about-values-section {
  padding: clamp(78px, 10vw, 140px) clamp(24px, 5vw, 56px);
  background: #f4f1ea;
}

.values-header {
  max-width: 1180px;
  margin: 0 auto clamp(42px, 6vw, 74px);
}

.values-header h2 {
  max-width: 880px;
}

.values-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values-grid article {
  min-height: 255px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(5,5,5,.08);
}

.values-grid article:nth-child(1),
.values-grid article:nth-child(5) {
  grid-column: span 2;
}

.values-grid span {
  display: block;
  margin-bottom: 22px;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.values-grid p {
  margin: 0;
  color: rgba(5,5,5,.64);
  font-size: 16px;
  line-height: 1.68;
}

.about-values-section .subpage-actions {
  max-width: 1180px;
  margin: 48px auto 0;
}

@media (max-width: 1080px) and (min-width: 901px) {
  .about-story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    gap: 56px;
  }

  .about-story-grid h2 {
    font-size: clamp(42px, 5.1vw, 56px);
  }
}

@media (max-width: 900px) {
  .about-story-grid,
  .about-mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article:nth-child(1),
  .values-grid article:nth-child(5) {
    grid-column: auto;
  }

  .mission-card,
  .mission-card.large {
    min-height: auto;
  }

  .about-hero-content {
    width: min(100% - 36px, 1120px);
  }

  .about-story-text {
    padding-top: 0;
  }

  .about-story-image,
  .about-story-image img {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .about-hero-new {
    min-height: 86vh;
  }

  .about-hero-content {
    padding-bottom: 54px;
  }

  .about-hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18)),
      linear-gradient(0deg, rgba(0,0,0,.78), transparent 62%);
  }

  .values-grid article {
    min-height: auto;
  }
}


/* Contacts page */
.contact-page {
  background: #fff;
  color: #050505;
}

.contact-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 30%, rgba(184,155,94,.22), transparent 34%),
    linear-gradient(135deg, #050505 0%, #101010 52%, #1b1710 100%);
  color: #fff;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% 38%;
  height: 72%;
  background: radial-gradient(ellipse at center, rgba(184,155,94,.20), transparent 62%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  padding: 118px 0 72px;
}

.contact-hero-copy h1 {
  margin: 10px 0 22px;
  font-size: clamp(64px, 10vw, 150px);
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.contact-hero-copy p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.5;
}

.contact-quick-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.contact-quick-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-quick-card a {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.contact-info-section {
  padding: clamp(76px, 9vw, 128px) clamp(24px, 5vw, 56px);
  background: #f4f1ea;
}

.contact-section-head,
.contact-cards,
.contact-form-layout {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.contact-section-head {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.contact-section-head h2,
.contact-form-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  min-height: 275px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(5,5,5,.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 40px 0 22px;
  color: #050505;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.contact-card a {
  margin-bottom: 10px;
  color: rgba(5,5,5,.72);
  font-size: 16px;
  line-height: 1.4;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card p {
  margin: 0;
  color: rgba(5,5,5,.58);
  font-size: 15px;
  line-height: 1.58;
}

.contact-form-section {
  padding: clamp(76px, 9vw, 128px) clamp(24px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 18%, rgba(184,155,94,.18), transparent 32%),
    #050505;
  color: #fff;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.contact-form-copy p:last-child {
  max-width: 500px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.72;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 34px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span:first-child {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  color: #fff;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.34);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(184,155,94,.72);
  background: rgba(0,0,0,.42);
  box-shadow: 0 0 0 4px rgba(184,155,94,.12);
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px !important;
  margin-top: 4px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.privacy-check span {
  color: rgba(255,255,255,.62) !important;
  font-size: 13px !important;
  line-height: 1.55;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 500 !important;
}

.form-submit {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.form-note {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.55;
}

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

  .contact-hero-inner,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-quick-card {
    max-width: 430px;
  }
}

@media (max-width: 640px) {
  .contact-hero-inner {
    width: min(100% - 36px, 1180px);
    padding-bottom: 54px;
  }

  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }
}


/* Contacts page white version */
body.contact-page,
.contact-page,
.contact-main,
.contacts-page,
.contacts-main,
.contact-hero,
.contacts-hero,
.contact-section,
.contacts-section {
  background: #ffffff !important;
  color: #050505 !important;
}

body.contact-page .topbar,
body.contacts-page .topbar {
  background: rgba(255,255,255,.92) !important;
  color: #b89b5e !important;
}

body.contact-page .main-nav > a,
body.contact-page .main-nav > .dropdown > .nav-link,
body.contacts-page .main-nav > a,
body.contacts-page .main-nav > .dropdown > .nav-link {
  color: #b89b5e !important;
}

.contact-hero,
.contacts-hero {
  min-height: 54vh !important;
  padding: clamp(130px, 16vh, 190px) clamp(24px, 5vw, 56px) clamp(56px, 8vw, 96px) !important;
  display: flex !important;
  align-items: flex-end !important;
  border-bottom: 1px solid rgba(5,5,5,.08) !important;
}

.contact-hero::before,
.contact-hero::after,
.contacts-hero::before,
.contacts-hero::after {
  display: none !important;
}

.contact-hero h1,
.contacts-hero h1,
.contact-main h1,
.contacts-main h1 {
  color: #050505 !important;
}

.contact-hero p,
.contacts-hero p,
.contact-main p,
.contacts-main p {
  color: rgba(5,5,5,.68) !important;
}

.contact-grid,
.contacts-grid,
.contact-content-grid,
.contacts-content-grid {
  background: #ffffff !important;
}

.contact-card,
.contacts-card,
.contact-info-card,
.contact-form-card,
.contacts-form-card,
.contact-form,
.contacts-form {
  background: #ffffff !important;
  color: #050505 !important;
  border: 1px solid rgba(5,5,5,.10) !important;
  box-shadow: 0 24px 70px rgba(5,5,5,.08) !important;
}

.contact-card h2,
.contacts-card h2,
.contact-info-card h2,
.contact-form-card h2,
.contacts-form-card h2,
.contact-form h2,
.contacts-form h2 {
  color: #050505 !important;
}

.contact-card p,
.contacts-card p,
.contact-info-card p,
.contact-form-card p,
.contacts-form-card p,
.contact-form p,
.contacts-form p,
.contact-card a,
.contacts-card a,
.contact-info-card a {
  color: rgba(5,5,5,.72) !important;
}

.contact-card a:hover,
.contacts-card a:hover,
.contact-info-card a:hover {
  color: #b89b5e !important;
}

.contact-form label,
.contacts-form label,
.contact-form-card label,
.contacts-form-card label {
  color: #050505 !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contacts-form input,
.contacts-form textarea,
.contacts-form select,
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select,
.contacts-form-card input,
.contacts-form-card textarea,
.contacts-form-card select {
  background: #ffffff !important;
  color: #050505 !important;
  border: 1px solid rgba(5,5,5,.18) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contacts-form input::placeholder,
.contacts-form textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder,
.contacts-form-card input::placeholder,
.contacts-form-card textarea::placeholder {
  color: rgba(5,5,5,.42) !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contacts-form input:focus,
.contacts-form textarea:focus,
.contacts-form select:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus,
.contacts-form-card input:focus,
.contacts-form-card textarea:focus,
.contacts-form-card select:focus {
  outline: none !important;
  border-color: #b89b5e !important;
  box-shadow: 0 0 0 4px rgba(184,155,94,.16) !important;
}

.contact-submit,
.contacts-submit,
.contact-form button,
.contacts-form button,
.contact-form-card button,
.contacts-form-card button {
  background: #050505 !important;
  color: #ffffff !important;
  border: 1px solid #050505 !important;
}

.contact-submit:hover,
.contacts-submit:hover,
.contact-form button:hover,
.contacts-form button:hover,
.contact-form-card button:hover,
.contacts-form-card button:hover {
  background: #b89b5e !important;
  border-color: #b89b5e !important;
  color: #050505 !important;
}

.contact-map,
.contacts-map,
.map-placeholder {
  background: #ffffff !important;
  color: #050505 !important;
  border: 1px solid rgba(5,5,5,.10) !important;
}

.contact-page .site-footer,
.contacts-page .site-footer {
  background: #050505 !important;
  color: #ffffff !important;
}


/* Contact page: fully white header/menu */
body.contact-page .topbar {
  background: #ffffff !important;
  color: #050505 !important;
  border-bottom: 1px solid rgba(5,5,5,.08) !important;
  box-shadow: 0 10px 28px rgba(5,5,5,.04) !important;
  backdrop-filter: none !important;
}
body.contact-page .topbar::before {
  display: none !important;
  opacity: 0 !important;
}
body.contact-page .brand-logo {
  filter: invert(1) !important;
  opacity: .92 !important;
}
body.contact-page .main-nav > a,
body.contact-page .main-nav > .dropdown > .nav-link {
  color: #050505 !important;
  opacity: .72 !important;
}
body.contact-page .main-nav > a:hover,
body.contact-page .main-nav > .dropdown > .nav-link:hover,
body.contact-page .main-nav > .dropdown.is-open > .nav-link {
  color: #050505 !important;
  opacity: 1 !important;
}
body.contact-page .dropdown-toggle::after {
  border-right-color: #050505 !important;
  border-bottom-color: #050505 !important;
}
body.contact-page .dropdown-menu {
  background: #ffffff !important;
  border: 1px solid rgba(5,5,5,.10) !important;
  box-shadow: 0 24px 60px rgba(5,5,5,.12) !important;
}
body.contact-page .dropdown-menu a {
  color: #050505 !important;
}
body.contact-page .dropdown-menu a:hover {
  background: rgba(184,155,94,.12) !important;
  color: #050505 !important;
}


/* Contact page: black + gold typography on white */
body.contact-page,
body.contact-page .contact-page,
body.contact-page main,
body.contact-page .contact-hero,
body.contact-page .contact-info-section,
body.contact-page .contact-form-section {
  background: #ffffff !important;
  color: #050505 !important;
}

body.contact-page .contact-hero {
  min-height: 54vh !important;
  padding: clamp(132px, 16vh, 188px) clamp(24px, 5vw, 56px) clamp(56px, 8vw, 94px) !important;
  border-bottom: 1px solid rgba(5,5,5,.08) !important;
}

body.contact-page .subpage-kicker,
body.contact-page .section-label,
body.contact-page .contact-card span,
body.contact-page .contact-quick-card span,
body.contact-page .contact-form label > span:first-child {
  color: var(--gold) !important;
}

body.contact-page .contact-hero-copy h1,
body.contact-page .contact-section-head h2,
body.contact-page .contact-form-copy h2,
body.contact-page .contact-card h3 {
  color: #050505 !important;
}

body.contact-page .contact-hero-copy p:last-child,
body.contact-page .contact-form-copy p:last-child,
body.contact-page .contact-card p,
body.contact-page .privacy-check span,
body.contact-page .form-note {
  color: rgba(5,5,5,.74) !important;
}

body.contact-page .contact-quick-card,
body.contact-page .contact-card,
body.contact-page .contact-form {
  background: #ffffff !important;
  border: 1px solid rgba(184,155,94,.30) !important;
  box-shadow: 0 26px 80px rgba(5,5,5,.08) !important;
}

body.contact-page .contact-quick-card a,
body.contact-page .contact-card a {
  color: #050505 !important;
}

body.contact-page .contact-quick-card a:hover,
body.contact-page .contact-card a:hover,
body.contact-page .form-note a {
  color: var(--gold) !important;
}

body.contact-page .contact-form input,
body.contact-page .contact-form textarea,
body.contact-page .contact-form select {
  background: #ffffff !important;
  color: #050505 !important;
  border: 1px solid rgba(5,5,5,.18) !important;
}

body.contact-page .contact-form input::placeholder,
body.contact-page .contact-form textarea::placeholder {
  color: rgba(5,5,5,.38) !important;
}

body.contact-page .contact-form input:focus,
body.contact-page .contact-form textarea:focus,
body.contact-page .contact-form select:focus {
  border-color: rgba(184,155,94,.86) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(184,155,94,.15) !important;
}

body.contact-page .form-submit {
  background: #050505 !important;
  color: #ffffff !important;
  border: 1px solid #050505 !important;
}

body.contact-page .form-submit:hover {
  background: var(--gold) !important;
  color: #050505 !important;
  border-color: var(--gold) !important;
}

/* v52 – stronger contact cards visibility */
body.contact-page .contact-cards {
  gap: 22px !important;
}

body.contact-page .contact-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%) !important;
  border: 1.5px solid rgba(184,155,94,.46) !important;
  box-shadow: 0 16px 40px rgba(5,5,5,.08), 0 1px 0 rgba(184,155,94,.18) inset !important;
}

body.contact-page .contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

body.contact-page .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(5,5,5,.12), 0 1px 0 rgba(184,155,94,.24) inset !important;
}

body.contact-page .contact-card h3 {
  margin-top: 36px !important;
}

body.contact-page .contact-card a,
body.contact-page .contact-card p {
  position: relative;
  z-index: 1;
}


/* v53 – footer gold on all pages */
.site-footer,
.contact-page .site-footer,
.contacts-page .site-footer {
  background: var(--gold) !important;
  color: #050505 !important;
}

.site-footer .footer-brand img {
  filter: brightness(0) saturate(100%);
}

.site-footer .footer-text,
.site-footer .footer-col a,
.site-footer .footer-bottom {
  color: rgba(5,5,5,.82) !important;
}

.site-footer .footer-col h3,
.site-footer .footer-social-link {
  color: #050505 !important;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-col a:hover {
  color: #050505 !important;
  opacity: .72;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(5,5,5,.16) !important;
}


/* v54 – footer text back to white on gold background */
.site-footer,
.contact-page .site-footer,
.contacts-page .site-footer {
  background: var(--gold) !important;
  color: #ffffff !important;
}

.site-footer .footer-brand img {
  filter: brightness(0) invert(1) !important;
}

.site-footer .footer-text,
.site-footer .footer-col a,
.site-footer .footer-bottom,
.site-footer .footer-col h3,
.site-footer .footer-social-link {
  color: #ffffff !important;
}

.site-footer .footer-col a {
  opacity: .9;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-col a:hover {
  color: #ffffff !important;
  opacity: .72;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.28) !important;
}


/* v55 - cleaner About Us hero */
body.subpage .about-hero-new {
  min-height: 92vh !important;
  width: min(100%, 1820px) !important;
  margin: 0 auto !important;
  padding: clamp(116px, 12vh, 152px) clamp(56px, 6vw, 108px) clamp(60px, 7vw, 96px) !important;
  background: #ffffff !important;
  color: #050505 !important;
  display: grid !important;
  grid-template-columns: minmax(380px, .82fr) minmax(560px, 1.18fr) !important;
  gap: clamp(42px, 5vw, 86px) !important;
  align-items: center !important;
  overflow: hidden !important;
}

body.subpage .about-hero-new .about-hero-image {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  order: 2 !important;
  height: min(68vh, 720px) !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 90px rgba(5,5,5,.16) !important;
}

body.subpage .about-hero-new .about-hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
  transform: none !important;
}

body.subpage .about-hero-new .about-hero-overlay {
  display: none !important;
}

body.subpage .about-hero-new .about-hero-content {
  position: relative !important;
  z-index: 2 !important;
  order: 1 !important;
  width: auto !important;
  max-width: 680px !important;
  margin: 0 !important;
  padding: 0 14px 0 8px !important;
  color: #050505 !important;
}

body.subpage .about-hero-new .subpage-kicker {
  margin: 0 0 22px !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

body.subpage .about-hero-new .about-hero-content h1 {
  margin: 0 0 26px !important;
  color: #050505 !important;
  font-size: clamp(58px, 8vw, 126px) !important;
  line-height: .86 !important;
  letter-spacing: -.075em !important;
  text-transform: uppercase !important;
}

body.subpage .about-hero-new .about-hero-content p:last-child {
  max-width: 620px !important;
  color: rgba(5,5,5,.70) !important;
  font-size: clamp(18px, 1.65vw, 24px) !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  body.subpage .about-hero-new {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    padding: 112px 30px 62px !important;
  }

  body.subpage .about-hero-new .about-hero-image {
    order: 1 !important;
    height: 48vh !important;
  }

  body.subpage .about-hero-new .about-hero-content {
    order: 2 !important;
    max-width: 760px !important;
  }
}

@media (max-width: 640px) {
  body.subpage .about-hero-new {
    min-height: auto !important;
    padding: 98px 18px 58px !important;
  }

  body.subpage .about-hero-new .about-hero-image {
    height: 300px !important;
    border-radius: 24px !important;
  }
}


/* v59 - Careers page */
.careers-page,
.careers-main {
  background: #ffffff;
  color: #050505;
}

.careers-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(132px, 16vh, 188px) clamp(44px, 6vw, 108px) clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 78% 18%, rgba(184,155,94,.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ea 100%);
  border-bottom: 1px solid rgba(5,5,5,.08);
}

.careers-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.careers-hero h1 {
  max-width: 980px;
  margin: 0 0 26px;
  color: #050505;
  font-size: clamp(58px, 9.2vw, 138px);
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 900;
}

.careers-hero p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: rgba(5,5,5,.68);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.55;
}

.career-main-link,
.career-apply {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  border: 1px solid #050505;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}

.career-main-link:hover,
.career-apply:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.careers-list-section {
  padding: clamp(78px, 9vw, 128px) clamp(44px, 6vw, 108px);
  background: #ffffff;
}

.careers-section-head {
  max-width: 1180px;
  margin: 0 auto clamp(36px, 5vw, 70px);
}

.careers-section-head h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.careers-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.career-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
  border: 1.5px solid rgba(184,155,94,.42);
  box-shadow: 0 18px 46px rgba(5,5,5,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,155,94,.68);
  box-shadow: 0 24px 58px rgba(5,5,5,.12);
}

.career-card-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 38px;
}

.career-card-top span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.career-card-top small {
  color: rgba(5,5,5,.42);
  font-size: 11px;
  font-weight: 800;
}

.career-card h3 {
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.career-card p {
  margin: 0;
  color: rgba(5,5,5,.64);
  font-size: 15px;
  line-height: 1.62;
}

.career-apply {
  margin-top: auto;
  min-height: 48px;
  padding: 0 20px;
}

@media (max-width: 1080px) {
  .careers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .careers-hero,
  .careers-list-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .careers-grid { grid-template-columns: 1fr; }
  .career-card { min-height: auto; }
}

/* v59 - Careers card content and full-card links */
a.career-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.career-card-top small {
  max-width: 72%;
  text-align: right;
  line-height: 1.25;
  letter-spacing: .08em;
}

.career-meta {
  margin: -5px 0 15px;
  color: var(--gold);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.career-card:focus-visible {
  outline: 3px solid rgba(184,155,94,.58);
  outline-offset: 4px;
}

.career-card:hover .career-apply {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .career-card-top {
    align-items: flex-start;
  }

  .career-card-top small {
    max-width: 76%;
  }
}

/* v69 - Design system foundation: spacing, width, radii, surfaces and shadows */
:root {
  --site-max: 1180px;
  --site-gutter: clamp(24px, 5vw, 56px);
  --section-space: clamp(88px, 9vw, 132px);
  --section-space-compact: clamp(64px, 7vw, 96px);
  --grid-gap: clamp(18px, 2vw, 24px);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 30px;
  --surface-white: #ffffff;
  --surface-soft: #faf9f6;
  --surface-warm: #f4f1ea;
  --surface-dark: #050505;
  --shadow-soft: 0 18px 48px rgba(5, 5, 5, .08);
  --shadow-lift: 0 26px 64px rgba(5, 5, 5, .12);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .26);
}

/* One horizontal rhythm across the website */
.topbar,
.hero-inner,
.white-inner,
.subpage-hero,
.subpage-content,
.about-story-section,
.about-mission-section,
.about-values-section,
.contact-info-section,
.contact-form-section,
.careers-hero,
.careers-list-section {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.hero-inner,
.white-inner,
.about-hero-content,
.about-story-grid,
.about-mission-grid,
.values-header,
.values-grid,
.about-values-section .subpage-actions,
.contact-hero-inner,
.contact-section-head,
.contact-cards,
.contact-form-layout,
.careers-hero-inner,
.careers-section-head,
.careers-grid,
.footer-inner,
.footer-bottom {
  width: min(var(--site-max), 100%);
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
}

/* Consistent vertical section rhythm */
.about-story-section,
.about-mission-section,
.about-values-section,
.contact-info-section,
.contact-form-section,
.careers-list-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* Consistent surfaces */
.about-values-section,
.contact-info-section {
  background: var(--surface-warm);
}

/* Consistent cards */
.system-card,
.subpage-grid article,
.mission-card,
.values-grid article,
.contact-quick-card,
.contact-card,
.contact-form,
.career-card {
  border-radius: var(--radius-md);
}

.values-grid article,
.contact-card,
.career-card,
.subpage-grid article {
  box-shadow: var(--shadow-soft);
}

.mission-card,
.contact-quick-card,
.contact-form {
  box-shadow: var(--shadow-dark);
}

.system-card,
.subpage-grid article,
.values-grid article,
.contact-card,
.career-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.system-card:hover,
.subpage-grid article:hover,
.values-grid article:hover,
.contact-card:hover,
.career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* Consistent media treatment */
.about-story-image,
.about-story-image img,
body.subpage .about-hero-new .about-hero-image {
  border-radius: var(--radius-lg);
}

/* Consistent grid spacing */
.system-grid,
.subpage-grid,
.about-mission-grid,
.values-grid,
.contact-cards,
.careers-grid {
  gap: var(--grid-gap);
}

/* Consistent controls */
.dropdown-menu,
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: var(--radius-sm);
}

.btn,
.about-btn,
.career-main-link,
.career-apply,
.form-submit,
.card-link {
  border-radius: 999px;
}

/* Footer follows the same page width */
.site-footer {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

/* Small-screen system values */
@media (max-width: 760px) {
  :root {
    --site-gutter: 18px;
    --section-space: 76px;
    --section-space-compact: 58px;
    --radius-md: 20px;
    --radius-lg: 24px;
  }

  .topbar,
  .hero-inner,
  .white-inner,
  .subpage-hero,
  .subpage-content,
  .about-story-section,
  .about-mission-section,
  .about-values-section,
  .contact-info-section,
  .contact-form-section,
  .careers-hero,
  .careers-list-section,
  .site-footer {
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
  }
}


/* v88 desktop dropdown hover bridge */
@media (min-width: 761px) {
  .nav-dropdown::before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 24px;
    z-index: 2;
  }

  .nav-dropdown .dropdown-menu {
    top: calc(100% + 10px);
    z-index: 3;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .18s;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    transition-delay: 0s;
  }
}
