:root {
  --gold: #BFAF8F;
  --sand: #D9CDB8;
  --light: #F2F2F2;
  --charcoal: #404040;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --soft-white: rgba(255, 255, 255, 0.74);
  --border: rgba(191, 175, 143, 0.34);
  --shadow: 0 28px 80px rgba(13, 13, 13, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 205, 184, 0.42), transparent 31%),
    radial-gradient(circle at 82% 20%, rgba(191, 175, 143, 0.22), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, var(--light) 55%, #FFFFFF 100%);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
  opacity: 0.72;
}

.ambient-one {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -120px;
  background: rgba(217, 205, 184, 0.45);
}

.ambient-two {
  width: 220px;
  height: 220px;
  right: 8%;
  top: 18%;
  background: rgba(191, 175, 143, 0.20);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.brand img {
  width: 218px;
  height: auto;
  opacity: 0.96;
}

.construction-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 38px;
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.62fr);
  gap: 34px;
  align-items: center;
}

.hero-copy,
.status-card {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 82px;
  height: 82px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 7vw, 6.7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 300;
  line-height: 1.9;
}

.lead strong {
  color: var(--black);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(13, 13, 13, 0.16);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
}

.status-card {
  padding: 44px 38px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 242, 242, 0.64));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(191, 175, 143, 0.22);
  pointer-events: none;
}

.status-label {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.status-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.status-card p:not(.status-label) {
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.86;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(191, 175, 143, 0.28);
}

.contact-list a {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  word-break: break-word;
  transition: color 220ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 30px;
  color: rgba(64, 64, 64, 0.72);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 24px;
  }

  .brand img {
    width: 190px;
  }

  .construction-page {
    padding-top: 26px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy::before {
    left: -12px;
    top: -16px;
  }

  .status-card {
    padding: 34px 28px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .construction-page,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 170px;
  }

  .eyebrow {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 28px;
    margin-top: 9px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .lead {
    margin-top: 24px;
  }

  .actions {
    display: grid;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
  }

  .status-card::after {
    inset: 12px;
  }
}

.contact-list span {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  word-break: break-word;
}
