/* ============================================================
   Echoes in Bloom — Stylesheet
   The website is the frame. Life is the painting.
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --w: #fafaf8;
  --off: #f5f4f0;
  --paper: #efecea;
  --rule: rgba(0,0,0,0.07);
  --rule-m: rgba(0,0,0,0.12);
  --ink: #181714;
  --mid: #4a4840;
  --soft: #8a8880;
  --faint: #c0bdb8;
  --moss: #5a7a48;
  --moss-p: #eef4e8;
  --moss-d: #3a5a28;
  --gold: #c8920a;
  --gold-p: #fdf6e0;
  --dusk: #6a6898;
  --dusk-p: #eeedf8;
  --s: 'Cormorant Garamond', serif;
  --n: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--n);
  background: var(--w);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: rgba(250,250,248,0.96);
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-name {
  font-family: var(--s);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nl {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft);
  background: none;
  border: none;
  font-family: var(--n);
  font-weight: 400;
  padding: 0;
  transition: color .2s;
  cursor: pointer;
}

.nl:hover { color: var(--ink); }

.nl-gh {
  color: var(--moss);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.nl-gh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  padding: 5.5rem 2.5rem 5rem;
  max-width: 640px;
}

.hero-season {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.hero-season-line {
  width: 20px;
  height: 1px;
  background: var(--faint);
}

.hero-title {
  font-family: var(--s);
  font-size: clamp(40px, 7vw, 62px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}

.hero-body {
  font-family: var(--s);
  font-size: 19px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.75rem;
}

.hero-cta {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--soft);
  background: none;
  border: none;
  font-family: var(--n);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  transition: color .25s;
}

.hero-cta:hover { color: var(--ink); }

.cta-line {
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width .4s;
}

.hero-cta:hover .cta-line { width: 52px; }

/* ── GREENHOUSE ── */
.gh {
  background: var(--moss-p);
  border-top: 1px solid rgba(90,122,72,.14);
  border-bottom: 1px solid rgba(90,122,72,.14);
  padding: 4.5rem 2.5rem;
}

.gh-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
}

.gh-marker {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: .8rem;
  font-weight: 500;
}

.gh-heading {
  font-family: var(--s);
  font-size: 38px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: .7rem;
}

.gh-note {
  font-family: var(--s);
  font-size: 14px;
  font-style: italic;
  color: var(--moss);
  line-height: 1.65;
}

.gh-seeds {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.gh-seed {
  font-family: var(--s);
  font-size: 19px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.5;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(90,122,72,.3);
  transition: color .2s;
}

.gh-seed:hover { color: var(--ink); }

.gh-enter {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moss-d);
  background: none;
  border: none;
  font-family: var(--n);
  font-weight: 500;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: opacity .2s;
}

.gh-enter:hover { opacity: .65; }

.gh-enter-line {
  width: 20px;
  height: 1px;
  background: currentColor;
}

/* ── CURRENT CURIOSITY ── */
.cur {
  padding: 3.5rem 2.5rem;
  border-bottom: 1px solid var(--rule);
  max-width: 860px;
}

.cur-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cur-lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  white-space: nowrap;
}

.cur-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.ci {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: all .15s;
}

.ci:last-of-type { border-bottom: none; }
.ci:hover .ci-t { color: var(--ink); }

.ci-dash {
  font-size: 11px;
  color: var(--faint);
  flex-shrink: 0;
}

.ci-t {
  font-family: var(--s);
  font-size: 18px;
  font-style: italic;
  color: var(--mid);
  flex: 1;
  transition: color .2s;
  line-height: 1.3;
}

.ci-badge {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  font-weight: 500;
  flex-shrink: 0;
  margin-left: auto;
}

.b-alive { background: var(--moss-p); color: var(--moss); }
.b-seed  { background: var(--off); color: var(--soft); border: 1px solid var(--rule-m); }
.b-new   { background: var(--dusk-p); color: var(--dusk); }

.cx {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s ease;
}

.cx.open { max-height: 120px; }

.cx-in {
  font-family: var(--s);
  font-size: 15px;
  font-style: italic;
  color: var(--soft);
  line-height: 1.72;
  padding: .65rem 0 .65rem 1.5rem;
  border-left: 1px solid var(--rule-m);
  margin-left: .35rem;
  margin-bottom: .3rem;
}

