*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  color: #0a0a0a;
  background: #fafafa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --green: #8BC540;
  --green-dark: #6fa832;
  --green-glow: rgba(139,197,64,0.3);
  --orange: #F58220;
  --orange-dark: #d96e10;
  --orange-glow: rgba(245,130,32,0.3);
  --black: #0a0a0a;
  --dark: #141414;
  --gray-900: #1a1a1a;
  --gray-800: #222;
  --gray-600: #666;
  --gray-400: #999;
  --gray-200: #e5e5e5;
  --gray-100: #f2f2f2;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s; letter-spacing: -0.01em;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-cta-wrap { display: flex; gap: 0.75rem; align-items: center; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 1.75rem; border-radius: 60px; border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1); letter-spacing: -0.01em;
}
.btn-green { background: var(--green); color: var(--black); box-shadow: 0 0 0 0 var(--green-glow); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--green-glow); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--orange-glow); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--black); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-arrow::after { content: ' \2192'; font-size: 1.1em; }

/* LAYOUT */
.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem;
  background: rgba(139,197,64,0.08); padding: 0.4rem 1rem; border-radius: 60px;
}

/* PROJECT HERO */
.project-hero {
  min-height: 70vh; position: relative; display: flex; align-items: flex-end;
  background: var(--black); overflow: hidden;
}
.project-hero-bg { position: absolute; inset: 0; }
.project-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; filter: contrast(1.1) saturate(1.15); }
.project-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139,197,64,0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.92) 100%);
}
.project-hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 8rem 2rem 4.5rem; width: 100%;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.week-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(139,197,64,0.12); border: 1px solid rgba(139,197,64,0.25);
  border-radius: 60px; padding: 0.4rem 1rem; margin-bottom: 1.25rem;
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.project-hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -0.035em;
  color: #fff; margin-bottom: 1.25rem;
}
.project-hero h1 .state {
  color: var(--green);
}
.project-meta-pills {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem;
}
.meta-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 60px; padding: 0.45rem 1.1rem;
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85);
}

/* INFO STRIP */
.info-strip {
  background: var(--green); padding: 1.25rem 0;
}
.info-strip-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
}
.info-item {
  display: flex; align-items: center; gap: 0.6rem;
}
.info-item svg { flex-shrink: 0; opacity: 0.8; }
.info-item strong { font-size: 0.88rem; font-weight: 700; color: var(--black); }
.info-item span { font-size: 0.8rem; color: rgba(0,0,0,0.6); font-weight: 500; }
.info-strip-cta { margin-left: auto; }

/* PROJECT CONTENT SECTIONS */
.project-section { padding: clamp(4rem, 8vw, 6rem) 0; }
.project-section.dark { background: var(--black); color: #fff; }
.project-section.light { background: #fff; }
.project-section.gray { background: var(--gray-100); }

.project-section h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem;
}
.project-section p { font-size: 1.05rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1rem; }
.project-section.dark p { color: rgba(255,255,255,0.55); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* CHECKLIST */
.checklist { list-style: none; margin: 1.5rem 0 2rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200);
  font-size: 1rem; font-weight: 500; color: var(--black);
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; }
.dark .checklist li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.08); }

/* WORK TYPE CARDS */
.work-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.work-card:hover { border-color: rgba(139,197,64,0.25); transform: translateY(-4px); }
.work-card .icon { font-size: 1.75rem; margin-bottom: 1rem; }
.work-card h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
}
.work-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin: 0; }

