/* ============================================================
   DreamSpace — Faithful HTML/CSS/JS rebuild from Lovable source
   Fonts: Space Grotesk (display) + Inter (body)
   Logo: Navy wordmark (DreamSpace #D4B896 dots on #091b2c bg)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Noto+Sans+Georgian:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  --radius: 0.25rem;

  /* Brand palette — exact from styles.css */
  --navy:        #0E1B2E;
  --navy-deep:   #091420;
  --gold:        #C9A24B;
  --gold-soft:   #D4B573;
  --steel:       #7C8798;
  --steel-light: #A9B2BF;
  --offwhite:    #F4F6F8;
  --white:       #FFFFFF;
  --border:      #E8ECF0;

  --font-display: 'Noto Sans Georgian', 'Space Grotesk', system-ui, sans-serif;
  --font-sans:    'Noto Sans Georgian', 'Inter', system-ui, sans-serif;

  --shadow-elevate: 0 20px 60px -20px rgba(14,27,46,0.35);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- LAYOUT ---- */
.container-x {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container-x { padding: 0 2.5rem; } }

/* ---- EYEBROW ---- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ---- GOLD UNDERLINE ---- */
.gold-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--offwhite);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--offwhite); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(14,27,46,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo { display: flex; align-items: center; }
.site-logo svg { height: 40px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(244,246,248,0.8);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.header-cta { display: none; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--offwhite);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: currentColor; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--navy-deep);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-inner a {
  color: rgba(244,246,248,0.9);
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-nav-inner a:hover, .mobile-nav-inner a.active { color: var(--gold); }
.mobile-nav-inner .btn-gold { align-self: flex-start; margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ============================================================
   PAGE WRAPPER (push below fixed header)
   ============================================================ */
.page-content { padding-top: 80px; }
/* hero pages start from -80px to sit behind nav */
.page-content--hero { padding-top: 0; }

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,27,46,0.7) 0%, rgba(14,27,46,0.55) 40%, rgba(14,27,46,0.95) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
  padding-top: 10rem;
  color: var(--offwhite);
}
.hero-body .eyebrow { margin-bottom: 1.5rem; }
.hero-body h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  max-width: 820px;
  line-height: 1.02;
}
.hero-body h1 .gold { color: var(--gold); }
.hero-body p {
  margin-top: 2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  color: rgba(244,246,248,0.8);
  line-height: 1.7;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--white); }
.stats-grid {
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 1.5rem;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.stat-value::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2.5rem; height: 2px;
  background: var(--gold);
}
.stat-label {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; text-align: left; }
}

/* ============================================================
   PAGE HEADER (non-home pages)
   ============================================================ */
