/* ============================================================
   Sweet Home Stays — shared stylesheet
   ============================================================ */

:root {
  --cream: #F8F4ED;
  --cream-light: #FDFBF7;
  --paper: #FFFFFF;
  --forest: #2D3F2A;
  --forest-deep: #1A2818;
  --clay: #C57B4A;
  --clay-deep: #A65D31;
  --clay-soft: #E8B895;
  --ink: #1A1A1A;
  --ink-light: #4A4A4A;
  --ink-muted: #7A7A7A;
  --sand: #E8DFD0;
  --sand-light: #EFE8DC;
  --line: #D9CFBE;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --max-w: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.brand .brand-mark {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
  margin-right: 0.4rem;
  transform: translateY(-2px);
}
.brand em { font-style: italic; font-weight: 400; color: var(--clay-deep); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--ink-light);
  transition: color 0.2s var(--ease);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.cta {
  background: var(--forest);
  color: var(--cream-light);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}
.nav-links a.cta:hover { background: var(--forest-deep); color: var(--cream-light); }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--line);
    gap: 1.25rem;
  }
  .nav-toggle {
    display: block;
    font-size: 1.6rem;
    color: var(--forest);
    line-height: 1;
  }
}

/* ============================================================
   Eyebrow / labels
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

/* ============================================================
   Homepage hero
   ============================================================ */
.hero {
  padding: clamp(3rem, 8vw, 6.5rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--forest-deep);
  margin: 1.25rem 0 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--clay-deep);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--ink-light);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 0.15rem;
}

.hero-images {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 50px -20px rgba(26, 40, 24, 0.25);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 {
  top: 0; right: 0;
  width: 75%; height: 65%;
}
.hero-img-2 {
  bottom: 0; left: 0;
  width: 60%; height: 50%;
  border: 8px solid var(--cream);
  z-index: 2;
}
.hero-img-3 {
  bottom: 8%; right: 6%;
  width: 38%; height: 32%;
  border: 6px solid var(--cream);
  z-index: 3;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-images { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   Section conventions
   ============================================================ */
.section {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  max-width: 16ch;
}
.section-title em { font-style: italic; color: var(--clay-deep); }
.section-aside {
  font-size: 0.95rem;
  color: var(--ink-light);
  max-width: 36ch;
  line-height: 1.6;
}

/* ============================================================
   Property grid (homepage)
   ============================================================ */
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 720px) {
  .property-grid { grid-template-columns: 1fr; }
}

.property-card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
.property-card:hover { transform: translateY(-4px); }

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sand);
  position: relative;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.property-card:hover .card-image img { transform: scale(1.04); }

.card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--cream);
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}
.card-tag.guest-fav {
  background: var(--clay);
  color: var(--cream);
}

.card-body {
  padding: 1.5rem 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card-loc {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.card-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  margin-top: 0.1rem;
}
.card-desc {
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0.5rem;
  max-width: 46ch;
}
.card-meta {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-light);
  flex-wrap: wrap;
}
.card-meta span::before {
  content: '·';
  margin-right: 1.25rem;
  color: var(--line);
}
.card-meta span:first-child::before { display: none; }

.card-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--forest-deep);
  border-bottom: 1px solid var(--forest-deep);
  padding-bottom: 0.3rem;
  align-self: flex-start;
  transition: gap 0.3s var(--ease-out), color 0.2s var(--ease);
}
.property-card:hover .card-cta { gap: 0.95rem; color: var(--clay-deep); border-color: var(--clay-deep); }
.card-cta::after { content: '→'; font-size: 1.05rem; line-height: 1; }

/* ============================================================
   About strip
   ============================================================ */
.about {
  background: var(--forest);
  color: var(--cream-light);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about .eyebrow { color: var(--clay-soft); }
.about-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream-light);
  margin-top: 1rem;
}
.about-title em { font-style: italic; color: var(--clay-soft); }
.about-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(248, 244, 237, 0.85);
}
.about-text p + p { margin-top: 1.1rem; }
.about-text strong { color: var(--cream-light); font-weight: 500; }
.about-text em { font-style: italic; color: var(--clay-soft); font-weight: 400; }
@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--forest-deep);
  color: rgba(248, 244, 237, 0.75);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
  font-size: 0.92rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream-light);
  margin-bottom: 1rem;
}
.footer-brand em { font-style: italic; color: var(--clay-soft); }
.footer-tag {
  max-width: 32ch;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.65);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: var(--cream-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 244, 237, 0.12);
  font-size: 0.82rem;
  color: rgba(248, 244, 237, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ============================================================
   PROPERTY DETAIL PAGES
   ============================================================ */
.detail-hero {
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.crumb {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.crumb a { color: var(--ink-muted); }
.crumb a:hover { color: var(--forest); }
.crumb span { margin: 0 0.6rem; opacity: 0.5; }

.detail-headline {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.detail-loc {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.detail-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--forest-deep);
}
.detail-name em { font-style: italic; color: var(--clay-deep); }
.detail-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--ink-light);
  border-left: 2px solid var(--clay);
  padding-left: 1.5rem;
}
.detail-stats div strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 0.1rem;
}
.rating-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.rating-pill {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--forest-deep);
  font-weight: 500;
}
.rating-pill .star { color: var(--clay); }

@media (max-width: 760px) {
  .detail-headline { grid-template-columns: 1fr; gap: 1.5rem; }
  .detail-stats { padding-left: 1rem; }
}

