/* Oak Creek Apartments — shared styles
   Brand: orange #E94E1B, green #2D6661, on white/cream
   Type: Yellowtail (display) + DM Sans (body) */

:root {
  --orange: #E94E1B;
  --orange-deep: #C73E10;
  --orange-soft: #FFF1EB;
  --green: #2D6661;
  --green-deep: #1F4A46;
  --green-soft: #EAF2F0;
  --cream: #FAF6EF;
  --paper: #FFFFFF;
  --ink: #1B2624;
  --muted: #707873;
  --line: #E8E2D5;
  --shadow-sm: 0 1px 2px rgba(27, 38, 36, .04), 0 1px 1px rgba(27, 38, 36, .03);
  --shadow-md: 0 12px 32px -16px rgba(27, 38, 36, .18), 0 2px 6px rgba(27, 38, 36, .04);
  --shadow-lg: 0 32px 64px -28px rgba(27, 38, 36, .25), 0 4px 12px rgba(27, 38, 36, .06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.script {
  font-family: "Yellowtail", "Pacifico", cursive;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--orange);
  line-height: 1;
  padding-bottom: 0.1em; /* clearance for descenders (y, g, p) */
}

h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; }
h3 { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; }

p { margin: 0; color: var(--ink); }
.muted { color: var(--muted); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ───────── Top nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--green-soft); color: var(--green-deep); }
.nav-links a.active { color: var(--green-deep); }
.nav-links a.active::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto -2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-deep); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--green); color: white; }
.btn-secondary:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--cream); }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ───────── Common UI ───────── */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
}
.divider-wave {
  display: block;
  width: 100%;
  height: 36px;
  color: var(--green);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 500;
}
.tag.orange { background: var(--orange-soft); color: var(--orange-deep); }

/* ───────── Footer ───────── */
.footer {
  background: var(--green-deep);
  color: #DCE7E5;
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer h4 { color: white; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer a { color: #DCE7E5; }
.footer a:hover { color: white; }
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer .logo-mark { background: white; padding: 14px 18px; border-radius: var(--radius-md); display: inline-block; }
.footer .logo-mark img { height: 50px; }
.footer .legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #A9BAB7;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }

/* ───────── Section helpers ───────── */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* Subtle texture utility */
.bg-cream { background: var(--cream); }
.bg-green-soft { background: var(--green-soft); }

/* ───────── Bold color treatment (baked-in) ───────── */
.amenities.bold {
  background: var(--green) !important;
}
.amenities.bold .section-head h2,
.amenities.bold .section-head .eyebrow { color: white; }
.amenities.bold .section-head .eyebrow { color: var(--orange); }
.amenities.bold .section-head p { color: rgba(255,255,255,.78); }
.amenities.bold .amenity {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.amenities.bold .amenity h3 { color: white; }
.amenities.bold .amenity p { color: rgba(255,255,255,.7); }
.amenities.bold .amenity .icon {
  background: rgba(255,255,255,.12);
  color: white;
}
.amenities.bold .amenity:hover { border-color: var(--orange); background: rgba(255,255,255,.08); }

.value-strip.bold {
  background: var(--orange) !important;
  border-color: transparent !important;
}
.value-strip.bold .value-item .title { color: white; }
.value-strip.bold .value-item .sub { color: rgba(255,255,255,.82); }
.value-strip.bold .value-item .icon {
  background: rgba(255,255,255,.16);
  border-color: transparent;
  color: white;
}

.hero.bold {
  background: var(--orange-soft);
}
