@font-face {
  font-family: "Newsreader Local";
  src: url("assets/fonts/newsreader-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Local";
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f6f5f0;
  --paper-bright: #fcfcf8;
  --paper-soft: #e9eee9;
  --ink: #10261f;
  --ink-soft: #3f514b;
  --muted: #66736e;
  --line: #cfd6d1;
  --line-strong: #9aa9a2;
  --forest: #153d33;
  --forest-deep: #0b2b23;
  --teal: #0e766b;
  --teal-deep: #095f57;
  --teal-pale: #dbece6;
  --white: #fffefa;
  --error: #a53b32;
  --serif: "Newsreader Local", Georgia, serif;
  --sans: "Manrope Local", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 64px));
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --section-space: clamp(80px, 8vw, 132px);
  --shadow-soft: 0 24px 70px rgba(16, 38, 31, 0.1);
  --shadow-card: 0 12px 34px rgba(16, 38, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 530;
  letter-spacing: -0.038em;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
}

h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.7rem);
  font-weight: 540;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

section[id] {
  scroll-margin-top: 20px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border: 2px solid var(--forest-deep);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--forest-deep);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #f0a83f;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: var(--shell);
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 254, 250, 0.28);
  transform: translateX(-50%);
}

.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  line-height: 1.2;
}

.wordmark-name {
  display: inline-flex;
  align-items: baseline;
  color: inherit;
  font-size: 1rem;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.wordmark-name strong {
  font-weight: 820;
}

.wordmark-name > span {
  font-weight: 560;
}

.wordmark-name small {
  margin-left: 1px;
  font-size: 0.58em;
  font-weight: 740;
  letter-spacing: -0.02em;
  opacity: 0.72;
}

.wordmark-mark {
  width: 34px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #d7f2e9;
}

.header-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid rgba(255, 254, 250, 0.7);
  border-radius: var(--radius-small);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-action:hover {
  background: var(--white);
  color: var(--forest-deep);
}

.header-action:active,
.button:active,
.unit-action:active,
.town-film-control:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-motion-fallback,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-motion-fallback {
  z-index: -4;
}

.hero-motion-fallback[hidden] {
  display: none;
}

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

.hero video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 180ms ease;
}

.hero.is-film-fallback video {
  opacity: 0;
}

.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 22, 0.72) 0%, rgba(7, 27, 22, 0.48) 43%, rgba(7, 27, 22, 0.1) 76%),
    linear-gradient(0deg, rgba(7, 27, 22, 0.52) 0%, rgba(7, 27, 22, 0.03) 50%, rgba(7, 27, 22, 0.25) 100%);
}

.hero-content {
  padding-top: 88px;
  padding-bottom: 96px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d7f2e9;
}

