:root {
  --color-navy: #0F172A;
  --color-gold: #C9A227;
  --color-white: #FFFFFF;
  --radius-soft: 8px;
  --shadow-hard: 4px 4px 0px 0px rgba(201, 162, 39, 0.4);
  --font-body: system-ui, -apple-system, sans-serif;
  --font-heading: 'Arial Narrow', 'Helvetica Neue', system-ui, sans-serif;
  --spacing-default: 1.5rem;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-navy);
  padding-bottom: 60px;
}
.site-header {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 1rem var(--spacing-default);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--color-gold);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-white);
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.desktop-nav {
  display: none;
}
.desktop-nav a {
  color: var(--color-white);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  font-family: var(--font-heading);
  text-transform: uppercase;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--color-gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cta-button {
  background-color: var(--color-gold);
  color: var(--color-navy);
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-soft);
  text-transform: uppercase;
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-heading);
}
.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px rgba(201, 162, 39, 0.4);
}
.burger-menu {
  display: flex;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0;
}
.burger-menu svg {
  width: 28px;
  height: 28px;
}
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-navy);
  border-top: 1px solid var(--color-gold);
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 1001;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.75rem;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}
.mobile-nav-item svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}
.mobile-nav-item:hover, .mobile-nav-item:active {
  color: var(--color-gold);
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-overlay.active {
  display: flex;
}
.mobile-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-overlay-content a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.mobile-overlay-content a.cta-button {
  color: var(--color-navy);
  font-size: 1.25rem;
}
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 3rem var(--spacing-default) 1rem;
  margin-top: 4rem;
  border-top: 4px solid var(--color-gold);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.tagline {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.4;
}
.footer-contact h4, .footer-legal h4 {
  color: var(--color-gold);
  margin: 0 0 1rem 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
}
.footer-contact a, .footer-legal a {
  color: var(--color-white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  opacity: 0.9;
}
.footer-contact a:hover, .footer-legal a:hover {
  color: var(--color-gold);
  opacity: 1;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .burger-menu {
    display: none;
  }
  .desktop-nav {
    display: flex;
  }
  .mobile-bottom-nav, .mobile-overlay {
    display: none !important;
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-bottom {
    padding-bottom: 0;
    text-align: left;
  }
}
/* footer extras */
.footer__extras{margin-top:16px;}
.footer__extrasInner{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-start;justify-content:space-between;}
.footer__social{display:flex;gap:10px;align-items:center;}
.footer-social{display:inline-flex;gap:8px;align-items:center;text-decoration:none;}
.footer-social__icon{display:block;}
.footer__poemWrap{max-width:520px;}
.footer-poem{opacity:0.9;font-size:0.95em;line-height:1.35;}
/* --- injected by logo step --- */
.brand{display:inline-flex;align-items:center;gap:10px}
.brand-logo{width:28px;height:28px;display:inline-block;flex:0 0 auto}
.brand-logo *{vector-effect:non-scaling-stroke}
/* --- /injected by logo step --- */

.brand svg {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}
.brand-name {
  font-size: 1.1rem;
  line-height: 1.2;
  max-width: 10ch;
}
.site-header .cta-button {
  white-space: nowrap;
}
main { display:block; }
.text-gray-300, .text-gray-400 {
  color: rgba(255,255,255,0.82) !important;
}
.bg-gold\/20, .border-gold\/30, .border-gold\/20 { }
#global-reach, #final-cta, #contact-form-section, #contact-hero, #hero {
  position: relative;
}
#global-reach::before,
#final-cta::before,
#contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.48);
  pointer-events: none;
}
#global-reach > *, #final-cta > *, #contact-hero > * { position: relative; z-index: 1; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  color: #fff;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.55); }
.contact-form select { color: #fff; }
.contact-form option { color: #0F172A; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.contact-form .full-width { grid-column: 1 / -1; }
.form-submit-row { padding-top: 0.5rem; }
.legal-page-wrapper {
  background: linear-gradient(180deg, #0F172A 0%, #111c33 100%);
}
.legal-hero {
  padding: 5rem 1.5rem 2rem;
}
.legal-hero-inner,
.legal-shell { max-width: 1100px; margin: 0 auto; }
.legal-kicker {
  display:inline-block;
  margin-bottom:1rem;
  padding:0.35rem 0.75rem;
  border:1px solid rgba(201,162,39,0.4);
  color:#C9A227;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:0.78rem;
  border-radius:999px;
  background:rgba(201,162,39,0.08);
}
.legal-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin:0 0 1rem; color:#fff; }
.legal-hero p { max-width: 760px; color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; margin:0; }
.legal-shell { padding: 0 1.5rem 4rem; }
.legal-card {
  background:#fff;
  color:#0F172A;
  border-radius:16px;
  padding:1.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  border:1px solid rgba(15,23,42,0.08);
}
.legal-card section + section { margin-top: 1.5rem; }
.legal-card h2 { font-size:1.35rem; margin:0 0 0.65rem; color:#0F172A; }
.legal-card p { margin:0; line-height:1.75; color:#334155; }
.legal-card a { color:#0F172A; font-weight:700; }
.legal-updated { margin: 0 0 1.5rem; color:#64748b; font-weight:600; }
.thanks-page { display:flex; }
.thanks-main {
  min-height:100vh;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem;
  background: radial-gradient(circle at top, rgba(201,162,39,0.18), transparent 35%), linear-gradient(180deg, #0F172A 0%, #111c33 100%);
}
.thanks-card {
  max-width: 640px;
  width:100%;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(201,162,39,0.22);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}
.thanks-card h1 { margin:0 0 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.thanks-card p { margin:0; color: rgba(255,255,255,0.82); line-height:1.7; }
.thanks-actions { display:flex; flex-wrap:wrap; gap:1rem; margin-top:1.5rem; align-items:center; }
.thanks-link { color:#fff; text-decoration:none; font-weight:700; }
@media (min-width: 768px) {
  .brand svg { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-name { font-size: 1.35rem; max-width: none; }
  .contact-form { grid-template-columns: 1fr 1fr; }
  .legal-card { padding: 2.5rem; }
}

/* --- contact page hard fixes --- */
body[data-page="contact.html"],
html[data-page="contact.html"] body,
html[data-page="contact.html"] {
  background: var(--color-navy);
}

html[data-page="contact.html"] main {
  max-width: none;
  background: var(--color-navy);
}

html[data-page="contact.html"] section {
  position: relative;
  width: 100%;
}

html[data-page="contact.html"] #contact-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 8rem 1.5rem 4rem;
  background:
    linear-gradient(to bottom, rgba(15,23,42,0.55), rgba(15,23,42,0.88)),
    url('../img/contact_hero.webp') center/cover no-repeat;
}
html[data-page="contact.html"] #contact-hero > .absolute { display: none !important; }
html[data-page="contact.html"] #contact-hero > .relative {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

html[data-page="contact.html"] #direct-inquiries,
html[data-page="contact.html"] #contact-form-section,
html[data-page="contact.html"] #investor-relations,
html[data-page="contact.html"] #global-reach,
html[data-page="contact.html"] #faq,
html[data-page="contact.html"] #final-cta {
  padding: 5rem 1.5rem;
}

html[data-page="contact.html"] #direct-inquiries { background: #131d36; }
html[data-page="contact.html"] #contact-form-section { background: #0F172A; }
html[data-page="contact.html"] #investor-relations { background: #131d36; border-top: 1px solid rgba(201,162,39,0.12); border-bottom: 1px solid rgba(201,162,39,0.12); }
html[data-page="contact.html"] #global-reach {
  background:
    linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.82)),
    url('../img/investment_bg.webp') center/cover no-repeat;
}
html[data-page="contact.html"] #faq { background: #131d36; }
html[data-page="contact.html"] #final-cta {
  background:
    linear-gradient(rgba(15,23,42,0.76), rgba(15,23,42,0.88)),
    url('../img/projects_hero.webp') center/cover no-repeat;
  text-align: center;
}
html[data-page="contact.html"] #global-reach > .absolute,
html[data-page="contact.html"] #final-cta > .absolute {
  display: none !important;
}

html[data-page="contact.html"] #direct-inquiries > div,
html[data-page="contact.html"] #contact-form-section > div,
html[data-page="contact.html"] #investor-relations > div,
html[data-page="contact.html"] #global-reach > div,
html[data-page="contact.html"] #faq > div,
html[data-page="contact.html"] #final-cta > div {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

html[data-page="contact.html"] #direct-inquiries .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2rem;
}

html[data-page="contact.html"] #contact-form-section .grid,
html[data-page="contact.html"] #global-reach .flex,
html[data-page="contact.html"] #investor-relations .flex {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 4rem;
  align-items: center;
}

html[data-page="contact.html"] #faq .space-y-6 > * + * { margin-top: 1.5rem; }

html[data-page="contact.html"] #global-reach .h-\[400px\] {
  min-height: 400px;
}

html[data-page="contact.html"] #global-reach .h-\[400px\],
html[data-page="contact.html"] #global-reach .relative.h-\[400px\] {
  position: relative;
}

html[data-page="contact.html"] #global-reach img[alt="Commercial skyscraper"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 250px;
  object-fit: cover;
}
html[data-page="contact.html"] #global-reach img[alt="Architectural details"] {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68%;
  height: 250px;
  object-fit: cover;
}

