/* =============================================
   Arbor View Residential Assisted Living
   Global Stylesheet — style.css
   Applies to all pages sitewide
   ============================================= */

/* ----- RESET & ROOT ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark:  #2d4a2d;
  --green-mid:   #3d6b3d;
  --green-sage:  #7a9e6e;
  --green-light: #e8f0e4;
  --cream:       #f9f6f0;
  --warm-white:  #fdfcf9;
  --text-dark:   #1a2a1a;
  --text-mid:    #3d4d3a;
  --text-light:  #6b7f68;
  --gold:        #b8975a;
}

/* ----- BASE TYPOGRAPHY ----- */
body {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

p {
  font-size: 17px;
  line-height: 1.95;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  font-size: 16px;
  line-height: 2;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.75;
}

a {
  color: inherit;
}

address {
  font-style: normal;
  font-size: 16px;
  line-height: 2;
}

/* ----- LAYOUT ----- */
.inner {
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 4.5rem 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ----- UTILITY CLASSES ----- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.sec-title {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.sec-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ----- BUTTONS ----- */
.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 13px 34px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover {
  background: #a07840;
}

.btn-outline-w {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 13px 34px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ----- TAGS & BADGES ----- */
.tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin: 3px 3px 0 0;
}

.flagship-badge {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 0.75rem;
}

.feat-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 1.25rem;
}

/* ----- NAVIGATION ----- */
nav {
  background: var(--green-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.2;
}

.nav-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-phone {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.03em;
}

/* ----- FOOTER ----- */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-brand .sub2 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  font-size: 14px;
  line-height: 1;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col address {
  font-size: 14px;
  line-height: 1.9;
}

.footer-col address a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col address a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
}

/* ----- STATS ROW (shared) ----- */
.stats-row {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 74, 45, 0.15);
  margin-top: 1.5rem;
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--green-dark);
  line-height: 1;
}

.stat .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ----- CREDENTIAL STRIP (shared) ----- */
.cred-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cred {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ----- DIVIDER ----- */
.divider-v {
  width: 1px;
  height: 56px;
  background: rgba(45, 74, 45, 0.15);
  margin: auto;
}

/* ----- HAMBURGER MENU ----- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-dark);
  z-index: 150;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  overflow-y: auto;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.25rem;
  display: block;
}

.nav-mobile-phone-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 2rem;
  display: block;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.nav-mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-links a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 18px;
  padding: 1rem 0;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  color: #fff;
}

.nav-mobile-assessment {
  display: block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: auto;
  transition: background 0.2s;
}

.nav-mobile-assessment:hover {
  background: #a07840;
}

.nav-mobile-secondary-phone {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .divider-v {
    display: none;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}