/* ============================================
   VIEWING ADVISED — Main Stylesheet
   Editorial luxury. Restrained. Fast.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* --- CSS Variables --- */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --warm-grey:   #EFEEEB;
  --mid-grey:    #C8C7C4;
  --text-muted:  #888884;
  --charcoal:    #1C1C1A;
  --green-deep:  #1E4D2B;
  --green-stamp: #2A6B3C;
  --green-light: #EBF2EC;

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --max-width:   1100px;
  --gutter:      clamp(1.5rem, 4vw, 3rem);

  --transition:  220ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.nav.scrolled {
  border-bottom-color: rgba(28, 28, 26, 0.08);
}

/* Inner wrapper — matches page content width exactly */
.nav__inner {
  max-width: var(--max-width);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav__logo img {
  height: 5rem;
  width: auto;
}

/* Hide logo text — logo stands alone */
.nav__logo-text {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
  transition: opacity var(--transition);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  opacity: 1;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green-deep);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--off-white);
  z-index: 99;
  padding: 6rem var(--gutter) 3rem;
  flex-direction: column;
  gap: 2.5rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--charcoal);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.nav__mobile a:hover { opacity: 1; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================
   HERO — LEFT/RIGHT OPEN LAYOUT
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem var(--gutter) 5rem;
  background: var(--off-white);
}

.hero__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__proof {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-stamp);
  margin-bottom: 1.5rem;
  display: block;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--green-deep);
}

.hero__subline {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
}

/* Right — open form, no card */
.hero__right {
  border-left: 1px solid rgba(28,28,26,0.1);
  padding-left: 3.5rem;
}

.hero__form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}

.hero__form-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero__input {
  width: 100%;
  border: 1px solid rgba(28,28,26,0.18);
  border-radius: 1px;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.hero__input:focus { border-color: var(--green-deep); }
.hero__input::placeholder { color: var(--mid-grey); }

.hero__submit {
  width: 100%;
  padding: 0.9375rem 1.5rem;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  -webkit-appearance: none;
}

.hero__submit:hover { background: var(--green-stamp); }

.hero__form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
  font-weight: 300;
}

.form-success {
  padding: 1rem 0;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.375rem;
  color: var(--green-deep);
}

.form-success p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.5rem;
}

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { border-left: none; border-top: 1px solid rgba(28,28,26,0.1); padding-left: 0; padding-top: 2.5rem; }
  .hero { min-height: auto; padding: 6rem var(--gutter) 4rem; }
}


/* ============================================
   FEATURE STRIP — PDF PRODUCT
   ============================================ */
.feature-strip {
  background: var(--off-white);
  padding: 4rem var(--gutter);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(28,28,26,0.07);
  border-bottom: 1px solid rgba(28,28,26,0.07);
}

.feature-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
  max-width: var(--max-width);
  margin-inline: auto;
}

.feature-strip__eyebrow {
  color: var(--green-stamp);
  margin-bottom: 0.875rem;
}

