/* ============================================
   Tiago Garcia — Hi-fi homepage stylesheet
   Logo 04 (chave horizontal) + Homepage 01
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #EDEDDD;
  --cream-soft: #F5F1E4;
  --beje: #BEAA7E;
  --beje-soft: #E5DCC4;
  --ash-blue: #AFC5C4;
  --vivid-blue: #58A6B0;
  --dark-blue: #3C648E;
  --ink: #233B55;
  --pencil: #6B7A8A;
  --pencil-light: #C9D0D7;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Top bar ===== */
.topbar {
  background: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pencil);
  padding: 8px 0;
  border-bottom: 1px solid rgba(60, 100, 142, 0.08);
}
.topbar .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--pencil); text-decoration: none; }
.topbar .right { display: flex; gap: 22px; }

/* ===== Nav ===== */
.nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(60, 100, 142, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav .links {
  display: flex;
  gap: 26px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav .links a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav .links a:hover, .nav .links a.active {
  color: var(--dark-blue);
  border-bottom-color: var(--vivid-blue);
}
.nav .nav-right { justify-self: end; }

/* ===== Logo (chave horizontal) ===== */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark-blue);
  line-height: 1;
}
.logo svg { display: block; }
.logo .wordmark {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  font-weight: 500;
}
.logo .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--pencil);
  margin-top: 2px;
  text-transform: uppercase;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--dark-blue);
  background: var(--dark-blue);
  color: var(--cream);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.btn:hover { background: var(--ink); border-color: var(--ink); }
.btn.ghost { background: transparent; color: var(--dark-blue); }
.btn.ghost:hover { background: var(--dark-blue); color: var(--cream); }
.btn.light { background: var(--cream); color: var(--dark-blue); border-color: var(--cream); }
.btn.light:hover { background: var(--beje-soft); border-color: var(--beje-soft); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Section primitives ===== */
.section { padding: 96px 0; }
.section .inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--vivid-blue);
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "— ";
  margin-right: 4px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--dark-blue); margin: 0; letter-spacing: 0.005em; }
h1 { font-size: clamp(48px, 6vw, 84px); line-height: 0.98; font-weight: 300; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
h3 { font-size: 22px; line-height: 1.2; font-weight: 500; }
.lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 540px;
  font-weight: 400;
}

/* ===== Hero ===== */
.hero {
  background: var(--cream);
  border-bottom: 1px solid rgba(60, 100, 142, 0.08);
}
.hero .grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 640px;
}
.hero .photo {
  position: relative;
  background: var(--ash-blue);
  overflow: hidden;
}
.hero .photo .ph-img {
  position: absolute;
  inset: 0;
  background-color: var(--ash-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.hero .photo .caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  background: rgba(35, 59, 85, 0.55);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-left: 2px solid var(--cream);
}
.hero .photo .ph-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(35, 59, 85, 0.55);
  text-transform: uppercase;
}
.hero .copy {
  padding: 88px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.hero h1 .ampersand {
  font-style: italic;
  color: var(--vivid-blue);
}
.hero h1 .accent {
  font-style: italic;
  color: var(--vivid-blue);
}
.hero .copy .lede { margin-top: 26px; }
.hero .actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .meta-row {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(60, 100, 142, 0.18);
}
.hero .meta-row .stat { display: flex; flex-direction: column; }
.hero .meta-row .num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--dark-blue);
  font-weight: 400;
  line-height: 1;
}
.hero .meta-row .lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pencil);
  margin-top: 4px;
}

/* ===== Featured properties ===== */
.featured { background: var(--cream-soft); }
.featured .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}
.featured .head .left { max-width: 560px; }
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.prop-card {
  background: var(--cream);
  border: 1px solid rgba(60, 100, 142, 0.10);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(35, 59, 85, 0.10);
}
.prop-card .img {
  aspect-ratio: 4 / 3;
  background: var(--ash-blue);
  position: relative;
  overflow: hidden;
}
.prop-card .img.beje { background: var(--beje-soft); }
.prop-card .img.dark { background: var(--dark-blue); }
.prop-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(35, 59, 85, 0.06) 12px 13px);
  pointer-events: none;
}
.prop-card .img[style*="background-image"]::after { display: none; }
.prop-card .img .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream);
  color: var(--dark-blue);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.prop-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prop-card .price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--dark-blue);
  font-weight: 500;
  white-space: nowrap;
}
.prop-card .meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pencil);
  margin-top: 2px;
}
.prop-card .loc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  margin-top: 8px;
}
.featured .footer { text-align: center; margin-top: 56px; }