.hero-deck {
  max-width: 610px;
  margin-top: 26px;
  color: rgba(255, 254, 250, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
}

.button-quiet {
  border-color: rgba(255, 254, 250, 0.68);
  background: rgba(255, 254, 250, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-quiet:hover {
  background: var(--white);
  color: var(--forest-deep);
}

.film-meta {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 0.72rem;
  line-height: 1.35;
}

.film-meta span:last-child {
  color: var(--white);
  font-weight: 750;
}

.film-control {
  position: absolute;
  right: max(32px, calc((100vw - 1320px) / 2));
  bottom: 58px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 254, 250, 0.45);
  border-radius: var(--radius-small);
  background: rgba(8, 34, 27, 0.58);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 760;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.film-control-icon {
  width: 8px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.film-control.is-paused .film-control-icon {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-right: 0;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.film-error {
  position: absolute;
  right: 32px;
  bottom: 118px;
  max-width: 300px;
  padding: 16px;
  border: 1px solid rgba(255, 254, 250, 0.38);
  border-radius: var(--radius-small);
  background: rgba(8, 34, 27, 0.88);
}

.film-error strong,
.film-error span {
  display: block;
}

.film-error span {
  margin-top: 3px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 0.8rem;
}

.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--teal-deep);
  font-weight: 760;
  cursor: pointer;
}

.film-error .text-button {
  margin-top: 10px;
  color: var(--white);
}

.facts-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.facts-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.facts-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px 28px;
  border-left: 1px solid var(--line);
}

.facts-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.facts-grid strong {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.facts-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.source-warning {
  padding: 12px 0;
  color: var(--error);
  font-size: 0.8rem;
}

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

.section-intro {
  max-width: 930px;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.section-intro h2 {
  max-width: 860px;
}

.section-intro p,
.place-lead p,
.town-film-copy p,
.decision-intro > p,
.request-intro > p {
  max-width: 660px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section-intro-narrow {
  max-width: 820px;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(286px, auto));
  gap: 16px;
}

.unit-scroll-cue {
  display: none;
}

.unit-card {
  position: relative;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper-bright);
  box-shadow: 0 0 0 rgba(16, 38, 31, 0);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.unit-card:hover,
.unit-card:focus-within {
  z-index: 1;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.unit-card-featured {
  grid-column: span 6;
  grid-row: span 2;
  padding: 38px;
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.unit-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.unit-card-featured .unit-card-top {
  border-color: rgba(255, 254, 250, 0.24);
  color: rgba(255, 254, 250, 0.72);
}

.unit-card h3 {
  margin-top: 30px;
  font-size: clamp(1.85rem, 2.35vw, 2.9rem);
}

.unit-card-featured h3 {
  max-width: 420px;
  margin-top: 58px;
  font-size: clamp(3rem, 4.8vw, 5.5rem);
}

.unit-price {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1;
}

.unit-card-featured .unit-price {
  margin-top: 34px;
  font-size: clamp(3.4rem, 5vw, 6rem);
}

.unit-price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-card-featured .unit-price small {
  color: rgba(255, 254, 250, 0.66);
}

.unit-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.unit-areas div {
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.unit-card-featured .unit-areas div {
  border-color: rgba(255, 254, 250, 0.24);
}

.unit-areas dt {
  color: var(--muted);
  font-size: 0.65rem;
}

.unit-card-featured .unit-areas dt {
  color: rgba(255, 254, 250, 0.62);
}

.unit-areas dd {
  margin-top: 3px;
  font-weight: 760;
}

.unit-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.unit-card-featured .unit-note {
  color: rgba(255, 254, 250, 0.72);
}

.unit-action {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 780;
  white-space: nowrap;
  cursor: pointer;
}

.unit-card-featured .unit-action {
  color: var(--white);
}

.availability-note {
  max-width: 850px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.78rem;
}

.buyer-view {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--teal-pale);
}

.buyer-view-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.buyer-view-copy h2 {
  max-width: 630px;
}

.buyer-view-copy > p:last-child {
  max-width: 540px;
  margin-top: 24px;
  color: var(--ink-soft);
}

.area-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(16, 38, 31, 0.16);
  border-radius: var(--radius-large);
  background: rgba(255, 254, 250, 0.76);
  box-shadow: var(--shadow-card);
}

.area-comparison > div {
  display: flex;
  flex-direction: column;
}

.area-comparison strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.area-comparison span:not(.comparison-arrow) {
  margin-top: 8px;
  font-weight: 760;
}

.area-comparison small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.comparison-arrow {
  color: var(--teal);
  font-size: 1.8rem;
}

.area-comparison > p {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.guinness-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 16px;
}

.guinness-gallery figure,
.gallery-action {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper-bright);
}

.lobby-figure,
.restaurant-figure {
  grid-column: span 7;
}

.atrium-figure,
.pool-figure {
  grid-column: span 5;
}

.lobby-figure img,
.atrium-figure img {
  height: clamp(380px, 34vw, 520px);
  object-fit: cover;
}

.pool-figure img,
.restaurant-figure img {
  height: clamp(270px, 24vw, 350px);
  object-fit: cover;
}

.lobby-figure img {
  object-position: center 48%;
}

.atrium-figure img {
  object-position: center 56%;
}

.restaurant-figure img {
  object-position: center 54%;
}

.guinness-gallery figcaption {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 0.75rem;
}

.guinness-gallery figcaption strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.gallery-boundary,
.gallery-action {
  grid-column: 1 / -1;
}

.gallery-boundary {
  max-width: 760px;
  margin: 2px 0 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.gallery-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  background: var(--paper-soft);
}

.gallery-action-copy p {
  max-width: 430px;
  margin-top: 12px;
  color: var(--ink-soft);
}

.gallery-action-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.place-hero {
  position: relative;
  min-height: min(82dvh, 900px);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--forest);
}

.place-hero > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.place-hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 22, 0.78) 0%, rgba(7, 27, 22, 0.05) 62%);
}

