/* =====================================================
   The Fortnight Stays — Shared stylesheet
   ===================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tokens ---------- */
:root {
  --paper: #F5F1EA;
  --paper-soft: #EDE6D9;
  --ink: #0F1419;
  --ink-soft: #2A2F35;
  --copper: #9B6B3A;
  --copper-deep: #6B4623;
  --rule: rgba(15, 20, 25, 0.12);
  --rule-strong: rgba(15, 20, 25, 0.22);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Outfit', 'Helvetica Neue', system-ui, sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- Paper grain (SVG noise) ---------- */
body {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.05  0 0 0 0 0.04  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 500; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--copper-deep);
}
.lede { font-size: 19px; line-height: 1.55; max-width: 56ch; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 5.4em;
  line-height: 0.85;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--copper-deep);
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--soft { background-color: var(--paper-soft); }
.section--ink {
  background-color: var(--ink);
  color: #E9E2D2;
}
.section--ink h2, .section--ink h3 { color: #F5EDDA; }
.section--ink .eyebrow { color: var(--copper); }
.divider {
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 0;
}

/* Big italic numeral marker */
.numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.8;
  color: var(--copper);
  opacity: 0.85;
  display: block;
}

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav__brand small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper-deep);
  display: block;
  margin-top: -4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.nav__links a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--copper-deep); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover { background: var(--copper-deep); border-color: var(--copper-deep); }

/* spacer to push content below fixed nav */
.nav-spacer { height: 78px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 30px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--copper-deep); border-color: var(--copper-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--copper {
  background: var(--copper);
  color: var(--paper);
  border-color: var(--copper);
}
.btn--copper:hover { background: var(--copper-deep); border-color: var(--copper-deep); }
.btn--ink-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245,241,234,0.5);
}
.btn--ink-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Small trust line under CTAs — e.g. "Usually a reply within the hour" */
.cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--copper-deep);
  font-weight: 400;
}
.cta-note::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.06); }
}
.cta-note--ink { color: rgba(245, 237, 218, 0.75); }
.cta-note--ink::before { background: #6CE07A; box-shadow: 0 0 0 4px rgba(108, 224, 122, 0.22); }
.cta-note--center { justify-content: center; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__copy h1 {
  font-size: clamp(54px, 8.5vw, 124px);
  line-height: 0.95;
  margin-bottom: 0.5em;
}
.hero__copy h1 em {
  color: var(--copper-deep);
  font-style: italic;
}
.hero__copy .lede { margin-bottom: 2.4em; }
.hero__mark {
  position: absolute;
  top: 30px;
  right: var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--copper-deep);
  text-transform: uppercase;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  overflow: hidden;
}
.hero__visual img,
.hero__visual .photo-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Photo placeholders ---------- */
.photo-placeholder {
  position: relative;
  background: linear-gradient(135deg, #E5DCC8 0%, #C9BBA0 50%, #B5A284 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100%;
  color: rgba(15, 20, 25, 0.55);
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(15, 20, 25, 0.22);
  pointer-events: none;
}
.photo-placeholder__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.02em;
  padding: 0 24px;
  text-align: center;
}
.photo-placeholder__stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(15, 20, 25, 0.55);
}

