/* =========================================
   YOUR ORG — minimal single-page stylesheet
   ========================================= */

:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --paper: #faf8f4;
  --paper-alt: #f1ede4;
  --rule: #d9d3c4;
  --accent: #8a3a2a; /* swap to your brand color */
  --max: 1100px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============== NAV ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--rule); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.nav__mark { color: var(--accent); font-size: 1rem; }

.nav__links { display: flex; gap: 1.75rem; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.35s ease;
}
.nav__links a:hover::after { right: 0; }

/* ============== HERO ============== */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 10rem) var(--pad) clamp(4rem, 10vh, 7rem);
  animation: rise 1s ease both;
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  animation: rise 0.9s 0.05s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  animation: rise 1s 0.15s ease both;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero__lede {
  max-width: 38rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  animation: rise 1s 0.3s ease both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 1s 0.45s ease both;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* ============== SECTIONS ============== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) var(--pad);
  border-top: 1px solid var(--rule);
}
.section--alt { background: var(--paper-alt); max-width: none; }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section__head { margin-bottom: 3rem; }
.section__kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

/* ============== ABOUT ============== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 800px) {
  .about { grid-template-columns: 1.6fr 1fr; gap: 4rem; }
}

.about__copy p + p { margin-top: 1.1rem; }
.about__copy p { color: var(--ink-soft); }

.about__facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid var(--rule);
  padding-left: 2rem;
}
@media (max-width: 799px) {
  .about__facts { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 2rem; }
}

.fact { display: flex; flex-direction: column; }
.fact__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--ink);
}
.fact__label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

/* ============== CONTACT ============== */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 800px) {
  .contact { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.contact__lede { color: var(--ink-soft); margin-bottom: 1.75rem; }

.contact__list { list-style: none; }
.contact__list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
}
.contact__list li:last-child { border-bottom: 1px solid var(--rule); }
.contact__label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.15rem;
}
.contact__list a:hover { color: var(--accent); }

.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact__form label { display: flex; flex-direction: column; gap: 0.4rem; }
.contact__form span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact__form input,
.contact__form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form .btn { align-self: flex-start; margin-top: 0.5rem; }
.contact__note {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* ============== FOOTER ============== */
.foot {
  text-align: center;
  padding: 2.5rem var(--pad);
  border-top: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.foot__small { font-size: 0.9rem; margin-top: 0.4rem; opacity: 0.9 }

/* ============== ANIMATION ============== */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
