/* =========================================================
   CARAVAN RESOURCES GROUP — Corporate site stylesheet
   Brand tokens derived from brandbook brief.
   ========================================================= */

:root {
  /* Core brand */
  --navy: #073175;
  --navy-deep: #051f4a;
  --white: #FEFEFE;
  --ink: #050505;

  /* Secondary palette */
  --indigo: #3E4095;
  --blue: #0075C5;
  --blue-light: #2C9BFF;
  --blue-pale: #72BCFF;
  --grey-pale: #F1F2F2;

  /* Contrast / accent */
  --orange: #F58634;
  --orange-light: #FAB062;
  --green: #1CC433;
  --grey: #888888;

  --font-display: 'Proxima Nova', Calibri, Arial, sans-serif;
  --font-body: 'Proxima Nova', Arial, Calibri, sans-serif;

  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.12;
  color: var(--navy);
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Focus ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .6em;
  margin-bottom: .9em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand .mark {
  width: 34px;
  height: 34px;
  flex: none;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  clip-path: polygon(50% 0%, 100% 30%, 82% 100%, 18% 100%, 0% 30%);
}

.brand small {
  display: block;
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--blue-pale);
  text-transform: uppercase;
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav>ul {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.main-nav>ul>li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: var(--header-h);
  color: rgba(255, 255, 255, .86);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-bottom: 3px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
li.active>.nav-link {
  color: var(--white);
  border-bottom-color: var(--orange);
}

.nav-link .caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  opacity: .75;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(5, 10, 30, .22);
  border-top: 3px solid var(--orange);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: var(--grey-pale);
  color: var(--orange);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}

.lang-switch button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .04em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .7);
  padding: 6px 9px;
  cursor: pointer;
  transition: all .15s var(--ease);
}

.lang-switch button.active,
.lang-switch button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.lang-switch button:first-child {
  border-radius: 2px 0 0 2px;
}

.lang-switch button:last-child {
  border-radius: 0 2px 2px 0;
}

.nav-toggle {
  display: none;
}

@media (max-width: 980px) {
  .main-nav>ul {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }

  .lang-switch {
    display: none;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  margin-top: var(--header-h);
  background: var(--navy);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}

.hero-media {
  background: url('../assets/photo-1504917595217-d4dc5ebe6122.jpg') no-repeat center/cover;
}

.hero-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3rem);
  margin-bottom: .5em;
}

.hero-copy .lede {
  color: rgba(255, 255, 255, .82);
  font-size: 1.06rem;
  max-width: 46ch;
}

.hero-copy .stat-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-copy .stat-row div {
  border-left: 2px solid var(--orange);
  padding-left: 12px;
}

.hero-copy .stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange-light);
}

.hero-copy .stat-row span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-copy {
    padding: 44px 24px;
  }
}

/* Compact hero for interior pages */
.hero-compact {
  margin-top: var(--header-h);
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
}

.hero-compact::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 340px;
  height: 340px;
  background: url('../assets/pattern_crop.png') no-repeat center/cover;
  opacity: .14;
}

.hero-compact .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 14px;
  letter-spacing: .02em;
}

.breadcrumb a:hover {
  color: var(--orange-light);
}

.hero-compact h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  margin-bottom: .3em;
}

.hero-compact .lede {
  color: rgba(255, 255, 255, .78);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  padding: 13px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--grey-pale);
}

.section-head {
  max-width: 64ch;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--grey);
  font-size: 1.02rem;
}

/* ---------- KPI band ---------- */
.kpi-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.kpi-band::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: url('../assets/pattern_crop.png') no-repeat center/cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.kpi-band::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  background: url('../assets/pattern_crop.png') no-repeat center/cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.kpi-band .container {
  position: relative;
  z-index: 2;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.kpi {
  padding: 52px 26px;
  text-align: center;
  position: relative;
}

.kpi+.kpi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

.kpi strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  color: var(--orange-light);
}

.kpi span {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

/* ---------- Geography / map ---------- */
.map-wrap {
  position: relative;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, .08);
}

.map-wrap img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .97;
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(245, 134, 52, .6);
  animation: pulse 2.4s infinite;
}

.map-pin:hover,
.map-pin:focus-visible {
  background: var(--green);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 134, 52, .55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(245, 134, 52, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 134, 52, 0);
  }
}

.map-card {
  position: absolute;
  z-index: 5;
  width: 240px;
  background: var(--white);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .35);
  border-top: 3px solid var(--orange);
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
  pointer-events: none;
}

.map-card.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.map-card .tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--orange);
  text-transform: uppercase;
}

.map-card h4 {
  font-size: 1rem;
  margin: .25em 0 .3em;
}

.map-card p {
  font-size: .84rem;
  color: var(--grey);
  margin: 0 0 .6em;
}

.map-card a {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--grey);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

/* ---------- Process infographic ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 28px 18px;
  text-align: center;
  position: relative;
  border-right: 1px dashed rgba(7, 49, 117, .25);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-size: .78rem;
  letter-spacing: .08em;
}

.process-step .ic {
  width: 56px;
  height: 56px;
  margin: 14px auto 12px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.process-step h4 {
  font-size: .96rem;
  margin-bottom: .3em;
}

.process-step p {
  font-size: .82rem;
  color: var(--grey);
  margin: 0;
}

.process-arrow {
  position: absolute;
  top: 42px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  transform: translateX(50%) rotate(45deg);
  z-index: 2;
}

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px dashed rgba(7, 49, 117, .25);
  }

  .process-arrow {
    display: none;
  }
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid #E7E9EC;
  padding: 28px;
  position: relative;
  transition: box-shadow .18s var(--ease), transform .18s var(--ease);
}

.card:hover {
  box-shadow: 0 18px 34px rgba(7, 49, 117, .12);
  transform: translateY(-3px);
}

.card .tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: .6em;
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: .4em;
}

.card p {
  color: var(--grey);
  font-size: .92rem;
  margin-bottom: 0;
}

.avatar-card {
  text-align: left;
}

.avatar-card .photo {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  position: relative;
  overflow: hidden;
}

.avatar-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/pattern_crop.png') no-repeat 100% 100%/70% auto;
  opacity: .22;
  mix-blend-mode: screen;
}

.avatar-card .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .85);
}

.avatar-card h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.avatar-card .role {
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .6em;
}

/* ---------- Project overview card ---------- */
.project-card {
  display: flex;
  flex-direction: column;
}

