
:root {
  --bg: #f8f8f6;
  --text: #111111;
  --muted: #6f6f6f;
  --line: #e8e8e5;
  --card: #ffffff;
  --black: #050505;
  --soft: #f1f1ee;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px; backdrop-filter: blur(20px);
  background: rgba(248,248,246,.78); border-bottom: 1px solid rgba(0,0,0,.06);
}
.logo { font-size: 17px; font-weight: 800; letter-spacing: .35em; }
.nav-links { display: flex; gap: 24px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.nav-cta { background: var(--black); color: white; padding: 14px 22px; border-radius: 999px; font-size: 12px; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.hero {
  min-height: 100vh; padding: 150px 72px 80px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  background: radial-gradient(circle at 80% 40%, rgba(0,0,0,.10), transparent 34%),
              linear-gradient(120deg, #ffffff 0%, #f7f7f4 45%, #e7e4df 100%);
}
.page-hero {
  padding: 150px 72px 72px;
  text-align: center;
  background: linear-gradient(120deg, #ffffff 0%, #f7f7f4 55%, #ece9e3 100%);
}
.eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #555; margin-bottom: 18px; }
h1 { font-size: clamp(48px, 7vw, 104px); line-height: .92; margin: 0; letter-spacing: -0.075em; }
.page-hero h1 { max-width: 1000px; margin: auto; }
.page-hero p, .hero p { font-size: 20px; line-height: 1.55; color: #333; max-width: 720px; margin: 28px auto 0; letter-spacing: -0.025em; }
.hero p { margin-left: 0; }
.buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 34px; }
.page-hero .buttons { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px;
  border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .02em;
  border: 1px solid var(--line); background: #fff; transition: .25s ease;
}
.btn.primary { background: var(--black); color: white; border-color: var(--black); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.portrait-card {
  min-height: 650px; border-radius: 42px; overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.65) 100%),
              url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=1100&q=80");
  background-size: cover; background-position: center; box-shadow: var(--shadow); position: relative;
}
.hero-stats { position: absolute; right: 28px; bottom: 28px; display: grid; gap: 12px; width: 210px; }
.stat-mini { background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.45); border-radius: 22px; padding: 18px; }
.stat-mini strong { font-size: 32px; display: block; letter-spacing: -0.05em; }
.stat-mini span { color: #555; font-size: 12px; font-weight: 700; text-transform: uppercase; line-height: 1.35; }
section { padding: 96px 72px; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(36px, 5vw, 68px); margin: 0 0 16px; letter-spacing: -0.06em; line-height: .96; }
.section-head p { margin: 0; font-size: 18px; color: var(--muted); line-height: 1.55; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: center; max-width: 1200px; margin: auto; }
.about-photo {
  min-height: 420px; border-radius: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55)),
              url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80");
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.about-copy, .contact-info, .form-card, .panel { background: white; padding: 56px; border-radius: 32px; box-shadow: var(--shadow); }
.about-copy h2, .contact-info h2 { font-size: 48px; line-height: 1; letter-spacing: -0.06em; margin: 0 0 20px; }
.about-copy p, .contact-info p, .panel p { color: #4b4b4b; font-size: 18px; line-height: 1.65; }
.traits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 30px; }
.trait { background: var(--soft); border-radius: 18px; padding: 18px 12px; text-align: center; font-size: 13px; font-weight: 700; }
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  min-height: 240px; box-shadow: 0 8px 30px rgba(0,0,0,.04); transition: .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon { font-size: 34px; margin-bottom: 22px; }
.card h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -0.04em; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 15px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-project-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.project {
  min-height: 320px; border-radius: 26px; overflow: hidden; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end;
  color: white; background-size: cover; background-position: center; position: relative; box-shadow: var(--shadow);
}
.project:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)); }
.project * { position: relative; }
.project h3 { margin: 0 0 4px; font-size: 24px; }
.project p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; letter-spacing: 0; }
.stats-band { background: var(--black); color: white; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; padding: 0; }
.stat { padding: 44px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat strong { display: block; font-size: 42px; letter-spacing: -0.05em; margin-bottom: 8px; }
.stat span { color: rgba(255,255,255,.64); font-size: 13px; text-transform: uppercase; font-weight: 700; letter-spacing: .04em; }
.insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article { background: white; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.04); }
.article-img { height: 220px; background-size: cover; background-position: center; }
.article-body { padding: 26px; }
.article small { color: var(--muted); text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.article h3 { font-size: 24px; letter-spacing: -0.04em; margin: 10px 0; }
.article p { color: var(--muted); line-height: 1.55; }
.academy { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1240px; margin: auto; background: var(--black); color: white; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); }
.academy-img { min-height: 430px; background: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1100&q=80"); background-size: cover; background-position: center; }
.academy-copy { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.academy-copy h2 { font-size: 54px; line-height: 1; letter-spacing: -0.06em; margin: 0 0 20px; }
.academy-copy p { color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.6; }
.testimonials, .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1100px; margin: auto; }
.quote { background: white; border-radius: 30px; padding: 38px; border: 1px solid var(--line); }
.quote p { font-size: 22px; line-height: 1.45; margin: 0 0 24px; letter-spacing: -0.04em; }
.social-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.social-card { min-height: 240px; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 30px rgba(0,0,0,.04); }
.social-card strong { font-size: 24px; }
.social-card span { color: var(--muted); line-height: 1.45; }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; max-width: 1240px; margin: auto; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); background: #fbfbfa; border-radius: 16px; padding: 17px 16px; font: inherit; outline: none; }
textarea { grid-column: 1 / -1; min-height: 130px; resize: vertical; }
.submit { grid-column: 1 / -1; border: 0; border-radius: 999px; background: var(--black); color: white; padding: 18px 28px; font-weight: 800; cursor: pointer; }
.map-placeholder { margin-top: 22px; border-radius: 24px; min-height: 220px; background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(0,0,0,.06)), url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1100&q=80"); background-size: cover; background-position: center; border: 1px solid var(--line); }
footer { background: var(--black); color: white; padding: 52px 72px; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
footer p { color: rgba(255,255,255,.6); max-width: 400px; line-height: 1.55; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.72); font-size: 14px; }
.whatsapp { position: fixed; right: 26px; bottom: 26px; width: 64px; height: 64px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 16px 40px rgba(0,0,0,.22); z-index: 120; }
.chat-bubble { position: fixed; right: 104px; bottom: 34px; background: white; border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow); font-size: 13px; color: #333; z-index: 119; }
@media (max-width: 1100px) {
  .nav { padding: 0 24px; } .nav-links { display: none; }
  .hero, .about-grid, .academy, .contact-wrap { grid-template-columns: 1fr; }
  .cards, .project-grid, .home-project-grid, .social-grid, .stats-band, .insights, .testimonials, .team-grid { grid-template-columns: repeat(2, 1fr); }
  section, .hero, .page-hero, footer { padding-left: 24px; padding-right: 24px; }
  .portrait-card { min-height: 560px; }
}
@media (max-width: 640px) {
  .logo { font-size: 14px; } .nav-cta { display: none; }
  .hero, .page-hero { padding-top: 120px; }
  .cards, .project-grid, .home-project-grid, .social-grid, .stats-band, .insights, .testimonials, .team-grid { grid-template-columns: 1fr; }
  .traits { grid-template-columns: repeat(2, 1fr); }
  .about-copy, .academy-copy, .contact-info, .form-card, .panel { padding: 30px; }
  form { grid-template-columns: 1fr; }
  .chat-bubble { display: none; }
}