.feature-strip__headline {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-strip__headline em {
  font-style: italic;
  color: var(--green-deep);
}

.feature-strip__body {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.feature-strip__points {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-strip__points li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding-left: 1.25rem;
  position: relative;
  opacity: 0.75;
}

.feature-strip__points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-stamp);
  opacity: 0.6;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* Mockup card — constrained, not dominating */
.feature-strip__mockup {
  background: var(--green-deep);
  border-radius: 2px;
  padding: 2rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.feature-strip__mockup::before {
  content: none;
}

.feature-strip__mockup-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.25rem;
  font-style: italic;
}

.feature-strip__mockup-sub {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-strip__mockup-chapters {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-strip__mockup-chapters li {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.feature-strip__mockup-chapters li:last-child {
  border-bottom: none;
}

.feature-strip__mockup-chapters li strong {
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.feature-strip__mockup-chapters li span {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* Featured £9 CTA block */
.feature-strip__mockup-cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  text-align: center;
}

/* ── £9 — prominent feature ── */
.feature-strip__mockup-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.feature-strip__mockup-price-note {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 300;
}

@media (max-width: 900px) {
  .feature-strip__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-strip__mockup {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* ============================================
   PROPERTIES SECTION
   ============================================ */
.properties {
  padding: 5rem var(--gutter) 6rem;
}

.properties__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.properties__title {
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
}

.link-underline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  border-bottom: 1px solid var(--green-deep);
  padding-bottom: 2px;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.link-underline:hover { opacity: 0.6; }

.properties__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}

@media (min-width: 1024px) {
  .properties__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .properties__grid {
    grid-template-columns: 1fr;
  }
}

/* Property Card */
.property-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.property-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--warm-grey);
  position: relative;
}

.property-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.property-card:hover .property-card__img-wrap img {
  transform: scale(1.04);
}

.property-card__badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(28,28,26,0.7);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  backdrop-filter: blur(4px);
}

.property-card__location {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.property-card__title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  transition: color var(--transition);
  line-height: 1.25;
}

.property-card:hover .property-card__title {
  color: var(--green-deep);
}

.property-card__teaser {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}

.properties__cta {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(28,28,26,0.2);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--green-deep);
  background: var(--green-light);
  color: var(--green-deep);
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  height: 1px;
  background: rgba(28,28,26,0.08);
  margin: 0 var(--gutter);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem var(--gutter);
}

.footer__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__links a {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer__links a:hover { color: rgba(255,255,255,0.7); }

.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__copy {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.3;
}

/* Social icons */
.footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: rgba(255,255,255,0.8);
}

.footer__social svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__links {
    justify-content: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.archive-hero {
  padding: 8rem var(--gutter) 4rem;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid rgba(28,28,26,0.07);
}

.archive-hero h1 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.archive-hero p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
}

.archive-grid {
  padding: 4rem var(--gutter) 5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.archive-grid .properties__grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  margin-top: 4rem;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(28,28,26,0.12);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  text-decoration: none;
}

.pagination a:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.pagination .current {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================
   PROPERTY DETAIL PAGE
   ============================================ */
.property-hero {
  padding-top: 5.5rem;
}

.property-hero__img {
  width: 100%;
  height: clamp(320px, 55vw, 680px);
  object-fit: cover;
}

.property-body {
  max-width: 760px;
  margin-inline: auto;
  padding: 3.5rem var(--gutter) 5rem;
}

.property-body__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}

.property-body__back:hover { color: var(--green-deep); }

.property-body__location {
  margin-bottom: 0.75rem;
}

.property-body__title {
  font-size: clamp(1.625rem, 2.5vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

.property-body__content {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

.property-body__content p {
  margin-bottom: 1.25rem;
}

.property-body__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.property-body__images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.property-reveal {
  border-top: 1px solid rgba(28,28,26,0.08);
  border-bottom: 1px solid rgba(28,28,26,0.08);
  padding: 2rem 0;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.property-reveal__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.property-reveal__price {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--green-deep);
}

/* ============================================
   UTILITY
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   SCROLL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 1.25rem var(--gutter);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--white);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.5rem 1.25rem;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover { background: var(--green-stamp); }

.cookie-decline {
  padding: 0.5rem 1rem;
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.archive-hero {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 7rem var(--gutter) 3rem;
}
.archive-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.archive-hero p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  font-weight: 300;
}
.archive-grid {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 var(--gutter) 5rem;
}

/* ============================================
   PROPERTY PAGE
   ============================================ */
.property-hero__img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}
.property-body {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 2.5rem var(--gutter) 5rem;
}
.property-body__back {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.property-body__back:hover { color: var(--charcoal); }
.property-body__location {
  margin-bottom: 0.5rem;
  color: var(--green-deep);
}
.property-body__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.property-body__content {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a38;
  font-weight: 300;
  margin-bottom: 2rem;
}
.property-body__content p { margin-bottom: 1rem; }
.property-body__images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}
.property-body__images img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 2px;
}
.property-reveal {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--off-white);
  border: 1px solid rgba(28,28,26,.08);
  border-radius: 2px;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.property-reveal__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.property-reveal__price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  display: block;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 2.25rem; height: 2.25rem;
  font-size: 0.8125rem; font-weight: 500;
  border-radius: 2px; text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.pagination a { color: var(--charcoal); border-color: var(--mid-grey); }
.pagination a:hover { border-color: var(--charcoal); }
.pagination .current { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.pagination .disabled { color: var(--text-muted); opacity: 0.4; cursor: default; }

/* ============================================
   PROPERTY PAGE — LAYOUT
   ============================================ */
.property-article {
  padding-top: 5.5rem;
}

.property-body {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 2.5rem var(--gutter) 5rem;
}

.property-body__back {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.property-body__back:hover { color: var(--charcoal); }

.property-body__location {
  color: var(--green-deep);
  margin-bottom: 0.375rem;
}

.property-body__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  max-width: 700px;
}

/* Text + media layout — CSS grid, not float */
.property-body__text {
  font-size: 1rem;
  line-height: 1.85;
  color: #3a3a38;
  font-weight: 300;
}
.property-body__text p {
  margin-bottom: 1.25rem;
}

/* When spot1 is present: grid with text left, media right */
.property-body__text--with-media {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

/* All paragraphs go in the left column */
.property-body__text--with-media .property-body__prose {
  /* left column — text */
}

/* Spot 1 sits in right column, spans all text rows */
.property-spot1--img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 2px;
}

/* Spot 1 — video right column */
.property-spot1--video {
  width: 100%;
}
/* Hero image stacked below video in right column */
.property-spot1--video .property-spot1--img {
  margin-top: 1rem;
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.property-spot1--video .property-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
}
/* Portrait override for Shorts */
.property-spot1--video .property-video--portrait {
  padding-bottom: 177.78%;
}
.property-spot1--video .property-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Mobile — stack */
@media (max-width: 700px) {
  .property-body__text--with-media {
    grid-template-columns: 1fr;
  }
  .property-spot1--img,
  .property-spot1--video {
    order: -1; /* media above text on mobile */
  }
}

/* Gallery grid */
.property-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  clear: both;
}
.property-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Price reveal box */
.property-reveal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--off-white);
  border: 1px solid rgba(28,28,26,.08);
  border-radius: 2px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
a.property-reveal:hover {
  border-color: rgba(28,28,26,.2);
  background: #f0ede8;
}
.property-reveal__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.property-reveal__price {
  font-family: var(--font-serif);
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  display: block;
}
.property-reveal__cta {
  font-size: 0.8125rem;
  color: var(--green-deep);
  font-weight: 400;
  line-height: 1.5;
  max-width: 220px;
  text-align: right;
}
.property-reveal__cta strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* Mobile */
@media (max-width: 680px) {
  .property-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .property-reveal {
    flex-direction: column;
    align-items: flex-start;
  }
  .property-reveal__cta {
    text-align: left;
  }
}
