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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #9B9F94;
  color: #F2EFE9;
  font-family: 'Cormorant Garamond', Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Layout ─────────────────────────────────────────── */

.layout {
  display: flex;
  flex: 1;
  min-height: 100vh;
}

.image-panel {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-color: #6B7067;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.content-panel {
  width: 50%;
  background-color: #9B9F94;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5vw;
}

.content-inner {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ── Logo ────────────────────────────────────────────── */

.logo {
  display: block;
  max-width: 160px;
  width: 100%;
  height: auto;
  margin-bottom: 3.5rem;
}

/* ── Copy ────────────────────────────────────────────── */

.copy {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  margin-bottom: 3rem;
}

.copy p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #F2EFE9;
}

/* ── Contact link ────────────────────────────────────── */

.contact-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C4A882;
  text-decoration: none;
  transition: border-bottom 0.15s ease;
  border-bottom: 1px solid transparent;
}

.contact-link:hover {
  border-bottom-color: #C4A882;
}

/* ── Footer rule ─────────────────────────────────────── */

.footer-rule {
  height: 1px;
  background-color: #6B7067;
  width: 100%;
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .layout {
    flex-direction: column;
    min-height: unset;
  }

  .image-panel {
    width: 100%;
    height: 50vh;
    position: relative;
  }

  .content-panel {
    width: 100%;
    padding: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content-inner {
    max-width: 100%;
  }

  .logo {
    max-width: 120px;
    margin-bottom: 2.5rem;
  }

  .copy p {
    font-size: 1.25rem;
  }
}
