/* findconnection.us */

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

:root {
  --bg:    #f7f2ea;
  --fg:    #231f1a;
  --clay:  #a05c44;
  --warm:  #c8896e;
  --dim:   rgba(35,31,26,0.42);
  --rule:  rgba(160,92,68,0.18);
  --faint: rgba(160,92,68,0.07);
}
[data-theme="dark"] {
  --bg:    #0e0c08;
  --fg:    #e8e0d0;
  --clay:  #c8896e;
  --warm:  #a05c44;
  --dim:   rgba(232,224,208,0.42);
  --rule:  rgba(200,137,110,0.18);
  --faint: rgba(200,137,110,0.06);
}

html { font-size: 16px; }
body {
  background-color: var(--bg);
  background-image: url('parchment-speckle-light.jpg');
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--fg);
  font-family: 'Crimson Pro', Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
[data-theme="dark"] body {
  background-image: url('parchment-speckle-dark.jpg');
}

/* HEADER */
header { padding: 2rem 2.5rem; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; }
.header-inner { display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; }
.wordmark {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--fg); opacity: 0.8;
}
.header-sep { color: var(--clay); opacity: 0.4; }
.sub-mark { font-family: 'Crimson Pro', serif; font-size: 0.8rem; font-style: italic; color: var(--dim); }

.toggle-btn {
  background: none; border: 1px solid var(--rule); color: var(--clay);
  font-family: 'Crimson Pro', serif; font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.3rem 0.7rem; cursor: pointer; opacity: 0.55;
}
.toggle-btn:hover { opacity: 1; border-color: var(--clay); }

/* HERO */
.hero {
  padding: 7rem 2.5rem 5rem;
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(200,137,110,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 600px; position: relative; }
.hero-img {
  display: block; width: 420px; max-width: 90%; margin: 0 auto 2.5rem;
  border-radius: 6px; opacity: 0.88;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 100%);
}
h1 {
  font-family: 'Crimson Pro', serif; font-weight: 300;
  font-size: clamp(3rem, 7.5vw, 5.5rem); line-height: 1.08;
  color: var(--fg); margin-bottom: 2rem; letter-spacing: -0.01em;
}
h1 em { font-style: italic; color: var(--clay); }
.hero-sub { font-size: 1.2rem; line-height: 1.9; color: var(--dim); font-style: italic; font-weight: 300; }

/* BODY COPY */
.body-copy { padding: 5rem 2.5rem 6rem; flex: 1; }
.content-col { max-width: 620px; }
.drop-cap { font-size: 2.3rem; line-height: 1.75; color: var(--fg); opacity: 0.85; margin-bottom: 1.8rem; font-weight: 400; }
.body-copy p { font-size: 2.1rem; line-height: 1.9; color: var(--fg); opacity: 0.58; margin-bottom: 1.6rem; font-weight: 300; }
.body-copy p em { font-style: italic; opacity: 1; color: var(--fg); }
.inline-link { color: var(--clay); text-decoration: none; border-bottom: 1px solid rgba(160,92,68,0.3); }
.inline-link:hover { border-color: var(--clay); }
blockquote {
  margin: 3rem 0; padding: 1.8rem 2rem;
  background: var(--faint); border-left: 2px solid var(--warm);
  font-size: 1.18rem; font-style: italic; line-height: 1.85;
  color: var(--fg); opacity: 0.72; font-weight: 300;
}

.divider { display: flex; align-items: center; gap: 0.8rem; margin: 3rem 0 2.5rem; }
.rule-line { height: 1px; width: 2.5rem; background: var(--rule); }
.glyph { font-size: 0.7rem; color: var(--clay); opacity: 0.45; }
.status-note {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg); opacity: 0.2; margin-bottom: 0 !important;
}

/* FOOTER */
footer { padding: 1.8rem 2.5rem; border-top: 1px solid var(--rule); }
.copy { font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.25; font-family: 'Courier Prime', monospace; }

/* ANIMATION */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner { animation: fadeUp 0.85s ease both; }
.content-col { animation: fadeUp 0.85s 0.1s ease both; }