/* ===== Property card spec icons (KW-style with tooltip) ===== */
.prop-card .specs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(60, 100, 142, 0.12);
}
.prop-card .spec {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  cursor: default;
  transition: background 0.15s;
}
.prop-card .spec:hover { background: var(--cream-soft); }
.prop-card .spec svg {
  width: 22px;
  height: 22px;
  stroke: var(--dark-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.prop-card .spec .tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  letter-spacing: 0.01em;
  z-index: 10;
}
.prop-card .spec .tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.prop-card .spec:hover .tip {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.prop-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.prop-card .badge-inline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vivid-blue);
  font-weight: 500;
}
.prop-card .ref {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: var(--pencil);
  letter-spacing: 0.08em;
  margin-top: 12px;
}

/* ===== Property detail page ===== */
.pd-hero {
  background: var(--cream);
  padding: 32px 0 0;
}
.pd-hero .crumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pencil);
}
.pd-hero .crumbs a { color: var(--pencil); text-decoration: none; }
.pd-hero .crumbs a:hover { color: var(--dark-blue); }
.pd-hero .crumbs span { margin: 0 10px; opacity: 0.5; }

.pd-hero .gallery {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  padding: 0 8px;
}
.pd-hero .gallery .main {
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  background-color: var(--ash-blue);
  position: relative;
  min-height: 488px;
}
.pd-hero .gallery .thumb {
  background-size: cover;
  background-position: center;
  background-color: var(--beje-soft);
}
.pd-hero .gallery .main .badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--cream);
  color: var(--dark-blue);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: 500;
}

.pd-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  background: var(--cream);
}
.pd-body .main h1 {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.pd-body .loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 28px;
}
.pd-body .loc svg { width: 18px; height: 18px; stroke: var(--vivid-blue); fill: none; stroke-width: 1.6; }

.pd-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 22px 8px;
  margin: 0 0 36px;
  border-top: 1px solid rgba(60, 100, 142, 0.15);
  border-bottom: 1px solid rgba(60, 100, 142, 0.15);
}
.pd-specs .spec {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  cursor: default;
}
.pd-specs .spec:hover { background: var(--cream-soft); }
.pd-specs .spec svg {
  width: 26px; height: 26px;
  stroke: var(--dark-blue);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pd-specs .spec .tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 10;
}
.pd-specs .spec .tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.pd-specs .spec:hover .tip {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.pd-body .desc p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 400;
}
.pd-body h3.section-h {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--dark-blue);
  margin: 36px 0 16px;
  font-weight: 400;
}
.pd-body .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.pd-body .feature-list li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pd-body .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--vivid-blue);
  border-radius: 50%;
}

/* Sidebar (price + agent + CTA) */
.pd-side {
  position: sticky;
  top: 100px;
  align-self: start;
}
.pd-side .price-card {
  background: var(--cream-soft);
  border: 1px solid rgba(60, 100, 142, 0.15);
  padding: 32px 28px;
  margin-bottom: 20px;
}
.pd-side .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pencil);
}
.pd-side .price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--dark-blue);
  margin: 6px 0 4px;
  line-height: 1;
}
.pd-side .price .per { font-size: 18px; color: var(--pencil); font-style: italic; font-weight: 400; }
.pd-side .ref {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--pencil);
  letter-spacing: 0.1em;
  margin: 14px 0 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(60, 100, 142, 0.12);
}
.pd-side .actions { display: flex; flex-direction: column; gap: 10px; }
.pd-side .actions .btn { justify-content: center; width: 100%; }

