:root {
  --moon: #6f8796;
  --moon-deep: #3d515c;
  --sun: #c4a574;
  --sun-soft: #efe3cf;
  --ink: #1f272c;
  --muted: #5f6b73;
  --bg: #f2eee8;
  --bg2: #e8e2d8;
  --panel: #fbf9f5;
  --line: #d4cbc0;
  --white: #fffcf8;
  --rose: #9a7f86;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4rem;
  --radius: 0;
  --pad: clamp(1rem, 4vw, 2rem);
  --wrap: min(1120px, calc(100% - 2 * var(--pad)));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Sora, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 0% -10%, rgba(127,147,160,0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196,165,116,0.16), transparent 50%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; }
.wrap { width: var(--wrap); margin-inline: auto; }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 210;
  height: var(--nav-h);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(31, 39, 44, 0.05);
}
.site-nav .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  z-index: 102;
  color: var(--ink);
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.15rem);
  font-size: 0.8rem;
}
.nav-desktop a {
  color: #4a555c;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--moon-deep); font-weight: 500; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  background: var(--moon-deep);
  color: var(--white) !important;
  font-size: 0.78rem;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.3s var(--ease);
}
.nav-cta:hover { background: #2f3f48; transform: translateY(-1px); }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 212;
  position: relative;
  padding: 0.45rem;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
  transform-origin: center;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31,39,44,0.4);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
body.nav-open .nav-drawer { opacity: 1; pointer-events: auto; visibility: visible; }
.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100%;
  background: var(--panel);
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
body.nav-open .nav-panel { transform: translateX(0); }
.nav-panel a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nav-panel a span {
  font-family: "Libre Bodoni", serif;
  font-size: 0.85rem;
  color: var(--moon);
}
.nav-panel .nav-cta {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.95rem;
  text-align: center;
}

