/* =====================================================
   COLGAN PLAZA — Stylesheet
   ===================================================== */

:root {
  --cream: #f6f8f8;
  --cream-warm: #eef7f7;
  --bone: #ffffff;
  --ink: #241f31;
  --ink-soft: #4a4554;
  --terracotta: #0b9aa5;
  --terracotta-deep: #087882;
  --tan: #9bd6dc;
  --tan-light: #c9f2f5;
  --forest: #0c8f9a;
  --forest-deep: #241f31;
  --muted: #6d6876;
  --line: rgba(36, 31, 49, 0.12);
  --line-soft: rgba(36, 31, 49, 0.06);

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Inter", -apple-system, system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

.display {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}
.display--light { color: var(--ink); }
.display--light em { color: var(--terracotta); }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.section-eyebrow--light { color: var(--tan); }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid currentColor;
  color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn--full { width: 100%; }

/* =====================================================
   NAV
   ===================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.nav.scrolled .nav__logo { color: var(--ink); }

.nav__logo-img {
  width: 74px;
  height: 44px;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 4px 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.nav.scrolled .nav__logo-img {
  background: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--terracotta); }
.nav__cta {
  padding: 0.7rem 1.3rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.nav__cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 2rem;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 2rem 3rem;
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #eaf7fa;
}
.hero__media img,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,22,43,0.38) 0%, rgba(16,22,43,0.08) 32%, rgba(16,22,43,0.66) 100%),
    linear-gradient(90deg, rgba(16,22,43,0.35) 0%, rgba(16,22,43,0) 55%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  animation: fadeUp 1s 0.2s var(--ease) backwards;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 12px var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 1.8rem;
  font-variation-settings: "opsz" 144;
}
.hero__title span {
  display: block;
  animation: fadeUp 1.2s 0.4s var(--ease) backwards;
}
.hero__title-accent {
  font-style: italic;
  font-weight: 200;
  color: var(--tan-light);
  animation-delay: 0.6s !important;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  animation: fadeUp 1s 0.8s var(--ease) backwards;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 1s 1s var(--ease) backwards;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  max-width: 800px;
  animation: fadeUp 1s 1.2s var(--ease) backwards;
}
.hero__meta div {
  font-size: 0.95rem;
  font-weight: 500;
}
.hero__meta span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.7;
}
.hero__scroll span {
  width: 1px; height: 50px;
  background: currentColor;
  animation: scrollLine 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   MARQUEE
   ===================================================== */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
}
.marquee__track span:nth-child(even) {
  color: var(--terracotta);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   ABOUT
   ===================================================== */

.about {
  padding: 8rem 2rem;
  background: var(--cream);
  position: relative;
}
.about__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__col--text { max-width: 580px; }
.about__body {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.about__body p { margin-bottom: 1.3rem; }
.about__body strong { color: var(--ink); font-weight: 600; }

.about__stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.about__stats div b {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about__stats div span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.about__image-frame {
  position: relative;
  padding: 1.5rem;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 60px -20px rgba(26,22,18,0.18);
  transition: transform 0.5s var(--ease);
}
.about__image-frame:hover { transform: translateY(-6px); }
.about__image-frame img {
  width: 100%;
  border-radius: 2px;
}
.about__image-tag {
  position: absolute;
  bottom: -15px;
  left: 2rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
}

/* =====================================================
   FEATURES
   ===================================================== */

.features {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #f8ffff 0%, #e8f8fa 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(178, 80, 51, 0.15), transparent 70%);
  pointer-events: none;
}
.features__head {
  max-width: 1500px;
  margin: 0 auto 5rem;
  position: relative;
}
.features__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.feature {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s var(--ease);
}
.feature:hover { background: #eefafa; }
.feature__num {
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 2rem;
  font-weight: 400;
}
.feature h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.feature p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.features__rates {
  max-width: 1500px;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.rate-card {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.rate-card:hover {
  background: rgba(178, 80, 51, 0.12);
  border-color: var(--terracotta);
}
.rate-card span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 1rem;
}
.rate-card strong {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: block;
}
.rate-card small {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--tan);
  margin-left: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* =====================================================
   PERMITTED USES
   ===================================================== */

.uses {
  padding: 8rem 2rem;
  background: var(--cream-warm);
  position: relative;
}
.uses__head {
  max-width: 1500px;
  margin: 0 auto 4rem;
}
.uses__list {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px -30px rgba(36,31,49,0.25);
}
.uses__list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.uses__list li {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}
.uses__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
  margin-right: 0.75rem;
  vertical-align: middle;
}
.uses__list li:hover {
  color: var(--terracotta-deep);
  background: rgba(11,154,165,0.06);
}

/* =====================================================
   SITE PLAN
   ===================================================== */

.siteplan {
  padding: 8rem 2rem;
  background: #f7fbfb;
  color: var(--ink);
}
.siteplan__head {
  max-width: 1500px;
  margin: 0 auto 4rem;
}
.siteplan__lede {
  margin-top: 1.5rem;
  max-width: 600px;
  color: var(--ink-soft);
}
.siteplan__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bone);
  cursor: zoom-in;
  padding: 0;
  transition: transform 0.5s var(--ease);
}
.plan-card:hover { transform: translateY(-8px); }
.plan-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: var(--bone);
  padding: 1.5rem;
  transition: transform 0.6s var(--ease);
}
.plan-card:hover img { transform: scale(1.03); }
.plan-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(26,22,18,0.85));
  color: var(--cream);
  text-align: left;
}
.plan-card__label span {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.plan-card__label small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* =====================================================
   LOCATION
   ===================================================== */

.location {
  padding: 8rem 2rem;
  background: var(--bone);
}
.location__head {
  max-width: 1500px;
  margin: 0 auto 4rem;
}
.location__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
.location__map {
  height: 600px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px -20px rgba(26,22,18,0.18);
}
.location__map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.4) contrast(1.02);
}
.location__details h3 {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.location__address {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.location__drive h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.location__drive ul {
  list-style: none;
}
.location__drive li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.location__drive li span {
  color: var(--ink-soft);
  font-weight: 500;
}
.location__drive li b {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}

/* =====================================================
   REGISTER
   ===================================================== */

.register {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f7fbfb 0%, #e6f7f8 55%, #ffffff 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.register::before {
  content: "";
  position: absolute;
  top: 20%; left: -10%;
  width: 40%; height: 80%;
  background: radial-gradient(circle, rgba(178,80,51,0.18), transparent 70%);
  pointer-events: none;
}
.register__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
}
.register__intro p {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 460px;
}
.register__contact {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.register__contact > div span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.register__contact > div strong,
.register__contact > div a,
.register__contact > div p {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.register__contact > div a {
  transition: color 0.3s var(--ease);
}
.register__contact > div a:hover { color: var(--terracotta); }

.register__form {
  background: var(--bone);
  color: var(--ink);
  padding: 3rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.register__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.register__form label > span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.register__form input,
.register__form select,
.register__form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bone);
  transition: all 0.3s var(--ease);
}
.register__form input:focus,
.register__form select:focus,
.register__form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: white;
}
.register__form textarea {
  resize: vertical;
  font-family: var(--body);
}
.field-check {
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem !important;
  margin-top: 0.5rem;
}
.field-check input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--terracotta);
}
.field-check span {
  font-size: 0.82rem !important;
  color: var(--ink-soft) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
}
.register__success {
  display: none;
  padding: 1rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 2px;
  font-size: 0.92rem;
  text-align: center;
}
.register__success.show { display: block; }

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__top {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 1.5rem;
}
.footer__brand p {
  font-size: 0.92rem;
  color: rgba(246,240,230,0.65);
  max-width: 380px;
}
.footer__col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__col p,
.footer__col a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--terracotta); }

