/* Exe Space — styles */

:root {
  --ink: #17140f;
  --ink-2: #3a342a;
  --ink-3: #6a6255;
  --paper: #f5efe6;
  --paper-2: #ede5d6;
  --line: rgba(23, 20, 15, 0.14);
  --line-soft: rgba(23, 20, 15, 0.08);
  --accent: #ff6a1a;
  --accent-ink: #c44a00;

  --serif: "Newsreader", "Source Serif 4", Georgia, serif;
  --sans: "Geist", "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 2px;
  --pad-x: clamp(24px, 5vw, 96px);
  --pad-y: clamp(80px, 10vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(255,106,26,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255,106,26,0.05), transparent 60%),
    var(--paper);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; font-family: var(--serif); }
img { display: block; max-width: 100%; }

.h2, h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.h2 em, h2 em { font-style: italic; }

.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
}
.lede.narrow { max-width: 44ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.section-label .divider {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--ink-3);
  opacity: 0.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary span { transition: transform .2s ease; display: inline-block; }
.btn-primary:hover span { transform: translateX(3px); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 26px; font-size: 15px; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 239, 230, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding-top: 14px;
  padding-bottom: 14px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.wordmark .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 4px 4px;
  display: inline-block;
}
.wordmark.big { font-size: 44px; }
.wordmark.big .dot { width: 10px; height: 10px; margin: 0 6px 8px; }
.wordmark--logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.wordmark--logo img,
.brand-logo {
  height: 35px;
  width: auto;
  display: block;
  background: none;
}
.wordmark-space {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.06em;
  color: var(--ink);
  line-height: 1;
}
.wordmark.big.wordmark--logo img,
.wordmark.big .brand-logo {
  height: 44px;
}
.wordmark.big .wordmark-space {
  font-size: 38px;
}
.footer .wordmark-space {
  color: var(--paper);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.nav-links a { color: var(--ink-2); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.nav-cta .arrow { transition: transform .2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

.hero {
  padding: calc(var(--pad-y) + 40px) var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "meta meta"
    "title body"
    "figure figure"
    "footer footer";
  gap: 40px 80px;
  align-items: end;
}
.hero-meta {
  grid-area: meta;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.meta-dot { opacity: 0.4; }
.hero-title {
  grid-area: title;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--accent-ink); }
.hero-body {
  grid-area: body;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 16px;
}
.hero-body p {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-figure { grid-area: figure; margin-top: 40px; }
.hero-figure img {
  width: 100%;
  border-radius: 4px;
  height: 100%;
}
.hero-footer {
  grid-area: footer;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat .n {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .l {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "meta" "title" "body" "figure" "footer";
    gap: 28px;
  }
  .hero-footer { grid-template-columns: repeat(2, 1fr); }
}

.intro {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px 80px;
  align-items: start;
}
.intro .section-label { grid-column: 1; }
.intro h2 { grid-column: 2; grid-row: 1 / span 2; }
.intro .lede { grid-column: 1; }
@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .intro h2, .intro .lede, .intro .section-label { grid-column: 1; grid-row: auto; }
}

.workspace {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.work-head { margin-bottom: 56px; }
.work-head .lede { margin-top: 8px; }
.work-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 56px;
}
.work-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 24px;
  text-align: left;
  border-right: 1px solid var(--line);
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.work-tab:last-child { border-right: 0; }
.work-tab:hover { background: rgba(23,20,15,0.03); }
.work-tab .tab-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.work-tab .tab-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
}
.work-tab.is-active { background: var(--ink); color: var(--paper); }
.work-tab.is-active .tab-n { color: rgba(245,239,230,0.6); }
.work-tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 760px) {
  .work-tabs { grid-template-columns: repeat(2, 1fr); }
  .work-tab { border-bottom: 1px solid var(--line); }
  .work-tab:nth-child(2) { border-right: 0; }
  .work-tab:nth-last-child(-n+2) { border-bottom: 0; }
}
.ws-card { display: none; grid-template-columns: 1fr 1.1fr; gap: 64px; animation: fadeUp .4s ease both; }
.ws-card.is-active { display: grid; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ws-figure { position: relative; }
.ws-figure > div:first-child { border-radius: 4px; overflow: hidden; }
.ws-figure > div:first-child img {
  width: 100%;
  object-fit: cover;
  height: 640px;
  background: #fff;
}
.ws-figure-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.ws-figure-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.ws-content { display: flex; flex-direction: column; gap: 28px; }
.ws-blurb {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.ws-price-block {
  --ws-price-size: clamp(36px, 4vw, 44px);
  --ws-price-unit-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ws-price {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ws-price .p {
  font-family: var(--serif);
  font-size: var(--ws-price-size);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.ws-price .u {
  font-family: var(--sans);
  font-size: var(--ws-price-unit-size);
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-2);
}
.ws-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ws-h {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.ws-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.ws-list .tick {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  width: 14px;
}
.ws-list--muted .tick { color: var(--ink-3); }
.ws-list--muted li { color: var(--ink-2); }
.ws-cta { align-self: flex-start; }
@media (max-width: 860px) {
  .ws-card { grid-template-columns: 1fr; gap: 32px; }
  .ws-cols { grid-template-columns: 1fr; gap: 24px; }
  .ws-price-block { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.amenities {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
}
.am-head { margin-bottom: 64px; }
.am-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.am-item {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: background .2s ease;
}
.am-item:hover { background: var(--paper-2); }
.am-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.am-t {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
}
.am-d {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 1020px) { .am-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .am-grid { grid-template-columns: 1fr; } }

.about {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
.about-copy h2 { margin-bottom: 36px; }
.about-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 20px;
  max-width: 60ch;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-figure { position: sticky; top: 120px; }
.about-figure > div:first-child { border-radius: 4px; overflow: hidden; }
.about-figure img,
.about-map {
  width: 100%;
  object-fit: contain;
  height: 620px;
  background: #fff;
  border: 0;
  display: block;
}
.about-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { position: static; }
}

.contact {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact h2 { margin-bottom: 20px; }
.contact-left .lede { margin-bottom: 48px; }
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin: 0;
}
.contact-info > div { border-top: 1px solid var(--line); padding-top: 14px; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.contact-info dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-info a { border-bottom: 1px solid var(--line); }
.contact-info a:hover { border-bottom-color: var(--ink); }
.contact-form {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  position: sticky;
  top: 120px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.field input, .field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0 10px;
  outline: none;
  resize: none;
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(23,20,15,0.35); }
.field input:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  transition: all .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.form-foot { font-size: 13px; color: var(--ink-3); margin: 0; }
.form-foot a { border-bottom: 1px solid var(--line); }
@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { position: static; padding: 28px; }
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--pad-x) 40px;
}
.footer .wordmark { color: var(--paper); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,239,230,0.12);
  margin-bottom: 32px;
}
.footer-brand p {
  max-width: 36ch;
  color: rgba(245,239,230,0.7);
  font-size: 15px;
  margin: 20px 0 0;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,239,230,0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col li { padding: 6px 0; font-size: 15px; }
.footer-col a { color: rgba(245,239,230,0.9); transition: color .15s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,239,230,0.5);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: var(--paper); }
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* Standard/legal content pages */
.simple-page {
  padding: calc(var(--pad-y) * 0.7) var(--pad-x) var(--pad-y);
  max-width: 980px;
}
.simple-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.simple-page__back:hover { color: var(--ink); }
.simple-page__header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  margin-bottom: 36px;
}
.simple-page__eyebrow {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.simple-page__header h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.simple-page__intro {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 60ch;
}
.simple-page__body {
  display: grid;
  gap: 30px;
}

.richtext-section.section-shell {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}
.richtext-section h2 {
  margin: 6px 0 16px;
  font-size: clamp(34px, 4vw, 56px);
}
.richtext-section__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 70ch;
}
.richtext-section__body p {
  margin: 0 0 14px;
}
.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 8px;
}
.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--line);
}
.legal-table th {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
}
.html-embed.section-shell:has(.legal-table) {
  border-top: 0;
  padding-top: 0;
}
