/* dwellur premium static landing page */

:root {
  --background: #f7f5f0;
  --paper: #fbfaf7;
  --text: #171716;
  --muted: #706b63;
  --soft: #aaa397;
  --line: rgba(26, 26, 26, 0.09);
  --sage: #72806a;
  --stone: #e8dfd3;
  --shadow: rgba(26, 26, 26, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(232, 223, 211, 0.9), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(231, 236, 226, 0.9), transparent 25rem),
    linear-gradient(135deg, #f7f5f0 0%, #efebe3 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.5) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.5) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

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

.page {
  width: min(1280px, calc(100% - 42px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 32px 0;
}

.brand {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.015em;
}

.contact {
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: color 180ms ease, opacity 180ms ease;
}

.contact:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: clamp(32px, 5.2vw, 78px);
  padding: 18px 0 62px;
}

.hero-copy {
  max-width: 480px;
  padding-bottom: 6vh;
}
h1 {
  margin: 0;
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7.35vw, 8.15rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
  font-weight: 500;
}

.lede {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.32vw, 1.22rem);
  line-height: 1.75;
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(255,255,255,0.7);
  background: var(--paper);
  box-shadow:
    0 38px 100px var(--shadow),
    0 12px 34px rgba(26, 26, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 36%),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.24), transparent 22rem);
  pointer-events: none;
}

.image-card img {
  display: block;
  width: 100%;
  height: min(76vh, 800px);
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 0;
  }

  .hero-copy {
    order: 2;
    max-width: 680px;
    padding-bottom: 0;
  }

  .image-card {
    order: 1;
  }

  .image-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 15vw, 7rem);
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 520px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
  }

  .contact {
    font-size: 0.9rem;
  }

  .image-card {
    border-radius: 28px;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
  }
}
