/* Macvere temporary holding site - static CSS, no dependencies.
   Brand: dark green #00303e | teal #008a89 / #004855 | yellow #f0b500
   Land Rights sub-brand: amber #d77c19 / #c1670d on cream #fbf1e4 */

:root {
  --ink: #00303e;
  --teal: #008a89;
  --deep: #004855;
  --yellow: #f0b500;
  --amber: #d77c19;
  --amber-deep: #c1670d;
  --cream: #fbf1e4;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--ink);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* ---------- Top banner ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 1rem 1.5rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar-main {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topbar .tick {
  display: inline-block;
  width: 1.6rem;
  height: 3px;
  background: var(--yellow);
  vertical-align: 0.25em;
  margin: 0 0.7rem;
}
.topbar-sub {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: #b9cfd6;
}

/* ---------- Split panels ---------- */
.split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 7vh, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.panel-inner { position: relative; z-index: 2; max-width: 30rem; width: 100%; }

.panel--uc { background: var(--ink); color: #b9cfd6; }
.panel--lr { background: var(--cream); color: #4a3a24; }

.panel--uc .logo { width: min(310px, 78%); margin: 0 auto 2.2rem; }
.panel--lr .logo { width: min(300px, 74%); margin: 0 auto 2.2rem; }

.rule { width: 3.4rem; height: 4px; margin: 0 auto 1.6rem; }
.panel--uc .rule { background: var(--yellow); }
.panel--lr .rule { background: var(--amber); }

.strap {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}
.panel--uc .strap { color: #fff; }
.panel--lr .strap { color: var(--ink); }

.desc { font-size: 0.98rem; line-height: 1.6; margin-bottom: 2rem; }

.contact { font-size: 1.02rem; line-height: 2; }
.contact .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.panel--uc .contact .label { color: #8fd0cd; }
.panel--lr .contact .label { color: var(--amber-deep); }
.contact a { font-weight: 700; text-decoration: none; }
.panel--uc .contact a { color: #fff; border-bottom: 2px solid var(--teal); }
.panel--uc .contact a:hover { border-bottom-color: var(--yellow); }
.panel--lr .contact a { color: var(--ink); border-bottom: 2px solid var(--amber); }
.panel--lr .contact a:hover { border-bottom-color: var(--amber-deep); }
.contact .phone a { border-bottom: none; font-weight: 400; }

/* ---------- M-mark backdrop ---------- */
.backdrop {
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 62%;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}
.backdrop--lr { opacity: 0.07; }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: #8aa6af;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.6rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.8;
}
.foot a { color: #b9cfd6; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot .links { margin-top: 0.4rem; }
.foot .links a { margin: 0 0.65rem; }
.foot details {
  max-width: 46rem;
  margin: 0.9rem auto 0;
  text-align: left;
  font-size: 0.8rem;
}
.foot summary {
  cursor: pointer;
  text-align: center;
  color: #b9cfd6;
  font-weight: 700;
  padding: 0.3rem;
  list-style: none;
}
.foot summary::-webkit-details-marker { display: none; }
.foot details[open] summary { color: #fff; }
.foot details p { margin: 0.5rem 0; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .panel { min-height: 58vh; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
