/* ==========================================================================
   hommy.au — Hommy Pty Ltd
   Design language: sibling to freecity.com (fc-living). Architectural
   monograph — thin grotesk at display scale, mono labels, hairline rules,
   warm paper ground, full-bleed renders.
   ========================================================================== */

/* --- Typefaces ---------------------------------------------------------- */
/* Geist and Geist Mono, self-hosted variable weights. To change the site's
   typeface, replace the files in assets/fonts/ and update --font-sans. */

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/GeistVF.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/GeistMonoVF.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens ------------------------------------------------------------- */

:root {
  /* Palette, lifted from the live fc-living theme */
  --ink: #2e1400;
  --ink-70: #2e1400b3;
  --ink-45: #2e140073;
  --ink-20: #2e140033;
  --paper: #f9f5f0;
  --sand: #ebe4d3;
  --tan: #d1ba99;

  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale */
  --t-display: clamp(3.1rem, 9.5vw, 10rem);
  --t-h1: clamp(2.6rem, 7vw, 6.5rem);
  --t-h2: clamp(2rem, 4.4vw, 4rem);
  --t-h3: clamp(1.35rem, 2.1vw, 2rem);
  --t-lead: clamp(1.15rem, 1.7vw, 1.55rem);
  --t-body: clamp(1rem, 1.05vw, 1.1rem);
  --t-label: 0.72rem;

  --tracking-tight: -0.035em;
  --tracking-label: 0.16em;

  /* Structure */
  --shell: 160rem;
  --gutter: 6rem;
  --radius: 1rem;
  --radius-pill: 5rem;
  --rule: 1px solid var(--tan);

  --space-section: clamp(5.5rem, 11vw, 11rem);
  --space-flow: clamp(1rem, 2.5vw, 2.25rem);

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

@media (max-width: 1023px) {
  :root {
    --gutter: 2rem;
  }
}

/* --- Reset -------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Required. Without it, the HTML width/height attributes stay authoritative
   and any aspect-ratio below is silently ignored. Rules that need a filled
   box re-declare height:100% explicitly. */
img {
  height: auto;
}

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

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

/* Paper grain — a single inline SVG turbulence, no extra request. Sits above
   the page, below nothing interactive. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Layout primitives -------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-section);
}

.section--sand {
  background: var(--sand);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--tight {
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.rule {
  border: 0;
  border-top: var(--rule);
  margin: 0;
}

.section--ink .rule {
  border-top-color: #f9f5f03d;
}

/* --- Typography --------------------------------------------------------- */

.label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-45);
}

.section--ink .label {
  color: #f9f5f099;
}

.display {
  font-size: var(--t-display);
  font-weight: 200;
  line-height: 0.94;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.h1 {
  font-size: var(--t-h1);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.h2 {
  font-size: var(--t-h2);
  font-weight: 250;
  line-height: 1.06;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.h3 {
  font-size: var(--t-h3);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.lead {
  font-size: var(--t-lead);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}

.prose p + p {
  margin-top: 1.1em;
}

.muted {
  color: var(--ink-70);
}

.section--ink .muted {
  color: #f9f5f0b8;
}

/* Section heading block: mono index + hairline + heading */
.section-head {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding-top: 1.4rem;
  border-top: var(--rule);
  grid-template-columns: minmax(0, 1fr);
}

.section--ink .section-head {
  border-top-color: #f9f5f03d;
}

@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 14rem minmax(0, 1fr);
  }
}

.section-head__body {
  display: grid;
  gap: var(--space-flow);
  max-width: 62ch;
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.btn--light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: transparent;
  color: var(--paper);
}

.btn__arrow {
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* Text link with an animated underline */
.link {
  position: relative;
  font-weight: 500;
  white-space: nowrap;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.link:hover::after,
.link:focus-visible::after {
  transform: scaleX(0);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

.section--ink :focus-visible,
.footer :focus-visible {
  outline-color: var(--paper);
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-pill);
}

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.5rem;
}

/* Wordmark. Matches freecity.com's treatment: the name alone, set bold in
   caps with tight tracking, no accompanying symbol. */
.wordmark {
  display: inline-block;
  font-size: 1.28rem;
  /* 730, not 700. Measured against freecity.com's wordmark, whose stems are
     22.3% of its cap height; Geist hits that at 730 (700 reads too light). */
  font-weight: 730;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.75rem);
}

.nav a {
  font-size: 0.95rem;
  font-weight: 450;
  letter-spacing: -0.01em;
  color: var(--ink-70);
  transition: color 0.3s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: var(--rule);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: var(--header-offset, 5.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 2rem;
    background: var(--paper);
    border-bottom: var(--rule);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0.45s;
  }

  .nav[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
  }

  .nav a {
    padding-block: 1.05rem;
    border-bottom: var(--rule);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
  }

  .nav a:last-child {
    border-bottom: 0;
  }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(34rem, 82vh, 58rem);
  padding-block: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroScale 1.9s var(--ease) both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    #2e1400ed 0%,
    #2e1400ab 40%,
    #2e140026 70%,
    #2e140033 100%
  );
}

.hero__inner {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  width: 100%;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid #f9f5f04d;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: #f9f5f0c4;
}

.hero__meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.85em;
  margin-left: 1.4rem;
  background: #f9f5f04d;
  transform: translateY(0.1em);
}

