:root {
  --silver: #d9d9dd;
  --silver-muted: rgba(217, 217, 221, 0.72);
  --silver-soft: rgba(217, 217, 221, 0.46);
  --line: rgba(217, 217, 221, 0.28);
  --dark: #07090b;
  --font-brand: "Trajan Pro", "Trajan Pro 3", "Trajan Pro Regular", "Cinzel", "Times New Roman", serif;
}

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

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--dark) url("images/terraced-houses-night-background.jpg") center center / cover no-repeat fixed;
  color: var(--silver);
  font-family: var(--font-brand);
  letter-spacing: 0.04em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.74));
}

body::after {
  z-index: 1;
  background: rgba(2, 4, 7, 0.42);
}

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

.site-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 24px 36px 20px;
  border-bottom: 1px solid var(--line);
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 214px;
  max-width: 38vw;
  height: auto;
}

.strapline {
  color: var(--silver-muted);
  font-size: clamp(0.56rem, 0.85vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px 54px;
  text-align: center;
}

.hero-content {
  width: min(760px, 100%);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  color: var(--silver-muted);
  font-size: clamp(0.58rem, 0.9vw, 0.76rem);
  letter-spacing: 0.44em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--silver-soft);
}

h1 {
  color: rgba(245, 245, 247, 0.94);
  font-size: clamp(2.85rem, 5.8vw, 5.85rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.91;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.56);
}

h1 em {
  color: rgba(224, 224, 229, 0.94);
  font-style: italic;
  font-weight: 400;
}

.intro-copy {
  width: min(580px, 100%);
  margin: 34px auto 38px;
  color: rgba(230, 230, 235, 0.78);
  font-size: clamp(0.84rem, 1vw, 1rem);
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.intro-copy p + p {
  margin-top: 16px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.ornament span {
  width: 72px;
  height: 1px;
  background: var(--silver-soft);
}

.ornament i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(230, 230, 235, 0.74);
  transform: rotate(45deg);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(660px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(230, 230, 235, 0.4);
  background: rgba(3, 5, 8, 0.24);
  backdrop-filter: blur(2px);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 104px;
  padding: 24px 30px;
  color: rgba(245, 245, 247, 0.92);
  transition: background 180ms ease, color 180ms ease;
}

.contact-card + .contact-card {
  border-left: 1px solid rgba(230, 230, 235, 0.4);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.contact-card i {
  color: rgba(245, 245, 247, 0.92);
  font-size: 2rem;
  line-height: 1;
}

.contact-card span {
  display: grid;
  gap: 8px;
  text-align: left;
}

.contact-card strong {
  color: var(--silver-muted);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.contact-card small {
  color: rgba(245, 245, 247, 0.92);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 18px 36px;
  border-top: 1px solid var(--line);
}

.footer-mark {
  display: inline-flex;
  align-items: center;
}

.footer-mark img {
  display: block;
  width: 150px !important;
  max-width: 34vw;
  height: auto;
  opacity: 0.95;
}

.site-footer p {
  color: rgba(217, 217, 221, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  line-height: 1.75;
  text-align: right;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
  }

  .top-bar {
    align-items: flex-start;
    gap: 18px;
    min-height: 84px;
    padding: 20px;
  }

  .brand-logo {
    width: 172px;
    max-width: 56vw;
  }

  .strapline {
    max-width: 155px;
    font-size: 0.5rem;
    letter-spacing: 0.24em;
  }

  .hero {
    align-items: start;
    padding: 46px 20px 42px;
  }

  .eyebrow {
    gap: 14px;
    margin-bottom: 26px;
    letter-spacing: 0.32em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 34px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .intro-copy {
    margin-top: 28px;
    font-size: 0.84rem;
  }

  .ornament {
    margin-bottom: 34px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-card {
    justify-content: flex-start;
    min-height: 88px;
    padding: 22px 24px;
  }

  .contact-card + .contact-card {
    border-top: 1px solid rgba(230, 230, 235, 0.4);
    border-left: 0;
  }

  .site-footer {
    gap: 18px;
    padding: 18px 20px;
  }

  .footer-mark img {
    width: 136px !important;
    max-width: 48vw;
  }

  .site-footer p {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 460px) {
  .top-bar {
    flex-direction: column;
  }

  .strapline {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}
