/* ---------------------------------------------------------------
   Guidepost Realty — mock site styles
   Font: Proxima Nova (brand spec). Proxima Nova is a licensed,
   non-free font — it will render correctly on any machine that has
   it installed/licensed (e.g. via Adobe Fonts). Everywhere else this
   falls back to Inter, a similar-shaped geometric sans pulled from
   Google Fonts, so the layout still reads correctly for now.
   --------------------------------------------------------------- */

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

:root {
  --navy:        #213751;
  --navy-soft:   #4B5A6B;   /* body copy on light backgrounds */
  --lime:        #B9DD4A;
  --paper:       #F6F5F1;   /* warm off-white, alternate section bg */
  --white:       #FFFFFF;
  --hairline:    #DCDCD3;
  --hairline-on-dark: rgba(255, 255, 255, 0.18);

  --font-body: 'Proxima Nova', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --content-width: 1120px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  height: 100%;
}

/* Sticky-footer layout: main grows to fill any leftover viewport
   height so the footer always sits at the bottom of the screen,
   even on a page (like coming-soon.html) with very little content. */
body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.site-header,
.site-footer {
  flex: none;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

h1, h2, h3 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.15rem; margin-bottom: var(--space-1); }

p { margin: 0 0 var(--space-2); }

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover { color: var(--lime); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* Eyebrow label + signature "waypoint" mark ---------------------
   A short line with a raised centered notch, echoing the crossbar
   of the Guidepost key mark. Used wherever a section introduces
   itself, instead of a generic numbered or colored tab. */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 6px;
  flex: none;
  background-image:
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 28px 1px;
  background-position: center;
  position: relative;
}

.eyebrow::after {
  content: '';
  display: none;
}

.eyebrow--on-dark { color: var(--lime); }

/* ---------------------------------------------------------------
   Header
   --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 84px;
}

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

.brand-mark {
  height: 30px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: var(--space-4);
  margin-left: var(--space-2);
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-soft);
}

.site-nav a:hover { color: var(--navy); }

.header-phone {
  margin-left: auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: var(--space-6) 0;
}

.hero-key {
  position: absolute;
  top: 0;
  right: var(--space-4);
  height: 100%;
  width: auto;
  max-width: 220px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  color: var(--white);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 520px;
}

.button {
  display: inline-block;
  margin-top: var(--space-3);
  padding: 14px 30px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  letter-spacing: 0.01em;
}

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

/* ---------------------------------------------------------------
   About
   --------------------------------------------------------------- */

.about {
  padding: var(--space-6) 0;
}

.about-inner { max-width: 720px; }

/* ---------------------------------------------------------------
   Services
   --------------------------------------------------------------- */

.services {
  background: var(--paper);
  padding: var(--space-6) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-4);
}

.service {
  padding: 0 var(--space-4);
  border-left: 1px solid var(--hairline);
}

.service:first-child { border-left: none; padding-left: 0; }

.service p { color: var(--navy-soft); font-size: 0.98rem; margin-bottom: 0; }

/* ---------------------------------------------------------------
   Contact
   --------------------------------------------------------------- */

.contact {
  padding: var(--space-6) 0;
}

.contact-inner { max-width: 640px; }

.contact-list {
  margin: var(--space-4) 0 0;
  border-top: 1px solid var(--hairline);
}

.contact-row {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--hairline);
}

.contact-row dt {
  flex: 0 0 160px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-soft);
}

.contact-row dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-row a:hover { color: var(--navy); text-decoration: underline; }

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

.site-footer {
  background: var(--navy);
  padding: var(--space-5) 0 var(--space-4);
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-mark {
  height: 26px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: var(--space-3);
  margin-right: auto;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-nav a:hover { color: var(--lime); }

.footer-meta {
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-meta p { margin: 0 0 4px; }

.footer-meta a { color: rgba(255, 255, 255, 0.78); }
.footer-meta a:hover { color: var(--lime); }

.footer-copyright { color: rgba(255, 255, 255, 0.4); }

/* ---------------------------------------------------------------
   Construction (coming-soon.html)
   --------------------------------------------------------------- */

.construction {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: var(--space-6) 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.construction-key {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 480px;
  width: auto;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
}

.construction-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.construction .eyebrow {
  justify-content: center;
}

.construction-sub {
  font-size: 1.05rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.construction .contact-list {
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.construction .button {
  margin-top: var(--space-3);
}

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

@media (max-width: 780px) {
  .wrap { padding: 0 var(--space-3); }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  .site-nav { display: none; }

  .header-phone { margin-left: auto; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .service { border-left: none; padding-left: 0; }

  .contact-row { flex-direction: column; gap: 4px; }
  .contact-row dt { flex: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
