:root{
  --navy:#0A1F44;
  --gold:#bf9252;
  --bg:#0A1F44;
  --white:#ffffff;
  --line:rgba(255,255,255,0.14);
  --shadow:0 14px 34px rgba(0,0,0,0.22);
  --shadowSoft:0 10px 26px rgba(0,0,0,0.16);
  --radius:18px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;}
body{
  font-family:"Source Sans 3", Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--white);
  line-height:1.5;
}

a{color:inherit;text-decoration:none;}
.container{max-width:980px;margin:0 auto;padding:0 18px;}

/* Visible focus for keyboard users */
:focus-visible{
  outline: 3px solid rgba(191,146,82,0.75);
  outline-offset: 3px;
  border-radius: 12px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:18px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--white);
  color:var(--navy);
  border-radius:10px;
  z-index:999;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,31,68,0.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:flex-start; /* left aligned */
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px; /* space between logo and text */
  min-width:0;
}

.brand-logo{
  height:44px;     /* slightly larger logo */
  width:auto;
  display:block;
  object-fit:contain;
}

.brand-text{
  font-weight:900;
  font-size:22px;  /* larger header text */
  line-height:1;
  letter-spacing:0.3px;
  white-space:nowrap;
}

/* HERO */
.hero{
  padding:54px 0 28px;
}

.hero-inner{
  max-width:900px;
}

.eyebrow{
  display:inline-block;
  font-weight:800;
  color:rgba(255,255,255,0.84);
  letter-spacing:0.3px;
  margin-bottom:12px;
}

.hero h1{
  font-size: clamp(34px, 4.4vw, 54px);
  line-height:1.05;
  margin-bottom:16px;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  gap:14px;
  font-size:18px;
  color:rgba(255,255,255,0.92);
  max-width:74ch;
}

.hero-copy strong{
  color:rgba(255,255,255,0.98);
}

/* SECTIONS */
.section{
  padding:28px 0 66px;
}

.section-head{
  margin-bottom:14px;
}

.section-head h2{
  font-size:26px;
  line-height:1.2;
  margin-bottom:6px;
}

.section-subhead{
  color:rgba(255,255,255,0.78);
  font-weight:600;
  max-width:80ch;
}

/* CITY GRID WITH PHOTOS */
.city-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

.city-card{
  position:relative;
  border-radius: var(--radius);
  min-height: 200px;
  overflow:hidden;

  /* THICKER, MORE WHITE OUTLINE */
  border: 3px solid rgba(255,255,255,0.45);

  box-shadow: var(--shadowSoft);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;

  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
}

.city-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(10,31,68,0.10) 0%,
    rgba(10,31,68,0.58) 70%,
    rgba(10,31,68,0.82) 100%
  );
}

.city-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,0.65);
}

.city-card-inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  gap:10px;
}

.city-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.city-name{
  font-size:20px;
  font-weight:900;
  letter-spacing:0.2px;
}

.city-meta{
  color:rgba(255,255,255,0.86);
  font-weight:600;
  font-size:14px;
  line-height:1.45;
  max-width: 42ch;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.badge-live{
  border-color: rgba(191,146,82,0.55);
  background: rgba(191,146,82,0.18);
}

.badge-soon{
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
}

.badge-muted{
  opacity:0.92;
}

.city-card-muted{
  opacity:0.78;
  border-style:dashed;
  background-image:none;
  background: rgba(255,255,255,0.06);
}

.city-card-muted::before{
  background: linear-gradient(
    180deg,
    rgba(10,31,68,0.18) 0%,
    rgba(10,31,68,0.62) 100%
  );
}

.city-card-muted:hover{
  transform:none;
  box-shadow: var(--shadowSoft);
  cursor:not-allowed;
}

/* City images in /public/gallery/ */
.city-wilmington{ background-image:url("gallery/wilmington.jpg"); }
.city-raleigh{ background-image:url("gallery/raleigh.jpg?v=2"); }
.city-durham{ background-image:url("gallery/durham.jpg"); }

/* CONTACT (full-width, spans both columns, email not a button) */
.section-contact{
  padding-top: 18px;
}

.contact-card{
  max-width: 980px; /* match container width */
  width: 100%;
  margin: 6px auto 0; /* subtle spacing from grid */

  border: 2px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  padding:22px;
}

.contact-card h2{
  font-size:24px;
  margin-bottom:10px;
}

.contact-text{
  color:rgba(255,255,255,0.86);
  font-weight:600;
  font-size:16px;
  line-height:1.6;
  max-width: 78ch;
  margin-bottom:8px;
}

.contact-email a{
  font-weight:900;
  font-size:16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(255,255,255,0.92);
}

.contact-email a:hover{
  color: rgba(255,255,255,1);
}

/* FOOTER */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.12);
  padding:18px 0 22px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.footer-legal{
  color:rgba(255,255,255,0.72);
  font-weight:600;
  font-size:14px;
  line-height:1.55;
  text-align:right;
}

/* Responsive */
@media (max-width: 640px){
  .hero{padding:44px 0 22px;}
  .city-grid{grid-template-columns: 1fr;}
  .city-card{min-height: 220px;}
  .brand-logo{height:38px;}
  .brand-text{font-size:18px;}
}
.contact-text a{
  font-weight:700;
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-text a:hover{
  color: #ffffff;
}
.contact-text a{
  color: rgba(255,255,255,0.95);
  font-weight:700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.contact-text a:hover{
  color: #ffffff;
}
.footer-inner{
  display:block;
}

.footer-legal{
  text-align:left;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,0.75);
  max-width:900px;
}

.footer-accessibility{
  display:inline;
  margin-left:8px;
}

.footer-legal a{
  color:rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset:3px;
}

.footer-legal a:hover{
  color:#ffffff;
}
.brand-text{
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.brand-text .tm{
  font-size: 0.6em;
  line-height: 1;
  vertical-align: super;
}
.footer-inner{
  display:block;
}

.footer-copy{
  max-width: 980px;
}

.footer-copy p{
  margin: 0 0 10px 0; /* removes browser defaults */
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.footer-copy a{
  color: #ffffff;
  text-decoration: underline;
}
/* HERO hierarchy */
.hero-title{
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.03;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  font-weight: 900;
}

.hero-subtitle{
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.80);
  font-weight: 700;
}

/* If your old eyebrow is still there, either delete it or soften it */
.eyebrow{
  display:none;
}
