/* =========================================================
   PBL Advisory — Coming Soon
   Premium boutique advisory aesthetic
   Palette : off-white / deep navy / discreet gold
   ========================================================= */

:root {
  --bg            : #fafaf7;          /* warm off-white */
  --bg-deep       : #f4f1ea;          /* page edge */
  --ink           : #0d2340;          /* deep navy */
  --ink-soft      : #2d3e5b;
  --ink-muted     : #4a5a73;
  --gold          : #b8893f;          /* primary gold */
  --gold-soft     : #c9a065;
  --gold-deep     : #946a26;
  --hairline      : rgba(184,137,63,0.35);

  --serif         : Georgia, "Times New Roman", "Hoefler Text", Times, serif;
  --sans          : -apple-system, BlinkMacSystemFont, "Segoe UI",
                    Helvetica, "Helvetica Neue", Arial, sans-serif;

  --max-w         : 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}
a:hover { color: var(--gold-deep); }

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

/* ---------- Stage / page frame --------------------------- */

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 56px) clamp(20px, 5vw, 64px) 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--bg) 55%, var(--bg-deep) 100%);
}

/* World-map flourish — supplied dotted world map split into two hemispheres,
   each filling its side area (the central column is reserved for content). */
.world {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38vw;
  max-width: 620px;
  background-image: url("assets/world-map.png");
  background-repeat: no-repeat;
  background-size: 200% auto;       /* image is twice the container, so each pane shows ~half */
  background-position-y: center;
  opacity: 0.48;
  pointer-events: none;
}
.world--left  {
  left: 0;
  background-position-x: 15%;        /* western hemisphere — Americas */
}
.world--right {
  right: 0;
  display: block;
  background-position-x: 85%;        /* eastern hemisphere — Europe / Asia / Africa / Australia */
}

/* ---------- Card / content column ------------------------ */

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto auto;
  padding: clamp(16px, 2.5vw, 32px) clamp(16px, 4vw, 48px) clamp(32px, 4.5vw, 56px);
  text-align: center;
}

/* ---------- Brand block --------------------------------- */

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand__mark {
  width: clamp(80px, 8.5vw, 112px);
  height: auto;
  margin-bottom: clamp(12px, 1.6vw, 20px);
}

.brand__name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
}

.brand__pbl {
  font-size: clamp(48px, 6.4vw, 84px);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.brand__suffix {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-left: 0.42em; /* visually re-center tracked caps */
}

/* Tagline: dotted-rule · text · dotted-rule */
.brand__tagline {
  margin-top: clamp(14px, 1.8vw, 22px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  width: min(540px, 86%);
}
.brand__tagline .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%, var(--hairline) 18%, var(--gold) 50%,
    var(--hairline) 82%, transparent 100%);
}
.tagline-text {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.tagline-text .dot {
  color: var(--gold);
  margin: 0 0.25em;
  font-size: 1.1em;
  position: relative;
  top: -0.05em;
}

/* ---------- Message ------------------------------------- */

.message {
  margin-top: clamp(26px, 3.5vw, 44px);
}

.message__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-wrap: balance;
}

.message__divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: clamp(12px, 1.6vw, 20px) auto clamp(14px, 1.8vw, 22px);
  opacity: 0.85;
}

.message__body {
  max-width: 540px;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  color: var(--ink-muted);
  text-wrap: pretty;
}

/* ---------- Enquiries ----------------------------------- */

.enquiries {
  margin-top: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
}

.enquiries__label {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.enquiries__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.enquiries__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink);
  letter-spacing: 0.01em;
}

.enquiries__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: none;
}
.enquiries__icon svg { width: 100%; height: 100%; }

.enquiries__item a:hover { color: var(--gold-deep); }

/* ---------- CTA ----------------------------------------- */

.cta {
  --cta-pad-y: 14px;
  --cta-pad-x: 34px;
  margin-top: clamp(8px, 1.2vw, 14px);
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: var(--cta-pad-y) var(--cta-pad-x);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  position: relative;
  transition:
    background-color .35s ease,
    color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
  cursor: pointer;
  user-select: none;
}
.cta__label { padding-left: 0.42em; }
.cta__arrow {
  display: inline-flex;
  width: 30px;
  height: 12px;
  transition: transform .35s ease;
}
.cta__arrow svg { width: 100%; height: 100%; }

.cta:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 14px 32px -18px rgba(184,137,63,0.65);
}
.cta:hover .cta__arrow { transform: translateX(4px); }
.cta:active { transform: translateY(1px); }
.cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,137,63,0.25);
}

/* ---------- Footer bar ---------------------------------- */

.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}
.footer__bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right,
    var(--gold-soft) 0%,
    var(--gold)      50%,
    var(--gold-deep) 100%);
  opacity: 0.95;
}

/* ---------- Responsive ---------------------------------- */

@media (max-width: 640px) {
  .world {
    width: 60vw;
    max-width: none;
    opacity: 0.20;
    background-size: 220% auto;
  }
  .world--left  { left:  -10vw; }
  .world--right { right: -10vw; display: block; }

  .brand__tagline { gap: 10px; }
  .tagline-text   { letter-spacing: 0.28em; }
  .brand__suffix  { letter-spacing: 0.36em; }

  .cta { --cta-pad-x: 28px; gap: 16px; }
}

@media (max-width: 380px) {
  .tagline-text { font-size: 10px; letter-spacing: 0.22em; }
  .brand__suffix { font-size: 12px; letter-spacing: 0.3em; }
}

/* ---------- Print --------------------------------------- */

@media print {
  .world, .footer { display: none; }
  body { background: #fff; }
}

/* ---------- Reduced motion ------------------------------ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
