:root {
  --green: #123f33;
  --green-dark: #0d3429;
  --ink: #1f211f;
  --muted: #5f5d58;
  --paper: #ffffff;
  --soft: #fbfaf8;
  --cream: #f7f3ee;
  --line: #ded8d0;
  --sage: #879884;
  --copper: #bd7f55;
  --shadow: 0 18px 45px rgba(28, 28, 24, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-gap: 64px;
  --section-gap-mobile: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header,
.space-hero,
.intro-panel,
.use-cases,
.included-panel,
.capacity-section,
.contact-section,
.faq-section {
  width: min(100% - 88px, 1320px);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  height: 104px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 108px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  justify-self: end;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 56px);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--green);
}

.desktop-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--copper);
}

.header-cta,
.button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  color: white;
  background: var(--green);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 24px;
}

.button {
  width: fit-content;
  padding: 0 25px;
}

.header-cta:hover,
.button:hover,
.inquiry-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13, 72, 56, 0.16);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.space-hero {
  padding-top: 18px;
}

.hero-main {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 600px;
  color: #123f3f;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #343531;
  font-size: 16px;
  line-height: 1.55;
}

.hero-copy .button {
  margin-top: 34px;
}

.hero-media {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  aspect-ratio: 1.62 / 1;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-media img,
.use-media img,
.capacity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-facts {
  width: min(100%, 620px);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-facts article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}

.hero-facts svg {
  width: 31px;
  height: 31px;
}

.intro-panel,
.included-panel {
  margin-top: var(--section-gap);
  padding: 42px 72px;
  border-radius: 12px;
  background: var(--soft);
  box-shadow: var(--shadow);
  text-align: center;
}

.intro-panel h2,
.section-heading h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
}

.intro-panel span,
.section-heading span {
  display: block;
  width: 72px;
  height: 2px;
  margin: 14px auto 22px;
  background: var(--copper);
}

.intro-panel p {
  max-width: 780px;
  margin: 0 auto;
  color: #30312e;
  font-size: 15px;
  line-height: 1.65;
}

.intro-panel p + p {
  margin-top: 20px;
}

.use-cases {
  margin-top: var(--section-gap);
}

.use-content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 86px;
  align-items: center;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading p {
  max-width: 780px;
  margin: -8px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading-left {
  width: fit-content;
  justify-items: center;
  text-align: left;
}

.section-heading-left span {
  margin-left: auto;
  margin-right: auto;
}

.use-copy > p {
  max-width: 430px;
  margin: 0 0 28px;
  color: var(--muted);
}

.use-copy {
  min-height: 220px;
  display: grid;
  align-content: center;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #242521;
  font-size: 15px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.use-media {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  height: 220px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.included-panel {
  padding-bottom: 30px;
}

.included-panel .section-heading {
  margin-bottom: 0;
}

.included-lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.amenity-grid {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.amenity-grid article {
  min-height: 104px;
  padding: 18px 12px 14px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
}

.amenity-grid article + article {
  border-left: 1px solid var(--line);
}

.amenity-grid svg {
  width: 30px;
  height: 30px;
  color: var(--ink);
}

.included-note {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.capacity-section {
  margin-top: var(--section-gap);
}

.capacity-section .section-heading,
.faq-section .section-heading {
  margin-bottom: 34px;
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.capacity-card,
.location-card,
inquiry-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.capacity-card,
.location-card,
.inquiry-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.capacity-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.98 / 1;
  object-fit: cover;
}

.capacity-card div {
  display: block;
  padding: 22px 22px 24px;
}

.capacity-card h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.24;
}

.capacity-price {
  color: var(--green-dark) !important;
  font-size: 16px !important;
  font-weight: 850;
}

.capacity-price span {
  display: block;
}

.capacity-card p,
.location-card p,
.inquiry-card p {
  margin: 12px 0 0;
  color: #42433f;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-notes {
  margin-top: 26px;
  border-radius: 8px;
  background: var(--soft);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: var(--shadow);
}

.pricing-notes article {
  min-height: 78px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
}

.pricing-notes article + article {
  border-left: 1px solid var(--line);
}

.pricing-notes svg {
  width: 36px;
  height: 36px;
  color: var(--green-dark);
}

.pricing-notes span {
  color: #30312e;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-section {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.contact-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.location-card,
.inquiry-card {
  padding: 32px 36px;
  background: var(--soft);
}

.location-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.location-card + .inquiry-card {
  margin-top: 18px;
}

.location-card .section-heading,
.inquiry-card .section-heading {
  margin-bottom: 24px;
}

.location-card h3 {
  margin: 22px 0 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
}

.location-card .section-heading + h3 {
  margin-top: 0;
}

.location-address {
  width: min(100%, 520px);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-dark);
  text-align: center;
  font-size: 16px;
  font-weight: 750;
}

.location-address svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.location-address small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.access-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 30px rgba(28, 28, 24, 0.06);
}

.access-card h3 {
  margin: 0;
  padding: 16px 20px;
  color: white;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.2;
}

.transit-card h3,
.parking-card h3 {
  background: var(--green);
}

.access-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.access-body article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.access-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
}

.parking-card .access-number {
  background: var(--green);
}

.access-body strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.access-body p {
  margin: 5px 0 0;
}

.line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.line-tags span {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  color: white;
  background: var(--copper);
  display: inline-grid;
  place-items: center;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 850;
}

.inquiry-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  font-size: 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 63, 51, 0.1);
}

.form-wide {
  grid-column: span 2;
}

.inquiry-form button {
  grid-column: 1 / -1;
  min-height: 42px;
}

.faq-section {
  margin-top: var(--section-gap);
  padding-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 48px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item button.is-open span {
  transform: rotate(225deg);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 16px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-item:has(button.is-open) p {
  display: block;
}

@media (max-width: 1180px) {
  .site-header,
  .space-hero,
  .intro-panel,
  .use-cases,
  .included-panel,
  .capacity-section,
  .contact-section,
  .faq-section {
    width: min(100% - 48px, 900px);
  }

  .site-header {
    height: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 0;
    gap: 18px;
  }

  .desktop-nav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-main {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 36px;
  }

  .use-content {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .pricing-notes,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .amenity-grid article:nth-child(5) {
    border-left: 0;
  }

  .amenity-grid article:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

  .pricing-notes article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-header,
  .space-hero,
  .intro-panel,
  .use-cases,
  .included-panel,
  .capacity-section,
  .contact-section,
  .faq-section {
    width: min(100% - 28px, 480px);
  }

  .brand {
    font-size: 30px;
  }

  .desktop-nav {
    font-size: 12px;
  }

  .intro-panel,
  .use-cases,
  .included-panel,
  .capacity-section,
  .contact-section,
  .faq-section {
    margin-top: var(--section-gap-mobile);
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-main,
  .use-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .use-copy,
  .use-media {
    min-height: 0;
    height: auto;
  }

  .use-media {
    aspect-ratio: 1.45 / 1;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 16px;
  }

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

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

  .intro-panel,
  .included-panel,
  .location-card,
  .inquiry-card {
    padding: 30px 20px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-grid article {
    border-left: 0;
    border-top: 0;
  }

  .amenity-grid article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .amenity-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .form-wide {
    grid-column: auto;
  }

  .pricing-notes article {
    grid-template-columns: 34px 1fr;
    padding: 16px 18px;
  }
}