html[data-page="contact.html"] .bg-\[\#0F172A\],
html[data-page="contact.html"] .bg-\[\#131d36\] {
  background: #131d36;
}
html[data-page="contact.html"] .bg-\[\#0F172A\] { background: #0F172A; }
html[data-page="contact.html"] .rounded-md { border-radius: 8px; }
html[data-page="contact.html"] .border { border: 1px solid rgba(201,162,39,0.2); }
html[data-page="contact.html"] .hard-shadow { box-shadow: 0 18px 46px rgba(0,0,0,0.28); }

html[data-page="contact.html"] .contact-form-card {
  background: #131d36;
}

html[data-page="contact.html"] #final-cta .inline-block.bg-\[\#0F172A\] {
  display: inline-block;
  background: #0F172A;
  color: #fff;
  border: 2px solid rgba(201,162,39,0.7);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  html[data-page="contact.html"] #direct-inquiries .grid,
  html[data-page="contact.html"] #contact-form-section .grid,
  html[data-page="contact.html"] #global-reach .flex,
  html[data-page="contact.html"] #investor-relations .flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  html[data-page="contact.html"] #global-reach .h-\[400px\] {
    min-height: 340px;
  }

  html[data-page="contact.html"] #global-reach img[alt="Commercial skyscraper"] {
    width: 70%;
    height: 200px;
  }
  html[data-page="contact.html"] #global-reach img[alt="Architectural details"] {
    width: 72%;
    height: 200px;
  }
}

@media (max-width: 640px) {
  html[data-page="contact.html"] #contact-hero {
    min-height: 460px;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  html[data-page="contact.html"] #direct-inquiries,
  html[data-page="contact.html"] #contact-form-section,
  html[data-page="contact.html"] #investor-relations,
  html[data-page="contact.html"] #global-reach,
  html[data-page="contact.html"] #faq,
  html[data-page="contact.html"] #final-cta {
    padding: 3.5rem 1rem;
  }
}
/* --- /contact page hard fixes --- */