.project-card .photo {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 130%);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.project-card .photo .commodity {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  padding: 5px 10px;
}

.project-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 40px);
}

.project-card .status {
  font-size: .78rem;
  color: var(--grey);
  margin-bottom: .4em;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.project-card h3 {
  margin-bottom: .35em;
}

/* ---------- Approach / principle list ---------- */
.principle {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid #E7E9EC;
}

.principle:last-child {
  border-bottom: 0;
}

.principle .n {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-size: 1.5rem;
  flex: none;
  width: 52px;
}

.principle h3 {
  font-size: 1.05rem;
  margin-bottom: .3em;
}

.principle p {
  color: var(--grey);
  margin: 0;
}

/* ---------- Data table ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #E7E9EC;
}

.data-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.data-table tbody tr:hover {
  background: var(--grey-pale);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #E7E9EC;
}

/* ---------- Bars (simple production chart, no external libs) ---------- */
.bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 220px;
  padding-top: 20px;
}

.bars .bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.bars .bar {
  width: 100%;
  max-width: 52px;
  background: linear-gradient(180deg, var(--blue-light), var(--navy));
  position: relative;
}

.bars .bar span {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
}

.bars .yr {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--grey);
}

/* ---------- Tabs (Investors) ---------- */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 2px solid #E7E9EC;
  margin-bottom: 32px;
}

.tabs-nav button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .86rem;
  background: none;
  border: 0;
  padding: 14px 18px;
  cursor: pointer;
  color: var(--grey);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}

.tabs-nav button.active,
.tabs-nav button:hover {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fade .25s var(--ease);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #E7E9EC;
  margin-bottom: 10px;
}

.doc-card .ic {
  width: 40px;
  height: 40px;
  flex: none;
  background: var(--grey-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
}

.doc-card .meta {
  flex: 1;
}

.doc-card .meta h4 {
  margin: 0 0 2px;
  font-size: .94rem;
  color: var(--ink);
}

.doc-card .meta span {
  font-size: .78rem;
  color: var(--grey);
}

.doc-card .dl {
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  flex: none;
}

/* ---------- Career ---------- */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid #E7E9EC;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.job-card .meta span {
  display: inline-block;
  font-size: .78rem;
  color: var(--grey);
  margin-right: 14px;
}

.job-card h3 {
  margin-bottom: .35em;
  font-size: 1.02rem;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 8px;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #D8DBE0;
  background: var(--white);
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--ink);
  transition: border-color .15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: none;
}

.field-file {
  border: 1.5px dashed #D8DBE0;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  font-size: .88rem;
  color: var(--grey);
}

.field-file.dragover {
  border-color: var(--orange);
  color: var(--orange);
}

.form-note {
  font-size: .82rem;
  color: var(--grey);
  margin-top: 6px;
}

.form-status {
  margin-top: 16px;
  font-size: .9rem;
  font-weight: 700;
  display: none;
}

.form-status.ok {
  color: var(--green);
  display: block;
}

@media (max-width:700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contacts ---------- */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-block {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #E7E9EC;
}

.contact-block .ic {
  width: 38px;
  height: 38px;
  flex: none;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: .8rem;
}

.contact-block h4 {
  margin: 0 0 3px;
  font-size: .92rem;
  color: var(--navy);
}

.contact-block p {
  margin: 0;
  color: var(--grey);
  font-size: .92rem;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-pale);
  color: var(--navy);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: .72rem;
  transition: background .15s, color .15s;
}

.social-row a:hover {
  background: var(--orange);
  color: var(--white);
}

.office-map {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--navy), var(--indigo));
  position: relative;
  overflow: hidden;
}

.office-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/pattern_crop.png') no-repeat center/60% auto;
  opacity: .16;
  mix-blend-mode: screen;
}

.office-map .pin {
  position: absolute;
  top: 52%;
  left: 47%;
  width: 20px;
  height: 20px;
  background: var(--orange);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width:860px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Investment / status pill ---------- */
.pill {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.pill.on {
  background: rgba(28, 196, 51, .12);
  color: #12962a;
}

.pill.growth {
  background: rgba(245, 134, 52, .14);
  color: var(--orange);
}

/* ---------- CTA banner ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: url('../assets/pattern_crop.png') no-repeat center/cover;
  opacity: .14;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: .2em;
}

.cta-band p {
  color: rgba(255, 255, 255, .75);
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .8);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 360px;
  height: 360px;
  background: url('../assets/pattern_crop.png') no-repeat center/cover;
  opacity: .05;
  pointer-events: none;
}

.footer-top {
  padding: 64px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .68);
}

.footer-grid a:hover {
  color: var(--orange-light);
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  max-width: 34ch;
}

.site-footer .social-row a {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .7);
}

.site-footer .social-row a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.footer-texture {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 260px;
  height: auto;
  opacity: .08;
  z-index: 0;
  pointer-events: none;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Utility ---------- */
.mt-0 {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.divider-pattern {
  height: 64px;
  background: url('../assets/pattern_tile.png');
  background-size: 64px 58px;
  opacity: .9;
}