/* ===== Design Tokens ===== */
:root {
  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Switzer', 'Work Sans', sans-serif;
}

/* ===== Estate Palette — warm forest green + sand + gold ===== */
:root,
[data-theme='light'] {
  --color-bg: #f6f2e8;
  --color-surface: #fbf8f1;
  --color-surface-2: #ffffff;
  --color-surface-offset: #eee5d2;
  --color-surface-offset-2: #e6dac1;
  --color-divider: #e2d6b9;
  --color-border: #d3c39d;

  --color-text: #23261e;
  --color-text-muted: #6d6a58;
  --color-text-faint: #a6a087;
  --color-text-inverse: #f8f5ec;

  --color-primary: #33513f;
  --color-primary-hover: #24392c;
  --color-primary-active: #1b2c21;
  --color-primary-highlight: #dbe4da;

  --color-gold: #b48a3f;
  --color-gold-hover: #96702f;
  --color-gold-active: #765726;
  --color-gold-highlight: #efe1c1;

  --color-success: #4a7a3b;
  --color-success-highlight: #dde8d5;
  --color-error: #94402f;
  --color-error-highlight: #ecd8cf;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 110 / 0.08);
  --shadow-md: 0 8px 20px oklch(0.2 0.02 110 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.2 0.02 110 / 0.16);
}

[data-theme='dark'] {
  --color-bg: #14160f;
  --color-surface: #191c14;
  --color-surface-2: #1e2217;
  --color-surface-offset: #21261a;
  --color-surface-offset-2: #262c1d;
  --color-divider: #2a3020;
  --color-border: #3a4128;

  --color-text: #e9e4d2;
  --color-text-muted: #a6a28c;
  --color-text-faint: #6f6c58;
  --color-text-inverse: #23261e;

  --color-primary: #86b394;
  --color-primary-hover: #6a9c7a;
  --color-primary-active: #538063;
  --color-primary-highlight: #263229;

  --color-gold: #d6ab68;
  --color-gold-hover: #e2bd83;
  --color-gold-active: #ecce9d;
  --color-gold-highlight: #362c1c;

  --color-success: #8fbf7c;
  --color-success-highlight: #263320;
  --color-error: #d18468;
  --color-error-highlight: #35271f;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

/* ===== Layout primitives ===== */
.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 500;
}

.section-head h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.section-head p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}
.header--scrolled {
  border-color: var(--color-divider);
}
.header--hidden {
  transform: translateY(-100%);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
}
.brand svg {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
}
.brand-word {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}
.brand-word b {
  color: var(--color-gold);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  place-items: center;
}
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    oklch(from var(--color-bg) 0.14 0.02 110 / 0.94) 0%,
    oklch(from var(--color-bg) 0.14 0.02 110 / 0.72) 38%,
    oklch(from var(--color-bg) 0.14 0.02 110 / 0.28) 68%,
    oklch(from var(--color-bg) 0.14 0.02 110 / 0.12) 100%
  );
}
[data-theme='light'] .hero-media::after {
  background: linear-gradient(
    100deg,
    oklch(0.16 0.02 110 / 0.86) 0%,
    oklch(0.16 0.02 110 / 0.6) 40%,
    oklch(0.16 0.02 110 / 0.22) 68%,
    oklch(0.16 0.02 110 / 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  color: #f7f4ea;
}
.hero .eyebrow {
  color: #e7c988;
}
.hero .eyebrow::before {
  background: #e7c988;
}
.hero h1 {
  font-size: clamp(2.25rem, 1.5rem + 3.4vw, 4.1rem);
  line-height: 1.08;
  color: #f9f6ec;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: #e7c988;
}
.hero-lede {
  font-size: var(--text-lg);
  color: #e5e1d2;
  max-width: 46ch;
  margin-bottom: var(--space-8);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero .btn-ghost {
  border-color: rgba(247, 244, 234, 0.35);
  color: #f7f4ea;
}
.hero .btn-ghost:hover {
  border-color: #e7c988;
  color: #e7c988;
}

.hero-stats {
  display: flex;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #f9f6ec;
}
.hero-stat span {
  font-size: var(--text-xs);
  color: #cfcabb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== About ===== */
.about {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.about-lede {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  font-weight: 500;
}
.about-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.tag {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.about-facts {
  display: grid;
  gap: var(--space-4);
}
.fact-card {
  padding: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}
.fact-card b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}
.fact-card span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== Advantages ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.card {
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.card-icon svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== Services ===== */
.services {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.service-row {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}
.service-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold);
  flex-shrink: 0;
}
.service-row h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.service-row p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== Regions ===== */
.regions-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
.regions-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-md);
}
.region-list {
  display: grid;
  gap: var(--space-5);
}
.region-item {
  display: flex;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}
.region-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.region-mark {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.region-item h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.region-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== Objects (coming soon) ===== */
.objects {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.objects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.object-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  aspect-ratio: 4/3.4;
}
.object-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
}
.object-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.14 0.02 110 / 0.72) 0%, oklch(0.14 0.02 110 / 0.1) 55%);
}
.object-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: oklch(0.98 0.01 100 / 0.92);
  color: var(--color-text);
}
.object-badge--live {
  background: var(--color-primary);
  color: #f7f4ea;
}
.object-copy {
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 2;
  color: #f7f4ea;
}
.object-copy b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.object-copy span {
  font-size: var(--text-xs);
  color: #d9d4c4;
}
.objects-note {
  margin-top: var(--space-8);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.object-card--placeholder {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-active) 100%);
}
.object-card--placeholder::after {
  content: none;
}
.object-card--placeholder .object-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: var(--space-5);
}
.object-card--placeholder .object-badge {
  background: oklch(0.98 0.01 100 / 0.92);
}

