:root {
  --navy: #06172d;
  --navy-light: #102c4c;
  --gold: #d8b96d;
  --gold-light: #f3dfaa;
  --cream: #f8f3e8;
  --muted: #bdc8d5;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--navy);
  color: white;
  font-family: "Manrope", Arial, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(5, 20, 40, .91), rgba(5, 20, 40, .97)),
    url("../images/faustyna-realty-logo.jpeg") center / cover no-repeat;
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  min-height: calc(100vh - 48px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 64px 24px;
  border: 1px solid rgba(216, 185, 109, .35);
  background: radial-gradient(circle at 50% 10%, rgba(30, 66, 103, .45), transparent 47%), rgba(4, 19, 38, .78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(216, 185, 109, .18);
  transform: rotate(45deg);
}

.hero::before { top: -130px; left: -90px; }
.hero::after { right: -90px; bottom: -130px; }

.content { width: min(760px, 100%); text-align: center; }

.logo {
  display: block;
  width: min(380px, 85vw);
  height: 207px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 34px;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .25);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font: 700 clamp(3rem, 7vw, 5.8rem)/.9 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
}

h1 span { color: var(--gold-light); }

.intro {
  width: min(630px, 100%);
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}

.contact-card {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 24px;
  align-items: center;
  width: min(680px, 100%);
  margin: 0 auto 28px;
  padding: 22px 26px;
  text-align: left;
  border: 1px solid rgba(216, 185, 109, .3);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(8px);
}

.label, .contact-links small {
  display: block;
  color: #8fa0b1;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.person strong { font: 700 1.7rem "Cormorant Garamond", Georgia, serif; }
.contact-links { display: grid; gap: 12px; }
.contact-links a { display: flex; gap: 12px; align-items: center; color: white; text-decoration: none; font-size: .83rem; }
.contact-links a:hover { color: var(--gold-light); }
.icon { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border: 1px solid rgba(216, 185, 109, .5); border-radius: 50%; color: var(--gold); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: var(--gold);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .2s ease;
}

.cta:hover { color: var(--gold-light); background: transparent; transform: translateY(-2px); }
.website { margin: 23px 0 0; color: #778b9f; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }

@media (max-width: 620px) {
  .page-shell { padding: 0; }
  .hero { min-height: 100vh; padding: 42px 18px; border: 0; }
  .logo { height: 166px; margin-bottom: 28px; }
  .contact-card { grid-template-columns: 1fr; padding: 20px; text-align: center; }
  .contact-links a { justify-content: center; }
  h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
}
