:root {
  --bg: #f7f3ec;
  --bg-light: #ffffff;
  --text: #111111;
  --gold: #d4af37;
  --dark: #111111;
  --muted: #666666;
  --border: #e0d7ca;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 236, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3ddd3;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--dark);
  font-size: 0.8rem;
  background: var(--bg-light);
  white-space: nowrap;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.75rem;
  background: var(--bg-light);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
  margin-bottom: 3rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.btn-primary {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--dark);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-outline {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #c7c0b4;
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline:hover {
  background: #f3ece0;
}

.hero-badge {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background-image: url("./images/hero-londonbridge.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #ddd;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 45%);
}

.hero-visual-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-size: 0.8rem;
  z-index: 2;
}

.hero-visual-label span {
  background: rgba(0, 0, 0, 0.55);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* PAGE HERO */
.page-hero {
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* SNAPSHOT */
.snapshot {
  margin-bottom: 3rem;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}

.snapshot-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.snapshot-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.snapshot-value {
  font-size: 1.8rem;
  font-family: "Georgia", "Times New Roman", serif;
  margin-bottom: 0.3rem;
}

.snapshot-caption {
  font-size: 0.85rem;
  color: var(--muted);
}

.snapshot-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.snapshot-note.small {
  font-size: 0.78rem;
}

/* SECTIONS */
section {
  margin-bottom: 3rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.section-heading h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
}

.section-heading p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* PROPERTIES */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.property-grid-page {
  margin-top: 0.5rem;
}

.property-card {
  background: var(--bg-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.property-image {
  position: relative;
  padding-bottom: 65%;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.property-camden {
  background-image: url("./images/camden.jpg");
}

.property-londonbridge {
  background-image: url("./images/london-bridge.jpg");
}

.property-canary {
  background-image: url("./images/canary-wharf.jpg");
}

.property-body {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.9rem;
}

.property-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.property-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.property-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.property-link {
  font-size: 0.82rem;
  text-decoration: underline;
}

/* SERVICES */
.services {
  display: grid;
  gap: 1.25rem;
}

.services-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.service h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.service p {
  font-size: 0.85rem;
  color: var(--muted);
}

.service-tags {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.service ul {
  margin-top: 0.35rem;
  padding-left: 1.1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

/* ABOUT / LANDLORD */
.about {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
  gap: 1.7rem;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.about p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.about ul {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.1rem;
}

.about-visual {
  text-align: left;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1rem;
  border-radius: 14px;
  border: 1px dashed var(--border);
}

/* CTA PANEL */
.landlord-cta .section-heading {
  margin-bottom: 0.8rem;
}

.cta-panel {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.cta-panel p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.cta-actions {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* CONTACT */
.contact-section {
  margin-top: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

form {
  background: var(--bg-light);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.form-field {
  flex: 1;
  min-width: 0;
}

.form-field.full {
  flex-basis: 100%;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #d5cfc4;
  font-size: 0.9rem;
  background: #faf7f2;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-info h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* FOOTER */
footer {
  border-top: 1px solid #ded7cb;
  padding: 1.2rem 1.25rem 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.footer-sub {
  margin-top: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  main {
    padding-inline: 1rem;
  }

  .hero {
    padding: 1.4rem 1.3rem;
  }

  .snapshot-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .property-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-three {
    grid-template-columns: minmax(0, 1fr);
  }
}
