/* AVENTUS Management LLC — site styles */
:root {
  --paper: #f7f5f0;
  --paper-deep: #efece4;
  --ink: #16181d;
  --ink-soft: #4c5058;
  --ink-faint: #8b8f97;
  --gold: #b08a3c;
  --gold-deep: #8f6e2c;
  --line: #d9d4c8;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; }

::selection { background: rgba(176, 138, 60, 0.25); }

/* Header */
header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
}
nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
nav a:hover { color: var(--gold-deep); }
@media (max-width: 640px) { nav { display: none; } }

/* Hero */
.hero { padding: 110px 0 90px; border-bottom: 1px solid var(--line); }
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.kicker::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero p {
  margin-top: 28px;
  max-width: 54ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.hero .cta {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 34px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hero .cta:hover { background: var(--gold-deep); }

/* Sections */
section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 1rem;
}

/* Services */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--paper);
  padding: 40px 36px;
  transition: background 0.25s;
}
.service:hover { background: var(--paper-deep); }
.service .idx {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 18px;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service p { color: var(--ink-soft); font-size: 0.96rem; }

/* Approach */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 2px solid var(--gold); padding-top: 22px; }
.step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 64px; align-items: start; }
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid p { color: var(--ink-soft); margin-bottom: 18px; }
.facts { border: 1px solid var(--line); background: var(--paper-deep); padding: 32px; }
.facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 18px;
}
.facts dt:first-child { margin-top: 0; }
.facts dd { font-size: 0.98rem; margin-top: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}
.contact-grid p { color: var(--ink-soft); }
.contact-block { font-style: normal; }
.contact-block .label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 22px 0 6px;
}
.contact-block .label:first-child { margin-top: 0; }
.contact-block a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid rgba(176, 138, 60, 0.4); }
.contact-block a:hover { border-bottom-color: var(--gold-deep); }

/* Footer */
footer { padding: 48px 0 56px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.footer-inner a { color: var(--ink-faint); text-decoration: none; margin-left: 22px; }
.footer-inner a:first-child { margin-left: 0; }
.footer-inner a:hover { color: var(--gold-deep); }

/* Legal pages */
.legal { padding: 80px 0 100px; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}
.legal .updated { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 48px; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 40px 0 12px;
}
.legal p, .legal li { color: var(--ink-soft); max-width: 72ch; margin-bottom: 14px; }
.legal ul { padding-left: 22px; }

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise 0.7s ease forwards; }
  .reveal.d1 { animation-delay: 0.1s; }
  .reveal.d2 { animation-delay: 0.2s; }
  .reveal.d3 { animation-delay: 0.3s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