.place-hero-copy {
  padding-bottom: clamp(52px, 7vw, 92px);
}

.place-hero-copy h2 {
  max-width: 850px;
}

.place-hero-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 254, 250, 0.86);
  font-size: 1rem;
}

.place-lead {
  max-width: 920px;
  margin-bottom: clamp(44px, 5vw, 74px);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.place-card {
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--paper-bright);
}

.place-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.place-card:hover img {
  transform: scale(1.025);
}

.place-card figcaption {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.place-town {
  grid-column: span 7;
}

.place-community {
  grid-column: span 5;
}

.place-town img,
.place-community img {
  height: 430px;
}

.place-winter,
.place-summer,
.place-culture {
  grid-column: span 4;
}

.place-winter img,
.place-summer img,
.place-culture img {
  height: 420px;
}

.practical-note {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: end;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.practical-note h3 {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}

.practical-note p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.practical-note > p {
  margin-top: 0;
}

.town-film-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-top: 0;
  padding-bottom: var(--section-space);
}

.town-film-copy {
  max-width: 900px;
}

.town-film-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 5rem);
}

.town-film-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--forest-deep);
  box-shadow: var(--shadow-soft);
}

.town-film-stage > img,
.town-film-player,
.town-film-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.town-film-stage > img {
  object-fit: cover;
}

.town-film-player {
  opacity: 0;
  pointer-events: none;
}

.town-film-stage.is-playing .town-film-player {
  opacity: 1;
  pointer-events: auto;
}

.town-film-stage.is-playing > img,
.town-film-stage.is-playing .town-film-control,
.town-film-stage.is-playing .town-film-status {
  display: none;
}

.town-film-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 22, 0.42), transparent 60%);
  pointer-events: none;
}

.town-film-stage.is-playing::after {
  display: none;
}

.town-film-control {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 254, 250, 0.65);
  border-radius: var(--radius-small);
  background: rgba(8, 34, 27, 0.78);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 780;
  cursor: pointer;
}

.town-film-control:disabled {
  cursor: wait;
  opacity: 0.82;
}

.town-film-stage.has-error .town-film-status {
  max-width: min(48%, 360px);
  color: var(--white);
  text-align: right;
}

.play-symbol {
  font-size: 0.7rem;
}

.town-film-status {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 29px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 0.7rem;
}

.decision-section {
  background: var(--paper-soft);
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(52px, 8vw, 126px);
  align-items: start;
}

.decision-intro {
  position: sticky;
  top: 42px;
}

.decision-intro .button {
  margin-top: 28px;
}

.decision-list {
  border-top: 1px solid var(--line-strong);
}

.decision-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.decision-list article > span {
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.decision-list h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.decision-list p {
  max-width: 520px;
  margin-top: 9px;
  color: var(--ink-soft);
}

.request-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--paper);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.request-intro {
  position: sticky;
  top: 42px;
}

.request-intro ul {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.request-intro li {
  position: relative;
  padding: 0 0 14px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.request-intro li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal-deep);
  font-weight: 800;
}

.request-form {
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--paper-bright);
  box-shadow: var(--shadow-soft);
}

.field-block + .field-block,
.field-block + fieldset,
fieldset + .field-grid,
.field-grid + fieldset,
fieldset + .field-block {
  margin-top: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.field-grid .field-block {
  margin: 0;
}

.field-block label,
.choice-fieldset legend,
.contact-history legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 780;
}

select,
input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
}

