:root {
  --bg: #06101b;
  --bg-soft: #081321;
  --gold: #b58c53;
  --paper: #f1ece3;
  --text-soft: #d7d3cb;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42% 58%;
  background:
    linear-gradient(90deg, rgba(6,16,27,0.98) 0%, rgba(6,16,27,0.98) 33%, rgba(6,16,27,0.94) 42%, rgba(6,16,27,0.7) 48%, rgba(6,16,27,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.18));
}

.panel {
  position: relative;
  z-index: 2;
  padding: 52px 54px 46px 58px;
  display: flex;
  align-items: stretch;
}

.inner {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.monogram {
  position: relative;
  width: 92px;
  height: 82px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 4rem;
  line-height: 1;
}

.monogram span {
  position: absolute;
  font-weight: 400;
}

.monogram .d { left: 0; top: 0; }
.monogram .c { left: 22px; top: 6px; }
.monogram .p { left: 46px; top: 22px; }

.brand-name {
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
  letter-spacing: 0.1em;
  color: var(--paper);
}

.brand-subtitle {
  margin-top: 10px;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  letter-spacing: 0.18em;
  color: var(--gold);
}

.rule {
  width: 78px;
  height: 1px;
  background: var(--gold);
  margin: 38px 0 32px;
}

h1 {
  margin: 0;
  color: var(--paper);
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.description {
  margin: 0;
  max-width: 470px;
  color: var(--text-soft);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.cta {
  margin-top: 42px;
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 10px;
  align-self: flex-start;
}

.footer-block {
  margin-top: 42px;
}

.footer-rule {
  width: 100%;
  max-width: 520px;
  margin: 0 0 22px;
  opacity: 0.75;
}

.motto {
  color: var(--gold);
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  letter-spacing: 0.11em;
}

.locations {
  margin-top: 24px;
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(6,16,27,0.18), rgba(6,16,27,0.02) 15%, rgba(6,16,27,0.0)),
    url("estate-plaque.png") center center / cover no-repeat;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .photo {
    min-height: 42vh;
    order: -1;
    background-position: center top;
  }

  .panel {
    padding: 36px 24px 42px;
    background: linear-gradient(180deg, rgba(6,16,27,0.98), rgba(6,16,27,0.96));
  }

  .footer-block {
    margin-top: 34px;
  }
}

@media (max-width: 640px) {
  .monogram {
    width: 70px;
    height: 62px;
    font-size: 3rem;
  }

  .monogram .c { left: 17px; }
  .monogram .p { left: 35px; top: 16px; }

  .brand-name {
    font-size: 2rem;
  }

  .brand-subtitle {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .locations {
    line-height: 1.8;
  }
}


.copyright {
  margin-top: 18px;
  color: rgba(241, 236, 227, 0.72);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