/* The hero label sits over the render itself rather than the scrim, so it
   needs more weight than the labels on solid grounds. */
.hero .label {
  color: #f9f5f0e0;
}

/* Narrow screens stack the meta items one per line, which leaves the
   separator dangling at the end of each row. */
@media (max-width: 639px) {
  .hero__meta {
    display: grid;
    justify-items: start;
    gap: 0.3rem;
  }

  .hero__meta span:not(:last-child)::after {
    content: none;
  }
}

.hero .display,
.hero .lead {
  max-width: 20ch;
}

.hero .lead {
  max-width: 46ch;
  color: #f9f5f0d9;
}

@keyframes heroScale {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1);
  }
}

/* Page hero — shorter, for interior pages */
.hero--page {
  min-height: clamp(26rem, 62vh, 42rem);
}

/* --- Reveal animation --------------------------------------------------- */

/* Scoped to .js so that if JavaScript fails or is disabled, every section
   stays visible instead of the page rendering blank below the fold. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js .hero [data-reveal] {
  animation: riseIn 1.1s var(--ease) both;
  animation-delay: var(--reveal-delay, 0s);
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1.8rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* --- Stat / fact rows --------------------------------------------------- */

.facts {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  border-top: var(--rule);
}

.facts__item {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: var(--rule);
}

@media (min-width: 700px) {
  .facts__item + .facts__item {
    padding-left: 1.75rem;
    border-left: var(--rule);
  }
}

.facts__value {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

.facts__label {
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-45);
}

/* --- Property cards ----------------------------------------------------- */

.properties {
  display: grid;
  gap: clamp(1.25rem, 2.2vw, 2rem);
  grid-template-columns: 1fr;
}

/* The feature card takes a full row of its own; the upcoming buildings sit
   side by side beneath it. An auto-fit track left the third card orphaned on
   its own row at desktop widths. */
@media (min-width: 800px) {
  .properties {
    grid-template-columns: 1fr 1fr;
  }
}

.property {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.5rem, 2.2vw, 2.25rem);
  border: var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease);
}

.property--feature {
  grid-column: 1 / -1;
  min-height: clamp(28rem, 44vw, 40rem);
  color: var(--paper);
  border-color: transparent;
}

.property__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.property__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.property--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, #2e1400e0 8%, #2e140052 55%, #2e140026 100%);
}

a.property:hover .property__media img {
  transform: scale(1.045);
}

a.property:hover {
  border-color: var(--ink);
}

.property__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: var(--rule);
}

.property--feature .property__head {
  border-bottom-color: #f9f5f052;
}

.property__body {
  margin-top: auto;
  padding-top: 3.25rem;
  display: grid;
  gap: 0.55rem;
}

.property--feature .property__body {
  padding-top: 2.5rem;
}

.property__address {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.property--feature .property__address {
  color: #f9f5f0b8;
}

.property__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Status pill */
.pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--tan);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-70);
}

.property--feature .pill {
  border-color: #f9f5f070;
  color: var(--paper);
}

.section--ink .pill {
  border-color: #f9f5f070;
  color: #f9f5f0d9;
}

/* --- Editorial split ---------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (min-width: 950px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .split--wide-right {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}

.figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.figure figcaption {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.figure--tall img {
  aspect-ratio: 4 / 5;
}

.figure--wide img {
  aspect-ratio: 16 / 10;
}

/* --- Definition list (entity facts, key facts) -------------------------- */

.deflist {
  display: grid;
  border-top: var(--rule);
}

.deflist__row {
  display: grid;
  gap: 0.25rem 2rem;
  padding-block: 1.15rem;
  border-bottom: var(--rule);
}