.object-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.object-card--link:hover,
.object-card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px oklch(0.14 0.02 110 / 0.18);
}

/* ===== Services tabs ===== */
.services-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.tab-switch {
  display: inline-flex;
  gap: var(--space-1);
  padding: var(--space-1);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  align-self: flex-start;
}
.tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color var(--transition-interactive), background-color var(--transition-interactive);
}
.tab-btn:hover {
  color: var(--color-text);
}
.tab-btn.is-active {
  background: var(--color-primary);
  color: #f7f4ea;
}
.tab-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.tab-panel[hidden] {
  display: none;
}

/* ===== Contact ===== */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-divider);
}
.contact-info {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
}
.contact-info h2 {
  color: var(--color-text-inverse);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.contact-info p {
  color: oklch(from var(--color-text-inverse) l c h / 0.82);
  margin-bottom: var(--space-8);
}
.contact-channels {
  display: grid;
  gap: var(--space-4);
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-inverse);
  text-decoration: none;
  font-size: var(--text-sm);
}
.contact-channel svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold-hover);
}
[data-theme='dark'] .contact-channel svg {
  color: var(--color-gold);
}

.contact-form {
  background: var(--color-surface-2);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  display: grid;
  gap: var(--space-4);
  align-content: start;
}
.field {
  display: grid;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.field input,
.field textarea {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-10);
}
.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.footer-brand svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}
.footer-links {
  display: flex;
  gap: var(--space-6);
  font-size: var(--text-xs);
}
.footer-links a {
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-text-muted);
}

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-grid,
  .regions-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .objects-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 100vh;
  }
  .hero-stats {
    gap: var(--space-6);
  }
  .hero h1 {
    font-size: clamp(2rem, 1.5rem + 5vw, 2.6rem);
    word-break: normal;
    overflow-wrap: break-word;
  }
}

.mobile-nav {
  position: fixed;
  inset: 84px 0 0 0;
  z-index: 49;
  background: var(--color-bg);
  display: none;
  flex-direction: column;
  padding: var(--space-8) clamp(var(--space-5), 5vw, var(--space-10));
  gap: var(--space-2);
  border-top: 1px solid var(--color-divider);
}
.mobile-nav a {
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-family: var(--font-display);
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}
body.nav-open .mobile-nav {
  display: flex;
}
body.nav-open {
  overflow: hidden;
}

/* ==== Object detail page (villa-47.html) ==== */
.object-hero {
  padding: calc(var(--space-16) + var(--space-6)) 0 var(--space-12);
  background: linear-gradient(180deg, var(--color-primary-highlight) 0%, transparent 100%);
}
.breadcrumbs {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.breadcrumbs a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.object-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.object-hero-copy .eyebrow {
  color: var(--color-gold);
}
.object-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: var(--space-3) 0 var(--space-4);
  color: var(--color-primary);
}
.object-hero-copy .lede {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.object-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin: var(--space-4) 0 var(--space-6);
}
.object-hero-facts > div {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}
.object-hero-facts b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.object-hero-facts span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.object-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.object-hero-price {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.object-hero-price b {
  color: var(--color-primary);
  font-size: var(--text-lg);
  font-family: var(--font-display);
}
.object-hero-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px oklch(0.14 0.02 110 / 0.35);
}
.object-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.object-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-3);
}
.object-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.object-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.object-gallery-item:hover img {
  transform: scale(1.04);
}
.object-gallery-item--tall {
  grid-column: span 2;
  grid-row: span 2;
}
.object-gallery-note {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
}
.object-gallery-note a {
  color: var(--color-gold);
}

.object-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.spec-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.spec-block h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin: 0 0 var(--space-3);
}
.spec-block ul {
  margin: 0;
  padding: 0 0 0 var(--space-4);
  color: var(--color-text);
}
.spec-block li {
  margin-bottom: var(--space-2);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .object-hero-grid {
    grid-template-columns: 1fr;
  }
  .object-hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .object-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .object-gallery-item--tall {
    grid-column: span 2;
    grid-row: span 1;
  }
  .object-spec-grid {
    grid-template-columns: 1fr;
  }
}
