/* ============================================
   claudiacristea.com — Design tokens
   Teal #0F6B63 · Pădure #1E5631 · Verde smarald #1F9D55
   Fraunces (display) + Archivo (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Archivo:wght@400;500;600;700&display=swap');

:root {
  --teal: #0F6B63;
  --teal-dark: #0A4B45;
  --padure: #1E5631;
  --smarald: #1F9D55;
  --cream: #F7F5F0;
  --paper: #FDFCFA;
  --ink: #16231F;
  --ink-soft: #4A5652;
  --line: #DDD8CC;
  --max: 1160px;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

.wrap-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--teal-dark);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smarald);
  display: inline-block;
  margin-bottom: 14px;
}

p { color: var(--ink-soft); }

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 640px;
}

:focus-visible {
  outline: 2px solid var(--smarald);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Scroll reveal ---------- */
/* Sections fade + rise into place as they enter the viewport, giving the
   page a sense of filling in rather than dumping everything at once.
   Guarded by .js (added only if the script runs) so content is never
   hidden for no-JS visitors, and neutralised for reduced-motion. */
.js main > section:not(:first-of-type) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js main > section.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js main > section:not(:first-of-type) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Root motif (signature element) ---------- */
/* A single hairline root-branch, echoing the "roots vs fruit" story from Despre.
   Used sparingly: section dividers and the quote border. */
.root-mark {
  width: 46px;
  height: 30px;
  color: var(--padure);
  margin-bottom: 20px;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--smarald);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--teal-dark); }

/* ---------- Language switcher ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-switch a {
  padding: 5px 11px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.lang-switch a.active {
  background: var(--teal);
  color: #fff !important;
}
.lang-switch a:not(.active):hover {
  background: var(--cream);
  color: var(--teal-dark);
}
@media (max-width: 860px) {
  .lang-switch { margin-top: 4px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  margin: 5px 0;
  transition: all 0.2s ease;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 32px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; padding-top: 18px; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,107,99,0.25); }

.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-dark);
}
.btn-ghost:hover { background: var(--teal-dark); color: #fff; }

.btn-text {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1.5px solid var(--smarald);
  padding: 2px 0;
  display: inline-block;
}
.btn-text:hover { color: var(--smarald); }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-tight { padding: 64px 0; }

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--teal-dark);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #D9E6E2; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap img {
  border-radius: 6px;
  max-height: 560px;
  width: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; margin-bottom: 8px; }
  .hero-photo-wrap img { max-height: 380px; }
}

/* ---------- Credibility strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.strip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.strip-item {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal-dark);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.strip-item .dot { color: var(--smarald); font-size: 1.2rem; line-height: 0; }

/* ---------- Cards / lists ---------- */
.check-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.check-list.two-col-list {
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 20px;
}
@media (max-width: 760px) {
  .check-list.two-col-list { grid-template-columns: 1fr; }
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--ink);
}

.check-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--smarald);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

.two-col img {
  border-radius: 6px;
}

/* ---------- Quote / testimonial ---------- */
.quote-block {
  border-left: 3px solid var(--padure);
  padding: 4px 0 4px 26px;
  margin: 28px 0;
}

.quote-block p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.55;
}

.quote-block cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--teal);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .quote-grid { grid-template-columns: 1fr; }
}

.quote-grid.triple { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) {
  .quote-grid.triple { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .quote-grid.triple { grid-template-columns: 1fr; }
}

/* ---------- Callout / stakes ---------- */
.callout {
  background: var(--padure);
  color: #fff;
  border-radius: 6px;
  padding: 44px 56px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.callout p { color: #E4EFE7; }

.callout .big {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic;
  color: #fff;
  max-width: none;
  margin: 0;
}

@media (max-width: 640px) {
  .callout { padding: 34px 28px; }
}

/* ---------- Offer cards ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .offers-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-card.featured {
  border-color: var(--smarald);
  box-shadow: 0 12px 32px rgba(31,157,85,0.12);
  position: relative;
}

.offer-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--smarald);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.offer-price {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-top: auto;
  padding-top: 10px;
}

.offer-price .old {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-right: 8px;
}

.offer-card p.desc { font-size: 0.98rem; flex-grow: 1; }

.offer-card .quote-block {
  margin: 10px 0 0;
  border-left-width: 2px;
}
.offer-card .quote-block p { font-size: 0.94rem; }

/* ---------- Recognition section (photo + list) ---------- */
.recognition-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-grid .hero-photo-wrap { order: -1; margin-bottom: 8px; }
}

/* ---------- How-I-help triad (Claritate / Prezență / Instrumente) ---------- */
.triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 34px 0 30px;
}
@media (max-width: 760px) { .triad-grid { grid-template-columns: 1fr; } }

.triad-item {
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.triad-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.triad-item .num {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.triad-item h3 { font-size: 1.1rem; color: var(--teal-dark); margin-bottom: 8px; }
.triad-item p { font-size: 0.95rem; }

.triad-item.c-teal { background: #EAF3F1; border-color: rgba(15,107,99,0.18); }
.triad-item.c-teal::before { background: var(--teal); }
.triad-item.c-teal .num { color: var(--teal); }

.triad-item.c-padure { background: #EAF1EB; border-color: rgba(30,86,49,0.18); }
.triad-item.c-padure::before { background: var(--padure); }
.triad-item.c-padure .num { color: var(--padure); }

.triad-item.c-smarald { background: #EAF8EF; border-color: rgba(31,157,85,0.2); }
.triad-item.c-smarald::before { background: var(--smarald); }
.triad-item.c-smarald .num { color: var(--smarald); }

/* ---------- Problem grid (Pentru echipa ta) ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 760px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-item {
  padding: 22px 24px;
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--teal);
  font-size: 1rem;
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card h3 { margin-bottom: 10px; color: var(--padure); }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: 6px; }

/* ---------- Final CTA banner ---------- */
.cta-banner {
  background: var(--teal-dark);
  color: #fff;
  padding: 76px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; max-width: 720px; margin: 0 auto 18px; }
.cta-banner p { color: #D9E6E2; max-width: 560px; margin: 0 auto 34px; font-size: 1.08rem; }
.cta-banner .secondary-links {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: #C7DAD4;
}
.cta-banner .secondary-links a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); }
.cta-banner .secondary-links a:hover { border-color: #fff; }

/* ---------- Footer ---------- */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-family: var(--display); font-weight: 600; color: var(--teal-dark); }
.footer-links { display: flex; gap: 26px; list-style: none; font-size: 0.9rem; }
.footer-meta { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 64px 0 60px;
}
.page-hero .lede { margin-top: 18px; }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .who-grid { grid-template-columns: 1fr; gap: 30px; } }

.tags-line {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--padure);
  margin-top: 22px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

.small-caps {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