/* REGISTER CTA SECTION */
.register-cta {
  position: relative; padding: clamp(5rem, 10vw, 8rem) 0; overflow: hidden;
  text-align: center;
}
.register-cta-bg { position: absolute; inset: 0; }
.register-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.register-cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.88) 100%);
}
.register-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.register-cta-inner h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 1rem;
}
.register-cta-inner h2 .accent {
  background: linear-gradient(135deg, var(--green), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.register-cta-inner p { color: rgba(255,255,255,0.55); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }
.register-cta-inner .cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.register-cta-inner .meta { margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* FILTER BAR */
.filter-bar {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  min-width: 5.5rem;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.filter-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1.4;
}
.filter-pill:hover {
  border-color: var(--green);
  color: var(--green);
}
.filter-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.filter-empty {
  text-align: center;
  padding: 3rem 1rem 4rem;
  color: var(--gray-400);
}
.filter-empty p { font-size: 1rem; }
.filter-reset-link {
  background: none;
  border: none;
  color: var(--green);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  font-family: inherit;
}
@media (max-width: 600px) {
  .filter-label { min-width: unset; width: 100%; }
  .filter-group { gap: 0.5rem; }
}

/* PROJECT LISTING PAGE */
.listing-hero {
  min-height: 50vh; position: relative; display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.listing-hero-bg { position: absolute; inset: 0; }
.listing-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.listing-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}
.listing-hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 8rem 2rem 4rem; width: 100%;
}
.listing-hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1.04;
  max-width: 700px; margin-bottom: 1rem;
}
.listing-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; }

/* WEEK SECTION */
.week-section { padding: 3rem 0 0; }
.week-section:last-of-type { padding-bottom: 0; }
.week-header {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200);
}
.week-header h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--black); letter-spacing: -0.02em;
}
.week-header .week-dates {
  font-size: 0.85rem; font-weight: 600; color: var(--gray-400); letter-spacing: 0.02em;
}
.week-header .week-badge-sm {
  background: var(--green); color: var(--black); font-size: 0.7rem; font-weight: 800;
  padding: 0.25rem 0.75rem; border-radius: 60px; text-transform: uppercase; letter-spacing: 0.06em;
}
.week-header .week-badge-sm.spring { background: var(--orange); color: #fff; }

/* PROJECT CARDS */
.project-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.project-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--green); }
.project-card-img { height: 180px; overflow: hidden; position: relative; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.5) 100%);
}
.project-card-body { padding: 1.5rem; }
.project-card-location {
  font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--black); letter-spacing: -0.025em; margin-bottom: 0.35rem;
}
.project-card-dates { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 1rem; font-weight: 500; }
.project-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; border-top: 1px solid var(--gray-200);
}
.project-card-cost {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--black);
}
.project-card-cost span { font-size: 0.75rem; font-weight: 500; color: var(--gray-400); font-family: 'Space Grotesk', sans-serif; }
.project-card-days {
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  background: rgba(139,197,64,0.1); padding: 0.3rem 0.75rem; border-radius: 60px;
}

/* 2027 COMING SOON */
.coming-soon {
  background: var(--black); padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative; overflow: hidden;
}
.coming-soon::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,32,0.07), transparent 70%);
}
.coming-soon-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.coming-soon-inner h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 1rem;
}
.coming-soon-inner h2 .accent {
  background: linear-gradient(135deg, var(--orange), #f5a020);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.coming-soon-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2rem; }
.notify-form { display: flex; gap: 0.6rem; max-width: 420px; margin: 0 auto; }
.notify-form input {
  flex: 1; padding: 0.85rem 1.25rem; border: 2px solid rgba(255,255,255,0.12);
  border-radius: 60px; font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s; background: rgba(255,255,255,0.06); color: #fff;
}
.notify-form input:focus { border-color: var(--orange); }
.notify-form input::placeholder { color: rgba(255,255,255,0.3); }
.notify-form .btn-orange { white-space: nowrap; }
.notify-fine { margin-top: 0.6rem; font-size: 0.78rem; color: rgba(255,255,255,0.25); text-align: center; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .two-col, .three-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .info-strip-cta { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 1.25rem; }
  .project-hero h1 { font-size: 2rem; }
  .listing-hero h1 { font-size: 2rem; }
  .project-cards { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
  .notify-form input { border-radius: 10px; }
  .notify-form .btn { border-radius: 10px; }
  .register-cta-inner .cta-btns { flex-direction: column; align-items: stretch; }
  .register-cta-inner .cta-btns .btn { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .info-strip-inner { gap: 1.25rem; }
  .nav-cta-wrap { display: none; }
  .project-hero-content { padding: 7rem 1.25rem 3rem; }
  .listing-hero-content { padding: 7rem 1.25rem 3rem; }
}
@media (hover: none) {
  .project-card:hover { transform: none; box-shadow: none; }
  .btn:hover { transform: none; }
}
