/* Watermeyer Junction Centre — site styles */

:root {
  --forest: #0d4a3a;
  --forest-deep: #08352a;
  --forest-mid: #176b54;
  --mint: #e8f5ef;
  --sand: #f6f1e8;
  --cream: #fbfaf7;
  --ink: #14201c;
  --ink-soft: #3d4f48;
  --muted: #5c6f67;
  --line: #d7e3dd;
  --white: #ffffff;
  --accent: #c4a35a;
  --accent-soft: #f3ead3;
  --shadow: 0 12px 40px rgba(8, 53, 42, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --header-h: 72px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-intro {
  margin: 0;
  font-size: 1.1rem;
}

.section-head-light .eyebrow,
.section-head-light h2,
.section-head-light .section-intro {
  color: var(--mint);
}

.section-head-light h2 {
  color: var(--white);
}

.section-head-light .section-intro {
  color: rgba(232, 245, 239, 0.88);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(8, 53, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--forest);
}

.logo-mark {
  color: var(--forest);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-deep);
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
}

.site-nav a:hover {
  color: var(--forest);
  background: var(--mint);
}

.site-nav .nav-cta {
  background: var(--forest);
  color: var(--white);
  margin-left: 0.35rem;
}

.site-nav .nav-cta:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest) 48%, #1a7a60 100%);
  color: var(--white);
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(4rem, 10vw, 7rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-shape-1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: -8%;
  top: -15%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.35), transparent 70%);
}

.hero-shape-2 {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  left: -10%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(232, 245, 239, 0.18), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 90%);
}

.hero-inner {
  position: relative;
  max-width: 42rem;
}

.hero .eyebrow {
  color: var(--accent);
}

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

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(232, 245, 239, 0.92);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mint);
}

/* About */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.about-card-title {
  font-family: var(--font);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.facts {
  margin: 0;
}

.facts > div {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.facts > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.facts dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.facts dd {
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}

/* Tenants */
.tenants {
  background: var(--sand);
}

.tenant-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tenant-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
}

.tenant-group-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--forest);
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.tenant-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--forest);
  flex-shrink: 0;
}

.tenant-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.tenant-list li {
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-weight: 550;
  color: var(--ink);
  border: 1px solid transparent;
}

.tenant-list li:nth-child(odd) {
  background: var(--mint);
}

/* Amenities */
.amenities {
  background: linear-gradient(160deg, var(--forest-deep), var(--forest-mid));
  color: var(--white);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.5rem;
}

.amenity-card h3 {
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.amenity-card p {
  margin: 0;
  color: rgba(232, 245, 239, 0.88);
  font-size: 0.95rem;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(196, 163, 90, 0.2);
  color: var(--accent);
}

/* Location */
.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.location-address {
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.location-note {
  margin-bottom: 1.5rem;
}

.map-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13, 74, 58, 0.08), rgba(196, 163, 90, 0.12)),
    linear-gradient(180deg, #dceee6, #c5ddd2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-roads {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-roads span {
  position: absolute;
  background: rgba(13, 74, 58, 0.08);
}

.map-roads span:nth-child(1) {
  width: 100%;
  height: 18px;
  top: 42%;
  transform: rotate(-8deg);
}

.map-roads span:nth-child(2) {
  width: 18px;
  height: 100%;
  left: 58%;
  transform: rotate(6deg);
}

.map-roads span:nth-child(3) {
  width: 70%;
  height: 10px;
  bottom: 22%;
  left: 10%;
  transform: rotate(14deg);
}

.map-pin {
  position: relative;
  z-index: 1;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.map-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest-deep);
}

.map-sub {
  position: relative;
  z-index: 1;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  background: var(--mint);
  padding-block: clamp(2.75rem, 6vw, 4rem);
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-inner h2 {
  margin-bottom: 0.4rem;
}

.contact-inner p {
  margin: 0;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  min-width: min(100%, 260px);
  box-shadow: var(--shadow);
}

.contact-phone:hover {
  border-color: var(--forest-mid);
}

.contact-phone-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-phone-number {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest-deep);
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(232, 245, 239, 0.85);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo-name {
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232, 245, 239, 0.75);
  max-width: 28rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}

.footer-meta a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: 0.4rem !important;
}

.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(232, 245, 239, 0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .about-grid,
  .location-grid,
  .tenant-groups {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}


.tenant-note {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.78em;
  font-weight: 500;
  color: var(--muted, #5a6b64);
  opacity: 0.9;
}
