/*
Theme Name: N Love Coming Soon
Author: Brokerage Core
Description: Temporary coming soon landing page for N Love Realty.
Version: 1.0.0
*/

@font-face {
  font-family: "NLove Playfair";
  src: url("assets/PlayfairDisplay[wght].ttf") format("truetype");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "NLove Playfair";
  src: url("assets/PlayfairDisplay-Italic[wght].ttf") format("truetype");
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "NLove Inter";
  src: url("assets/Inter[opsz,wght].ttf") format("truetype");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --forest: #1f5132;
  --leaf: #3e8e5a;
  --sage: #a8c566;
  --moss: #6b7556;
  --cream: #f5f1e8;
  --paper: #faf8f2;
  --charcoal: #3e3a2e;
  --clay: #b15a45;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: "NLove Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

.nlove-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 81, 50, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(31, 81, 50, 0.06) 0 1px, transparent 1px 100%),
    var(--cream);
  background-size: 72px 72px;
}

.nlove-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 100vh;
}

.nlove-content {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 64px);
}

.nlove-logo {
  width: min(430px, 72vw);
  height: auto;
}

.nlove-main {
  max-width: 760px;
  padding: clamp(48px, 7vw, 96px) 0;
}

.nlove-kicker {
  margin: 0 0 22px;
  color: var(--leaf);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nlove-title {
  max-width: 720px;
  margin: 0;
  color: var(--forest);
  font-family: "NLove Playfair", Georgia, serif;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.nlove-title em {
  font-style: italic;
}

.nlove-title span {
  display: block;
  color: var(--moss);
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.nlove-copy {
  max-width: 600px;
  margin: 34px 0 0;
  color: #4f4a3c;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}

.nlove-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: rgba(62, 58, 46, 0.72);
  font-size: 0.82rem;
}

.nlove-footer span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.nlove-footer span + span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.nlove-visual {
  position: relative;
  min-height: 100vh;
  background: var(--forest);
  isolation: isolate;
}

.nlove-visual::before {
  position: absolute;
  inset: 20px;
  z-index: 2;
  border: 2px solid rgba(168, 197, 102, 0.72);
  content: "";
  pointer-events: none;
}

.nlove-photo {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.nlove-panel-copy {
  position: absolute;
  right: clamp(34px, 5vw, 72px);
  bottom: clamp(34px, 5vw, 72px);
  left: clamp(34px, 5vw, 72px);
  z-index: 3;
  max-width: 520px;
  color: var(--paper);
}

.nlove-panel-copy p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  text-shadow: 0 2px 12px rgba(31, 81, 50, 0.62);
}

.nlove-panel-copy strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 12px rgba(31, 81, 50, 0.72);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nlove-shell {
    grid-template-columns: 1fr;
  }

  .nlove-content,
  .nlove-visual {
    min-height: auto;
  }

  .nlove-content {
    padding: 24px;
  }

  .nlove-main {
    padding: 56px 0 64px;
  }

  .nlove-title {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .nlove-visual {
    min-height: 460px;
  }

  .nlove-photo {
    min-height: 460px;
  }

  .nlove-visual::before {
    inset: 14px;
  }
}

@media (max-width: 560px) {
  .nlove-logo {
    width: min(320px, 84vw);
  }

  .nlove-copy {
    font-size: 1.04rem;
  }

  .nlove-footer {
    display: grid;
  }

  .nlove-footer span + span::before {
    display: none;
  }

  .nlove-panel-copy {
    right: 28px;
    bottom: 30px;
    left: 28px;
  }
}