@media (min-width: 640px) {
  .deflist__row {
    grid-template-columns: minmax(10rem, 18rem) minmax(0, 1fr);
    align-items: baseline;
  }
}

.deflist__row dt {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-45);
}

.deflist__row dd {
  font-size: 1.05rem;
  font-weight: 450;
  letter-spacing: -0.015em;
}

.section--ink .deflist,
.section--ink .deflist__row {
  border-color: #f9f5f03d;
}

.section--ink .deflist__row dt {
  color: #f9f5f099;
}

/* --- Amenity / feature grid --------------------------------------------- */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tags li {
  padding: 0.6rem 1.1rem;
  border: var(--rule);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--ink-70);
}

.section--ink .tags li {
  border-color: #f9f5f042;
  color: #f9f5f0d9;
}

/* Numbered list of capabilities */
.numbered {
  display: grid;
  gap: 0;
  border-top: var(--rule);
}

.section--ink .numbered {
  border-top-color: #f9f5f03d;
}

.numbered li {
  display: grid;
  gap: 0.4rem 2.5rem;
  padding-block: clamp(1.5rem, 2.4vw, 2.1rem);
  border-bottom: var(--rule);
}

.section--ink .numbered li {
  border-bottom-color: #f9f5f03d;
}

@media (min-width: 800px) {
  .numbered li {
    grid-template-columns: 4rem minmax(0, 20rem) minmax(0, 1fr);
    align-items: baseline;
  }
}

.numbered__index {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tracking-label);
  color: var(--ink-45);
}

.section--ink .numbered__index {
  color: #f9f5f099;
}

.numbered__title {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.numbered__desc {
  color: var(--ink-70);
  max-width: 60ch;
}

.section--ink .numbered__desc {
  color: #f9f5f0b8;
}

/* --- Gallery ------------------------------------------------------------ */

.gallery {
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.gallery__wide {
  grid-column: 1 / -1;
}

.gallery__wide img {
  aspect-ratio: 21 / 9;
}

/* --- Location ----------------------------------------------------------- */

.location {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1000px) {
  .location {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.location__map {
  margin: 0;
  border: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.walks {
  display: grid;
  gap: 0;
  border-top: var(--rule);
}

.walks__group {
  padding-block: 1.4rem;
  border-bottom: var(--rule);
}

.walks__group h3 {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 0.9rem;
}

.walks__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.42rem;
}

.walks__row span:last-child {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-45);
}

/* --- Callout / CTA band ------------------------------------------------- */

.callout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}

@media (min-width: 900px) {
  .callout {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* --- Footer ------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3.5rem, 6vw, 6rem) 2.5rem;
}

.footer__top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid #f9f5f033;
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer__col h2 {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: #f9f5f099;
  margin-bottom: 1.25rem;
}

.footer__col li + li {
  margin-top: 0.7rem;
}

.footer__col a {
  color: #f9f5f0cc;
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--paper);
}

.footer .wordmark {
  color: var(--paper);
  font-size: 1.4rem;
  margin-bottom: 1.35rem;
}

.acknowledgement {
  max-width: 62ch;
  margin-top: 2.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #f9f5f08f;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f9f5f08f;
}

/* --- Utilities ---------------------------------------------------------- */

.stack {
  display: grid;
  gap: var(--space-flow);
}

.stack--lg {
  gap: clamp(2rem, 4vw, 3.5rem);
}

.stack--sm {
  gap: 0.75rem;
}

.mt-lg {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.mt-md {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.measure {
  max-width: 62ch;
}

.measure--narrow {
  max-width: 46ch;
}

/* --- Reveal delays ------------------------------------------------------ */
/* Kept as classes rather than inline style attributes so the Content-
   Security-Policy can stay at style-src 'self' with no 'unsafe-inline'. */

.d1 { --reveal-delay: 0.05s; }
.d2 { --reveal-delay: 0.1s; }
.d3 { --reveal-delay: 0.15s; }
.d4 { --reveal-delay: 0.2s; }
.d5 { --reveal-delay: 0.3s; }
.d6 { --reveal-delay: 0.4s; }

.measure--xs { max-width: 38ch; }
.measure--title { max-width: 16ch; }
.mb-sm { margin-bottom: 1.1rem; }
.split--top { align-items: start; }

.property__title {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.property--feature .label {
  color: #f9f5f0b8;
}

.property__note {
  color: #f9f5f0d9;
}
