/* Pine Hollow Holdings — static rebuild */

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #0b1512;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  height: 100%;
  width: 100%;
}

.hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-weight: 300;
  font-size: 3rem; /* 48px */
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3.75rem; /* 60px */
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem; /* 72px */
  }
}

/* Contact ------------------------------------------------------------- */
.hero__contact {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.hero__contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero__contact a:hover {
  color: #ffffff;
}