.pd-side .agent-card {
  background: var(--cream);
  border: 1px solid rgba(60, 100, 142, 0.15);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pd-side .agent-card .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-color: var(--beje-soft);
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
}
.pd-side .agent-card .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--dark-blue);
  font-weight: 500;
}
.pd-side .agent-card .role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pencil);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .pd-hero .gallery { grid-template-columns: 1fr; grid-template-rows: 320px 160px 160px; }
  .pd-hero .gallery .main { grid-row: span 1; min-height: 320px; }
  .pd-body { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .pd-body .feature-list { grid-template-columns: 1fr; }
  .pd-side { position: static; }
}

/* ===== About strip ===== */
.about {
  background: var(--cream);
}
.about .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about .portrait {
  aspect-ratio: 4 / 5;
  background-color: var(--beje-soft);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.about .portrait .tag {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--dark-blue);
  color: var(--cream);
  padding: 16px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.about .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--dark-blue);
  margin: 18px 0 28px;
  font-weight: 400;
}
.about .quote::before { content: "“"; color: var(--vivid-blue); margin-right: 4px; }
.about .quote::after  { content: "”"; color: var(--vivid-blue); margin-left: 2px; }
.about .body p { color: var(--ink); margin: 0 0 16px; max-width: 560px; }
.about .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--dark-blue);
  margin-top: 24px;
}

/* ===== Values strip ===== */
.values {
  background: var(--dark-blue);
  color: var(--cream);
}
.values h2 { color: var(--cream); }
.values .eyebrow { color: var(--ash-blue); }
.values .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(237, 237, 221, 0.18);
  margin-top: 56px;
}
.values .cell {
  background: var(--dark-blue);
  padding: 36px 28px;
}
.values .cell .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ash-blue);
  letter-spacing: 0.12em;
}
.values .cell h3 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-top: 8px;
  font-style: italic;
}
.values .cell p {
  font-size: 14px;
  color: rgba(237, 237, 221, 0.78);
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== CTA evaluation ===== */
.eval-cta {
  background: var(--beje-soft);
  text-align: center;
}
.eval-cta .eyebrow { color: var(--dark-blue); }
.eval-cta h2 { max-width: 720px; margin: 0 auto; }
.eval-cta .lede { margin: 22px auto 32px; text-align: center; }
.eval-cta .actions { display: inline-flex; gap: 14px; }

/* ===== Testimonials preview ===== */
.testi { background: var(--cream-soft); }
.testi .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.testi .card {
  background: var(--cream);
  padding: 36px 32px;
  border: 1px solid rgba(60, 100, 142, 0.10);
  position: relative;
}
.testi .card .mark {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--ash-blue);
  line-height: 0.5;
  position: absolute;
  top: 28px;
  left: 24px;
  font-style: italic;
}
.testi .card .quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 38px;
  font-style: italic;
}
.testi .card .who {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(60, 100, 142, 0.12);
  padding-top: 18px;
}
.testi .card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beje-soft);
}
.testi .card .name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--dark-blue);
  font-weight: 500;
}
.testi .card .ctx {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pencil);
  margin-top: 2px;
}
.testi .card .stars {
  margin-left: auto;
  color: var(--vivid-blue);
  letter-spacing: 2px;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer .inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(237, 237, 221, 0.16);
}
.footer .col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-blue);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer .col a, .footer .col p {
  color: rgba(237, 237, 221, 0.78);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin: 0 0 10px;
}
.footer .col a:hover { color: var(--cream); }
.footer .brand .pitch {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  margin-top: 14px;
  max-width: 320px;
}
.footer .legal {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(237, 237, 221, 0.55);
  margin-top: 28px;
  letter-spacing: 0.08em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero .photo { min-height: 360px; }
  .hero .copy { padding: 64px 32px; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .testi .grid { grid-template-columns: 1fr; }
  .about .grid { grid-template-columns: 1fr; gap: 48px; }
  .values .row { grid-template-columns: 1fr 1fr; }
  .footer .row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav .inner { grid-template-columns: 1fr auto; }
  .nav .links { display: none; }
  .prop-grid { grid-template-columns: 1fr; }
  .values .row { grid-template-columns: 1fr; }
  .footer .row { grid-template-columns: 1fr; }
  .hero .meta-row { gap: 24px; flex-wrap: wrap; }
  .topbar .right { gap: 14px; }
}
