:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --text: #0f1b2e;
  --muted: #4f5e73;
  --accent: #2a6f97;
  --line: #e3edf5;
  --overlay: rgba(42, 111, 151, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.75;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.1px;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.logo img {
  display: block;
  height: 144px;
  width: auto;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
}

.hero {
  padding: 72px 56px 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.70), rgba(247, 251, 255, 0.82)),
    linear-gradient(120deg, rgba(42, 111, 151, 0.10), rgba(42, 111, 151, 0.04)),
    url("../example_house_1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-media {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #f0eef0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.bar-block {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 111, 151, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 14px;
  font-size: 3rem;
  letter-spacing: 0.2px;
}

.lede {
  margin: 0 0 20px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  letter-spacing: 0.2px;
}

.btn.primary {
  background: linear-gradient(120deg, #5d0060, #3a003b);
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(73, 0, 75, 0.28);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
}

.btn:hover { transform: translateY(-1px); }

.note {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.strips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.strip {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.strip:first-child { border-top: none; }

.strip h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  letter-spacing: 0.1px;
}

.strip p {
  margin: 0;
  color: var(--muted);
}

.learn-more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.learn-text .eyebrow {
  margin: 0 0 4px;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.learn-text h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.learn-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.team-static {
  margin-top: 4px;
  display: grid;
  gap: 4px;
}

.team-line {
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.footer-links h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.linkish {
  margin: 0 0 6px;
  color: var(--muted);
}

.site-footer {
  padding: 18px 32px 28px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.footer-logo img {
  height: 144px;
  width: auto;
}