.page-header {
  background: var(--navy);
  color: var(--offwhite);
  padding: 6rem 0 8rem;
  margin-top: -80px;
  padding-top: calc(80px + 6rem);
}
.page-header .eyebrow { margin-bottom: 1.5rem; }
.page-header h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  max-width: 760px;
  line-height: 1.05;
}
.page-header h1 .gold { color: var(--gold); }
.page-header p {
  margin-top: 2rem;
  max-width: 640px;
  color: rgba(244,246,248,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ============================================================
   SECTIONS — generic
   ============================================================ */
.section { padding: 6rem 0 8rem; }
.section--offwhite { background: var(--offwhite); }
.section--navy { background: var(--navy); color: var(--offwhite); }
.section--white { background: var(--white); }

.section-head { margin-bottom: 4rem; max-width: 760px; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
}
.section--navy .section-head h2 { color: var(--offwhite); }

/* ============================================================
   SERVICE CARDS (homepage)
   ============================================================ */
.service-cards { display: grid; gap: 1.5rem; }
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevate);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.925rem; color: var(--steel); line-height: 1.75; }
.service-card-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.service-card:hover .service-card-link { color: var(--gold); }
.service-card-link svg { width: 14px; height: 14px; }
@media (min-width: 768px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PROJECT GRID
   ============================================================ */
.projects-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.project-grid { display: grid; gap: 1.5rem; }
.project-card { display: block; }
.project-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--offwhite);
}
.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-info { padding-top: 1.5rem; }
.project-meta-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.project-type { color: var(--gold); font-weight: 600; }
.project-sep { color: var(--steel-light); }
.project-status { color: var(--steel); }
.project-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.project-card:hover h2 { color: var(--gold); }
.project-card .project-location { font-size: 0.875rem; color: var(--steel); }
.project-card p.desc { margin-top: 0.75rem; font-size: 0.925rem; color: var(--steel); line-height: 1.75; }
.project-dl {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.project-dl dt {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.25rem;
}
.project-dl dt svg { width: 11px; height: 11px; }
.project-dl dd { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
@media (min-width: 768px) { .project-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.5rem; } }
/* full project grid has larger row gap */
.project-grid--full { gap: 1.5rem 1.5rem; }
@media (min-width: 768px) { .project-grid--full { row-gap: 4rem; } }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
.process-step {
  background: var(--offwhite);
  padding: 2rem 2.5rem;
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.process-step h3 { margin-top: 1.5rem; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.process-step p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--steel); line-height: 1.7; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid { display: grid; gap: 2.5rem; }
.value-item svg { width: 28px; height: 28px; color: var(--gold); }
.value-item h3 { margin-top: 1.5rem; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.value-item p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--steel); line-height: 1.7; }
/* About page values use card style */
.values-grid--cards .value-item {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  text-align: center;
  padding: 6rem 0 8rem;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--offwhite);
  max-width: 760px;
  margin: 0 auto;
}
.cta-band h2 .gold { color: var(--gold); }
.cta-band p {
  margin-top: 1.5rem;
  color: rgba(244,246,248,0.7);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-gold { margin-top: 2.5rem; }

/* ============================================================
   ABOUT PAGE — story grid
   ============================================================ */
.story-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.story-grid img { width: 100%; height: auto; }
.story-text .eyebrow { margin-bottom: 1rem; }
.story-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); }
.story-text .paras { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.story-text .paras p { font-size: 0.925rem; color: var(--steel); line-height: 1.8; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; } }


/* ============================================================
   ABOUT PAGE — featured service stories
   ============================================================ */