.footer__bottom {
  max-width: 1500px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(246,240,230,0.5);
  letter-spacing: 0.05em;
}

/* =====================================================
   LIGHTBOX
   ===================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: var(--cream);
  font-size: 2.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox__close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: rotate(90deg);
}
.lightbox__figure {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__figure figcaption {
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .features__rates { grid-template-columns: 1fr; }
  .about__grid,
  .register__grid,
  .location__grid { gap: 3rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 820px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 6rem 1.5rem 2.5rem; }
  .hero__meta {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero__scroll { display: none; }

  .about,
  .features,
  .uses,
  .siteplan,
  .location,
  .register { padding: 5rem 1.5rem; }

  .about__grid,
  .register__grid,
  .location__grid,
  .siteplan__grid {
    grid-template-columns: 1fr;
  }
  .about__stats { grid-template-columns: repeat(2, 1fr); }

  .features__grid { grid-template-columns: 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .register__form { padding: 2rem 1.5rem; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .location__map { height: 380px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 4rem; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .about__stats div b { font-size: 1.7rem; }
}

@media (max-width: 900px) {
  .uses__list ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .uses__list { padding: 1.25rem; }
  .uses__list ul { grid-template-columns: 1fr; }
}

.nav__logo-mark {
  border-radius: 8px;
  background: linear-gradient(135deg, #0b9aa5, #241f31);
  font-family: var(--body);
  font-weight: 800;
}
.btn--primary { background: linear-gradient(135deg, #0b9aa5, #241f31); }
.btn--primary:hover { background: #0b9aa5; }


/* === Final bright Kanterra theme overrides === */
.nav.scrolled { background: rgba(255,255,255,0.94); }
.nav__links a:hover, .footer__col a:hover, .register__contact > div a:hover { color: var(--terracotta); }
.features__grid { background: rgba(11,154,165,0.18); border-top-color: rgba(11,154,165,0.18); border-left-color: rgba(11,154,165,0.18); }
.feature { border-right-color: rgba(11,154,165,0.18); border-bottom-color: rgba(11,154,165,0.18); box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04); }
.feature p { color: var(--ink-soft); }
.siteplan__lede { color: var(--ink-soft); }
.register__intro p { color: var(--ink-soft); }
.register__contact > div strong, .register__contact > div a, .register__contact > div p { color: var(--ink); }
.register__form { box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10); border: 1px solid rgba(11,154,165,0.14); }
.footer { background: #10162b; }
.footer__logo-img { width: 150px; height: auto; object-fit: contain; background: #fff; border-radius: 8px; padding: 8px; }
.nav__logo-text { white-space: nowrap; }
.about__note { background: rgba(11,154,165,0.08); border-left: 4px solid var(--terracotta); padding: 1rem 1.2rem; border-radius: 8px; }
.uses__list { background: #fff; }
