/* NEIGHT homepage + gallery restored
   Original-style landing page, light sophisticated palette, logo added, Lato forced.
*/

:root {
  --bg: #f4f0e8;
  --paper: #fbf8f1;
  --panel: #ebe5da;
  --ink: #1d1d1b;
  --muted: #5f5d59;
  --quiet: #8a847a;
  --line: rgba(29, 29, 27, 0.12);
  --gold: #c99b3f;
  --yellow: #f0d93d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

.site-header {
  min-height: 96px;
  padding: 20px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

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

.brand-logo {
  width: clamp(150px, 16vw, 250px);
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  font-weight: 900;
  font-size: 15px;
}

.nav a { color: var(--muted); }
.nav a:hover { color: var(--gold); }

.landing {
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: clamp(70px, 10vw, 135px) clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 217, 61, 0.23), transparent 31%),
    linear-gradient(180deg, var(--paper), var(--bg));
}

.landing-inner { max-width: 950px; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1;
  font-weight: 900;
}

h1 { font-size: clamp(54px, 8vw, 104px); }

.lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.36;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary { background: var(--ink); color: var(--paper); }

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
}

.intro-section, .gallery-section {
  padding: clamp(78px, 10vw, 125px) clamp(24px, 5vw, 72px);
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.intro-section h2,
.gallery-section h2,
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
}

.intro-section p,
.content-block p,
.gallery-intro {
  color: var(--muted);
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.45;
}

.gallery-intro {
  max-width: 850px;
}

code {
  background: rgba(29, 29, 27, 0.07);
  padding: 2px 7px;
  border-radius: 6px;
}

.cards,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.card,
.portfolio-tile {
  background: var(--paper);
  padding: clamp(32px, 5vw, 56px);
  min-height: 280px;
}

.card h3,
.portfolio-tile h2 {
  font-size: clamp(27px, 3vw, 42px);
}

.card p,
.portfolio-tile p {
  color: var(--muted);
  margin-top: 18px;
}

.portfolio-tile span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gallery-grid {
  max-width: 1120px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  margin: 0;
}

.image-box {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 155, 63, 0.18), rgba(255, 255, 255, 0.25)),
    var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quiet);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.page { min-height: 70vh; }

.page-hero {
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 72px) clamp(45px, 6vw, 78px);
  background:
    radial-gradient(circle at 85% 10%, rgba(240, 217, 61, 0.20), transparent 32%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.content-block {
  max-width: 980px;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 72px);
}

.contact-card a {
  color: #8b650f;
  font-weight: 900;
  border-bottom: 2px solid rgba(201, 155, 63, 0.35);
}

.site-footer {
  padding: 34px clamp(24px, 5vw, 64px);
  color: var(--quiet);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 15px;
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .brand-logo { width: 220px; }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .landing { min-height: 560px; }

  .cards,
  .portfolio-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
