/* Moonbeam Lighting — Consultation and Design */

:root {
  --ink: #181512;
  --ink-soft: #262220;
  --night: #1e1b22;
  --cream: #f7f2e9;
  --paper: #fdfbf6;
  --gold: #d6a35c;
  --gold-soft: #e8c896;
  --rust: #9c4a21;
  --gray: #6e6660;
  --max: 1080px;
  font-size: 17px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

a { color: var(--rust); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(24, 21, 18, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(214, 163, 92, 0.25);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.brand-name span { color: var(--gold); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); }

/* ---------- hero ---------- */

.hero {
  background:
    linear-gradient(to bottom, rgba(30, 27, 24, 0.46), rgba(34, 30, 27, 0.5) 65%, rgba(28, 25, 22, 0.74)),
    url("images/moonlight-water.jpg") 38% center / cover no-repeat,
    var(--ink);
  color: var(--cream);
  padding: 6.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero .wrap { max-width: 820px; position: relative; }

.hero h1, .hero .lede, .hero .kicker {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero .kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero p.lede {
  font-size: 1.15rem;
  max-width: 38rem;
  color: rgba(247, 242, 233, 0.88);
  margin-bottom: 0.9rem;
}

.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover { background: var(--gold-soft); }

.btn-ghost {
  border: 1px solid rgba(247, 242, 233, 0.5);
  color: var(--cream);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- sections ---------- */

section { padding: 4.5rem 0; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--gray);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.rule {
  width: 3.5rem;
  height: 3px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.4rem;
}

/* approach */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--cream);
  border: 1px solid #e9e0d0;
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--rust);
}

.card p { font-size: 0.95rem; color: var(--ink-soft); }

/* strengths list */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

ul.checks { list-style: none; }

ul.checks li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.9rem;
}

ul.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-soft), var(--gold));
}

/* who section on dark band */

.band {
  background: var(--ink);
  color: var(--cream);
}

.band .section-title { color: var(--cream); }

.band .section-sub { color: rgba(247, 242, 233, 0.7); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
}

.who {
  border: 1px solid rgba(214, 163, 92, 0.35);
  border-radius: 10px;
  padding: 1.3rem 1.2rem;
}

.who h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.who p { font-size: 0.92rem; color: rgba(247, 242, 233, 0.82); }

/* testimonials */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

blockquote.quote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.4rem 1.5rem;
  font-style: italic;
  color: var(--ink-soft);
}

blockquote.quote footer {
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* profile */

.profile-quote {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.6rem 1.7rem;
  font-style: italic;
  color: var(--ink-soft);
}

.profile-quote footer {
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray);
}

/* projects */

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.project {
  background: var(--cream);
  border: 1px solid #e9e0d0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project .photos {
  display: flex;
  height: 215px;
  background: var(--ink);
}

.project .photos img {
  flex: 1 1 0;
  min-width: 0;
  object-fit: cover;
  height: 100%;
}

.project .body { padding: 1.4rem 1.5rem 1.6rem; }

.project h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }

.project .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rust);
  margin-bottom: 0.7rem;
}

.project p { font-size: 0.95rem; color: var(--ink-soft); }

.project blockquote {
  margin-top: 0.8rem;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray);
  border-left: 3px solid var(--gold);
  padding-left: 0.9rem;
}

/* contact */

.contact {
  text-align: center;
}

.contact .section-title { margin-bottom: 1rem; }

.contact-line {
  font-size: 1.3rem;
  margin: 0.3rem 0;
}

.contact-line a { color: var(--gold); text-decoration: none; }

.contact-line a:hover { text-decoration: underline; }

/* footer */

.site-footer {
  background: #100e0c;
  color: rgba(247, 242, 233, 0.55);
  font-size: 0.85rem;
  padding: 1.6rem 0;
  text-align: center;
}

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 4.5rem 0 4rem; }
  .site-header .wrap { flex-direction: column; gap: 0.6rem; }
  .site-nav { justify-content: center; gap: 1rem; }
}