@media (min-width: 960px) {
  .burger { display: none; }
  .nav-desktop { display: flex; }
  .nav-drawer { display: none !important; }
}
@media (min-width: 960px) and (max-width: 1180px) {
  .nav-desktop a:nth-child(5),
  .nav-desktop a:nth-child(6),
  .nav-desktop a:nth-child(7) { display: none; }
  .nav-desktop { gap: 0.75rem; font-size: 0.76rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-solid { background: var(--moon-deep); color: var(--white); }
.btn-solid:hover { background: #2f3f48; }
.btn-line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--sun); }
.btn-sun { background: transparent; border-color: var(--sun); color: var(--ink); }
.btn-sun:hover { background: var(--sun-soft); }
.btn-soft { background: var(--panel); border-color: var(--line); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* ===== TYPE ===== */
.kicker {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moon-deep);
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.title {
  font-family: "Libre Bodoni", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.lead {
  color: var(--muted);
  font-weight: 300;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  max-width: 38rem;
  margin-bottom: 1.5rem;
}
.hub { display: inline-block; margin-bottom: 0.75rem; font-size: 0.82rem; color: var(--moon-deep); }

/* ===== HERO (landing) ===== */
.hero {
  display: grid;
  gap: 0;
  min-height: calc(100svh - var(--nav-h));
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; min-height: calc(100svh - var(--nav-h)); }
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad);
  max-width: 40rem;
}
.hero-copy .duo {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moon-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-copy .duo i {
  width: 0.4rem; height: 0.4rem;
  border-radius: 50%;
  background: var(--sun);
  display: inline-block;
}
.hero-copy h1 {
  font-family: "Libre Bodoni", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 11ch;
}
.hero-visual {
  position: relative;
  min-height: min(52vh, 480px);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero-visual { min-height: 100%; }
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
  animation: softZoom 18s ease-in-out infinite alternate;
}
@keyframes softZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.hero-caption {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: var(--pad);
  max-width: 22rem;
  background: rgba(251,249,245,0.92);
  backdrop-filter: blur(10px);
  padding: 0.95rem 1.05rem;
  font-size: 0.86rem;
  color: var(--muted);
}
.hero-caption strong { display: block; color: var(--ink); margin-bottom: 0.2rem; font-weight: 500; }

/* Offer strip */
.offer-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin: 0;
}
@media (min-width: 700px) {
  .offer-strip { grid-template-columns: repeat(3, 1fr); }
}
.offer-item {
  background: var(--panel);
  padding: clamp(1.1rem, 3vw, 1.5rem) var(--pad);
}
.offer-item b {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}
.offer-item span { color: var(--muted); font-size: 0.88rem; font-weight: 300; }

/* Sections */
.sec {
  padding: clamp(2.75rem, 7vw, 5rem) 0;
  scroll-margin-top: calc(var(--nav-h) + 0.5rem);
}
.sec-inner { width: var(--wrap); margin-inline: auto; }

/* Branch cards */
.dual {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .dual { grid-template-columns: 1fr 1fr; }
}
.place {
  position: relative;
  min-height: clamp(280px, 50vw, 380px);
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.place img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.9s var(--ease);
}
.place:hover img { transform: scale(1.05); }
.place.moon::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(74,93,104,0.1), rgba(31,39,44,0.85));
}
.place.sun::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(196,165,116,0.15), rgba(62,48,30,0.82));
}
.place .mark {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
.place h3 {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.place p { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.9); }
.names { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.names span {
  font-size: 0.75rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}

/* Apartments */
.rooms-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .rooms-grid.apt-cards { grid-template-columns: repeat(3, 1fr); }
}
.room {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.room:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(31,39,44,0.08); }
.room-top { height: 6px; }
.room.chandra .room-top { background: linear-gradient(90deg, var(--moon), #b7c5cd); }
.room.suria .room-top { background: linear-gradient(90deg, var(--sun), #e6d3ad); }
.room.vege .room-top { background: linear-gradient(90deg, #8a9a7d, #c5d0b8); }
.room-img { aspect-ratio: 5/4; overflow: hidden; }
.room-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.room:hover .room-img img { transform: scale(1.05); }
.room-body { padding: clamp(1.1rem, 2.5vw, 1.35rem); flex: 1; display: flex; flex-direction: column; }
.room-body .s {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.room-body h3 {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.45rem, 3vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.room-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; font-weight: 300; flex: 1; }
.tri { display: grid; gap: 0.3rem; margin-bottom: 1rem; font-size: 0.84rem; }
.tri div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.tri span:last-child { color: var(--muted); }

/* City */
.city {
  position: relative;
  min-height: clamp(340px, 55vw, 480px);
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: end;
}
.city-slides { position: absolute; inset: 0; z-index: -2; }
.city-slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  animation: xf 15s infinite;
}
.city-slides img:nth-child(2) { animation-delay: 5s; }
.city-slides img:nth-child(3) { animation-delay: 10s; }
@keyframes xf {
  0% { opacity: 0; transform: scale(1.04); }
  8% { opacity: 1; }
  30% { opacity: 1; }
  38% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}
.city::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,39,44,0.15), rgba(31,39,44,0.78));
}
.city-copy {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  max-width: 34rem;
}
.city-copy h2 {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 400;
  margin-bottom: 0.55rem;
}
.city-copy p { font-weight: 300; color: rgba(255,255,255,0.9); }

/* Perks */
.perk-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 760px) {
  .perk-row { grid-template-columns: repeat(3, 1fr); }
}
.perk {
  padding: clamp(1.15rem, 2.5vw, 1.4rem);
  background: var(--bg2);
  border: 1px solid var(--line);
}
.perk h3 {
  font-family: "Libre Bodoni", serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.perk p { color: var(--muted); font-size: 0.9rem; font-weight: 300; }

/* Pricing */
.price-wrap {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .price-wrap { grid-template-columns: 1.25fr 0.75fr; }
}
.price-table {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.84rem, 2vw, 0.92rem);
  min-width: 280px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-weight: 500;
  background: var(--bg2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moon-deep);
  position: sticky;
  top: 0;
}
.price-table td:last-child { text-align: right; font-weight: 500; white-space: nowrap; }
.price-table tbody tr { transition: background 0.2s ease; }
.price-table tbody tr:hover { background: rgba(196,165,116,0.12); }
.weekend {
  background: linear-gradient(155deg, var(--moon-deep), #2f3f48);
  color: var(--white);
  padding: clamp(1.4rem, 3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.weekend h3 {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.weekend .big {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(2.4rem, 6vw, 3rem);
  line-height: 1;
  margin: 0.4rem 0 0.6rem;
}
.weekend p { font-weight: 300; font-size: 0.92rem; opacity: 0.9; }
.fine { margin-top: 1rem; color: var(--muted); font-size: 0.86rem; max-width: 48rem; }

/* Reviews / FAQ / forms — shared subpage */
.quotes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .quotes { grid-template-columns: 1fr 1fr; }
}
.quote, .review {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(1.15rem, 2.5vw, 1.4rem);
  position: relative;
  overflow: hidden;
}
.quote p, .review blockquote {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}
.quote cite, .review cite {
  font-style: normal;
  font-size: 0.84rem;
  color: var(--muted);
}

.faq { display: grid; gap: 0.55rem; max-width: 720px; }
details {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.95rem 1.1rem;
}
summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--sun); flex-shrink: 0; }
details[open] summary::after { content: "–"; }
details p { margin-top: 0.7rem; color: var(--muted); font-size: 0.92rem; font-weight: 300; }

.split-cta, .split, .cta-band {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .split-cta, .split, .cta-band { grid-template-columns: 1fr 1fr; }
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 1.6rem);
}
.panel h3 {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.35rem, 3vw, 1.55rem);
  font-weight: 500;
  margin-bottom: 0.45rem;
}
.panel > p { color: var(--muted); font-weight: 300; margin-bottom: 1rem; font-size: 0.92rem; }
.form { display: grid; gap: 0.7rem; }
.form label { display: grid; gap: 0.3rem; font-size: 0.8rem; color: var(--muted); }
.form input, .form textarea, .form select {
  font: inherit;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  width: 100%;
  min-height: 2.75rem;
  border-radius: 0;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--moon);
  box-shadow: 0 0 0 3px rgba(127,147,160,0.22);
}
.note, .form-note { font-size: 0.8rem; color: var(--muted); }

/* Subpage hero */
.page-hero {
  padding: clamp(2.2rem, 6vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.65rem;
  max-width: 14ch;
}
.page-hero p { color: var(--muted); font-weight: 300; max-width: 34rem; }
.page-hero .hero-parallax {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
}
.page-hero .hero-parallax img { width: 100%; height: 100%; object-fit: cover; }
.page-hero > .wrap { position: relative; z-index: 1; }
section.block { padding: clamp(2rem, 5vw, 3.5rem) 0; }

/* Cards / rooms / gallery for subpages */
.card-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.card-body { padding: 1.15rem; }
.card-body .s { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.card-body h3 { font-family: "Libre Bodoni", serif; font-size: 1.45rem; margin: 0.2rem 0 0.4rem; }
.card-body p { color: var(--muted); font-size: 0.9rem; font-weight: 300; margin-bottom: 0.9rem; }

.rooms-grid:not(.apt-cards) {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 760px) {
  .rooms-grid:not(.apt-cards) { grid-template-columns: repeat(3, 1fr); }
}
.room-box {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.15rem;
  border-top: 3px solid var(--sun);
}
.room-box h3 { font-family: "Libre Bodoni", serif; font-size: 1.25rem; margin-bottom: 0.3rem; }
.room-box p { color: var(--muted); font-size: 0.88rem; font-weight: 300; }

.price-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.35rem;
}
.price-card.featured {
  background: linear-gradient(145deg, var(--moon-deep), #2f3f48);
  color: #fff;
  border: 0;
}
.price-card h3 { font-family: "Libre Bodoni", serif; font-size: 1.4rem; margin-bottom: 0.9rem; }
.price-card ul { list-style: none; display: grid; gap: 0.45rem; }
.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.price-card.featured li { border-bottom-color: rgba(255,255,255,0.15); }
.muted { color: var(--muted); font-size: 0.86rem; }
.price-card.featured .muted { color: rgba(255,255,255,0.85); }

.gallery {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s var(--ease);
}
.gallery a { overflow: hidden; display: block; }
.gallery a:hover img { transform: scale(1.05); }

.list-check { list-style: none; display: grid; gap: 0.65rem; }
.list-check li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.4rem; height: 0.4rem;
  border-radius: 50%;
  background: var(--sun);
}

.branch {
  position: relative;
  min-height: clamp(240px, 45vw, 300px);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  margin-bottom: 0.9rem;
}
.branch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.branch.moon::after, .branch:first-of-type::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(74,93,104,0.2), rgba(42,48,53,0.85));
}
.branch.sun::after, .branch:nth-of-type(2)::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(196,165,116,0.25), rgba(62,48,30,0.8));
}
.branch h3 { font-family: "Libre Bodoni", serif; font-size: clamp(1.5rem, 3vw, 1.8rem); margin: 0.25rem 0; }
.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; }
.chips span {
  font-size: 0.72rem;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.35);
}

.quote-banner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sun);
  padding: clamp(1.2rem, 3vw, 1.5rem);
  margin: 1.8rem 0;
}
.quote-banner p {
  font-family: "Libre Bodoni", serif;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-style: italic;
  margin-bottom: 0.35rem;
}

/* Footer */
footer.site, .site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 2.8rem) 0 3rem;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 1rem;
}
.foot {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .foot { grid-template-columns: 1.3fr 1fr 1fr; }
}
footer.site strong, .site-footer strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.25rem;
}
footer.site a, .site-footer a { color: var(--moon-deep); }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