/* ---------- Properties grid (homepage) ---------- */
.props {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 36px clamp(24px, 3vw, 48px);
}
.prop-card { display: block; color: inherit; transition: transform 0.3s ease; }
.prop-card:hover { transform: translateY(-4px); }
.prop-card__visual {
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.prop-card__visual img,
.prop-card__visual .photo-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.prop-card:hover .prop-card__visual img { transform: scale(1.04); }
.prop-card__num {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--paper);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  z-index: 2;
}
.prop-card__loc {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 6px;
}
.prop-card__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  margin: 0 0 6px;
  color: var(--ink);
}
.prop-card__meta {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 6px;
}
.prop-card__view {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
/* asymmetric grid placement */
.prop-card:nth-child(1) { grid-column: span 6; }
.prop-card:nth-child(2) { grid-column: span 6; padding-top: 60px; }
.prop-card:nth-child(3) { grid-column: span 6; }
.prop-card:nth-child(4) { grid-column: span 6; padding-top: 60px; }

/* "More houses" line under the property grid */
.more-houses {
  margin: clamp(56px, 7vw, 88px) auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.more-houses__line { display: block; }
.more-houses__link {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-deep);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.more-houses__link:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Section header (with numeral) ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sec-head__title h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  font-style: italic;
  margin-top: -0.1em;
}
.sec-head__title .eyebrow { display: block; margin-bottom: 14px; }

/* ---------- About (homepage) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-grid p { font-size: 19px; line-height: 1.6; }

/* ---------- Contact section ---------- */
.contact {
  background: linear-gradient(160deg, #0F1419 0%, #1A1611 60%, #2A1F12 100%);
  color: var(--paper);
  padding: clamp(96px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.contact h2 {
  font-size: clamp(54px, 8vw, 110px);
  font-style: italic;
  color: var(--paper);
  margin-bottom: 0.3em;
}
.contact h2 em {
  color: var(--copper);
  font-style: italic;
}
.contact .lede { color: rgba(245,241,234,0.78); margin-bottom: 2.2em; max-width: 50ch; }
.contact__details {
  border-left: 1px solid rgba(245,241,234,0.18);
  padding-left: clamp(28px, 4vw, 48px);
}
.contact__line {
  margin-bottom: 26px;
}
.contact__line .eyebrow { color: var(--copper); display: block; margin-bottom: 6px; }
.contact__line a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--paper);
  border-bottom: 1px solid rgba(245,241,234,0.25);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact__line a:hover { color: var(--copper); border-color: var(--copper); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(245,241,234,0.65);
  padding: 40px 0;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper);
  font-size: 18px;
}

/* =====================================================
   Property page styles
   ===================================================== */

/* ---------- Property hero ---------- */
.p-hero {
  position: relative;
  padding: clamp(60px, 10vh, 110px) 0 clamp(60px, 10vh, 110px);
  overflow: hidden;
}
.p-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.p-hero__copy .eyebrow { display: block; margin-bottom: 22px; }
.p-hero__copy h1 {
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1;
  font-style: italic;
  margin-bottom: 0.5em;
}
.p-hero__copy h1 em { color: var(--copper-deep); }
.p-hero__copy .lede { margin-bottom: 2em; max-width: 44ch; }
.p-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  overflow: hidden;
}
.p-hero__visual img,
.p-hero__visual .photo-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.p-hero__watermark {
  position: absolute;
  top: clamp(40px, 8vh, 80px);
  right: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.8;
  color: var(--copper);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.p-hero__inner > * { position: relative; z-index: 1; }

/* ---------- The house section ---------- */
.house-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.house-grid h2 {
  font-size: clamp(40px, 5.4vw, 68px);
  font-style: italic;
}
.house-grid .body p {
  font-size: 19px;
  line-height: 1.7;
}

/* ---------- Photo gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 32vh;
  gap: clamp(10px, 1.4vw, 18px);
  max-width: var(--max);
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: 0 var(--gutter);
}
.gallery__item {
  position: relative;
  background: var(--paper-soft);
  overflow: hidden;
}
.gallery__item img,
.gallery__item .photo-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.gallery__item--tall { grid-row: span 2; }

/* ---------- The extras (dark section) ---------- */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,241,234,0.10);
  border: 1px solid rgba(245,241,234,0.10);
}
.extras-cell {
  background: var(--ink);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.extras-cell__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.extras-cell__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: #F5EDDA;
  line-height: 1.15;
}

/* ---------- Neighbourhood ---------- */
.hood-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.hood-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.hood-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.hood-list__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--copper);
}
.hood-list__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
}
.hood-list__dist {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
  text-align: right;
  white-space: nowrap;
}
.hood-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  overflow: hidden;
}
.hood-visual img,
.hood-visual .photo-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* =====================================================
   Services page
   ===================================================== */

/* "Who stays with us" — editorial stacked list */
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.who-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--rule);
}
.who-item__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--copper);
  letter-spacing: 0.02em;
}
.who-item__body { max-width: 64ch; }
.who-item__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.who-item__body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* "What's different" — three horizontal blocks */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(40px, 5vw, 64px);
}
.diff-block {
  position: relative;
  padding-right: clamp(8px, 2vw, 24px);
}
.diff-block__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--copper);
  margin-bottom: 18px;
}
.diff-block__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.diff-block p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .who-item { grid-template-columns: 60px 1fr; }
  .who-item__num { font-size: 36px; }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .diff-block { padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 28px; }
  .diff-block:last-child { border-bottom: none; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(160deg, #0F1419 0%, #1A1611 60%, #2A1F12 100%);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  color: var(--paper);
  position: relative;
}
.final-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.final-cta h2 {
  font-size: clamp(46px, 6.5vw, 88px);
  font-style: italic;
  margin-bottom: 0.4em;
}
.final-cta h2 em { color: var(--copper); }
.final-cta .cta-row { justify-content: center; margin-top: 2em; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: fixed;
  left: 12px; top: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  z-index: 200;
}

/* =====================================================
   Mobile (≤900px)
   ===================================================== */
@media (max-width: 900px) {
  body { font-size: 16px; }

  .nav__links a { display: none; }
  .nav__cta { padding: 9px 14px; font-size: 11px; }
  .nav__brand small { display: none; }
  .nav__brand { font-size: 22px; }

  .hero__inner,
  .p-hero__inner,
  .about-grid,
  .contact__inner,
  .house-grid,
  .hood-grid,
  .sec-head { grid-template-columns: 1fr; }

  .sec-head { gap: 16px; margin-bottom: 40px; }
  .numeral { font-size: 88px; }

  .props { grid-template-columns: 1fr; }
  .prop-card:nth-child(n) { grid-column: 1 / -1; padding-top: 0; }

  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-cell { min-height: 130px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 28vh; }
  .gallery__item--tall { grid-row: span 1; }

  .contact__details {
    border-left: none;
    border-top: 1px solid rgba(245,241,234,0.18);
    padding-left: 0;
    padding-top: 36px;
    margin-top: 12px;
  }

  .cta-row .btn { flex: 1 1 100%; text-align: center; }

  .p-hero__watermark { font-size: 38vw; opacity: 0.08; top: 10px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
