/* AnaRa Studio — landing page */
:root {
  --cream: #F7F2EA;
  --navy: #29394A;
  --terracotta: #BE6B3C;
  --muted: #5B6672;
  --text-dense: #3E4A56;
  --meta: #8A8F93;
  --border: #E3DCC9;
  --white: #FFFFFF;
  --pad-x: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terracotta); }
a:hover { color: var(--navy); }

section[id] { scroll-margin-top: 170px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { color: var(--cream); background: var(--terracotta); }
.btn-primary:hover { color: var(--cream); background: #A95B30; }
.btn-outline { color: var(--navy); background: transparent; border: 1.5px solid var(--navy); }
.btn-outline:hover { color: var(--cream); background: var(--navy); }
.btn-nav { font-size: 16px; padding: 10px 20px; white-space: nowrap; }
.btn-lg { font-size: 17px; padding: 14px 26px; }
.btn-card { font-size: 16px; padding: 11px 20px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  flex-wrap: wrap;
}
.nav-logo { height: 132px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); flex-wrap: wrap; }
.nav-link { font-size: 16px; font-weight: 600; text-decoration: none; color: var(--navy); }
.nav-link:hover { color: var(--terracotta); }
.lang {
  font-size: 14px;
  font-weight: 700;
  color: var(--meta);
  letter-spacing: 1px;
}
.lang a { color: var(--meta); text-decoration: none; }
.lang a:hover { color: var(--terracotta); }
.lang [aria-current] { color: var(--navy); }

/* ---------- Shared ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) var(--pad-x); }
.band { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kicker {
  color: var(--terracotta);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin: 0 0 22px; color: var(--navy); }

.avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
}
.avatar-navy { background: var(--navy); }
.avatar-terracotta { background: var(--terracotta); }
.person-name { margin: 0; font-size: 18px; font-weight: 700; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero .kicker { margin-bottom: 16px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--navy);
}
.hero-lead { font-size: 19px; line-height: 1.7; color: var(--muted); margin: 0 0 32px; max-width: 56ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
}
.hero-art svg { width: 100%; height: 100%; }

/* ---------- About ---------- */
.about-body { font-size: 18px; line-height: 1.75; color: var(--text-dense); margin: 0 0 36px; max-width: 72ch; }
.about-body b { color: var(--navy); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.team-card { display: flex; align-items: center; gap: 16px; border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.team-role { margin: 3px 0 6px; font-size: 14px; color: var(--meta); }
.team-cred { margin: 0; font-size: 16px; color: var(--muted); }

/* ---------- Services ---------- */
.services .h2 { margin-bottom: 32px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terracotta);
  border-radius: 8px;
  padding: 22px 20px;
}
.service-card:nth-child(even) { border-top-color: var(--navy); }
.service-card svg { display: block; margin-bottom: 14px; }
.service-title { margin: 0 0 8px; font-size: 17px; font-weight: 700; color: var(--navy); }
.service-desc { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ---------- Process ---------- */
.process .h2 { margin-bottom: 16px; }
.process-intro { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 44px; max-width: 70ch; }
.steps { position: relative; display: flex; flex-direction: column; gap: 36px; max-width: 720px; margin: 0; padding: 0; list-style: none; }
.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--border);
}
.step { display: flex; gap: 20px; align-items: flex-start; position: relative; }
.step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { padding-top: 6px; }
.step-label { margin: 0 0 4px; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--terracotta); text-transform: uppercase; }
.step-title { margin: 0 0 6px; font-size: 18px; font-weight: 700; color: var(--navy); }
.step-desc { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ---------- Contact ---------- */
.contact .h2 { margin-bottom: 14px; }
.contact-intro { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 36px; max-width: 60ch; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 44px; }
.contact-card { border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.contact-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.contact-role { margin: 2px 0 0; font-size: 14px; color: var(--meta); }
.contact-line { margin: 0 0 4px; font-size: 16px; color: var(--muted); }
.contact-line:last-of-type { margin-bottom: 18px; }
.contact-line a { color: var(--muted); text-decoration: none; }
.contact-line a:hover { color: var(--terracotta); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { height: 108px; width: auto; display: block; }
.footer-copy { margin: 0; font-size: 14px; color: var(--meta); }

/* ---------- Small screens ---------- */
@media (max-width: 760px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .nav { position: static; }
  .nav-logo { height: 88px; }
  section[id] { scroll-margin-top: 0; }
}
