:root {
  --ink: #17120f;
  --espresso: #2c211c;
  --ivory: #f7f1e8;
  --linen: #eee2d2;
  --champagne: #c8a47e;
  --sage: #6f7b68;
  --clay: #a35f49;
  --soft-black: #0e0d0c;
  --white: #fffaf3;
  --shadow: 0 22px 60px rgba(23, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid rgba(44, 33, 28, 0.1);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--sage);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  color: rgba(23, 18, 15, 0.74);
}

nav a:hover {
  color: var(--ink);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 64px;
  position: relative;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.78), rgba(14, 13, 12, 0.28) 54%, rgba(14, 13, 12, 0.08)),
    linear-gradient(0deg, rgba(14, 13, 12, 0.48), transparent 45%);
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
}

p {
  color: rgba(23, 18, 15, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.84);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  max-width: 650px;
}

.actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 2px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  min-width: 156px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--champagne);
  color: var(--soft-black);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 243, 0.62);
  color: var(--white);
}

.button.secondary.dark {
  border-color: rgba(23, 18, 15, 0.25);
  color: var(--ink);
}

.band,
.section,
.rent-band,
.site-footer {
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

.intro {
  align-items: end;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  padding-bottom: 72px;
  padding-top: 56px;
}

.intro h2 {
  max-width: 760px;
}

.intro > p {
  border-left: 2px solid var(--champagne);
  margin: 0;
  padding-left: 26px;
}

.section {
  padding-bottom: 92px;
  padding-top: 92px;
}

.section-heading {
  max-width: 760px;
}

.professional-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 34px;
}

.professional-card {
  background: var(--white);
  border: 1px solid rgba(44, 33, 28, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 18, 15, 0.07);
  display: grid;
  gap: 22px;
  min-height: 310px;
  padding: 20px;
}

.portrait {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  width: 100%;
}

.initials {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.32), rgba(111, 123, 104, 0.2)),
    var(--linen);
  color: rgba(44, 33, 28, 0.72);
  display: flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  justify-content: center;
}

.professional-card p {
  margin-bottom: 0;
}

.text-link {
  align-self: end;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link.muted {
  color: rgba(44, 33, 28, 0.46);
}

.text-link::after {
  content: " /";
  color: var(--champagne);
}

.rent-band {
  align-items: center;
  background: var(--espresso);
  color: var(--white);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  padding-bottom: 82px;
  padding-top: 82px;
}

.rent-band h2 {
  margin: 0;
}

.rent-band p {
  color: rgba(255, 250, 243, 0.76);
}

.rent-audience {
  color: rgba(255, 250, 243, 0.9);
  font-weight: 700;
  margin-bottom: 0;
}

.rent-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
}

.rent-options li {
  border-bottom: 1px solid rgba(255, 250, 243, 0.18);
  color: rgba(255, 250, 243, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  padding-bottom: 10px;
  text-transform: uppercase;
}


.about-founder {
  background: var(--linen);
}

.founder-layout {
  display: block;
}

.founder-copy {
  max-width: 860px;
}

.founder-copy p:not(.section-kicker) {
  max-width: 680px;
}

.founder-details {
  margin-top: 18px;
  max-width: 680px;
}

.founder-details summary {
  color: var(--clay);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.founder-details summary::-webkit-details-marker {
  display: none;
}

.founder-details summary::after {
  color: var(--champagne);
  content: " /";
}

.founder-details p:first-of-type {
  margin-top: 18px;
}

.rental-perks {
  background: var(--ivory);
}

.perks-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.perks-grid article {
  border-top: 2px solid var(--champagne);
  padding-top: 18px;
}

.perks-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.perks-grid p {
  margin-bottom: 0;
}

.location {
  background: var(--linen);
  padding-bottom: 72px;
  padding-top: 76px;
}

.location-layout {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.72fr 1fr;
  margin-top: 28px;
}

.location-panel,
.map-embed {
  border-radius: 8px;
  min-height: 320px;
}

.location-panel {
  background: var(--soft-black);
  color: var(--white);
  padding: clamp(24px, 4vw, 44px);
}

address {
  color: rgba(255, 250, 243, 0.76);
  font-style: normal;
  line-height: 1.7;
}

.location-details {
  border-top: 1px solid rgba(255, 250, 243, 0.16);
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
}

.location-details span {
  color: var(--champagne);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.location-details p {
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 4px;
}

.dark-link {
  color: var(--champagne);
  margin-top: 16px;
}

.map-embed {
  border: 0;
  display: block;
  filter: saturate(0.72) contrast(0.92);
  height: 100%;
  width: 100%;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(44, 33, 28, 0.12);
  display: flex;
  justify-content: space-between;
  padding-bottom: 32px;
  padding-top: 32px;
}

.site-footer p {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
}

.site-footer strong {
  font-weight: 700;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

.site-footer a {
  color: rgba(23, 18, 15, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page {
  padding-top: 90px;
}

.legal-page .section {
  margin: 0 auto;
  max-width: 860px;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    position: absolute;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 84vh;
  }

  .intro,
  .rent-band,
  .founder-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

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

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

  .professional-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 150px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .rent-options,
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .site-footer div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