/* ── FIELD NOTES ── */
.fn {
  padding: 3.5rem 0 0;
}

.fn-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2.5rem;
  margin-bottom: 2rem;
}

.fn-lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
}

.fn-wander {
  font-family: var(--s);
  font-size: 14px;
  font-style: italic;
  color: var(--soft);
  background: none;
  border: none;
  transition: color .2s;
}

.fn-wander:hover { color: var(--ink); }

/* Photo grid */
.pg {
  display: grid;
  gap: 2px;
  background: var(--rule);
}

.pg-2 { grid-template-columns: 2fr 1fr; }
.pg-3 { grid-template-columns: 1fr 1fr 1fr; }

.pc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
}

.scene {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}

.pc:hover .scene { transform: scale(1.03); }

/* Real photos fill the scene */
.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.pcc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(transparent, rgba(18,17,14,.62));
  opacity: 0;
  transform: translateY(5px);
  transition: all .3s;
}

.pc:hover .pcc {
  opacity: 1;
  transform: translateY(0);
}

.pcc-note {
  font-family: var(--s);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,.92);
  line-height: 1.4;
  margin-bottom: .25rem;
}

.pcc-meta {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}

/* ── BLOOM ── */
.bloom {
  background: var(--gold-p);
  border-top: 1px solid rgba(200,146,10,.12);
  padding: 4.5rem 2.5rem;
}

.bloom-lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.bi {
  padding: 1.85rem 0;
  border-bottom: 1px solid rgba(200,146,10,.15);
  cursor: pointer;
  transition: all .2s;
  max-width: 680px;
}

.bi:last-child { border-bottom: none; }
.bi:hover .bi-t { color: var(--gold); }

.bi-k {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(200,146,10,.55);
  margin-bottom: .5rem;
}

.bi-t {
  font-family: var(--s);
  font-size: 27px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .5rem;
  transition: color .25s;
}

.bi-e {
  font-family: var(--s);
  font-size: 15px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.72;
}

/* ── ECHOES ── */
.ech {
  padding: 4.5rem 2.5rem;
  border-top: 1px solid var(--rule);
  background: var(--dusk-p);
}

.ech-lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dusk);
  margin-bottom: 2rem;
  font-weight: 500;
}

.ech-quote {
  font-family: var(--s);
  font-size: 23px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.58;
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.sym-row {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.sym {
  font-family: var(--s);
  font-size: 14px;
  font-style: italic;
  color: var(--dusk);
  padding: .3rem .85rem;
  border: 1px solid rgba(106,104,152,.2);
  cursor: pointer;
  background: rgba(255,255,255,.55);
  transition: all .22s;
}

.sym:hover {
  background: white;
  border-color: var(--dusk);
}

/* ── ABOUT ── */
.about {
  padding: 4.5rem 2.5rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 760px;
}

.a-img {
  width: 180px;
  min-height: 240px;
  object-fit: cover;
  background: var(--paper);
}

.a-cap {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: .6rem;
}

.about-text-col { padding-top: .4rem; }

.a-name {
  font-family: var(--s);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.a-body {
  font-family: var(--s);
  font-size: 17px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.82;
}

.a-body strong {
  font-weight: 400;
  color: var(--ink);
}

/* ── FOOTER ── */
.foot {
  padding: 1.75rem 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-l {
  font-family: var(--s);
  font-size: 14px;
  font-style: italic;
  color: var(--faint);
}

.foot-r {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .nl { font-size: 9px; letter-spacing: .12em; }

  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-body { font-size: 17px; }

  .gh { padding: 3rem 1.25rem; }
  .gh-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gh-heading { font-size: 30px; }

  .cur { padding: 2.5rem 1.25rem; }

  .fn-head { padding: 0 1.25rem; }
  .pg-2 { grid-template-columns: 1fr; }
  .pg-3 { grid-template-columns: 1fr 1fr; }

  .bloom { padding: 3rem 1.25rem; }
  .bi-t { font-size: 22px; }

  .ech { padding: 3rem 1.25rem; }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem;
  }
  .a-img { width: 120px; min-height: 160px; }

  .foot { padding: 1.25rem; flex-direction: column; gap: .5rem; text-align: center; }
}