select,
input[type="email"],
input[type="text"] {
  min-height: 50px;
  padding: 11px 13px;
}

textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}

textarea::placeholder {
  color: #67756f;
  opacity: 1;
}

select:focus,
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: var(--teal-deep);
}

.field-hint,
.privacy-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.7rem;
}

.choice-fieldset,
.contact-history {
  min-width: 0;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.choice:first-of-type {
  border-top: 1px solid var(--line);
}

.choice input,
.inline-choices input,
.consent-choice input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal-deep);
}

.choice strong,
.choice small {
  display: block;
}

.choice strong {
  font-size: 0.84rem;
}

.choice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.inline-choices {
  display: flex;
  gap: 10px;
}

.inline-choices label {
  min-width: 96px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  cursor: pointer;
}

.existing-contact-note,
.intro-disclosure {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-small);
  background: var(--paper-soft);
}

.intro-disclosure {
  border-left: 3px solid var(--teal);
}

.existing-contact-note strong,
.intro-disclosure > strong {
  font-size: 0.84rem;
}

.existing-contact-note p,
.intro-disclosure > p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.consent-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.75rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-alert {
  scroll-margin-block: 96px;
  margin-bottom: 20px;
  padding: 13px 15px;
  border: 1px solid rgba(165, 59, 50, 0.45);
  border-radius: var(--radius-small);
  background: #f8e8e4;
  color: #762820;
  font-size: 0.78rem;
}

.form-result {
  scroll-margin-block: 96px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(14, 118, 107, 0.35);
  border-radius: var(--radius-medium);
  background: var(--teal-pale);
}

.form-result h3 {
  font-size: 2rem;
}

.form-result p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.form-result .text-button {
  margin-top: 14px;
}

.site-footer {
  padding: 62px 0 42px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1.1fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.wordmark-footer {
  color: var(--ink);
}

.footer-brand p,
.footer-boundary p,
.source-details {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.73rem;
}

.footer-boundary h2 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.3;
}

.source-details {
  margin-top: 0;
}

.source-details summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 760;
  cursor: pointer;
}

.source-details ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 18px;
}

.source-details a {
  text-underline-offset: 3px;
}

.image-unavailable {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 24px;
  background: var(--paper-soft);
  color: var(--muted);
  text-align: center;
}