/* Photo gallery */
.gallery {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: clamp(400px, 60vw, 620px);
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sand);
}
.gallery a:nth-child(1) {
  grid-row: 1 / 3;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery a:hover img { transform: scale(1.03); }

@media (max-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
    aspect-ratio: 1 / 1.1;
  }
  .gallery a:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .gallery a:nth-child(n + 4) { display: none; }
}

/* Detail body */
.detail-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .detail-body { grid-template-columns: 1fr; }
}

.detail-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-light);
}
.detail-prose h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
}
.detail-prose h2:not(:first-child) { margin-top: 2.75rem; }
.detail-prose h2 em { font-style: italic; color: var(--clay-deep); }
.detail-prose p + p { margin-top: 1.1rem; }
.detail-prose strong { color: var(--ink); font-weight: 500; }

/* Amenities chip list */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
}
.amenities-grid li {
  list-style: none;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-light);
  line-height: 1.5;
}
.amenities-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 0.6rem; height: 0.6rem;
  background: var(--clay);
  border-radius: 50%;
}

/* Booking sidebar */
.booking-card {
  position: sticky;
  top: 100px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px -25px rgba(26, 40, 24, 0.2);
}
.booking-head {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}
.booking-head em { font-style: italic; color: var(--clay-deep); }
.booking-sub {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.booking-iframe-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
}
.booking-iframe-wrap iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
}
.booking-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s var(--ease);
}
.btn-primary { background: var(--forest); color: var(--cream-light); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--cream-light); border-color: var(--forest); }

/* Weather callout (on-site weather station) */
.weather-callout {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.weather-callout::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(197, 123, 74, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.weather-callout .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.weather-callout h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.2;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  max-width: 28ch;
}
.weather-callout h3 em { font-style: italic; color: var(--clay-deep); }
.weather-callout p {
  color: var(--ink-light);
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 1.25rem;
}
.weather-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-weather {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--cream-light);
  padding: 0.65rem 1.1rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.2s var(--ease);
}
.btn-weather:hover { background: var(--forest-deep); color: var(--cream-light); }
.btn-weather svg { width: 16px; height: 16px; }
.station-id {
  font-family: 'SFMono-Regular', Consolas, 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}
@media (max-width: 520px) {
  .station-id { padding-left: 0; border-left: 0; }
}

/* Live weather tile (PWS observations) */
.live-weather {
  margin: 1.25rem 0 1.5rem;
  min-height: 132px;
}
.live-weather:not(.loaded) .weather-tile {
  background: var(--cream);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1rem;
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.live-weather:not(.loaded) .weather-tile::before {
  content: 'Loading current conditions…';
}

.weather-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr;
  gap: 0 1.75rem;
  align-items: center;
  position: relative;
}
.live-weather.loaded .weather-tile {
  animation: rise 0.6s var(--ease-out) both;
}

.weather-temp-block { display: flex; flex-direction: column; }
.weather-temp {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--forest-deep);
}
.weather-deg {
  font-size: 0.32em;
  font-weight: 400;
  vertical-align: top;
  margin-left: 4px;
  color: var(--ink-muted);
  letter-spacing: 0;
}
.weather-feels {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}

.weather-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
  margin: 0;
}
.weather-stats li { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.ws-label {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.ws-val {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--forest-deep);
  font-weight: 400;
  line-height: 1.25;
}

.weather-updated {
  grid-column: 1 / -1;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.weather-updated strong {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-light);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@media (max-width: 560px) {
  .weather-tile {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.1rem;
  }
  .weather-stats {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .weather-temp { font-size: 2.75rem; }
}

/* Secondary "more views" gallery (Cloverdale and any other detail page) */
.more-views {
  padding: clamp(2rem, 4vw, 3.5rem) 0 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.more-views-inner {
  padding: 0 var(--gutter);
}
.more-views-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.more-views-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin: 0;
}
.more-views-head h2 em { font-style: italic; color: var(--clay-deep); }
.more-views-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.more-views-grid a {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sand);
  display: block;
}
.more-views-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.more-views-grid a:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .more-views-grid { grid-template-columns: repeat(2, 1fr); }
}

.others {
  background: var(--sand-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.others-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.others-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.others-title em { font-style: italic; color: var(--clay-deep); }
.others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) {
  .others-grid { grid-template-columns: 1fr; }
}
.others-grid .property-card .card-name { font-size: 1.45rem; }

/* Quote block */
.quote {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  max-width: 28ch;
  margin: 0 auto;
  position: relative;
}
.quote blockquote::before,
.quote blockquote::after {
  font-family: var(--font-serif);
  color: var(--clay);
  font-size: 2.5em;
  line-height: 0.5;
  position: absolute;
}
.quote blockquote::before { content: '“'; left: -0.5em; top: 0.4em; }
.quote blockquote::after { content: '”'; right: -0.5em; bottom: -0.1em; }
.quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1.5rem;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-rise > * {
  opacity: 0;
  animation: rise 0.9s var(--ease-out) forwards;
}
.anim-rise > *:nth-child(1) { animation-delay: 0.05s; }
.anim-rise > *:nth-child(2) { animation-delay: 0.18s; }
.anim-rise > *:nth-child(3) { animation-delay: 0.30s; }
.anim-rise > *:nth-child(4) { animation-delay: 0.42s; }
.anim-rise > *:nth-child(5) { animation-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  .anim-rise > * { opacity: 1; animation: none; }
  *, ::before, ::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