.feature-story {
  padding: 5.5rem 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.feature-story--alternate { background: var(--offwhite); }
.feature-story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.feature-story-media {
  overflow: hidden;
  min-height: 320px;
  background: var(--offwhite);
}
.feature-story-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.feature-story:hover .feature-story-media img { transform: scale(1.025); }
.feature-story-content { max-width: 610px; }
.feature-story-content .eyebrow { margin-bottom: 1rem; }
.feature-story-content h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3.25vw, 2.75rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.feature-story-content .paras {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-story-content .paras p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.8;
}
.feature-story-content .btn-outline-navy { margin-top: 2rem; }
@media (min-width: 1024px) {
  .feature-story { padding: 7rem 0; }
  .feature-story-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(4rem, 7vw, 7rem); }
  .feature-story--alternate .feature-story-media { order: 2; }
  .feature-story--alternate .feature-story-content { order: 1; }
  .feature-story-media,
  .feature-story-media img { min-height: 480px; }
}
@media (max-width: 767px) {
  .feature-story { padding: 4.25rem 0; }
  .feature-story-grid { gap: 2.25rem; }
  .feature-story-content h2 { font-size: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-story-media img { transition: none; }
  .feature-story:hover .feature-story-media img { transform: none; }
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leaders-grid { display: grid; gap: 2rem; }
.leader { border-top: 2px solid var(--gold); padding-top: 2rem; }
.leader h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.leader .role { margin-top: 0.25rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.leader p { margin-top: 1rem; color: var(--steel); line-height: 1.7; }
@media (min-width: 768px) { .leaders-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   LICENSED BAND (about)
   ============================================================ */
.licensed-band {
  background: var(--navy);
  padding: 5rem 0;
}
.licensed-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.licensed-band .eyebrow { margin-bottom: 0.5rem; }
.licensed-band p { color: rgba(244,246,248,0.8); max-width: 680px; line-height: 1.7; }
@media (min-width: 768px) {
  .licensed-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block { padding: 6rem 0 8rem; }
.service-block[id] { scroll-margin-top: 96px; }
.service-block--offwhite { background: var(--offwhite); }
.service-block--white { background: var(--white); }
.service-block-grid { display: grid; gap: 3rem; }
.service-block-left .eyebrow { margin-bottom: 1rem; }
.service-block-left .service-icon { margin-bottom: 1.5rem; }
.service-block-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--navy); }
.service-block-left .tagline { margin-top: 1rem; color: var(--steel); font-style: italic; line-height: 1.7; }
.service-block-right { display: grid; gap: 2.5rem; }
.service-block-right h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.includes-list { display: flex; flex-direction: column; gap: 0.75rem; }
.includes-list li { display: flex; gap: 0.75rem; font-size: 0.9rem; color: var(--steel); align-items: flex-start; }
.includes-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.service-block-right .process-text { color: var(--steel); line-height: 1.8; font-size: 0.925rem; }
.service-block-right .btn-outline-navy { margin-top: 2rem; }
.service-visual {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--offwhite);
}
.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
@media (min-width: 768px) { .service-block-right { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .service-block-grid { grid-template-columns: 4fr 8fr; gap: 3rem; } }

/* ============================================================
   FILTER TABS (projects)
   ============================================================ */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.filter-tab {
  padding: 0.625rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--navy); }
.filter-tab.active { background: var(--navy); color: var(--offwhite); border-color: var(--navy); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-info-list li { display: flex; gap: 1rem; color: var(--steel); font-size: 0.925rem; line-height: 1.6; }
.contact-info-list li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-list a:hover { color: var(--gold); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.925rem; color: var(--steel); }
.hours-row .val { color: var(--navy); }
.map-wrap { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.contact-form-wrap {
  background: var(--offwhite);
  border: 1px solid var(--border);
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form-wrap { padding: 3rem; } }
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237C8798' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-success { text-align: center; padding: 4rem 0; }
.form-success svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto; }
.form-success h3 { margin-top: 1.5rem; font-size: 2rem; font-weight: 700; color: var(--navy); }
.form-success p { margin-top: 0.75rem; color: var(--steel); max-width: 400px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(244,246,248,0.8);
}
.footer-grid {
  padding: 5rem 0;
  display: grid;
  gap: 3rem;
}
.footer-logo svg { height: 44px; width: auto; }
.footer-brand p { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.75; color: var(--steel-light); }
.footer-brand .eyebrow { margin-top: 1.5rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.footer-contact-list li { display: flex; gap: 0.75rem; }
.footer-contact-list svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--steel-light);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}


/* ============================================================
   Georgian localization + centered logo header override
   ============================================================ */
body { font-family: var(--font-sans); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.18; }
.eyebrow, .stat-label, .btn-gold, .btn-ghost-light, .btn-outline-navy,
.project-type, .project-status, .nav-links a, .footer-links a { letter-spacing: 0.08em; }

.site-logo img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

/* Desktop: logo centered, nav underneath. Header CTA hidden for cleaner layout. */
@media (min-width: 1024px) {
  .header-inner {
    height: 118px;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
  }
  .site-logo {
    justify-content: center;
  }
  .site-logo img {
    height: 48px;
    max-width: min(420px, 72vw);
  }
  .nav-links {
    display: flex;
    gap: 2.25rem;
  }
  .header-cta {
    display: none !important;
  }
  .hero {
    margin-top: -118px;
  }
  .page-header {
    margin-top: -118px;
    padding-top: calc(118px + 6rem);
  }
  .hero-body {
    padding-top: 13rem;
  }
}

@media (max-width: 1023px) {
  .site-logo img {
    height: 38px;
    max-width: 240px;
  }
}


/* Logo-preserve correction: center the original SVG logo without replacing the artwork. */
.site-logo svg {
  display: block;
  width: auto;
  height: 44px;
}
@media (min-width: 1024px) {
  .site-logo svg {
    height: 48px;
    max-width: min(420px, 72vw);
  }
}
@media (max-width: 1023px) {
  .site-logo svg {
    height: 38px;
    max-width: 240px;
  }
}


/* ============================================================
   FRAMED CENTER LOGO HEADER — split Georgian navigation
   ============================================================ */
:root {
  --header-h: 72px;
  --header-h-mobile: 64px;
}

.site-header {
  background: var(--navy);
}

.header-inner.header-inner--split {
  height: var(--header-h-mobile);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo--center {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-logo--center img {
  display: block;
  width: min(68vw, 300px);
  height: auto;
  object-fit: contain;
}

.header-inner--split .hamburger {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.header-inner--split .nav-links {
  display: none;
}

.header-inner--split .nav-link {
  white-space: nowrap;
}

.mobile-nav-inner .btn-gold {
  display: none;
}

.page-content {
  padding-top: var(--header-h-mobile);
}

.hero {
  margin-top: calc(-1 * var(--header-h-mobile));
}

.page-header {
  margin-top: calc(-1 * var(--header-h-mobile));
  padding-top: calc(var(--header-h-mobile) + 6rem);
}

@media (min-width: 1024px) {
  .header-inner.header-inner--split {
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }

  .header-inner--split .nav-links {
    display: flex;
    align-items: center;
    gap: 2.15rem;
  }

  .nav-links--left {
    justify-content: flex-end;
  }

  .nav-links--right {
    justify-content: flex-start;
  }

  .site-logo--center img {
    width: clamp(280px, 32vw, 400px);
  }

  .header-inner--split .hamburger {
    display: none;
  }

  .page-content {
    padding-top: var(--header-h);
  }

  .hero {
    margin-top: calc(-1 * var(--header-h));
  }

  .page-header {
    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + 6rem);
  }
}

@media (min-width: 1280px) {
  .header-inner--split .nav-links {
    gap: 2.5rem;
  }

  .site-logo--center img {
    width: 420px;
  }
}

@media (max-width: 420px) {
  .site-logo--center img {
    width: min(72vw, 250px);
  }
}

/* ============================================================
   HEADER 08 — inline SVG gold-framed logo
   ============================================================ */
.logo-framed {
  display: block;
  width: min(55vw, 180px);
  height: auto;
}
@media (min-width: 1024px) {
  .logo-framed {
    width: 200px;
  }
}
@media (min-width: 1280px) {
  .logo-framed {
    width: 220px;
  }
}

/* ============================================================
   HEADER — combined 04+05 edge design
   diamond · ig · fb · rule · nav | logo | nav · rule · lang · cta · diamond
   ============================================================ */

/* Edge containers */
.hdr-edge {
  display: none;
  align-items: center;
  gap: 0.8rem;
}
.hdr-edge--left  { justify-content: flex-start; }
.hdr-edge--right { justify-content: flex-end; }

/* Diamond ornament */
.hdr-diamond {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Social icons */
.hdr-socials { display: flex; gap: 0.45rem; }
.hdr-social {
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(201,162,75,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.hdr-social svg { display: block; }
.hdr-social:hover { border-color: var(--gold); color: var(--gold-soft); }

/* Vertical rule divider */
.hdr-rule {
  display: block;
  width: 0.5px;
  height: 28px;
  background: rgba(201,162,75,0.28);
  flex-shrink: 0;
}

/* Language switcher */
.hdr-lang {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 2px;
  flex-shrink: 0;
}
.hdr-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(244,246,248,0.45);
  padding: 3px 8px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.hdr-lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

/* CTA button */
.hdr-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.hdr-cta:hover { background: var(--gold-soft); }

/* Desktop: show edge groups, hide old nav */
@media (min-width: 1024px) {
  .hdr-edge { display: flex; }

  /* Reset the split header grid to 3 equal-flex columns */
  .header-inner.header-inner--split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }

  /* Hide the old standalone nav-links inside the split layout
     (they're now inside hdr-edge) */
  .header-inner--split > .nav-links { display: none; }

  /* Nav inside edge groups */
  .hdr-edge .nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .hdr-edge .nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,246,248,0.6);
    transition: color 0.2s;
    white-space: nowrap;
  }
  .hdr-edge .nav-links a:hover,
  .hdr-edge .nav-links a.active { color: var(--gold); }

  /* Push left nav flush to logo, right nav flush from logo */
  .hdr-edge--left  { justify-content: flex-end; padding-right: 1.5rem; }
  .hdr-edge--right { justify-content: flex-start; padding-left: 1.5rem; }
}

/* Wide screens — a little more breathing room */
@media (min-width: 1280px) {
  .hdr-edge { gap: 1rem; }
  .hdr-edge .nav-links { gap: 1.4rem; }
}

/* Mobile: add lang + cta to mobile-nav drop-down */
@media (max-width: 1023px) {
  .hdr-edge { display: none; }
  .mobile-nav-inner .hdr-lang { display: flex; }
  .mobile-nav-inner .hdr-cta  { display: inline-flex; }
}