.image-unavailable strong {
  color: var(--ink);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-in 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-content > :nth-child(2) { animation-delay: 80ms; }
  .hero-content > :nth-child(3) { animation-delay: 150ms; }
  .hero-content > :nth-child(4) { animation-delay: 220ms; }

  .reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-fallback {
    display: none;
  }
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .unit-grid {
    grid-template-rows: auto;
  }

  .unit-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .unit-card:not(.unit-card-featured) {
    grid-column: span 6;
    min-height: 320px;
  }

  .buyer-view-grid,
  .decision-grid,
  .request-layout {
    gap: 54px;
  }

  .request-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

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

  .facts-grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .facts-grid > div:nth-child(even) {
    border-right: 1px solid var(--line);
  }

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

  .buyer-view-grid,
  .town-film-section,
  .decision-grid,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .decision-intro,
  .request-intro {
    position: static;
  }

  .lobby-figure,
  .atrium-figure,
  .pool-figure,
  .restaurant-figure {
    grid-column: span 6;
  }

  .gallery-action {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .place-town,
  .place-community {
    grid-column: span 6;
  }

  .place-winter,
  .place-summer,
  .place-culture {
    grid-column: span 4;
  }

  .place-town img,
  .place-community img,
  .place-winter img,
  .place-summer img,
  .place-culture img {
    height: 340px;
  }

  .practical-note {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .town-film-section {
    padding-top: 0;
  }

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

  .source-details {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-space: 72px;
    --radius-small: 9px;
    --radius-medium: 16px;
    --radius-large: 22px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(2.9rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .wordmark {
    gap: 8px;
  }

  .wordmark-name {
    font-size: 0.84rem;
  }

  .wordmark-mark {
    width: 29px;
    height: 23px;
  }

  .header-action {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero video,
  .hero-motion-fallback img {
    object-position: 50% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(7, 27, 22, 0.78) 0%, rgba(7, 27, 22, 0.38) 52%, rgba(7, 27, 22, 0.2) 100%);
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 128px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.64rem;
  }

  .hero-deck {
    max-width: 340px;
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    gap: 9px;
    margin-top: 26px;
  }

  .hero-actions .button {
    flex: 1 1 auto;
    padding-inline: 13px;
    font-size: 0.76rem;
  }

  .film-meta {
    bottom: 17px;
    display: block;
    max-width: calc(100% - 108px);
    margin-left: 16px;
    font-size: 0.62rem;
  }

  .film-meta span {
    display: block;
  }

  .film-meta span:last-child {
    margin-top: 2px;
  }

  .film-control {
    right: 16px;
    bottom: 16px;
    min-height: 44px;
  }

  .film-error {
    right: 16px;
    bottom: 72px;
    left: 16px;
    max-width: none;
  }

  .facts-grid {
    min-height: 0;
  }

  .facts-grid > div {
    min-height: 94px;
    padding: 16px;
  }

  .facts-grid strong {
    font-size: 1rem;
  }

  .section-intro,
  .place-lead {
    margin-bottom: 38px;
  }

  .section-intro p,
  .place-lead p,
  .town-film-copy p,
  .decision-intro > p,
  .request-intro > p {
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .unit-grid {
    width: calc(100vw - 16px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 18px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .unit-scroll-cue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -16px 0 14px;
    color: var(--teal-deep);
    font-size: 0.76rem;
    font-weight: 780;
  }

  .unit-scroll-cue span {
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1;
  }

  .unit-card,
  .unit-card-featured,
  .unit-card:not(.unit-card-featured) {
    min-width: min(82vw, 340px);
    min-height: 440px;
    flex: 0 0 min(82vw, 340px);
    padding: 24px;
    scroll-snap-align: start;
  }

  .unit-card-featured h3,
  .unit-card h3 {
    margin-top: 34px;
    font-size: 2.55rem;
  }

  .unit-card-featured .unit-price,
  .unit-card .unit-price {
    margin-top: 24px;
    font-size: 3.4rem;
  }

  .availability-note {
    margin-top: 16px;
  }

  .area-comparison {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }

  .area-comparison > p {
    grid-column: 1;
  }

  .lobby-figure,
  .atrium-figure,
  .pool-figure,
  .restaurant-figure,
  .gallery-action {
    grid-column: 1 / -1;
  }

  .lobby-figure img,
  .atrium-figure img,
  .pool-figure img,
  .restaurant-figure img {
    height: 290px;
  }

  .guinness-gallery figcaption {
    display: block;
  }

  .guinness-gallery figcaption span {
    display: block;
    margin-top: 4px;
  }

  .place-hero {
    min-height: 72svh;
  }

  .place-hero > img {
    object-position: 52% center;
  }

  .place-hero-copy {
    padding-bottom: 48px;
  }

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

  .place-town,
  .place-community,
  .place-winter,
  .place-summer,
  .place-culture {
    grid-column: 1;
  }

  .place-town img,
  .place-community img,
  .place-winter img,
  .place-summer img,
  .place-culture img {
    height: 360px;
  }

  .place-community img {
    object-position: 51% center;
  }

  .place-culture img {
    object-position: center 42%;
  }

  .town-film-stage {
    aspect-ratio: 16 / 9;
  }

  .town-film-control {
    left: 14px;
    bottom: 14px;
  }

  .town-film-status {
    display: none;
  }

  .town-film-stage.has-error .town-film-status {
    right: 14px;
    bottom: 74px;
    max-width: calc(100% - 28px);
    display: block;
    padding: 9px 11px;
    border-radius: var(--radius-small);
    background: rgba(8, 34, 27, 0.84);
    text-align: left;
  }

  .decision-list article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

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

  .request-form {
    padding: 24px 18px;
  }

  .inline-choices label {
    flex: 1 1 0;
  }

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

  .source-details {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .button-quiet,
  .film-control {
    background: var(--forest-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
